diff --git a/dist/emoji-picker.js b/dist/emoji-picker.js index ca1b12f..213d26c 100644 --- a/dist/emoji-picker.js +++ b/dist/emoji-picker.js @@ -74,6 +74,15 @@ return /******/ (function(modules) { // webpackBootstrap return _components.Emoji; } }); + + var _utils = __webpack_require__(16); + + Object.defineProperty(exports, 'emojiIndex', { + enumerable: true, + get: function get() { + return _utils.emojiIndex; + } + }); /***/ }, /* 1 */ @@ -103,7 +112,7 @@ return /******/ (function(modules) { // webpackBootstrap } }); - var _emoji = __webpack_require__(16); + var _emoji = __webpack_require__(22); Object.defineProperty(exports, 'Emoji', { enumerable: true, @@ -112,7 +121,7 @@ return /******/ (function(modules) { // webpackBootstrap } }); - var _picker = __webpack_require__(18); + var _picker = __webpack_require__(23); Object.defineProperty(exports, 'Picker', { enumerable: true, @@ -121,7 +130,7 @@ return /******/ (function(modules) { // webpackBootstrap } }); - var _preview = __webpack_require__(20); + var _preview = __webpack_require__(25); Object.defineProperty(exports, 'Preview', { enumerable: true, @@ -130,7 +139,7 @@ return /******/ (function(modules) { // webpackBootstrap } }); - var _search = __webpack_require__(21); + var _search = __webpack_require__(26); Object.defineProperty(exports, 'Search', { enumerable: true, @@ -139,7 +148,7 @@ return /******/ (function(modules) { // webpackBootstrap } }); - var _skins = __webpack_require__(23); + var _skins = __webpack_require__(27); Object.defineProperty(exports, 'Skins', { enumerable: true, @@ -192,8 +201,13 @@ return /******/ (function(modules) { // webpackBootstrap var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Anchors).call(this, props)); + var defaultCategory = props.categories[0]; + if (defaultCategory.anchor) { + defaultCategory = defaultCategory.anchor; + } + _this.state = { - selected: props.categories[0].name + selected: defaultCategory.name }; return _this; } @@ -212,8 +226,13 @@ return /******/ (function(modules) { // webpackBootstrap { className: 'emoji-picker-anchors' }, categories.map(function (category, i) { var name = category.name; + var anchor = category.anchor; + if (anchor) { + return null; + } + return _react2.default.createElement( 'span', { @@ -571,6 +590,8 @@ return /******/ (function(modules) { // webpackBootstrap var _react2 = _interopRequireDefault(_react); + var _utils = __webpack_require__(16); + var _ = __webpack_require__(1); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } @@ -581,6 +602,19 @@ return /******/ (function(modules) { // webpackBootstrap function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + var LABELS = { + 'Search': 'Search Results', + 'Recent': 'Frequently Used', + 'People': 'Smileys & People', + 'Nature': 'Animals & Nature', + 'Foods': 'Food & Drink', + 'Activity': 'Activity', + 'Places': 'Travel & Places', + 'Objects': 'Objects', + 'Symbols': 'Symbols', + 'Flags': 'Flags' + }; + var Category = function (_React$Component) { _inherits(Category, _React$Component); @@ -603,9 +637,37 @@ return /******/ (function(modules) { // webpackBootstrap this.memoizeSize(); } }, { - key: 'componentDidUpdate', - value: function componentDidUpdate() { - this.memoizeSize(); + key: 'shouldComponentUpdate', + value: function shouldComponentUpdate(nextProps, nextState) { + var _props = this.props; + var name = _props.name; + var perLine = _props.perLine; + var emojis = _props.emojis; + var emojiProps = _props.emojiProps; + var skin = emojiProps.skin; + var size = emojiProps.size; + var sheetURL = emojiProps.sheetURL; + var nextPerLine = nextProps.perLine; + var nextEmojis = nextProps.emojis; + var nextEmojiProps = nextProps.emojiProps; + var nextSkin = nextEmojiProps.skin; + var nextSize = nextEmojiProps.size; + var nextSheetURL = nextEmojiProps.sheetURL; + var shouldUpdate = false; + + if (name == 'Recent' && perLine != nextPerLine) { + shouldUpdate = true; + } + + if (name == 'Search') { + shouldUpdate = !(emojis == nextEmojis); + } + + if (skin != nextSkin || size != nextSize || sheetURL != nextSheetURL) { + shouldUpdate = true; + } + + return shouldUpdate; } }, { key: 'memoizeSize', @@ -625,10 +687,11 @@ return /******/ (function(modules) { // webpackBootstrap this.top = top - parentTop + this.parent.scrollTop; - if (height > labelHeight) { - this.maxMargin = height - labelHeight; + + if (height == 0) { + this.maxMargin = 0; } else { - this.maxMargin = 1; + this.maxMargin = height - labelHeight; } } }, { @@ -649,19 +712,58 @@ return /******/ (function(modules) { // webpackBootstrap this.margin = margin; return true; } + }, { + key: 'getEmojis', + value: function getEmojis() { + var _props2 = this.props; + var name = _props2.name; + var emojis = _props2.emojis; + var perLine = _props2.perLine; + + + if (name == 'Recent') { + var frequentlyUsed = _utils.frequently.get(perLine * 4); + + if (frequentlyUsed.length) { + emojis = frequentlyUsed; + } + } + + if (emojis) { + emojis = emojis.slice(0); + } + + return emojis; + } + }, { + key: 'updateDisplay', + value: function updateDisplay(display) { + var emojis = this.getEmojis(); + + if (!display && !emojis) { + return; + } + + this.container.style.display = display; + } }, { key: 'render', value: function render() { - var _props = this.props; - var name = _props.name; - var emojis = _props.emojis; - var hasStickyPosition = _props.hasStickyPosition; - var emojiProps = _props.emojiProps; - var emojis = emojis ? emojis.slice(0) : null; + var _props3 = this.props; + var name = _props3.name; + var hasStickyPosition = _props3.hasStickyPosition; + var emojiProps = _props3.emojiProps; + var emojis = this.getEmojis(); var labelStyles = {}; var labelSpanStyles = {}; var containerStyles = {}; + if (!emojis) { + containerStyles = { + display: 'none' + }; + } + if (!hasStickyPosition) { labelStyles = { height: 28 @@ -672,13 +774,6 @@ return /******/ (function(modules) { // webpackBootstrap }; } - if (!emojis) { - containerStyles = { - height: 1, - overflow: 'hidden' - }; - } - return _react2.default.createElement( 'div', { ref: 'container', className: 'emoji-picker-category', style: containerStyles }, @@ -688,7 +783,7 @@ return /******/ (function(modules) { // webpackBootstrap _react2.default.createElement( 'span', { style: labelSpanStyles, ref: 'label' }, - name + LABELS[name] ) ), emojis && emojis.map(function (emoji) { @@ -724,6 +819,7 @@ return /******/ (function(modules) { // webpackBootstrap emojis: _react2.default.PropTypes.array, hasStickyPosition: _react2.default.PropTypes.bool, name: _react2.default.PropTypes.string.isRequired, + perLine: _react2.default.PropTypes.number.isRequired, emojiProps: _react2.default.PropTypes.object.isRequired }; @@ -742,208 +838,69 @@ return /******/ (function(modules) { // webpackBootstrap value: true }); - var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + var _store = __webpack_require__(17); - var _react = __webpack_require__(3); - - var _react2 = _interopRequireDefault(_react); - - var _data = __webpack_require__(17); - - var _data2 = _interopRequireDefault(_data); - - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - - function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } - - function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - - function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } - - function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - - var SHEET_SIZE = 2624; - var EMOJI_SIZE = 64; - var SKINS = ['1F3FA', '1F3FB', '1F3FC', '1F3FD', '1F3FE', '1F3FF']; - - var Emoji = function (_React$Component) { - _inherits(Emoji, _React$Component); - - function Emoji(props) { - _classCallCheck(this, Emoji); - - var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Emoji).call(this, props)); - - var emojiData = _this.getEmojiData(); - _this.hasSkinVariations = !!emojiData.skin_variations; - return _this; + Object.defineProperty(exports, 'store', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_store).default; } + }); - _createClass(Emoji, [{ - key: 'shouldComponentUpdate', - value: function shouldComponentUpdate(nextProps) { - return this.hasSkinVariations && nextProps.skin != this.props.skin || nextProps.size != this.props.size || nextProps.sheetURL != this.props.sheetURL; - } - }, { - key: 'getEmojiData', - value: function getEmojiData() { - var _props = this.props; - var emoji = _props.emoji; - var skin = _props.skin; - var sheetURL = _props.sheetURL; - var emojiData = emoji; + var _emojiIndex = __webpack_require__(18); - if (typeof emoji == 'string') { - emojiData = _data2.default.emojis[emoji]; - } + Object.defineProperty(exports, 'emojiIndex', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_emojiIndex).default; + } + }); - if (this.hasSkinVariations && skin > 1) { - emojiData = JSON.parse(JSON.stringify(_data2.default.emojis[emoji])); + var _frequently = __webpack_require__(21); - var skinKey = SKINS[skin - 1], - variationKey = emojiData.unified + '-' + skinKey, - variationData = emojiData.skin_variations[variationKey], - kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/), - kit = kitMatches[0]; - - if (variationData['has_img_' + kit]) { - emojiData.skin_tone = skin; - - for (var k in variationData) { - var v = variationData[k]; - emojiData[k] = v; - } - } - } - - return emojiData; - } - }, { - key: 'getSheetSize', - value: function getSheetSize() { - var size = this.props.size; - var sheetSize = SHEET_SIZE * size / EMOJI_SIZE; - - return sheetSize + 'px ' + sheetSize + 'px'; - } - }, { - key: 'getPosition', - value: function getPosition(emojiData) { - var size = this.props.size; - var sheet_x = emojiData.sheet_x; - var sheet_y = emojiData.sheet_y; - var x = sheet_x * size; - var y = sheet_y * size; - - return '-' + x + 'px -' + y + 'px'; - } - }, { - key: 'getNative', - value: function getNative(emojiData) { - var unified = emojiData.unified; - var unicodes = unified.split('-'); - var codePoints = unicodes.map(function (u) { - return '0x' + u; - }); - - return String.fromCodePoint.apply(String, _toConsumableArray(codePoints)); - } - }, { - key: 'handleClick', - value: function handleClick(emojiData) { - var onClick = this.props.onClick; - var name = emojiData.name; - var short_names = emojiData.short_names; - var skin_tone = emojiData.skin_tone; - var text = emojiData.text; - var texts = emojiData.texts; - var unified = emojiData.unified; - var id = short_names[0]; - var colons = ':' + id + ':'; - - texts || (texts = []); - if (text && !texts.length) { - texts = [text]; - } - - if (skin_tone) { - colons += ':skin-tone-' + skin_tone + ':'; - } - - onClick({ - id: id, - name: name, - colons: colons, - skin: skin_tone || 1, - emoticons: texts, - native: this.getNative(emojiData) - }); - } - }, { - key: 'render', - value: function render() { - var _this2 = this; - - var _props2 = this.props; - var sheetURL = _props2.sheetURL; - var size = _props2.size; - var onOver = _props2.onOver; - var onLeave = _props2.onLeave; - var emojiData = this.getEmojiData(); - - return _react2.default.createElement( - 'span', - { - onClick: function onClick() { - return _this2.handleClick(emojiData); - }, - onMouseEnter: function onMouseEnter() { - return onOver(emojiData); - }, - onMouseLeave: function onMouseLeave() { - return onLeave(emojiData); - }, - className: 'emoji-picker-emoji' }, - _react2.default.createElement('span', { style: { - width: size, - height: size, - display: 'inline-block', - backgroundImage: 'url(' + sheetURL + ')', - backgroundSize: this.getSheetSize(), - backgroundPosition: this.getPosition(emojiData) - } }) - ); - } - }]); - - return Emoji; - }(_react2.default.Component); - - exports.default = Emoji; - - - Emoji.propTypes = { - skin: _react2.default.PropTypes.number, - onOver: _react2.default.PropTypes.func, - onLeave: _react2.default.PropTypes.func, - onClick: _react2.default.PropTypes.func, - size: _react2.default.PropTypes.number.isRequired, - sheetURL: _react2.default.PropTypes.string.isRequired, - emoji: _react2.default.PropTypes.oneOfType([_react2.default.PropTypes.string, _react2.default.PropTypes.object]).isRequired - }; - - Emoji.defaultProps = { - skin: 1, - onOver: function onOver() {}, - onLeave: function onLeave() {}, - onClick: function onClick() {} - }; + Object.defineProperty(exports, 'frequently', { + enumerable: true, + get: function get() { + return _interopRequireDefault(_frequently).default; + } + }); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } /***/ }, /* 17 */ /***/ function(module, exports) { - "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default={"categories":[{"name":"People","emojis":["grinning","grimacing","grin","joy","smiley","smile","sweat_smile","laughing","innocent","wink","blush","slightly_smiling_face","upside_down_face","relaxed","yum","relieved","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","stuck_out_tongue","money_mouth_face","nerd_face","sunglasses","hugging_face","smirk","no_mouth","neutral_face","expressionless","unamused","face_with_rolling_eyes","thinking_face","flushed","disappointed","worried","angry","rage","pensive","confused","slightly_frowning_face","white_frowning_face","persevere","confounded","tired_face","weary","triumph","open_mouth","scream","fearful","cold_sweat","hushed","frowning","anguished","cry","disappointed_relieved","sleepy","sweat","sob","dizzy_face","astonished","zipper_mouth_face","mask","face_with_thermometer","face_with_head_bandage","sleeping","zzz","hankey","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","ghost","alien","robot_face","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","raised_hands","clap","wave","+1","-1","facepunch","fist","v","ok_hand","hand","open_hands","muscle","pray","point_up","point_up_2","point_down","point_left","point_right","middle_finger","raised_hand_with_fingers_splayed","the_horns","spock-hand","writing_hand","nail_care","lips","tongue","ear","nose","eye","eyes","bust_in_silhouette","busts_in_silhouette","speaking_head_in_silhouette","baby","boy","girl","man","woman","person_with_blond_hair","older_man","older_woman","man_with_gua_pi_mao","man_with_turban","cop","construction_worker","guardsman","sleuth_or_spy","santa","angel","princess","bride_with_veil","walking","runner","dancer","dancers","couple","two_men_holding_hands","two_women_holding_hands","bow","information_desk_person","no_good","ok_woman","raising_hand","person_with_pouting_face","person_frowning","haircut","massage","couple_with_heart","woman-heart-woman","man-heart-man","couplekiss","woman-kiss-woman","man-kiss-man","family","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","womans_clothes","shirt","jeans","necktie","dress","bikini","kimono","lipstick","kiss","footprints","high_heel","sandal","boot","mans_shoe","athletic_shoe","womans_hat","tophat","helmet_with_white_cross","mortar_board","crown","school_satchel","pouch","purse","handbag","briefcase","eyeglasses","dark_sunglasses","ring","closed_umbrella"]},{"name":"Nature","emojis":["dog","cat","mouse","hamster","rabbit","bear","panda_face","koala","tiger","lion_face","cow","pig","pig_nose","frog","octopus","monkey_face","see_no_evil","hear_no_evil","speak_no_evil","monkey","chicken","penguin","bird","baby_chick","hatching_chick","hatched_chick","wolf","boar","horse","unicorn_face","bee","bug","snail","beetle","ant","spider","scorpion","crab","snake","turtle","tropical_fish","fish","blowfish","dolphin","whale","whale2","crocodile","leopard","tiger2","water_buffalo","ox","cow2","dromedary_camel","camel","elephant","goat","ram","sheep","racehorse","pig2","rat","mouse2","rooster","turkey","dove_of_peace","dog2","poodle","cat2","rabbit2","chipmunk","feet","dragon","dragon_face","cactus","christmas_tree","evergreen_tree","deciduous_tree","palm_tree","seedling","herb","shamrock","four_leaf_clover","bamboo","tanabata_tree","leaves","fallen_leaf","maple_leaf","ear_of_rice","hibiscus","sunflower","rose","tulip","blossom","cherry_blossom","bouquet","mushroom","chestnut","jack_o_lantern","shell","spider_web","earth_americas","earth_africa","earth_asia","full_moon","waning_gibbous_moon","last_quarter_moon","waning_crescent_moon","new_moon","waxing_crescent_moon","first_quarter_moon","moon","new_moon_with_face","full_moon_with_face","first_quarter_moon_with_face","last_quarter_moon_with_face","sun_with_face","crescent_moon","star","star2","dizzy","sparkles","comet","sunny","mostly_sunny","partly_sunny","barely_sunny","partly_sunny_rain","cloud","rain_cloud","thunder_cloud_and_rain","lightning","zap","fire","boom","snowflake","snow_cloud","snowman","snowman_without_snow","wind_blowing_face","dash","tornado","fog","umbrella","umbrella_with_rain_drops","droplet","sweat_drops","ocean"]},{"name":"Foods","emojis":["green_apple","apple","pear","tangerine","lemon","banana","watermelon","grapes","strawberry","melon","cherries","peach","pineapple","tomato","eggplant","hot_pepper","corn","sweet_potato","honey_pot","bread","cheese_wedge","poultry_leg","meat_on_bone","fried_shrimp","egg","hamburger","fries","hotdog","pizza","spaghetti","taco","burrito","ramen","stew","fish_cake","sushi","bento","curry","rice_ball","rice","rice_cracker","oden","dango","shaved_ice","ice_cream","icecream","cake","birthday","custard","candy","lollipop","chocolate_bar","popcorn","doughnut","cookie","beer","beers","wine_glass","cocktail","tropical_drink","champagne","sake","tea","coffee","baby_bottle","fork_and_knife","knife_fork_plate"]},{"name":"Activity","emojis":["soccer","basketball","football","baseball","tennis","volleyball","rugby_football","8ball","golf","golfer","table_tennis_paddle_and_ball","badminton_racquet_and_shuttlecock","ice_hockey_stick_and_puck","field_hockey_stick_and_ball","cricket_bat_and_ball","ski","skier","snowboarder","ice_skate","bow_and_arrow","fishing_pole_and_fish","rowboat","swimmer","surfer","bath","person_with_ball","weight_lifter","bicyclist","mountain_bicyclist","horse_racing","man_in_business_suit_levitating","trophy","running_shirt_with_sash","sports_medal","medal","reminder_ribbon","rosette","ticket","admission_tickets","performing_arts","art","circus_tent","microphone","headphones","musical_score","musical_keyboard","saxophone","trumpet","guitar","violin","clapper","video_game","space_invader","dart","game_die","slot_machine","bowling"]},{"name":"Places","emojis":["car","taxi","blue_car","bus","trolleybus","racing_car","police_car","ambulance","fire_engine","minibus","truck","articulated_lorry","tractor","racing_motorcycle","bike","rotating_light","oncoming_police_car","oncoming_bus","oncoming_automobile","oncoming_taxi","aerial_tramway","mountain_cableway","suspension_railway","railway_car","train","monorail","bullettrain_side","bullettrain_front","light_rail","mountain_railway","steam_locomotive","train2","metro","tram","station","helicopter","small_airplane","airplane","airplane_departure","airplane_arriving","boat","motor_boat","speedboat","ferry","passenger_ship","rocket","satellite","seat","anchor","construction","fuelpump","busstop","vertical_traffic_light","traffic_light","checkered_flag","ship","ferris_wheel","roller_coaster","carousel_horse","building_construction","foggy","tokyo_tower","factory","fountain","rice_scene","mountain","snow_capped_mountain","mount_fuji","volcano","japan","camping","tent","national_park","motorway","railway_track","sunrise","sunrise_over_mountains","desert","beach_with_umbrella","desert_island","city_sunrise","city_sunset","cityscape","night_with_stars","bridge_at_night","milky_way","stars","sparkler","fireworks","rainbow","house_buildings","european_castle","japanese_castle","stadium","statue_of_liberty","house","house_with_garden","derelict_house_building","office","department_store","post_office","european_post_office","hospital","bank","hotel","convenience_store","school","love_hotel","wedding","classical_building","church","mosque","synagogue","kaaba","shinto_shrine"]},{"name":"Objects","emojis":["watch","iphone","calling","computer","keyboard","desktop_computer","printer","three_button_mouse","trackball","joystick","compression","minidisc","floppy_disk","cd","dvd","vhs","camera","camera_with_flash","video_camera","movie_camera","film_projector","film_frames","telephone_receiver","phone","pager","fax","tv","radio","studio_microphone","level_slider","control_knobs","stopwatch","timer_clock","alarm_clock","mantelpiece_clock","hourglass_flowing_sand","hourglass","satellite_antenna","battery","electric_plug","bulb","flashlight","candle","wastebasket","oil_drum","money_with_wings","dollar","yen","euro","pound","moneybag","credit_card","gem","scales","wrench","hammer","hammer_and_pick","hammer_and_wrench","pick","nut_and_bolt","gear","chains","gun","bomb","hocho","dagger_knife","crossed_swords","shield","smoking","skull_and_crossbones","coffin","funeral_urn","amphora","crystal_ball","prayer_beads","barber","alembic","telescope","microscope","hole","pill","syringe","thermometer","label","bookmark","toilet","shower","bathtub","key","old_key","couch_and_lamp","sleeping_accommodation","bed","door","bellhop_bell","frame_with_picture","world_map","umbrella_on_ground","moyai","shopping_bags","balloon","flags","ribbon","gift","confetti_ball","tada","dolls","wind_chime","crossed_flags","izakaya_lantern","email","envelope_with_arrow","incoming_envelope","e-mail","love_letter","postbox","mailbox_closed","mailbox","mailbox_with_mail","mailbox_with_no_mail","package","postal_horn","inbox_tray","outbox_tray","scroll","page_with_curl","bookmark_tabs","bar_chart","chart_with_upwards_trend","chart_with_downwards_trend","page_facing_up","date","calendar","spiral_calendar_pad","card_index","card_file_box","ballot_box_with_ballot","file_cabinet","clipboard","spiral_note_pad","file_folder","open_file_folder","card_index_dividers","rolled_up_newspaper","newspaper","notebook","closed_book","green_book","blue_book","orange_book","notebook_with_decorative_cover","ledger","books","book","link","paperclip","linked_paperclips","scissors","triangular_ruler","straight_ruler","pushpin","round_pushpin","triangular_flag_on_post","waving_white_flag","waving_black_flag","closed_lock_with_key","lock","unlock","lock_with_ink_pen","lower_left_ballpoint_pen","lower_left_fountain_pen","black_nib","memo","pencil2","lower_left_crayon","lower_left_paintbrush","mag","mag_right"]},{"name":"Symbols","emojis":["heart","yellow_heart","green_heart","blue_heart","purple_heart","broken_heart","heavy_heart_exclamation_mark_ornament","two_hearts","revolving_hearts","heartbeat","heartpulse","sparkling_heart","cupid","gift_heart","heart_decoration","peace_symbol","latin_cross","star_and_crescent","om_symbol","wheel_of_dharma","star_of_david","six_pointed_star","menorah_with_nine_branches","yin_yang","orthodox_cross","place_of_worship","ophiuchus","aries","taurus","gemini","cancer","leo","virgo","libra","scorpius","sagittarius","capricorn","aquarius","pisces","id","atom_symbol","u7a7a","u5272","radioactive_sign","biohazard_sign","mobile_phone_off","vibration_mode","u6709","u7121","u7533","u55b6","u6708","eight_pointed_black_star","vs","accept","white_flower","ideograph_advantage","secret","congratulations","u5408","u6e80","u7981","a","b","ab","cl","o2","sos","no_entry","name_badge","no_entry_sign","x","o","anger","hotsprings","no_pedestrians","do_not_litter","no_bicycles","non-potable_water","underage","no_mobile_phones","exclamation","grey_exclamation","question","grey_question","bangbang","interrobang","100","low_brightness","high_brightness","trident","fleur_de_lis","part_alternation_mark","warning","children_crossing","beginner","recycle","u6307","chart","sparkle","eight_spoked_asterisk","negative_squared_cross_mark","white_check_mark","diamond_shape_with_a_dot_inside","cyclone","loop","globe_with_meridians","m","atm","sa","passport_control","customs","baggage_claim","left_luggage","wheelchair","no_smoking","wc","parking","potable_water","mens","womens","baby_symbol","restroom","put_litter_in_its_place","cinema","signal_strength","koko","ng","ok","up","cool","new","free","zero","one","two","three","four","five","six","seven","eight","nine","keycap_ten","keycap_star","1234","arrow_forward","double_vertical_bar","black_right_pointing_triangle_with_double_vertical_bar","black_square_for_stop","eject","black_circle_for_record","black_right_pointing_double_triangle_with_vertical_bar","black_left_pointing_double_triangle_with_vertical_bar","fast_forward","rewind","twisted_rightwards_arrows","repeat","repeat_one","arrow_backward","arrow_up_small","arrow_down_small","arrow_double_up","arrow_double_down","arrow_right","arrow_left","arrow_up","arrow_down","arrow_upper_right","arrow_lower_right","arrow_lower_left","arrow_upper_left","arrow_up_down","left_right_arrow","arrows_counterclockwise","arrow_right_hook","leftwards_arrow_with_hook","arrow_heading_up","arrow_heading_down","hash","information_source","abc","abcd","capital_abcd","symbols","musical_note","notes","wavy_dash","curly_loop","heavy_check_mark","arrows_clockwise","heavy_plus_sign","heavy_minus_sign","heavy_division_sign","heavy_multiplication_x","heavy_dollar_sign","currency_exchange","copyright","registered","tm","end","back","on","top","soon","ballot_box_with_check","radio_button","white_circle","black_circle","red_circle","large_blue_circle","small_orange_diamond","small_blue_diamond","large_orange_diamond","large_blue_diamond","small_red_triangle","black_small_square","white_small_square","black_large_square","white_large_square","small_red_triangle_down","black_medium_square","white_medium_square","black_medium_small_square","white_medium_small_square","black_square_button","white_square_button","speaker","sound","loud_sound","mute","mega","loudspeaker","bell","no_bell","black_joker","mahjong","spades","clubs","hearts","diamonds","flower_playing_cards","thought_balloon","right_anger_bubble","speech_balloon","left_speech_bubble","clock1","clock2","clock3","clock4","clock5","clock6","clock7","clock8","clock9","clock10","clock11","clock12","clock130","clock230","clock330","clock430","clock530","clock630","clock730","clock830","clock930","clock1030","clock1130","clock1230"]},{"name":"Flags","emojis":["flag-af","flag-ax","flag-al","flag-dz","flag-as","flag-ad","flag-ao","flag-ai","flag-aq","flag-ag","flag-ar","flag-am","flag-aw","flag-au","flag-at","flag-az","flag-bs","flag-bh","flag-bd","flag-bb","flag-by","flag-be","flag-bz","flag-bj","flag-bm","flag-bt","flag-bo","flag-bq","flag-ba","flag-bw","flag-br","flag-io","flag-vg","flag-bn","flag-bg","flag-bf","flag-bi","flag-cv","flag-kh","flag-cm","flag-ca","flag-ic","flag-ky","flag-cf","flag-td","flag-cl","flag-cn","flag-cx","flag-cc","flag-co","flag-km","flag-cg","flag-cd","flag-ck","flag-cr","flag-hr","flag-cu","flag-cw","flag-cy","flag-cz","flag-dk","flag-dj","flag-dm","flag-do","flag-ec","flag-eg","flag-sv","flag-gq","flag-er","flag-ee","flag-et","flag-eu","flag-fk","flag-fo","flag-fj","flag-fi","flag-fr","flag-gf","flag-pf","flag-tf","flag-ga","flag-gm","flag-ge","flag-de","flag-gh","flag-gi","flag-gr","flag-gl","flag-gd","flag-gp","flag-gu","flag-gt","flag-gg","flag-gn","flag-gw","flag-gy","flag-ht","flag-hn","flag-hk","flag-hu","flag-is","flag-in","flag-id","flag-ir","flag-iq","flag-ie","flag-im","flag-il","flag-it","flag-ci","flag-jm","flag-jp","flag-je","flag-jo","flag-kz","flag-ke","flag-ki","flag-xk","flag-kw","flag-kg","flag-la","flag-lv","flag-lb","flag-ls","flag-lr","flag-ly","flag-li","flag-lt","flag-lu","flag-mo","flag-mk","flag-mg","flag-mw","flag-my","flag-mv","flag-ml","flag-mt","flag-mh","flag-mq","flag-mr","flag-mu","flag-yt","flag-mx","flag-fm","flag-md","flag-mc","flag-mn","flag-me","flag-ms","flag-ma","flag-mz","flag-mm","flag-na","flag-nr","flag-np","flag-nl","flag-nc","flag-nz","flag-ni","flag-ne","flag-ng","flag-nu","flag-nf","flag-mp","flag-kp","flag-no","flag-om","flag-pk","flag-pw","flag-ps","flag-pa","flag-pg","flag-py","flag-pe","flag-ph","flag-pn","flag-pl","flag-pt","flag-pr","flag-qa","flag-re","flag-ro","flag-ru","flag-rw","flag-bl","flag-sh","flag-kn","flag-lc","flag-pm","flag-vc","flag-ws","flag-sm","flag-st","flag-sa","flag-sn","flag-rs","flag-sc","flag-sl","flag-sg","flag-sx","flag-sk","flag-si","flag-sb","flag-so","flag-za","flag-gs","flag-kr","flag-ss","flag-es","flag-lk","flag-sd","flag-sr","flag-sz","flag-se","flag-ch","flag-sy","flag-tw","flag-tj","flag-tz","flag-th","flag-tl","flag-tg","flag-tk","flag-to","flag-tt","flag-tn","flag-tr","flag-tm","flag-tc","flag-tv","flag-ug","flag-ua","flag-ae","flag-gb","flag-us","flag-vi","flag-uy","flag-uz","flag-vu","flag-va","flag-ve","flag-vn","flag-wf","flag-eh","flag-ye","flag-zm","flag-zw","flag-ac","flag-bv","flag-cp","flag-dg","flag-ea","flag-hm","flag-mf","flag-sj","flag-ta","flag-um"]}],"emojis":{"100":{"name":"Hundred Points Symbol","unified":"1F4AF","variations":[],"docomo":null,"au":"E4F2","softbank":null,"google":"FEB7B","image":"1f4af.png","sheet_x":20,"sheet_y":27,"short_name":"100","short_names":["100"],"text":null,"texts":null,"category":"Symbols","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"1234":{"name":"Input Symbol for Numbers","unified":"1F522","variations":[],"docomo":null,"au":"EAFF","softbank":null,"google":"FEB7E","image":"1f522.png","sheet_x":23,"sheet_y":18,"short_name":"1234","short_names":["1234"],"text":null,"texts":null,"category":"Symbols","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"grinning":{"name":"Grinning Face","unified":"1F600","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f600.png","sheet_x":26,"sheet_y":15,"short_name":"grinning","short_names":["grinning"],"text":":D","texts":null,"category":"People","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heart":{"name":"Heavy Black Heart","unified":"2764","variations":["2764-FE0F"],"docomo":"E6EC","au":"E595","softbank":"E022","google":"FEB0C","image":"2764.png","sheet_x":4,"sheet_y":10,"short_name":"heart","short_names":["heart"],"text":"<3","texts":["<3"],"category":"Symbols","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dog":{"name":"Dog Face","unified":"1F436","variations":[],"docomo":"E6A1","au":"E4E1","softbank":"E052","google":"FE1B7","image":"1f436.png","sheet_x":13,"sheet_y":18,"short_name":"dog","short_names":["dog"],"text":null,"texts":null,"category":"Nature","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"soccer":{"name":"Soccer Ball","unified":"26BD","variations":["26BD-FE0F"],"docomo":"E656","au":"E4B6","softbank":"E018","google":"FE7D4","image":"26bd.png","sheet_x":2,"sheet_y":18,"short_name":"soccer","short_names":["soccer"],"text":null,"texts":null,"category":"Activity","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"watch":{"name":"Watch","unified":"231A","variations":["231A-FE0F"],"docomo":"E71F","au":"E57A","softbank":null,"google":"FE01D","image":"231a.png","sheet_x":0,"sheet_y":14,"short_name":"watch","short_names":["watch"],"text":null,"texts":null,"category":"Objects","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"green_apple":{"name":"Green Apple","unified":"1F34F","variations":[],"docomo":"E745","au":"EB5A","softbank":"E345","google":"FE05B","image":"1f34f.png","sheet_x":7,"sheet_y":16,"short_name":"green_apple","short_names":["green_apple"],"text":null,"texts":null,"category":"Foods","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-af":{"name":"Regional Indicator Symbol Letters Af","unified":"1F1E6-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1eb.png","sheet_x":32,"sheet_y":36,"short_name":"flag-af","short_names":["flag-af"],"text":null,"texts":null,"category":"Flags","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"car":{"name":"Automobile","unified":"1F697","variations":[],"docomo":"E65E","au":"E4B1","softbank":"E01B","google":"FE7E4","image":"1f697.png","sheet_x":29,"sheet_y":35,"short_name":"car","short_names":["car","red_car"],"text":null,"texts":null,"category":"Places","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ax":{"name":"Regional Indicator Symbol Letters Ax","unified":"1F1E6-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fd.png","sheet_x":33,"sheet_y":7,"short_name":"flag-ax","short_names":["flag-ax"],"text":null,"texts":null,"category":"Flags","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"grimacing":{"name":"Grimacing Face","unified":"1F62C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62c.png","sheet_x":27,"sheet_y":18,"short_name":"grimacing","short_names":["grimacing"],"text":null,"texts":null,"category":"People","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"taxi":{"name":"Taxi","unified":"1F695","variations":[],"docomo":"E65E","au":"E4B1","softbank":"E15A","google":"FE7EF","image":"1f695.png","sheet_x":29,"sheet_y":33,"short_name":"taxi","short_names":["taxi"],"text":null,"texts":null,"category":"Places","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"iphone":{"name":"Mobile Phone","unified":"1F4F1","variations":[],"docomo":"E688","au":"E588","softbank":"E00A","google":"FE525","image":"1f4f1.png","sheet_x":22,"sheet_y":11,"short_name":"iphone","short_names":["iphone"],"text":null,"texts":null,"category":"Objects","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"basketball":{"name":"Basketball and Hoop","unified":"1F3C0","variations":[],"docomo":"E658","au":"E59A","softbank":"E42A","google":"FE7D6","image":"1f3c0.png","sheet_x":10,"sheet_y":6,"short_name":"basketball","short_names":["basketball"],"text":null,"texts":null,"category":"Activity","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cat":{"name":"Cat Face","unified":"1F431","variations":[],"docomo":"E6A2","au":"E4DB","softbank":"E04F","google":"FE1B8","image":"1f431.png","sheet_x":13,"sheet_y":13,"short_name":"cat","short_names":["cat"],"text":null,"texts":null,"category":"Nature","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"apple":{"name":"Red Apple","unified":"1F34E","variations":[],"docomo":"E745","au":"EAB9","softbank":"E345","google":"FE051","image":"1f34e.png","sheet_x":7,"sheet_y":15,"short_name":"apple","short_names":["apple"],"text":null,"texts":null,"category":"Foods","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"yellow_heart":{"name":"Yellow Heart","unified":"1F49B","variations":[],"docomo":"E6EC","au":"EAA9","softbank":"E32C","google":"FEB15","image":"1f49b.png","sheet_x":20,"sheet_y":2,"short_name":"yellow_heart","short_names":["yellow_heart"],"text":"<3","texts":null,"category":"Symbols","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mouse":{"name":"Mouse Face","unified":"1F42D","variations":[],"docomo":null,"au":"E5C2","softbank":"E053","google":"FE1C2","image":"1f42d.png","sheet_x":13,"sheet_y":9,"short_name":"mouse","short_names":["mouse"],"text":null,"texts":null,"category":"Nature","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pear":{"name":"Pear","unified":"1F350","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f350.png","sheet_x":7,"sheet_y":17,"short_name":"pear","short_names":["pear"],"text":null,"texts":null,"category":"Foods","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"green_heart":{"name":"Green Heart","unified":"1F49A","variations":[],"docomo":"E6EC","au":"EAA8","softbank":"E32B","google":"FEB14","image":"1f49a.png","sheet_x":20,"sheet_y":1,"short_name":"green_heart","short_names":["green_heart"],"text":"<3","texts":null,"category":"Symbols","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"football":{"name":"American Football","unified":"1F3C8","variations":[],"docomo":null,"au":"E4BB","softbank":"E42B","google":"FE7DD","image":"1f3c8.png","sheet_x":10,"sheet_y":24,"short_name":"football","short_names":["football"],"text":null,"texts":null,"category":"Activity","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"grin":{"name":"Grinning Face with Smiling Eyes","unified":"1F601","variations":[],"docomo":"E753","au":"EB80","softbank":"E404","google":"FE333","image":"1f601.png","sheet_x":26,"sheet_y":16,"short_name":"grin","short_names":["grin"],"text":null,"texts":null,"category":"People","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-al":{"name":"Regional Indicator Symbol Letters Al","unified":"1F1E6-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f1.png","sheet_x":32,"sheet_y":39,"short_name":"flag-al","short_names":["flag-al"],"text":null,"texts":null,"category":"Flags","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"calling":{"name":"Mobile Phone with Rightwards Arrow at Left","unified":"1F4F2","variations":[],"docomo":"E6CE","au":"EB08","softbank":"E104","google":"FE526","image":"1f4f2.png","sheet_x":22,"sheet_y":12,"short_name":"calling","short_names":["calling"],"text":null,"texts":null,"category":"Objects","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"blue_car":{"name":"Recreational Vehicle","unified":"1F699","variations":[],"docomo":"E65F","au":"E4B1","softbank":"E42E","google":"FE7E5","image":"1f699.png","sheet_x":29,"sheet_y":37,"short_name":"blue_car","short_names":["blue_car"],"text":null,"texts":null,"category":"Places","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hamster":{"name":"Hamster Face","unified":"1F439","variations":[],"docomo":null,"au":null,"softbank":"E524","google":"FE1CA","image":"1f439.png","sheet_x":13,"sheet_y":21,"short_name":"hamster","short_names":["hamster"],"text":null,"texts":null,"category":"Nature","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"blue_heart":{"name":"Blue Heart","unified":"1F499","variations":[],"docomo":"E6EC","au":"EAA7","softbank":"E32A","google":"FEB13","image":"1f499.png","sheet_x":20,"sheet_y":0,"short_name":"blue_heart","short_names":["blue_heart"],"text":"<3","texts":null,"category":"Symbols","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bus":{"name":"Bus","unified":"1F68C","variations":[],"docomo":"E660","au":"E4AF","softbank":"E159","google":"FE7E6","image":"1f68c.png","sheet_x":29,"sheet_y":24,"short_name":"bus","short_names":["bus"],"text":null,"texts":null,"category":"Places","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"joy":{"name":"Face with Tears of Joy","unified":"1F602","variations":[],"docomo":"E72A","au":"EB64","softbank":"E412","google":"FE334","image":"1f602.png","sheet_x":26,"sheet_y":17,"short_name":"joy","short_names":["joy"],"text":null,"texts":null,"category":"People","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"computer":{"name":"Personal Computer","unified":"1F4BB","variations":[],"docomo":"E716","au":"E5B8","softbank":"E00C","google":"FE538","image":"1f4bb.png","sheet_x":20,"sheet_y":39,"short_name":"computer","short_names":["computer"],"text":null,"texts":null,"category":"Objects","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tangerine":{"name":"Tangerine","unified":"1F34A","variations":[],"docomo":null,"au":"EABA","softbank":"E346","google":"FE052","image":"1f34a.png","sheet_x":7,"sheet_y":11,"short_name":"tangerine","short_names":["tangerine"],"text":null,"texts":null,"category":"Foods","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"baseball":{"name":"Baseball","unified":"26BE","variations":["26BE-FE0F"],"docomo":"E653","au":"E4BA","softbank":"E016","google":"FE7D1","image":"26be.png","sheet_x":2,"sheet_y":19,"short_name":"baseball","short_names":["baseball"],"text":null,"texts":null,"category":"Activity","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-dz":{"name":"Regional Indicator Symbol Letters Dz","unified":"1F1E9-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ff.png","sheet_x":34,"sheet_y":15,"short_name":"flag-dz","short_names":["flag-dz"],"text":null,"texts":null,"category":"Flags","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tennis":{"name":"Tennis Racquet and Ball","unified":"1F3BE","variations":[],"docomo":"E655","au":"E4B7","softbank":"E015","google":"FE7D3","image":"1f3be.png","sheet_x":10,"sheet_y":4,"short_name":"tennis","short_names":["tennis"],"text":null,"texts":null,"category":"Activity","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"trolleybus":{"name":"Trolleybus","unified":"1F68E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68e.png","sheet_x":29,"sheet_y":26,"short_name":"trolleybus","short_names":["trolleybus"],"text":null,"texts":null,"category":"Places","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"keyboard":{"name":"Keyboard","unified":"2328","variations":["2328-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2328.png","sheet_x":0,"sheet_y":16,"short_name":"keyboard","short_names":["keyboard"],"text":null,"texts":null,"category":"Objects","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rabbit":{"name":"Rabbit Face","unified":"1F430","variations":[],"docomo":null,"au":"E4D7","softbank":"E52C","google":"FE1D2","image":"1f430.png","sheet_x":13,"sheet_y":12,"short_name":"rabbit","short_names":["rabbit"],"text":null,"texts":null,"category":"Nature","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-as":{"name":"Regional Indicator Symbol Letters As","unified":"1F1E6-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f8.png","sheet_x":33,"sheet_y":3,"short_name":"flag-as","short_names":["flag-as"],"text":null,"texts":null,"category":"Flags","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lemon":{"name":"Lemon","unified":"1F34B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f34b.png","sheet_x":7,"sheet_y":12,"short_name":"lemon","short_names":["lemon"],"text":null,"texts":null,"category":"Foods","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"purple_heart":{"name":"Purple Heart","unified":"1F49C","variations":[],"docomo":"E6EC","au":"EAAA","softbank":"E32D","google":"FEB16","image":"1f49c.png","sheet_x":20,"sheet_y":3,"short_name":"purple_heart","short_names":["purple_heart"],"text":"<3","texts":null,"category":"Symbols","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smiley":{"name":"Smiling Face with Open Mouth","unified":"1F603","variations":[],"docomo":"E6F0","au":"E471","softbank":"E057","google":"FE330","image":"1f603.png","sheet_x":26,"sheet_y":18,"short_name":"smiley","short_names":["smiley"],"text":":)","texts":["=)","=-)"],"category":"People","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"desktop_computer":{"name":"Desktop Computer","unified":"1F5A5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5a5.png","sheet_x":25,"sheet_y":31,"short_name":"desktop_computer","short_names":["desktop_computer"],"text":null,"texts":null,"category":"Objects","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"racing_car":{"name":"Racing Car","unified":"1F3CE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ce.png","sheet_x":10,"sheet_y":40,"short_name":"racing_car","short_names":["racing_car"],"text":null,"texts":null,"category":"Places","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"volleyball":{"name":"Volleyball","unified":"1F3D0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d0.png","sheet_x":11,"sheet_y":1,"short_name":"volleyball","short_names":["volleyball"],"text":null,"texts":null,"category":"Activity","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"banana":{"name":"Banana","unified":"1F34C","variations":[],"docomo":"E744","au":"EB35","softbank":null,"google":"FE050","image":"1f34c.png","sheet_x":7,"sheet_y":13,"short_name":"banana","short_names":["banana"],"text":null,"texts":null,"category":"Foods","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bear":{"name":"Bear Face","unified":"1F43B","variations":[],"docomo":null,"au":"E5C1","softbank":"E051","google":"FE1C1","image":"1f43b.png","sheet_x":13,"sheet_y":23,"short_name":"bear","short_names":["bear"],"text":null,"texts":null,"category":"Nature","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smile":{"name":"Smiling Face with Open Mouth and Smiling Eyes","unified":"1F604","variations":[],"docomo":"E6F0","au":"E471","softbank":"E415","google":"FE338","image":"1f604.png","sheet_x":26,"sheet_y":19,"short_name":"smile","short_names":["smile"],"text":":)","texts":["C:","c:",":D",":-D"],"category":"People","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ad":{"name":"Regional Indicator Symbol Letters Ad","unified":"1F1E6-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e9.png","sheet_x":32,"sheet_y":34,"short_name":"flag-ad","short_names":["flag-ad"],"text":null,"texts":null,"category":"Flags","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"broken_heart":{"name":"Broken Heart","unified":"1F494","variations":[],"docomo":"E6EE","au":"E477","softbank":"E023","google":"FEB0E","image":"1f494.png","sheet_x":19,"sheet_y":36,"short_name":"broken_heart","short_names":["broken_heart"],"text":"",":->"],"category":"People","sort_order":8,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"koala":{"name":"Koala","unified":"1F428","variations":[],"docomo":null,"au":"EB20","softbank":"E527","google":"FE1CD","image":"1f428.png","sheet_x":13,"sheet_y":4,"short_name":"koala","short_names":["koala"],"text":null,"texts":null,"category":"Nature","sort_order":8,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-aq":{"name":"Regional Indicator Symbol Letters Aq","unified":"1F1E6-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f6.png","sheet_x":33,"sheet_y":1,"short_name":"flag-aq","short_names":["flag-aq"],"text":null,"texts":null,"category":"Flags","sort_order":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"fire_engine":{"name":"Fire Engine","unified":"1F692","variations":[],"docomo":null,"au":"EADF","softbank":"E430","google":"FE7F2","image":"1f692.png","sheet_x":29,"sheet_y":30,"short_name":"fire_engine","short_names":["fire_engine"],"text":null,"texts":null,"category":"Places","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"revolving_hearts":{"name":"Revolving Hearts","unified":"1F49E","variations":[],"docomo":"E6ED","au":"E5AF","softbank":"E327","google":"FEB18","image":"1f49e.png","sheet_x":20,"sheet_y":5,"short_name":"revolving_hearts","short_names":["revolving_hearts"],"text":null,"texts":null,"category":"Symbols","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"golf":{"name":"Flag in Hole","unified":"26F3","variations":["26F3-FE0F"],"docomo":"E654","au":"E599","softbank":"E014","google":"FE7D2","image":"26f3.png","sheet_x":2,"sheet_y":33,"short_name":"golf","short_names":["golf"],"text":null,"texts":null,"category":"Activity","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"innocent":{"name":"Smiling Face with Halo","unified":"1F607","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f607.png","sheet_x":26,"sheet_y":22,"short_name":"innocent","short_names":["innocent"],"text":null,"texts":null,"category":"People","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"strawberry":{"name":"Strawberry","unified":"1F353","variations":[],"docomo":null,"au":"E4D4","softbank":"E347","google":"FE053","image":"1f353.png","sheet_x":7,"sheet_y":20,"short_name":"strawberry","short_names":["strawberry"],"text":null,"texts":null,"category":"Foods","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"trackball":{"name":"Trackball","unified":"1F5B2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5b2.png","sheet_x":25,"sheet_y":34,"short_name":"trackball","short_names":["trackball"],"text":null,"texts":null,"category":"Objects","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tiger":{"name":"Tiger Face","unified":"1F42F","variations":[],"docomo":null,"au":"E5C0","softbank":"E050","google":"FE1C0","image":"1f42f.png","sheet_x":13,"sheet_y":11,"short_name":"tiger","short_names":["tiger"],"text":null,"texts":null,"category":"Nature","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lion_face":{"name":"Lion Face","unified":"1F981","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f981.png","sheet_x":32,"sheet_y":16,"short_name":"lion_face","short_names":["lion_face"],"text":null,"texts":null,"category":"Nature","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ag":{"name":"Regional Indicator Symbol Letters Ag","unified":"1F1E6-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ec.png","sheet_x":32,"sheet_y":37,"short_name":"flag-ag","short_names":["flag-ag"],"text":null,"texts":null,"category":"Flags","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"minibus":{"name":"Minibus","unified":"1F690","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f690.png","sheet_x":29,"sheet_y":28,"short_name":"minibus","short_names":["minibus"],"text":null,"texts":null,"category":"Places","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"melon":{"name":"Melon","unified":"1F348","variations":[],"docomo":null,"au":"EB32","softbank":null,"google":"FE057","image":"1f348.png","sheet_x":7,"sheet_y":9,"short_name":"melon","short_names":["melon"],"text":null,"texts":null,"category":"Foods","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wink":{"name":"Winking Face","unified":"1F609","variations":[],"docomo":"E729","au":"E5C3","softbank":"E405","google":"FE347","image":"1f609.png","sheet_x":26,"sheet_y":24,"short_name":"wink","short_names":["wink"],"text":";)","texts":[";)",";-)"],"category":"People","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"golfer":{"name":"Golfer","unified":"1F3CC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cc.png","sheet_x":10,"sheet_y":38,"short_name":"golfer","short_names":["golfer"],"text":null,"texts":null,"category":"Activity","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heartbeat":{"name":"Beating Heart","unified":"1F493","variations":[],"docomo":"E6ED","au":"EB75","softbank":"E327","google":"FEB0D","image":"1f493.png","sheet_x":19,"sheet_y":35,"short_name":"heartbeat","short_names":["heartbeat"],"text":null,"texts":null,"category":"Symbols","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"joystick":{"name":"Joystick","unified":"1F579","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f579.png","sheet_x":25,"sheet_y":7,"short_name":"joystick","short_names":["joystick"],"text":null,"texts":null,"category":"Objects","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heartpulse":{"name":"Growing Heart","unified":"1F497","variations":[],"docomo":"E6ED","au":"EB75","softbank":"E328","google":"FEB11","image":"1f497.png","sheet_x":19,"sheet_y":39,"short_name":"heartpulse","short_names":["heartpulse"],"text":null,"texts":null,"category":"Symbols","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ar":{"name":"Regional Indicator Symbol Letters Ar","unified":"1F1E6-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f7.png","sheet_x":33,"sheet_y":2,"short_name":"flag-ar","short_names":["flag-ar"],"text":null,"texts":null,"category":"Flags","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"table_tennis_paddle_and_ball":{"name":"Table Tennis Paddle and Ball","unified":"1F3D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d3.png","sheet_x":11,"sheet_y":4,"short_name":"table_tennis_paddle_and_ball","short_names":["table_tennis_paddle_and_ball"],"text":null,"texts":null,"category":"Activity","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cow":{"name":"Cow Face","unified":"1F42E","variations":[],"docomo":null,"au":"EB21","softbank":"E52B","google":"FE1D1","image":"1f42e.png","sheet_x":13,"sheet_y":10,"short_name":"cow","short_names":["cow"],"text":null,"texts":null,"category":"Nature","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cherries":{"name":"Cherries","unified":"1F352","variations":[],"docomo":"E742","au":"E4D2","softbank":null,"google":"FE04F","image":"1f352.png","sheet_x":7,"sheet_y":19,"short_name":"cherries","short_names":["cherries"],"text":null,"texts":null,"category":"Foods","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"compression":{"name":"Compression","unified":"1F5DC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dc.png","sheet_x":26,"sheet_y":1,"short_name":"compression","short_names":["compression"],"text":null,"texts":null,"category":"Objects","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"truck":{"name":"Delivery Truck","unified":"1F69A","variations":[],"docomo":null,"au":"E4B2","softbank":"E42F","google":"FE7F1","image":"1f69a.png","sheet_x":29,"sheet_y":38,"short_name":"truck","short_names":["truck"],"text":null,"texts":null,"category":"Places","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"blush":{"name":"Smiling Face with Smiling Eyes","unified":"1F60A","variations":[],"docomo":"E6F0","au":"EACD","softbank":"E056","google":"FE335","image":"1f60a.png","sheet_x":26,"sheet_y":25,"short_name":"blush","short_names":["blush"],"text":":)","texts":null,"category":"People","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"slightly_smiling_face":{"name":"Slightly Smiling Face","unified":"1F642","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f642.png","sheet_x":27,"sheet_y":40,"short_name":"slightly_smiling_face","short_names":["slightly_smiling_face"],"text":null,"texts":[":)","(:",":-)"],"category":"People","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pig":{"name":"Pig Face","unified":"1F437","variations":[],"docomo":"E755","au":"E4DE","softbank":"E10B","google":"FE1BF","image":"1f437.png","sheet_x":13,"sheet_y":19,"short_name":"pig","short_names":["pig"],"text":null,"texts":null,"category":"Nature","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sparkling_heart":{"name":"Sparkling Heart","unified":"1F496","variations":[],"docomo":"E6EC","au":"EAA6","softbank":"E327","google":"FEB10","image":"1f496.png","sheet_x":19,"sheet_y":38,"short_name":"sparkling_heart","short_names":["sparkling_heart"],"text":null,"texts":null,"category":"Symbols","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"badminton_racquet_and_shuttlecock":{"name":"Badminton Racquet and Shuttlecock","unified":"1F3F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f8.png","sheet_x":11,"sheet_y":38,"short_name":"badminton_racquet_and_shuttlecock","short_names":["badminton_racquet_and_shuttlecock"],"text":null,"texts":null,"category":"Activity","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"peach":{"name":"Peach","unified":"1F351","variations":[],"docomo":null,"au":"EB39","softbank":null,"google":"FE05A","image":"1f351.png","sheet_x":7,"sheet_y":18,"short_name":"peach","short_names":["peach"],"text":null,"texts":null,"category":"Foods","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"minidisc":{"name":"Minidisc","unified":"1F4BD","variations":[],"docomo":null,"au":"E582","softbank":"E316","google":"FE53C","image":"1f4bd.png","sheet_x":21,"sheet_y":0,"short_name":"minidisc","short_names":["minidisc"],"text":null,"texts":null,"category":"Objects","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"articulated_lorry":{"name":"Articulated Lorry","unified":"1F69B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69b.png","sheet_x":29,"sheet_y":39,"short_name":"articulated_lorry","short_names":["articulated_lorry"],"text":null,"texts":null,"category":"Places","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-am":{"name":"Regional Indicator Symbol Letters Am","unified":"1F1E6-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f2.png","sheet_x":32,"sheet_y":40,"short_name":"flag-am","short_names":["flag-am"],"text":null,"texts":null,"category":"Flags","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ice_hockey_stick_and_puck":{"name":"Ice Hockey Stick and Puck","unified":"1F3D2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d2.png","sheet_x":11,"sheet_y":3,"short_name":"ice_hockey_stick_and_puck","short_names":["ice_hockey_stick_and_puck"],"text":null,"texts":null,"category":"Activity","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pineapple":{"name":"Pineapple","unified":"1F34D","variations":[],"docomo":null,"au":"EB33","softbank":null,"google":"FE058","image":"1f34d.png","sheet_x":7,"sheet_y":14,"short_name":"pineapple","short_names":["pineapple"],"text":null,"texts":null,"category":"Foods","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-aw":{"name":"Regional Indicator Symbol Letters Aw","unified":"1F1E6-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fc.png","sheet_x":33,"sheet_y":6,"short_name":"flag-aw","short_names":["flag-aw"],"text":null,"texts":null,"category":"Flags","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pig_nose":{"name":"Pig Nose","unified":"1F43D","variations":[],"docomo":"E755","au":"EB48","softbank":"E10B","google":"FE1E0","image":"1f43d.png","sheet_x":13,"sheet_y":25,"short_name":"pig_nose","short_names":["pig_nose"],"text":null,"texts":null,"category":"Nature","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"floppy_disk":{"name":"Floppy Disk","unified":"1F4BE","variations":[],"docomo":null,"au":"E562","softbank":"E316","google":"FE53D","image":"1f4be.png","sheet_x":21,"sheet_y":1,"short_name":"floppy_disk","short_names":["floppy_disk"],"text":null,"texts":null,"category":"Objects","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tractor":{"name":"Tractor","unified":"1F69C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69c.png","sheet_x":29,"sheet_y":40,"short_name":"tractor","short_names":["tractor"],"text":null,"texts":null,"category":"Places","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"upside_down_face":{"name":"Upside-Down Face","unified":"1F643","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f643.png","sheet_x":28,"sheet_y":0,"short_name":"upside_down_face","short_names":["upside_down_face"],"text":null,"texts":null,"category":"People","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cupid":{"name":"Heart with Arrow","unified":"1F498","variations":[],"docomo":"E6EC","au":"E4EA","softbank":"E329","google":"FEB12","image":"1f498.png","sheet_x":19,"sheet_y":40,"short_name":"cupid","short_names":["cupid"],"text":null,"texts":null,"category":"Symbols","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cd":{"name":"Optical Disc","unified":"1F4BF","variations":[],"docomo":"E68C","au":"E50C","softbank":"E126","google":"FE81D","image":"1f4bf.png","sheet_x":21,"sheet_y":2,"short_name":"cd","short_names":["cd"],"text":null,"texts":null,"category":"Objects","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gift_heart":{"name":"Heart with Ribbon","unified":"1F49D","variations":[],"docomo":"E6EC","au":"EB54","softbank":"E437","google":"FEB17","image":"1f49d.png","sheet_x":20,"sheet_y":4,"short_name":"gift_heart","short_names":["gift_heart"],"text":null,"texts":null,"category":"Symbols","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-au":{"name":"Regional Indicator Symbol Letters Au","unified":"1F1E6-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fa.png","sheet_x":33,"sheet_y":5,"short_name":"flag-au","short_names":["flag-au"],"text":null,"texts":null,"category":"Flags","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"field_hockey_stick_and_ball":{"name":"Field Hockey Stick and Ball","unified":"1F3D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d1.png","sheet_x":11,"sheet_y":2,"short_name":"field_hockey_stick_and_ball","short_names":["field_hockey_stick_and_ball"],"text":null,"texts":null,"category":"Activity","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tomato":{"name":"Tomato","unified":"1F345","variations":[],"docomo":null,"au":"EABB","softbank":"E349","google":"FE055","image":"1f345.png","sheet_x":7,"sheet_y":6,"short_name":"tomato","short_names":["tomato"],"text":null,"texts":null,"category":"Foods","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"racing_motorcycle":{"name":"Racing Motorcycle","unified":"1F3CD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cd.png","sheet_x":10,"sheet_y":39,"short_name":"racing_motorcycle","short_names":["racing_motorcycle"],"text":null,"texts":null,"category":"Places","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"relaxed":{"name":"White Smiling Face","unified":"263A","variations":["263A-FE0F"],"docomo":"E6F0","au":"E4FB","softbank":"E414","google":"FE336","image":"263a.png","sheet_x":1,"sheet_y":25,"short_name":"relaxed","short_names":["relaxed"],"text":null,"texts":null,"category":"People","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"frog":{"name":"Frog Face","unified":"1F438","variations":[],"docomo":null,"au":"E4DA","softbank":"E531","google":"FE1D7","image":"1f438.png","sheet_x":13,"sheet_y":20,"short_name":"frog","short_names":["frog"],"text":null,"texts":null,"category":"Nature","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cricket_bat_and_ball":{"name":"Cricket Bat and Ball","unified":"1F3CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cf.png","sheet_x":11,"sheet_y":0,"short_name":"cricket_bat_and_ball","short_names":["cricket_bat_and_ball"],"text":null,"texts":null,"category":"Activity","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dvd":{"name":"Dvd","unified":"1F4C0","variations":[],"docomo":"E68C","au":"E50C","softbank":"E127","google":"FE81E","image":"1f4c0.png","sheet_x":21,"sheet_y":3,"short_name":"dvd","short_names":["dvd"],"text":null,"texts":null,"category":"Objects","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"octopus":{"name":"Octopus","unified":"1F419","variations":[],"docomo":null,"au":"E5C7","softbank":"E10A","google":"FE1C5","image":"1f419.png","sheet_x":12,"sheet_y":30,"short_name":"octopus","short_names":["octopus"],"text":null,"texts":null,"category":"Nature","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bike":{"name":"Bicycle","unified":"1F6B2","variations":[],"docomo":"E71D","au":"E4AE","softbank":"E136","google":"FE7EB","image":"1f6b2.png","sheet_x":30,"sheet_y":26,"short_name":"bike","short_names":["bike"],"text":null,"texts":null,"category":"Places","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heart_decoration":{"name":"Heart Decoration","unified":"1F49F","variations":[],"docomo":"E6F8","au":"E595","softbank":"E204","google":"FEB19","image":"1f49f.png","sheet_x":20,"sheet_y":6,"short_name":"heart_decoration","short_names":["heart_decoration"],"text":null,"texts":null,"category":"Symbols","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"yum":{"name":"Face Savouring Delicious Food","unified":"1F60B","variations":[],"docomo":"E752","au":"EACD","softbank":"E056","google":"FE32B","image":"1f60b.png","sheet_x":26,"sheet_y":26,"short_name":"yum","short_names":["yum"],"text":null,"texts":null,"category":"People","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eggplant":{"name":"Aubergine","unified":"1F346","variations":[],"docomo":null,"au":"EABC","softbank":"E34A","google":"FE056","image":"1f346.png","sheet_x":7,"sheet_y":7,"short_name":"eggplant","short_names":["eggplant"],"text":null,"texts":null,"category":"Foods","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-at":{"name":"Regional Indicator Symbol Letters at","unified":"1F1E6-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f9.png","sheet_x":33,"sheet_y":4,"short_name":"flag-at","short_names":["flag-at"],"text":null,"texts":null,"category":"Flags","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rotating_light":{"name":"Police Cars Revolving Light","unified":"1F6A8","variations":[],"docomo":null,"au":"EB73","softbank":"E432","google":"FE7F9","image":"1f6a8.png","sheet_x":30,"sheet_y":16,"short_name":"rotating_light","short_names":["rotating_light"],"text":null,"texts":null,"category":"Places","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"monkey_face":{"name":"Monkey Face","unified":"1F435","variations":[],"docomo":null,"au":"E4D9","softbank":"E109","google":"FE1C4","image":"1f435.png","sheet_x":13,"sheet_y":17,"short_name":"monkey_face","short_names":["monkey_face"],"text":null,"texts":[":o)"],"category":"Nature","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ski":{"name":"Ski and Ski Boot","unified":"1F3BF","variations":[],"docomo":"E657","au":"EAAC","softbank":"E013","google":"FE7D5","image":"1f3bf.png","sheet_x":10,"sheet_y":5,"short_name":"ski","short_names":["ski"],"text":null,"texts":null,"category":"Activity","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hot_pepper":{"name":"Hot Pepper","unified":"1F336","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f336.png","sheet_x":6,"sheet_y":32,"short_name":"hot_pepper","short_names":["hot_pepper"],"text":null,"texts":null,"category":"Foods","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"peace_symbol":{"name":"Peace Symbol","unified":"262E","variations":["262E-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262e.png","sheet_x":1,"sheet_y":21,"short_name":"peace_symbol","short_names":["peace_symbol"],"text":null,"texts":null,"category":"Symbols","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-az":{"name":"Regional Indicator Symbol Letters Az","unified":"1F1E6-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ff.png","sheet_x":33,"sheet_y":8,"short_name":"flag-az","short_names":["flag-az"],"text":null,"texts":null,"category":"Flags","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"relieved":{"name":"Relieved Face","unified":"1F60C","variations":[],"docomo":"E721","au":"EAC5","softbank":"E40A","google":"FE33E","image":"1f60c.png","sheet_x":26,"sheet_y":27,"short_name":"relieved","short_names":["relieved"],"text":null,"texts":null,"category":"People","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"vhs":{"name":"Videocassette","unified":"1F4FC","variations":[],"docomo":null,"au":"E580","softbank":"E129","google":"FE820","image":"1f4fc.png","sheet_x":22,"sheet_y":22,"short_name":"vhs","short_names":["vhs"],"text":null,"texts":null,"category":"Objects","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oncoming_police_car":{"name":"Oncoming Police Car","unified":"1F694","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f694.png","sheet_x":29,"sheet_y":32,"short_name":"oncoming_police_car","short_names":["oncoming_police_car"],"text":null,"texts":null,"category":"Places","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"corn":{"name":"Ear of Maize","unified":"1F33D","variations":[],"docomo":null,"au":"EB36","softbank":null,"google":"FE04A","image":"1f33d.png","sheet_x":6,"sheet_y":39,"short_name":"corn","short_names":["corn"],"text":null,"texts":null,"category":"Foods","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"latin_cross":{"name":"Latin Cross","unified":"271D","variations":["271D-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"271d.png","sheet_x":3,"sheet_y":37,"short_name":"latin_cross","short_names":["latin_cross"],"text":null,"texts":null,"category":"Symbols","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"camera":{"name":"Camera","unified":"1F4F7","variations":[],"docomo":"E681","au":"E515","softbank":"E008","google":"FE4EF","image":"1f4f7.png","sheet_x":22,"sheet_y":17,"short_name":"camera","short_names":["camera"],"text":null,"texts":null,"category":"Objects","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"see_no_evil":{"name":"See-No-Evil Monkey","unified":"1F648","variations":[],"docomo":null,"au":"EB50","softbank":null,"google":"FE354","image":"1f648.png","sheet_x":28,"sheet_y":20,"short_name":"see_no_evil","short_names":["see_no_evil"],"text":null,"texts":null,"category":"Nature","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heart_eyes":{"name":"Smiling Face with Heart-Shaped Eyes","unified":"1F60D","variations":[],"docomo":"E726","au":"E5C4","softbank":"E106","google":"FE327","image":"1f60d.png","sheet_x":26,"sheet_y":28,"short_name":"heart_eyes","short_names":["heart_eyes"],"text":null,"texts":null,"category":"People","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bs":{"name":"Regional Indicator Symbol Letters Bs","unified":"1F1E7-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f8.png","sheet_x":33,"sheet_y":24,"short_name":"flag-bs","short_names":["flag-bs"],"text":null,"texts":null,"category":"Flags","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"skier":{"name":"Skier","unified":"26F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f7.png","sheet_x":2,"sheet_y":36,"short_name":"skier","short_names":["skier"],"text":null,"texts":null,"category":"Activity","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oncoming_bus":{"name":"Oncoming Bus","unified":"1F68D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68d.png","sheet_x":29,"sheet_y":25,"short_name":"oncoming_bus","short_names":["oncoming_bus"],"text":null,"texts":null,"category":"Places","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snowboarder":{"name":"Snowboarder","unified":"1F3C2","variations":[],"docomo":"E712","au":"E4B8","softbank":null,"google":"FE7D8","image":"1f3c2.png","sheet_x":10,"sheet_y":8,"short_name":"snowboarder","short_names":["snowboarder"],"text":null,"texts":null,"category":"Activity","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sweet_potato":{"name":"Roasted Sweet Potato","unified":"1F360","variations":[],"docomo":null,"au":"EB3A","softbank":null,"google":"FE974","image":"1f360.png","sheet_x":7,"sheet_y":33,"short_name":"sweet_potato","short_names":["sweet_potato"],"text":null,"texts":null,"category":"Foods","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hear_no_evil":{"name":"Hear-No-Evil Monkey","unified":"1F649","variations":[],"docomo":null,"au":"EB52","softbank":null,"google":"FE356","image":"1f649.png","sheet_x":28,"sheet_y":21,"short_name":"hear_no_evil","short_names":["hear_no_evil"],"text":null,"texts":null,"category":"Nature","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bh":{"name":"Regional Indicator Symbol Letters Bh","unified":"1F1E7-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ed.png","sheet_x":33,"sheet_y":15,"short_name":"flag-bh","short_names":["flag-bh"],"text":null,"texts":null,"category":"Flags","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"star_and_crescent":{"name":"Star and Crescent","unified":"262A","variations":["262A-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262a.png","sheet_x":1,"sheet_y":20,"short_name":"star_and_crescent","short_names":["star_and_crescent"],"text":null,"texts":null,"category":"Symbols","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kissing_heart":{"name":"Face Throwing a Kiss","unified":"1F618","variations":[],"docomo":"E726","au":"EACF","softbank":"E418","google":"FE32C","image":"1f618.png","sheet_x":26,"sheet_y":39,"short_name":"kissing_heart","short_names":["kissing_heart"],"text":null,"texts":null,"category":"People","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"camera_with_flash":{"name":"Camera with Flash","unified":"1F4F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f8.png","sheet_x":22,"sheet_y":18,"short_name":"camera_with_flash","short_names":["camera_with_flash"],"text":null,"texts":null,"category":"Objects","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ice_skate":{"name":"Ice Skate","unified":"26F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f8.png","sheet_x":2,"sheet_y":37,"short_name":"ice_skate","short_names":["ice_skate"],"text":null,"texts":null,"category":"Activity","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oncoming_automobile":{"name":"Oncoming Automobile","unified":"1F698","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f698.png","sheet_x":29,"sheet_y":36,"short_name":"oncoming_automobile","short_names":["oncoming_automobile"],"text":null,"texts":null,"category":"Places","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"speak_no_evil":{"name":"Speak-No-Evil Monkey","unified":"1F64A","variations":[],"docomo":null,"au":"EB51","softbank":null,"google":"FE355","image":"1f64a.png","sheet_x":28,"sheet_y":22,"short_name":"speak_no_evil","short_names":["speak_no_evil"],"text":null,"texts":null,"category":"Nature","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"honey_pot":{"name":"Honey Pot","unified":"1F36F","variations":[],"docomo":null,"au":"EB59","softbank":null,"google":"FE97E","image":"1f36f.png","sheet_x":8,"sheet_y":7,"short_name":"honey_pot","short_names":["honey_pot"],"text":null,"texts":null,"category":"Foods","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kissing":{"name":"Kissing Face","unified":"1F617","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f617.png","sheet_x":26,"sheet_y":38,"short_name":"kissing","short_names":["kissing"],"text":null,"texts":null,"category":"People","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"video_camera":{"name":"Video Camera","unified":"1F4F9","variations":[],"docomo":"E677","au":"E57E","softbank":"E03D","google":"FE4F9","image":"1f4f9.png","sheet_x":22,"sheet_y":19,"short_name":"video_camera","short_names":["video_camera"],"text":null,"texts":null,"category":"Objects","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"om_symbol":{"name":"Om Symbol","unified":"1F549","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f549.png","sheet_x":24,"sheet_y":5,"short_name":"om_symbol","short_names":["om_symbol"],"text":null,"texts":null,"category":"Symbols","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bd":{"name":"Regional Indicator Symbol Letters Bd","unified":"1F1E7-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e9.png","sheet_x":33,"sheet_y":11,"short_name":"flag-bd","short_names":["flag-bd"],"text":null,"texts":null,"category":"Flags","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"monkey":{"name":"Monkey","unified":"1F412","variations":[],"docomo":null,"au":"E4D9","softbank":"E528","google":"FE1CE","image":"1f412.png","sheet_x":12,"sheet_y":23,"short_name":"monkey","short_names":["monkey"],"text":null,"texts":null,"category":"Nature","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"movie_camera":{"name":"Movie Camera","unified":"1F3A5","variations":[],"docomo":"E677","au":"E517","softbank":"E03D","google":"FE801","image":"1f3a5.png","sheet_x":9,"sheet_y":20,"short_name":"movie_camera","short_names":["movie_camera"],"text":null,"texts":null,"category":"Objects","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oncoming_taxi":{"name":"Oncoming Taxi","unified":"1F696","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f696.png","sheet_x":29,"sheet_y":34,"short_name":"oncoming_taxi","short_names":["oncoming_taxi"],"text":null,"texts":null,"category":"Places","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bb":{"name":"Regional Indicator Symbol Letters Bb","unified":"1F1E7-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e7.png","sheet_x":33,"sheet_y":10,"short_name":"flag-bb","short_names":["flag-bb"],"text":null,"texts":null,"category":"Flags","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kissing_smiling_eyes":{"name":"Kissing Face with Smiling Eyes","unified":"1F619","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f619.png","sheet_x":26,"sheet_y":40,"short_name":"kissing_smiling_eyes","short_names":["kissing_smiling_eyes"],"text":null,"texts":null,"category":"People","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bread":{"name":"Bread","unified":"1F35E","variations":[],"docomo":"E74D","au":"EAAF","softbank":"E339","google":"FE964","image":"1f35e.png","sheet_x":7,"sheet_y":31,"short_name":"bread","short_names":["bread"],"text":null,"texts":null,"category":"Foods","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bow_and_arrow":{"name":"Bow and Arrow","unified":"1F3F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f9.png","sheet_x":11,"sheet_y":39,"short_name":"bow_and_arrow","short_names":["bow_and_arrow"],"text":null,"texts":null,"category":"Activity","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wheel_of_dharma":{"name":"Wheel of Dharma","unified":"2638","variations":["2638-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2638.png","sheet_x":1,"sheet_y":23,"short_name":"wheel_of_dharma","short_names":["wheel_of_dharma"],"text":null,"texts":null,"category":"Symbols","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"aerial_tramway":{"name":"Aerial Tramway","unified":"1F6A1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a1.png","sheet_x":30,"sheet_y":4,"short_name":"aerial_tramway","short_names":["aerial_tramway"],"text":null,"texts":null,"category":"Places","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cheese_wedge":{"name":"Cheese Wedge","unified":"1F9C0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c0.png","sheet_x":32,"sheet_y":20,"short_name":"cheese_wedge","short_names":["cheese_wedge"],"text":null,"texts":null,"category":"Foods","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"film_projector":{"name":"Film Projector","unified":"1F4FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4fd.png","sheet_x":22,"sheet_y":23,"short_name":"film_projector","short_names":["film_projector"],"text":null,"texts":null,"category":"Objects","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fishing_pole_and_fish":{"name":"Fishing Pole and Fish","unified":"1F3A3","variations":[],"docomo":"E751","au":"EB42","softbank":"E019","google":"FE7FF","image":"1f3a3.png","sheet_x":9,"sheet_y":18,"short_name":"fishing_pole_and_fish","short_names":["fishing_pole_and_fish"],"text":null,"texts":null,"category":"Activity","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kissing_closed_eyes":{"name":"Kissing Face with Closed Eyes","unified":"1F61A","variations":[],"docomo":"E726","au":"EACE","softbank":"E417","google":"FE32D","image":"1f61a.png","sheet_x":27,"sheet_y":0,"short_name":"kissing_closed_eyes","short_names":["kissing_closed_eyes"],"text":null,"texts":null,"category":"People","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"star_of_david":{"name":"Star of David","unified":"2721","variations":["2721-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2721.png","sheet_x":3,"sheet_y":38,"short_name":"star_of_david","short_names":["star_of_david"],"text":null,"texts":null,"category":"Symbols","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chicken":{"name":"Chicken","unified":"1F414","variations":[],"docomo":null,"au":"EB23","softbank":"E52E","google":"FE1D4","image":"1f414.png","sheet_x":12,"sheet_y":25,"short_name":"chicken","short_names":["chicken"],"text":null,"texts":null,"category":"Nature","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-by":{"name":"Regional Indicator Symbol Letters by","unified":"1F1E7-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fe.png","sheet_x":33,"sheet_y":28,"short_name":"flag-by","short_names":["flag-by"],"text":null,"texts":null,"category":"Flags","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"six_pointed_star":{"name":"Six Pointed Star with Middle Dot","unified":"1F52F","variations":[],"docomo":null,"au":"EA8F","softbank":"E23E","google":"FE4F8","image":"1f52f.png","sheet_x":23,"sheet_y":31,"short_name":"six_pointed_star","short_names":["six_pointed_star"],"text":null,"texts":null,"category":"Symbols","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"penguin":{"name":"Penguin","unified":"1F427","variations":[],"docomo":"E750","au":"E4DC","softbank":"E055","google":"FE1BC","image":"1f427.png","sheet_x":13,"sheet_y":3,"short_name":"penguin","short_names":["penguin"],"text":null,"texts":null,"category":"Nature","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mountain_cableway":{"name":"Mountain Cableway","unified":"1F6A0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a0.png","sheet_x":30,"sheet_y":3,"short_name":"mountain_cableway","short_names":["mountain_cableway"],"text":null,"texts":null,"category":"Places","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stuck_out_tongue_winking_eye":{"name":"Face with Stuck-out Tongue and Winking Eye","unified":"1F61C","variations":[],"docomo":"E728","au":"E4E7","softbank":"E105","google":"FE329","image":"1f61c.png","sheet_x":27,"sheet_y":2,"short_name":"stuck_out_tongue_winking_eye","short_names":["stuck_out_tongue_winking_eye"],"text":";p","texts":[";p",";-p",";b",";-b",";P",";-P"],"category":"People","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-be":{"name":"Regional Indicator Symbol Letters Be","unified":"1F1E7-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ea.png","sheet_x":33,"sheet_y":12,"short_name":"flag-be","short_names":["flag-be"],"text":null,"texts":null,"category":"Flags","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"film_frames":{"name":"Film Frames","unified":"1F39E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39e.png","sheet_x":9,"sheet_y":13,"short_name":"film_frames","short_names":["film_frames"],"text":null,"texts":null,"category":"Objects","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"poultry_leg":{"name":"Poultry Leg","unified":"1F357","variations":[],"docomo":null,"au":"EB3C","softbank":null,"google":"FE976","image":"1f357.png","sheet_x":7,"sheet_y":24,"short_name":"poultry_leg","short_names":["poultry_leg"],"text":null,"texts":null,"category":"Foods","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rowboat":{"name":"Rowboat","unified":"1F6A3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3.png","sheet_x":30,"sheet_y":6,"short_name":"rowboat","short_names":["rowboat"],"text":null,"texts":null,"category":"Activity","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6A3-1F3FB":{"unified":"1F6A3-1F3FB","image":"1f6a3-1f3fb.png","sheet_x":30,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FC":{"unified":"1F6A3-1F3FC","image":"1f6a3-1f3fc.png","sheet_x":30,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FD":{"unified":"1F6A3-1F3FD","image":"1f6a3-1f3fd.png","sheet_x":30,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FE":{"unified":"1F6A3-1F3FE","image":"1f6a3-1f3fe.png","sheet_x":30,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FF":{"unified":"1F6A3-1F3FF","image":"1f6a3-1f3ff.png","sheet_x":30,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"menorah_with_nine_branches":{"name":"Menorah with Nine Branches","unified":"1F54E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54e.png","sheet_x":24,"sheet_y":10,"short_name":"menorah_with_nine_branches","short_names":["menorah_with_nine_branches"],"text":null,"texts":null,"category":"Symbols","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stuck_out_tongue_closed_eyes":{"name":"Face with Stuck-out Tongue and Tightly-Closed Eyes","unified":"1F61D","variations":[],"docomo":"E728","au":"E4E7","softbank":"E409","google":"FE32A","image":"1f61d.png","sheet_x":27,"sheet_y":3,"short_name":"stuck_out_tongue_closed_eyes","short_names":["stuck_out_tongue_closed_eyes"],"text":null,"texts":null,"category":"People","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bz":{"name":"Regional Indicator Symbol Letters Bz","unified":"1F1E7-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ff.png","sheet_x":33,"sheet_y":29,"short_name":"flag-bz","short_names":["flag-bz"],"text":null,"texts":null,"category":"Flags","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"swimmer":{"name":"Swimmer","unified":"1F3CA","variations":[],"docomo":null,"au":"EADE","softbank":"E42D","google":"FE7DE","image":"1f3ca.png","sheet_x":10,"sheet_y":26,"short_name":"swimmer","short_names":["swimmer"],"text":null,"texts":null,"category":"Activity","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3CA-1F3FB":{"unified":"1F3CA-1F3FB","image":"1f3ca-1f3fb.png","sheet_x":10,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FC":{"unified":"1F3CA-1F3FC","image":"1f3ca-1f3fc.png","sheet_x":10,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FD":{"unified":"1F3CA-1F3FD","image":"1f3ca-1f3fd.png","sheet_x":10,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FE":{"unified":"1F3CA-1F3FE","image":"1f3ca-1f3fe.png","sheet_x":10,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FF":{"unified":"1F3CA-1F3FF","image":"1f3ca-1f3ff.png","sheet_x":10,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"bird":{"name":"Bird","unified":"1F426","variations":[],"docomo":"E74F","au":"E4E0","softbank":"E521","google":"FE1C8","image":"1f426.png","sheet_x":13,"sheet_y":2,"short_name":"bird","short_names":["bird"],"text":null,"texts":null,"category":"Nature","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"telephone_receiver":{"name":"Telephone Receiver","unified":"1F4DE","variations":[],"docomo":"E687","au":"E51E","softbank":"E009","google":"FE524","image":"1f4de.png","sheet_x":21,"sheet_y":33,"short_name":"telephone_receiver","short_names":["telephone_receiver"],"text":null,"texts":null,"category":"Objects","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"meat_on_bone":{"name":"Meat on Bone","unified":"1F356","variations":[],"docomo":null,"au":"E4C4","softbank":null,"google":"FE972","image":"1f356.png","sheet_x":7,"sheet_y":23,"short_name":"meat_on_bone","short_names":["meat_on_bone"],"text":null,"texts":null,"category":"Foods","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"suspension_railway":{"name":"Suspension Railway","unified":"1F69F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69f.png","sheet_x":30,"sheet_y":2,"short_name":"suspension_railway","short_names":["suspension_railway"],"text":null,"texts":null,"category":"Places","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bj":{"name":"Regional Indicator Symbol Letters Bj","unified":"1F1E7-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ef.png","sheet_x":33,"sheet_y":17,"short_name":"flag-bj","short_names":["flag-bj"],"text":null,"texts":null,"category":"Flags","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"yin_yang":{"name":"Yin Yang","unified":"262F","variations":["262F-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262f.png","sheet_x":1,"sheet_y":22,"short_name":"yin_yang","short_names":["yin_yang"],"text":null,"texts":null,"category":"Symbols","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stuck_out_tongue":{"name":"Face with Stuck-out Tongue","unified":"1F61B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61b.png","sheet_x":27,"sheet_y":1,"short_name":"stuck_out_tongue","short_names":["stuck_out_tongue"],"text":":p","texts":[":p",":-p",":P",":-P",":b",":-b"],"category":"People","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"phone":{"name":"Black Telephone","unified":"260E","variations":["260E-FE0F"],"docomo":"E687","au":"E596","softbank":"E009","google":"FE523","image":"260e.png","sheet_x":1,"sheet_y":5,"short_name":"phone","short_names":["phone","telephone"],"text":null,"texts":null,"category":"Objects","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"railway_car":{"name":"Railway Car","unified":"1F683","variations":[],"docomo":"E65B","au":"E4B5","softbank":"E01E","google":"FE7DF","image":"1f683.png","sheet_x":29,"sheet_y":15,"short_name":"railway_car","short_names":["railway_car"],"text":null,"texts":null,"category":"Places","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fried_shrimp":{"name":"Fried Shrimp","unified":"1F364","variations":[],"docomo":null,"au":"EB70","softbank":null,"google":"FE97F","image":"1f364.png","sheet_x":7,"sheet_y":37,"short_name":"fried_shrimp","short_names":["fried_shrimp"],"text":null,"texts":null,"category":"Foods","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"surfer":{"name":"Surfer","unified":"1F3C4","variations":[],"docomo":"E712","au":"EB41","softbank":"E017","google":"FE7DA","image":"1f3c4.png","sheet_x":10,"sheet_y":15,"short_name":"surfer","short_names":["surfer"],"text":null,"texts":null,"category":"Activity","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3C4-1F3FB":{"unified":"1F3C4-1F3FB","image":"1f3c4-1f3fb.png","sheet_x":10,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FC":{"unified":"1F3C4-1F3FC","image":"1f3c4-1f3fc.png","sheet_x":10,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FD":{"unified":"1F3C4-1F3FD","image":"1f3c4-1f3fd.png","sheet_x":10,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FE":{"unified":"1F3C4-1F3FE","image":"1f3c4-1f3fe.png","sheet_x":10,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FF":{"unified":"1F3C4-1F3FF","image":"1f3c4-1f3ff.png","sheet_x":10,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"baby_chick":{"name":"Baby Chick","unified":"1F424","variations":[],"docomo":"E74F","au":"E4E0","softbank":"E523","google":"FE1BA","image":"1f424.png","sheet_x":13,"sheet_y":0,"short_name":"baby_chick","short_names":["baby_chick"],"text":null,"texts":null,"category":"Nature","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"egg":{"name":"Cooking","unified":"1F373","variations":[],"docomo":null,"au":"E4D1","softbank":"E147","google":"FE965","image":"1f373.png","sheet_x":8,"sheet_y":11,"short_name":"egg","short_names":["egg"],"text":null,"texts":null,"category":"Foods","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bm":{"name":"Regional Indicator Symbol Letters Bm","unified":"1F1E7-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f2.png","sheet_x":33,"sheet_y":19,"short_name":"flag-bm","short_names":["flag-bm"],"text":null,"texts":null,"category":"Flags","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hatching_chick":{"name":"Hatching Chick","unified":"1F423","variations":[],"docomo":"E74F","au":"E5DB","softbank":"E523","google":"FE1DD","image":"1f423.png","sheet_x":12,"sheet_y":40,"short_name":"hatching_chick","short_names":["hatching_chick"],"text":null,"texts":null,"category":"Nature","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"train":{"name":"Tram Car","unified":"1F68B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68b.png","sheet_x":29,"sheet_y":23,"short_name":"train","short_names":["train"],"text":null,"texts":null,"category":"Places","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pager":{"name":"Pager","unified":"1F4DF","variations":[],"docomo":"E65A","au":"E59B","softbank":null,"google":"FE522","image":"1f4df.png","sheet_x":21,"sheet_y":34,"short_name":"pager","short_names":["pager"],"text":null,"texts":null,"category":"Objects","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bath":{"name":"Bath","unified":"1F6C0","variations":[],"docomo":"E6F7","au":"E5D8","softbank":"E13F","google":"FE505","image":"1f6c0.png","sheet_x":31,"sheet_y":14,"short_name":"bath","short_names":["bath"],"text":null,"texts":null,"category":"Activity","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6C0-1F3FB":{"unified":"1F6C0-1F3FB","image":"1f6c0-1f3fb.png","sheet_x":31,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FC":{"unified":"1F6C0-1F3FC","image":"1f6c0-1f3fc.png","sheet_x":31,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FD":{"unified":"1F6C0-1F3FD","image":"1f6c0-1f3fd.png","sheet_x":31,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FE":{"unified":"1F6C0-1F3FE","image":"1f6c0-1f3fe.png","sheet_x":31,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FF":{"unified":"1F6C0-1F3FF","image":"1f6c0-1f3ff.png","sheet_x":31,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"money_mouth_face":{"name":"Money-Mouth Face","unified":"1F911","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f911.png","sheet_x":32,"sheet_y":2,"short_name":"money_mouth_face","short_names":["money_mouth_face"],"text":null,"texts":null,"category":"People","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"orthodox_cross":{"name":"Orthodox Cross","unified":"2626","variations":["2626-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2626.png","sheet_x":1,"sheet_y":19,"short_name":"orthodox_cross","short_names":["orthodox_cross"],"text":null,"texts":null,"category":"Symbols","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hatched_chick":{"name":"Front-Facing Baby Chick","unified":"1F425","variations":[],"docomo":"E74F","au":"EB76","softbank":"E523","google":"FE1BB","image":"1f425.png","sheet_x":13,"sheet_y":1,"short_name":"hatched_chick","short_names":["hatched_chick"],"text":null,"texts":null,"category":"Nature","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"place_of_worship":{"name":"Place of Worship","unified":"1F6D0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d0.png","sheet_x":31,"sheet_y":30,"short_name":"place_of_worship","short_names":["place_of_worship"],"text":null,"texts":null,"category":"Symbols","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hamburger":{"name":"Hamburger","unified":"1F354","variations":[],"docomo":"E673","au":"E4D6","softbank":"E120","google":"FE960","image":"1f354.png","sheet_x":7,"sheet_y":21,"short_name":"hamburger","short_names":["hamburger"],"text":null,"texts":null,"category":"Foods","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bt":{"name":"Regional Indicator Symbol Letters Bt","unified":"1F1E7-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f9.png","sheet_x":33,"sheet_y":25,"short_name":"flag-bt","short_names":["flag-bt"],"text":null,"texts":null,"category":"Flags","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fax":{"name":"Fax Machine","unified":"1F4E0","variations":[],"docomo":"E6D0","au":"E520","softbank":"E00B","google":"FE528","image":"1f4e0.png","sheet_x":21,"sheet_y":35,"short_name":"fax","short_names":["fax"],"text":null,"texts":null,"category":"Objects","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"nerd_face":{"name":"Nerd Face","unified":"1F913","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f913.png","sheet_x":32,"sheet_y":4,"short_name":"nerd_face","short_names":["nerd_face"],"text":null,"texts":null,"category":"People","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"monorail":{"name":"Monorail","unified":"1F69D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69d.png","sheet_x":30,"sheet_y":0,"short_name":"monorail","short_names":["monorail"],"text":null,"texts":null,"category":"Places","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"person_with_ball":{"name":"Person with Ball","unified":"26F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9.png","sheet_x":2,"sheet_y":38,"short_name":"person_with_ball","short_names":["person_with_ball"],"text":null,"texts":null,"category":"Activity","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"26F9-1F3FB":{"unified":"26F9-1F3FB","image":"26f9-1f3fb.png","sheet_x":2,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FC":{"unified":"26F9-1F3FC","image":"26f9-1f3fc.png","sheet_x":2,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FD":{"unified":"26F9-1F3FD","image":"26f9-1f3fd.png","sheet_x":3,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FE":{"unified":"26F9-1F3FE","image":"26f9-1f3fe.png","sheet_x":3,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FF":{"unified":"26F9-1F3FF","image":"26f9-1f3ff.png","sheet_x":3,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"weight_lifter":{"name":"Weight Lifter","unified":"1F3CB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cb.png","sheet_x":10,"sheet_y":32,"short_name":"weight_lifter","short_names":["weight_lifter"],"text":null,"texts":null,"category":"Activity","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3CB-1F3FB":{"unified":"1F3CB-1F3FB","image":"1f3cb-1f3fb.png","sheet_x":10,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FC":{"unified":"1F3CB-1F3FC","image":"1f3cb-1f3fc.png","sheet_x":10,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FD":{"unified":"1F3CB-1F3FD","image":"1f3cb-1f3fd.png","sheet_x":10,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FE":{"unified":"1F3CB-1F3FE","image":"1f3cb-1f3fe.png","sheet_x":10,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FF":{"unified":"1F3CB-1F3FF","image":"1f3cb-1f3ff.png","sheet_x":10,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"sunglasses":{"name":"Smiling Face with Sunglasses","unified":"1F60E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f60e.png","sheet_x":26,"sheet_y":29,"short_name":"sunglasses","short_names":["sunglasses"],"text":null,"texts":["8)"],"category":"People","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wolf":{"name":"Wolf Face","unified":"1F43A","variations":[],"docomo":"E6A1","au":"E4E1","softbank":"E52A","google":"FE1D0","image":"1f43a.png","sheet_x":13,"sheet_y":22,"short_name":"wolf","short_names":["wolf"],"text":null,"texts":null,"category":"Nature","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bullettrain_side":{"name":"High-Speed Train","unified":"1F684","variations":[],"docomo":"E65D","au":"E4B0","softbank":"E435","google":"FE7E2","image":"1f684.png","sheet_x":29,"sheet_y":16,"short_name":"bullettrain_side","short_names":["bullettrain_side"],"text":null,"texts":null,"category":"Places","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ophiuchus":{"name":"Ophiuchus","unified":"26CE","variations":[],"docomo":null,"au":"E49B","softbank":"E24B","google":"FE037","image":"26ce.png","sheet_x":2,"sheet_y":23,"short_name":"ophiuchus","short_names":["ophiuchus"],"text":null,"texts":null,"category":"Symbols","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bo":{"name":"Regional Indicator Symbol Letters Bo","unified":"1F1E7-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f4.png","sheet_x":33,"sheet_y":21,"short_name":"flag-bo","short_names":["flag-bo"],"text":null,"texts":null,"category":"Flags","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tv":{"name":"Television","unified":"1F4FA","variations":[],"docomo":"E68A","au":"E502","softbank":"E12A","google":"FE81C","image":"1f4fa.png","sheet_x":22,"sheet_y":20,"short_name":"tv","short_names":["tv"],"text":null,"texts":null,"category":"Objects","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fries":{"name":"French Fries","unified":"1F35F","variations":[],"docomo":null,"au":"EAB1","softbank":"E33B","google":"FE967","image":"1f35f.png","sheet_x":7,"sheet_y":32,"short_name":"fries","short_names":["fries"],"text":null,"texts":null,"category":"Foods","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bicyclist":{"name":"Bicyclist","unified":"1F6B4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4.png","sheet_x":30,"sheet_y":28,"short_name":"bicyclist","short_names":["bicyclist"],"text":null,"texts":null,"category":"Activity","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B4-1F3FB":{"unified":"1F6B4-1F3FB","image":"1f6b4-1f3fb.png","sheet_x":30,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FC":{"unified":"1F6B4-1F3FC","image":"1f6b4-1f3fc.png","sheet_x":30,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FD":{"unified":"1F6B4-1F3FD","image":"1f6b4-1f3fd.png","sheet_x":30,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FE":{"unified":"1F6B4-1F3FE","image":"1f6b4-1f3fe.png","sheet_x":30,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FF":{"unified":"1F6B4-1F3FF","image":"1f6b4-1f3ff.png","sheet_x":30,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"aries":{"name":"Aries","unified":"2648","variations":["2648-FE0F"],"docomo":"E646","au":"E48F","softbank":"E23F","google":"FE02B","image":"2648.png","sheet_x":1,"sheet_y":26,"short_name":"aries","short_names":["aries"],"text":null,"texts":null,"category":"Symbols","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hugging_face":{"name":"Hugging Face","unified":"1F917","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f917.png","sheet_x":32,"sheet_y":8,"short_name":"hugging_face","short_names":["hugging_face"],"text":null,"texts":null,"category":"People","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bq":{"name":"Regional Indicator Symbol Letters Bq","unified":"1F1E7-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f6.png","sheet_x":33,"sheet_y":22,"short_name":"flag-bq","short_names":["flag-bq"],"text":null,"texts":null,"category":"Flags","sort_order":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"bullettrain_front":{"name":"High-Speed Train with Bullet Nose","unified":"1F685","variations":[],"docomo":"E65D","au":"E4B0","softbank":"E01F","google":"FE7E3","image":"1f685.png","sheet_x":29,"sheet_y":17,"short_name":"bullettrain_front","short_names":["bullettrain_front"],"text":null,"texts":null,"category":"Places","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"radio":{"name":"Radio","unified":"1F4FB","variations":[],"docomo":null,"au":"E5B9","softbank":"E128","google":"FE81F","image":"1f4fb.png","sheet_x":22,"sheet_y":21,"short_name":"radio","short_names":["radio"],"text":null,"texts":null,"category":"Objects","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hotdog":{"name":"Hot Dog","unified":"1F32D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32d.png","sheet_x":6,"sheet_y":23,"short_name":"hotdog","short_names":["hotdog"],"text":null,"texts":null,"category":"Foods","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"boar":{"name":"Boar","unified":"1F417","variations":[],"docomo":null,"au":"EB24","softbank":"E52F","google":"FE1D5","image":"1f417.png","sheet_x":12,"sheet_y":28,"short_name":"boar","short_names":["boar"],"text":null,"texts":null,"category":"Nature","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"studio_microphone":{"name":"Studio Microphone","unified":"1F399","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f399.png","sheet_x":9,"sheet_y":10,"short_name":"studio_microphone","short_names":["studio_microphone"],"text":null,"texts":null,"category":"Objects","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pizza":{"name":"Slice of Pizza","unified":"1F355","variations":[],"docomo":null,"au":"EB3B","softbank":null,"google":"FE975","image":"1f355.png","sheet_x":7,"sheet_y":22,"short_name":"pizza","short_names":["pizza"],"text":null,"texts":null,"category":"Foods","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ba":{"name":"Regional Indicator Symbol Letters Ba","unified":"1F1E7-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e6.png","sheet_x":33,"sheet_y":9,"short_name":"flag-ba","short_names":["flag-ba"],"text":null,"texts":null,"category":"Flags","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mountain_bicyclist":{"name":"Mountain Bicyclist","unified":"1F6B5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5.png","sheet_x":30,"sheet_y":34,"short_name":"mountain_bicyclist","short_names":["mountain_bicyclist"],"text":null,"texts":null,"category":"Activity","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B5-1F3FB":{"unified":"1F6B5-1F3FB","image":"1f6b5-1f3fb.png","sheet_x":30,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FC":{"unified":"1F6B5-1F3FC","image":"1f6b5-1f3fc.png","sheet_x":30,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FD":{"unified":"1F6B5-1F3FD","image":"1f6b5-1f3fd.png","sheet_x":30,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FE":{"unified":"1F6B5-1F3FE","image":"1f6b5-1f3fe.png","sheet_x":30,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FF":{"unified":"1F6B5-1F3FF","image":"1f6b5-1f3ff.png","sheet_x":30,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"smirk":{"name":"Smirking Face","unified":"1F60F","variations":[],"docomo":"E72C","au":"EABF","softbank":"E402","google":"FE343","image":"1f60f.png","sheet_x":26,"sheet_y":30,"short_name":"smirk","short_names":["smirk"],"text":null,"texts":null,"category":"People","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"light_rail":{"name":"Light Rail","unified":"1F688","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f688.png","sheet_x":29,"sheet_y":20,"short_name":"light_rail","short_names":["light_rail"],"text":null,"texts":null,"category":"Places","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"horse":{"name":"Horse Face","unified":"1F434","variations":[],"docomo":"E754","au":"E4D8","softbank":"E01A","google":"FE1BE","image":"1f434.png","sheet_x":13,"sheet_y":16,"short_name":"horse","short_names":["horse"],"text":null,"texts":null,"category":"Nature","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"taurus":{"name":"Taurus","unified":"2649","variations":["2649-FE0F"],"docomo":"E647","au":"E490","softbank":"E240","google":"FE02C","image":"2649.png","sheet_x":1,"sheet_y":27,"short_name":"taurus","short_names":["taurus"],"text":null,"texts":null,"category":"Symbols","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gemini":{"name":"Gemini","unified":"264A","variations":["264A-FE0F"],"docomo":"E648","au":"E491","softbank":"E241","google":"FE02D","image":"264a.png","sheet_x":1,"sheet_y":28,"short_name":"gemini","short_names":["gemini"],"text":null,"texts":null,"category":"Symbols","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"horse_racing":{"name":"Horse Racing","unified":"1F3C7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c7.png","sheet_x":10,"sheet_y":23,"short_name":"horse_racing","short_names":["horse_racing"],"text":null,"texts":null,"category":"Activity","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"level_slider":{"name":"Level Slider","unified":"1F39A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39a.png","sheet_x":9,"sheet_y":11,"short_name":"level_slider","short_names":["level_slider"],"text":null,"texts":null,"category":"Objects","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bw":{"name":"Regional Indicator Symbol Letters Bw","unified":"1F1E7-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fc.png","sheet_x":33,"sheet_y":27,"short_name":"flag-bw","short_names":["flag-bw"],"text":null,"texts":null,"category":"Flags","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"unicorn_face":{"name":"Unicorn Face","unified":"1F984","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f984.png","sheet_x":32,"sheet_y":19,"short_name":"unicorn_face","short_names":["unicorn_face"],"text":null,"texts":null,"category":"Nature","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mountain_railway":{"name":"Mountain Railway","unified":"1F69E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69e.png","sheet_x":30,"sheet_y":1,"short_name":"mountain_railway","short_names":["mountain_railway"],"text":null,"texts":null,"category":"Places","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spaghetti":{"name":"Spaghetti","unified":"1F35D","variations":[],"docomo":null,"au":"EAB5","softbank":"E33F","google":"FE96B","image":"1f35d.png","sheet_x":7,"sheet_y":30,"short_name":"spaghetti","short_names":["spaghetti"],"text":null,"texts":null,"category":"Foods","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_mouth":{"name":"Face Without Mouth","unified":"1F636","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636.png","sheet_x":27,"sheet_y":28,"short_name":"no_mouth","short_names":["no_mouth"],"text":null,"texts":null,"category":"People","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-br":{"name":"Regional Indicator Symbol Letters Br","unified":"1F1E7-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f7.png","sheet_x":33,"sheet_y":23,"short_name":"flag-br","short_names":["flag-br"],"text":null,"texts":null,"category":"Flags","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man_in_business_suit_levitating":{"name":"Man in Business Suit Levitating","unified":"1F574","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f574.png","sheet_x":24,"sheet_y":38,"short_name":"man_in_business_suit_levitating","short_names":["man_in_business_suit_levitating"],"text":null,"texts":null,"category":"Activity","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"control_knobs":{"name":"Control Knobs","unified":"1F39B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39b.png","sheet_x":9,"sheet_y":12,"short_name":"control_knobs","short_names":["control_knobs"],"text":null,"texts":null,"category":"Objects","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bee":{"name":"Honeybee","unified":"1F41D","variations":[],"docomo":null,"au":"EB57","softbank":null,"google":"FE1E1","image":"1f41d.png","sheet_x":12,"sheet_y":34,"short_name":"bee","short_names":["bee","honeybee"],"text":null,"texts":null,"category":"Nature","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"neutral_face":{"name":"Neutral Face","unified":"1F610","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f610.png","sheet_x":26,"sheet_y":31,"short_name":"neutral_face","short_names":["neutral_face"],"text":null,"texts":[":|",":-|"],"category":"People","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"steam_locomotive":{"name":"Steam Locomotive","unified":"1F682","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f682.png","sheet_x":29,"sheet_y":14,"short_name":"steam_locomotive","short_names":["steam_locomotive"],"text":null,"texts":null,"category":"Places","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cancer":{"name":"Cancer","unified":"264B","variations":["264B-FE0F"],"docomo":"E649","au":"E492","softbank":"E242","google":"FE02E","image":"264b.png","sheet_x":1,"sheet_y":29,"short_name":"cancer","short_names":["cancer"],"text":null,"texts":null,"category":"Symbols","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"taco":{"name":"Taco","unified":"1F32E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32e.png","sheet_x":6,"sheet_y":24,"short_name":"taco","short_names":["taco"],"text":null,"texts":null,"category":"Foods","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"burrito":{"name":"Burrito","unified":"1F32F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32f.png","sheet_x":6,"sheet_y":25,"short_name":"burrito","short_names":["burrito"],"text":null,"texts":null,"category":"Foods","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"expressionless":{"name":"Expressionless Face","unified":"1F611","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f611.png","sheet_x":26,"sheet_y":32,"short_name":"expressionless","short_names":["expressionless"],"text":null,"texts":null,"category":"People","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"trophy":{"name":"Trophy","unified":"1F3C6","variations":[],"docomo":null,"au":"E5D3","softbank":"E131","google":"FE7DB","image":"1f3c6.png","sheet_x":10,"sheet_y":22,"short_name":"trophy","short_names":["trophy"],"text":null,"texts":null,"category":"Activity","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"train2":{"name":"Train","unified":"1F686","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f686.png","sheet_x":29,"sheet_y":18,"short_name":"train2","short_names":["train2"],"text":null,"texts":null,"category":"Places","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-io":{"name":"Regional Indicator Symbol Letters Io","unified":"1F1EE-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f4.png","sheet_x":35,"sheet_y":21,"short_name":"flag-io","short_names":["flag-io"],"text":null,"texts":null,"category":"Flags","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bug":{"name":"Bug","unified":"1F41B","variations":[],"docomo":null,"au":"EB1E","softbank":"E525","google":"FE1CB","image":"1f41b.png","sheet_x":12,"sheet_y":32,"short_name":"bug","short_names":["bug"],"text":null,"texts":null,"category":"Nature","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stopwatch":{"name":"Stopwatch","unified":"23F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f1.png","sheet_x":0,"sheet_y":26,"short_name":"stopwatch","short_names":["stopwatch"],"text":null,"texts":null,"category":"Objects","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"leo":{"name":"Leo","unified":"264C","variations":["264C-FE0F"],"docomo":"E64A","au":"E493","softbank":"E243","google":"FE02F","image":"264c.png","sheet_x":1,"sheet_y":30,"short_name":"leo","short_names":["leo"],"text":null,"texts":null,"category":"Symbols","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"virgo":{"name":"Virgo","unified":"264D","variations":["264D-FE0F"],"docomo":"E64B","au":"E494","softbank":"E244","google":"FE030","image":"264d.png","sheet_x":1,"sheet_y":31,"short_name":"virgo","short_names":["virgo"],"text":null,"texts":null,"category":"Symbols","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"running_shirt_with_sash":{"name":"Running Shirt with Sash","unified":"1F3BD","variations":[],"docomo":"E652","au":null,"softbank":null,"google":"FE7D0","image":"1f3bd.png","sheet_x":10,"sheet_y":3,"short_name":"running_shirt_with_sash","short_names":["running_shirt_with_sash"],"text":null,"texts":null,"category":"Activity","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-vg":{"name":"Regional Indicator Symbol Letters Vg","unified":"1F1FB-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ec.png","sheet_x":38,"sheet_y":32,"short_name":"flag-vg","short_names":["flag-vg"],"text":null,"texts":null,"category":"Flags","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"metro":{"name":"Metro","unified":"1F687","variations":[],"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E0","image":"1f687.png","sheet_x":29,"sheet_y":19,"short_name":"metro","short_names":["metro"],"text":null,"texts":null,"category":"Places","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"unamused":{"name":"Unamused Face","unified":"1F612","variations":[],"docomo":"E725","au":"EAC9","softbank":"E40E","google":"FE326","image":"1f612.png","sheet_x":26,"sheet_y":33,"short_name":"unamused","short_names":["unamused"],"text":":(","texts":null,"category":"People","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snail":{"name":"Snail","unified":"1F40C","variations":[],"docomo":"E74E","au":"EB7E","softbank":null,"google":"FE1B9","image":"1f40c.png","sheet_x":12,"sheet_y":17,"short_name":"snail","short_names":["snail"],"text":null,"texts":null,"category":"Nature","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"timer_clock":{"name":"Timer Clock","unified":"23F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f2.png","sheet_x":0,"sheet_y":27,"short_name":"timer_clock","short_names":["timer_clock"],"text":null,"texts":null,"category":"Objects","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ramen":{"name":"Steaming Bowl","unified":"1F35C","variations":[],"docomo":"E74C","au":"E5B4","softbank":"E340","google":"FE963","image":"1f35c.png","sheet_x":7,"sheet_y":29,"short_name":"ramen","short_names":["ramen"],"text":null,"texts":null,"category":"Foods","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"beetle":{"name":"Lady Beetle","unified":"1F41E","variations":[],"docomo":null,"au":"EB58","softbank":null,"google":"FE1E2","image":"1f41e.png","sheet_x":12,"sheet_y":35,"short_name":"beetle","short_names":["beetle"],"text":null,"texts":null,"category":"Nature","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"face_with_rolling_eyes":{"name":"Face with Rolling Eyes","unified":"1F644","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f644.png","sheet_x":28,"sheet_y":1,"short_name":"face_with_rolling_eyes","short_names":["face_with_rolling_eyes"],"text":null,"texts":null,"category":"People","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"libra":{"name":"Libra","unified":"264E","variations":["264E-FE0F"],"docomo":"E64C","au":"E495","softbank":"E245","google":"FE031","image":"264e.png","sheet_x":1,"sheet_y":32,"short_name":"libra","short_names":["libra"],"text":null,"texts":null,"category":"Symbols","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stew":{"name":"Pot of Food","unified":"1F372","variations":[],"docomo":null,"au":"EABE","softbank":"E34D","google":"FE970","image":"1f372.png","sheet_x":8,"sheet_y":10,"short_name":"stew","short_names":["stew"],"text":null,"texts":null,"category":"Foods","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sports_medal":{"name":"Sports Medal","unified":"1F3C5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c5.png","sheet_x":10,"sheet_y":21,"short_name":"sports_medal","short_names":["sports_medal"],"text":null,"texts":null,"category":"Activity","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bn":{"name":"Regional Indicator Symbol Letters Bn","unified":"1F1E7-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f3.png","sheet_x":33,"sheet_y":20,"short_name":"flag-bn","short_names":["flag-bn"],"text":null,"texts":null,"category":"Flags","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"alarm_clock":{"name":"Alarm Clock","unified":"23F0","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02D","google":"FE02A","image":"23f0.png","sheet_x":0,"sheet_y":25,"short_name":"alarm_clock","short_names":["alarm_clock"],"text":null,"texts":null,"category":"Objects","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tram":{"name":"Tram","unified":"1F68A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68a.png","sheet_x":29,"sheet_y":22,"short_name":"tram","short_names":["tram"],"text":null,"texts":null,"category":"Places","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fish_cake":{"name":"Fish Cake with Swirl Design","unified":"1F365","variations":[],"docomo":"E643","au":"E4ED","softbank":null,"google":"FE973","image":"1f365.png","sheet_x":7,"sheet_y":38,"short_name":"fish_cake","short_names":["fish_cake"],"text":null,"texts":null,"category":"Foods","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"thinking_face":{"name":"Thinking Face","unified":"1F914","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f914.png","sheet_x":32,"sheet_y":5,"short_name":"thinking_face","short_names":["thinking_face"],"text":null,"texts":null,"category":"People","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"medal":{"name":"Military Medal","unified":"1F396","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f396.png","sheet_x":9,"sheet_y":8,"short_name":"medal","short_names":["medal"],"text":null,"texts":null,"category":"Activity","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mantelpiece_clock":{"name":"Mantelpiece Clock","unified":"1F570","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f570.png","sheet_x":24,"sheet_y":36,"short_name":"mantelpiece_clock","short_names":["mantelpiece_clock"],"text":null,"texts":null,"category":"Objects","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"station":{"name":"Station","unified":"1F689","variations":[],"docomo":null,"au":"EB6D","softbank":"E039","google":"FE7EC","image":"1f689.png","sheet_x":29,"sheet_y":21,"short_name":"station","short_names":["station"],"text":null,"texts":null,"category":"Places","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bg":{"name":"Regional Indicator Symbol Letters Bg","unified":"1F1E7-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ec.png","sheet_x":33,"sheet_y":14,"short_name":"flag-bg","short_names":["flag-bg"],"text":null,"texts":null,"category":"Flags","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ant":{"name":"Ant","unified":"1F41C","variations":[],"docomo":null,"au":"E4DD","softbank":null,"google":"FE1DA","image":"1f41c.png","sheet_x":12,"sheet_y":33,"short_name":"ant","short_names":["ant"],"text":null,"texts":null,"category":"Nature","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scorpius":{"name":"Scorpius","unified":"264F","variations":["264F-FE0F"],"docomo":"E64D","au":"E496","softbank":"E246","google":"FE032","image":"264f.png","sheet_x":1,"sheet_y":33,"short_name":"scorpius","short_names":["scorpius"],"text":null,"texts":null,"category":"Symbols","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sushi":{"name":"Sushi","unified":"1F363","variations":[],"docomo":null,"au":"EAB8","softbank":"E344","google":"FE96E","image":"1f363.png","sheet_x":7,"sheet_y":36,"short_name":"sushi","short_names":["sushi"],"text":null,"texts":null,"category":"Foods","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flushed":{"name":"Flushed Face","unified":"1F633","variations":[],"docomo":"E72A","au":"EAC8","softbank":"E40D","google":"FE32F","image":"1f633.png","sheet_x":27,"sheet_y":25,"short_name":"flushed","short_names":["flushed"],"text":null,"texts":null,"category":"People","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spider":{"name":"Spider","unified":"1F577","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f577.png","sheet_x":25,"sheet_y":5,"short_name":"spider","short_names":["spider"],"text":null,"texts":null,"category":"Nature","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"reminder_ribbon":{"name":"Reminder Ribbon","unified":"1F397","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f397.png","sheet_x":9,"sheet_y":9,"short_name":"reminder_ribbon","short_names":["reminder_ribbon"],"text":null,"texts":null,"category":"Activity","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"helicopter":{"name":"Helicopter","unified":"1F681","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f681.png","sheet_x":29,"sheet_y":13,"short_name":"helicopter","short_names":["helicopter"],"text":null,"texts":null,"category":"Places","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sagittarius":{"name":"Sagittarius","unified":"2650","variations":["2650-FE0F"],"docomo":"E64E","au":"E497","softbank":"E247","google":"FE033","image":"2650.png","sheet_x":1,"sheet_y":34,"short_name":"sagittarius","short_names":["sagittarius"],"text":null,"texts":null,"category":"Symbols","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bf":{"name":"Regional Indicator Symbol Letters Bf","unified":"1F1E7-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1eb.png","sheet_x":33,"sheet_y":13,"short_name":"flag-bf","short_names":["flag-bf"],"text":null,"texts":null,"category":"Flags","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hourglass_flowing_sand":{"name":"Hourglass with Flowing Sand","unified":"23F3","variations":[],"docomo":"E71C","au":"E47C","softbank":null,"google":"FE01B","image":"23f3.png","sheet_x":0,"sheet_y":28,"short_name":"hourglass_flowing_sand","short_names":["hourglass_flowing_sand"],"text":null,"texts":null,"category":"Objects","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"small_airplane":{"name":"Small Airplane","unified":"1F6E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e9.png","sheet_x":31,"sheet_y":37,"short_name":"small_airplane","short_names":["small_airplane"],"text":null,"texts":null,"category":"Places","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rosette":{"name":"Rosette","unified":"1F3F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f5.png","sheet_x":11,"sheet_y":36,"short_name":"rosette","short_names":["rosette"],"text":null,"texts":null,"category":"Activity","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bento":{"name":"Bento Box","unified":"1F371","variations":[],"docomo":null,"au":"EABD","softbank":"E34C","google":"FE96F","image":"1f371.png","sheet_x":8,"sheet_y":9,"short_name":"bento","short_names":["bento"],"text":null,"texts":null,"category":"Foods","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"capricorn":{"name":"Capricorn","unified":"2651","variations":["2651-FE0F"],"docomo":"E64F","au":"E498","softbank":"E248","google":"FE034","image":"2651.png","sheet_x":1,"sheet_y":35,"short_name":"capricorn","short_names":["capricorn"],"text":null,"texts":null,"category":"Symbols","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bi":{"name":"Regional Indicator Symbol Letters Bi","unified":"1F1E7-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ee.png","sheet_x":33,"sheet_y":16,"short_name":"flag-bi","short_names":["flag-bi"],"text":null,"texts":null,"category":"Flags","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"disappointed":{"name":"Disappointed Face","unified":"1F61E","variations":[],"docomo":"E6F2","au":"EAC0","softbank":"E058","google":"FE323","image":"1f61e.png","sheet_x":27,"sheet_y":4,"short_name":"disappointed","short_names":["disappointed"],"text":":(","texts":["):",":(",":-("],"category":"People","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scorpion":{"name":"Scorpion","unified":"1F982","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f982.png","sheet_x":32,"sheet_y":17,"short_name":"scorpion","short_names":["scorpion"],"text":null,"texts":null,"category":"Nature","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hourglass":{"name":"Hourglass","unified":"231B","variations":["231B-FE0F"],"docomo":"E71C","au":"E57B","softbank":null,"google":"FE01C","image":"231b.png","sheet_x":0,"sheet_y":15,"short_name":"hourglass","short_names":["hourglass"],"text":null,"texts":null,"category":"Objects","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crab":{"name":"Crab","unified":"1F980","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f980.png","sheet_x":32,"sheet_y":15,"short_name":"crab","short_names":["crab"],"text":null,"texts":null,"category":"Nature","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"satellite_antenna":{"name":"Satellite Antenna","unified":"1F4E1","variations":[],"docomo":null,"au":"E4A8","softbank":"E14B","google":"FE531","image":"1f4e1.png","sheet_x":21,"sheet_y":36,"short_name":"satellite_antenna","short_names":["satellite_antenna"],"text":null,"texts":null,"category":"Objects","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"airplane":{"name":"Airplane","unified":"2708","variations":["2708-FE0F"],"docomo":"E662","au":"E4B3","softbank":"E01D","google":"FE7E9","image":"2708.png","sheet_x":3,"sheet_y":7,"short_name":"airplane","short_names":["airplane"],"text":null,"texts":null,"category":"Places","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"aquarius":{"name":"Aquarius","unified":"2652","variations":["2652-FE0F"],"docomo":"E650","au":"E499","softbank":"E249","google":"FE035","image":"2652.png","sheet_x":1,"sheet_y":36,"short_name":"aquarius","short_names":["aquarius"],"text":null,"texts":null,"category":"Symbols","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ticket":{"name":"Ticket","unified":"1F3AB","variations":[],"docomo":"E67E","au":"E49E","softbank":"E125","google":"FE807","image":"1f3ab.png","sheet_x":9,"sheet_y":26,"short_name":"ticket","short_names":["ticket"],"text":null,"texts":null,"category":"Activity","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"worried":{"name":"Worried Face","unified":"1F61F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61f.png","sheet_x":27,"sheet_y":5,"short_name":"worried","short_names":["worried"],"text":null,"texts":null,"category":"People","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cv":{"name":"Regional Indicator Symbol Letters Cv","unified":"1F1E8-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fb.png","sheet_x":34,"sheet_y":4,"short_name":"flag-cv","short_names":["flag-cv"],"text":null,"texts":null,"category":"Flags","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"curry":{"name":"Curry and Rice","unified":"1F35B","variations":[],"docomo":null,"au":"EAB6","softbank":"E341","google":"FE96C","image":"1f35b.png","sheet_x":7,"sheet_y":28,"short_name":"curry","short_names":["curry"],"text":null,"texts":null,"category":"Foods","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pisces":{"name":"Pisces","unified":"2653","variations":["2653-FE0F"],"docomo":"E651","au":"E49A","softbank":"E24A","google":"FE036","image":"2653.png","sheet_x":1,"sheet_y":37,"short_name":"pisces","short_names":["pisces"],"text":null,"texts":null,"category":"Symbols","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"airplane_departure":{"name":"Airplane Departure","unified":"1F6EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6eb.png","sheet_x":31,"sheet_y":38,"short_name":"airplane_departure","short_names":["airplane_departure"],"text":null,"texts":null,"category":"Places","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kh":{"name":"Regional Indicator Symbol Letters Kh","unified":"1F1F0-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ed.png","sheet_x":35,"sheet_y":32,"short_name":"flag-kh","short_names":["flag-kh"],"text":null,"texts":null,"category":"Flags","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"battery":{"name":"Battery","unified":"1F50B","variations":[],"docomo":null,"au":"E584","softbank":null,"google":"FE4FC","image":"1f50b.png","sheet_x":22,"sheet_y":36,"short_name":"battery","short_names":["battery"],"text":null,"texts":null,"category":"Objects","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snake":{"name":"Snake","unified":"1F40D","variations":[],"docomo":null,"au":"EB22","softbank":"E52D","google":"FE1D3","image":"1f40d.png","sheet_x":12,"sheet_y":18,"short_name":"snake","short_names":["snake"],"text":null,"texts":null,"category":"Nature","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"angry":{"name":"Angry Face","unified":"1F620","variations":[],"docomo":"E6F1","au":"E472","softbank":"E059","google":"FE320","image":"1f620.png","sheet_x":27,"sheet_y":6,"short_name":"angry","short_names":["angry"],"text":null,"texts":[">:(",">:-("],"category":"People","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rice_ball":{"name":"Rice Ball","unified":"1F359","variations":[],"docomo":"E749","au":"E4D5","softbank":"E342","google":"FE961","image":"1f359.png","sheet_x":7,"sheet_y":26,"short_name":"rice_ball","short_names":["rice_ball"],"text":null,"texts":null,"category":"Foods","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"admission_tickets":{"name":"Admission Tickets","unified":"1F39F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39f.png","sheet_x":9,"sheet_y":14,"short_name":"admission_tickets","short_names":["admission_tickets"],"text":null,"texts":null,"category":"Activity","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"performing_arts":{"name":"Performing Arts","unified":"1F3AD","variations":[],"docomo":null,"au":"E59D","softbank":"E503","google":"FE809","image":"1f3ad.png","sheet_x":9,"sheet_y":28,"short_name":"performing_arts","short_names":["performing_arts"],"text":null,"texts":null,"category":"Activity","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rage":{"name":"Pouting Face","unified":"1F621","variations":[],"docomo":"E724","au":"EB5D","softbank":"E416","google":"FE33D","image":"1f621.png","sheet_x":27,"sheet_y":7,"short_name":"rage","short_names":["rage"],"text":null,"texts":null,"category":"People","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rice":{"name":"Cooked Rice","unified":"1F35A","variations":[],"docomo":"E74C","au":"EAB4","softbank":"E33E","google":"FE96A","image":"1f35a.png","sheet_x":7,"sheet_y":27,"short_name":"rice","short_names":["rice"],"text":null,"texts":null,"category":"Foods","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"airplane_arriving":{"name":"Airplane Arriving","unified":"1F6EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ec.png","sheet_x":31,"sheet_y":39,"short_name":"airplane_arriving","short_names":["airplane_arriving"],"text":null,"texts":null,"category":"Places","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"id":{"name":"Squared Id","unified":"1F194","variations":[],"docomo":"E6D8","au":"EA88","softbank":"E229","google":"FEB81","image":"1f194.png","sheet_x":4,"sheet_y":40,"short_name":"id","short_names":["id"],"text":null,"texts":null,"category":"Symbols","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cm":{"name":"Regional Indicator Symbol Letters Cm","unified":"1F1E8-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f2.png","sheet_x":33,"sheet_y":39,"short_name":"flag-cm","short_names":["flag-cm"],"text":null,"texts":null,"category":"Flags","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"turtle":{"name":"Turtle","unified":"1F422","variations":[],"docomo":null,"au":"E5D4","softbank":null,"google":"FE1DC","image":"1f422.png","sheet_x":12,"sheet_y":39,"short_name":"turtle","short_names":["turtle"],"text":null,"texts":null,"category":"Nature","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"electric_plug":{"name":"Electric Plug","unified":"1F50C","variations":[],"docomo":null,"au":"E589","softbank":null,"google":"FE4FE","image":"1f50c.png","sheet_x":22,"sheet_y":37,"short_name":"electric_plug","short_names":["electric_plug"],"text":null,"texts":null,"category":"Objects","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tropical_fish":{"name":"Tropical Fish","unified":"1F420","variations":[],"docomo":"E751","au":"EB1D","softbank":"E522","google":"FE1C9","image":"1f420.png","sheet_x":12,"sheet_y":37,"short_name":"tropical_fish","short_names":["tropical_fish"],"text":null,"texts":null,"category":"Nature","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bulb":{"name":"Electric Light Bulb","unified":"1F4A1","variations":[],"docomo":"E6FB","au":"E476","softbank":"E10F","google":"FEB56","image":"1f4a1.png","sheet_x":20,"sheet_y":8,"short_name":"bulb","short_names":["bulb"],"text":null,"texts":null,"category":"Objects","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pensive":{"name":"Pensive Face","unified":"1F614","variations":[],"docomo":"E720","au":"EAC0","softbank":"E403","google":"FE340","image":"1f614.png","sheet_x":26,"sheet_y":35,"short_name":"pensive","short_names":["pensive"],"text":null,"texts":null,"category":"People","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rice_cracker":{"name":"Rice Cracker","unified":"1F358","variations":[],"docomo":null,"au":"EAB3","softbank":"E33D","google":"FE969","image":"1f358.png","sheet_x":7,"sheet_y":25,"short_name":"rice_cracker","short_names":["rice_cracker"],"text":null,"texts":null,"category":"Foods","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"art":{"name":"Artist Palette","unified":"1F3A8","variations":[],"docomo":"E67B","au":"E59C","softbank":"E502","google":"FE804","image":"1f3a8.png","sheet_x":9,"sheet_y":23,"short_name":"art","short_names":["art"],"text":null,"texts":null,"category":"Activity","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"boat":{"name":"Sailboat","unified":"26F5","variations":["26F5-FE0F"],"docomo":"E6A3","au":"E4B4","softbank":"E01C","google":"FE7EA","image":"26f5.png","sheet_x":2,"sheet_y":35,"short_name":"boat","short_names":["boat","sailboat"],"text":null,"texts":null,"category":"Places","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"atom_symbol":{"name":"Atom Symbol","unified":"269B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"269b.png","sheet_x":2,"sheet_y":10,"short_name":"atom_symbol","short_names":["atom_symbol"],"text":null,"texts":null,"category":"Symbols","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ca":{"name":"Regional Indicator Symbol Letters Ca","unified":"1F1E8-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e6.png","sheet_x":33,"sheet_y":30,"short_name":"flag-ca","short_names":["flag-ca"],"text":null,"texts":null,"category":"Flags","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oden":{"name":"Oden","unified":"1F362","variations":[],"docomo":null,"au":"EAB7","softbank":"E343","google":"FE96D","image":"1f362.png","sheet_x":7,"sheet_y":35,"short_name":"oden","short_names":["oden"],"text":null,"texts":null,"category":"Foods","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flashlight":{"name":"Electric Torch","unified":"1F526","variations":[],"docomo":"E6FB","au":"E583","softbank":null,"google":"FE4FB","image":"1f526.png","sheet_x":23,"sheet_y":22,"short_name":"flashlight","short_names":["flashlight"],"text":null,"texts":null,"category":"Objects","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"confused":{"name":"Confused Face","unified":"1F615","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f615.png","sheet_x":26,"sheet_y":36,"short_name":"confused","short_names":["confused"],"text":null,"texts":[":\\",":-\\",":/",":-/"],"category":"People","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u7a7a":{"name":"Squared Cjk Unified Ideograph-7a7a","unified":"1F233","variations":[],"docomo":"E739","au":"EA8A","softbank":"E22B","google":"FEB2F","image":"1f233.png","sheet_x":5,"sheet_y":11,"short_name":"u7a7a","short_names":["u7a7a"],"text":null,"texts":null,"category":"Symbols","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"circus_tent":{"name":"Circus Tent","unified":"1F3AA","variations":[],"docomo":"E67D","au":"E59E","softbank":null,"google":"FE806","image":"1f3aa.png","sheet_x":9,"sheet_y":25,"short_name":"circus_tent","short_names":["circus_tent"],"text":null,"texts":null,"category":"Activity","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"motor_boat":{"name":"Motor Boat","unified":"1F6E5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e5.png","sheet_x":31,"sheet_y":36,"short_name":"motor_boat","short_names":["motor_boat"],"text":null,"texts":null,"category":"Places","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ic":{"name":"Regional Indicator Symbol Letters Ic","unified":"1F1EE-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e8.png","sheet_x":35,"sheet_y":15,"short_name":"flag-ic","short_names":["flag-ic"],"text":null,"texts":null,"category":"Flags","sort_order":42,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"fish":{"name":"Fish","unified":"1F41F","variations":[],"docomo":"E751","au":"E49A","softbank":"E019","google":"FE1BD","image":"1f41f.png","sheet_x":12,"sheet_y":36,"short_name":"fish","short_names":["fish"],"text":null,"texts":null,"category":"Nature","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"microphone":{"name":"Microphone","unified":"1F3A4","variations":[],"docomo":"E676","au":"E503","softbank":"E03C","google":"FE800","image":"1f3a4.png","sheet_x":9,"sheet_y":19,"short_name":"microphone","short_names":["microphone"],"text":null,"texts":null,"category":"Activity","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ky":{"name":"Regional Indicator Symbol Letters Ky","unified":"1F1F0-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fe.png","sheet_x":35,"sheet_y":39,"short_name":"flag-ky","short_names":["flag-ky"],"text":null,"texts":null,"category":"Flags","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"candle":{"name":"Candle","unified":"1F56F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f56f.png","sheet_x":24,"sheet_y":35,"short_name":"candle","short_names":["candle"],"text":null,"texts":null,"category":"Objects","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dango":{"name":"Dango","unified":"1F361","variations":[],"docomo":null,"au":"EAB2","softbank":"E33C","google":"FE968","image":"1f361.png","sheet_x":7,"sheet_y":34,"short_name":"dango","short_names":["dango"],"text":null,"texts":null,"category":"Foods","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"slightly_frowning_face":{"name":"Slightly Frowning Face","unified":"1F641","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f641.png","sheet_x":27,"sheet_y":39,"short_name":"slightly_frowning_face","short_names":["slightly_frowning_face"],"text":null,"texts":null,"category":"People","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"blowfish":{"name":"Blowfish","unified":"1F421","variations":[],"docomo":"E751","au":"E4D3","softbank":"E019","google":"FE1D9","image":"1f421.png","sheet_x":12,"sheet_y":38,"short_name":"blowfish","short_names":["blowfish"],"text":null,"texts":null,"category":"Nature","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u5272":{"name":"Squared Cjk Unified Ideograph-5272","unified":"1F239","variations":[],"docomo":null,"au":"EA86","softbank":"E227","google":"FEB3E","image":"1f239.png","sheet_x":5,"sheet_y":17,"short_name":"u5272","short_names":["u5272"],"text":null,"texts":null,"category":"Symbols","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"speedboat":{"name":"Speedboat","unified":"1F6A4","variations":[],"docomo":"E6A3","au":"E4B4","softbank":"E135","google":"FE7EE","image":"1f6a4.png","sheet_x":30,"sheet_y":12,"short_name":"speedboat","short_names":["speedboat"],"text":null,"texts":null,"category":"Places","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_frowning_face":{"name":"White Frowning Face","unified":"2639","variations":["2639-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2639.png","sheet_x":1,"sheet_y":24,"short_name":"white_frowning_face","short_names":["white_frowning_face"],"text":null,"texts":null,"category":"People","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dolphin":{"name":"Dolphin","unified":"1F42C","variations":[],"docomo":null,"au":"EB1B","softbank":"E520","google":"FE1C7","image":"1f42c.png","sheet_x":13,"sheet_y":8,"short_name":"dolphin","short_names":["dolphin","flipper"],"text":null,"texts":null,"category":"Nature","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"radioactive_sign":{"name":"Radioactive Sign","unified":"2622","variations":["2622-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2622.png","sheet_x":1,"sheet_y":17,"short_name":"radioactive_sign","short_names":["radioactive_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"headphones":{"name":"Headphone","unified":"1F3A7","variations":[],"docomo":"E67A","au":"E508","softbank":"E30A","google":"FE803","image":"1f3a7.png","sheet_x":9,"sheet_y":22,"short_name":"headphones","short_names":["headphones"],"text":null,"texts":null,"category":"Activity","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cf":{"name":"Regional Indicator Symbol Letters Cf","unified":"1F1E8-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1eb.png","sheet_x":33,"sheet_y":33,"short_name":"flag-cf","short_names":["flag-cf"],"text":null,"texts":null,"category":"Flags","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ferry":{"name":"Ferry","unified":"26F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f4.png","sheet_x":2,"sheet_y":34,"short_name":"ferry","short_names":["ferry"],"text":null,"texts":null,"category":"Places","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wastebasket":{"name":"Wastebasket","unified":"1F5D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d1.png","sheet_x":25,"sheet_y":39,"short_name":"wastebasket","short_names":["wastebasket"],"text":null,"texts":null,"category":"Objects","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shaved_ice":{"name":"Shaved Ice","unified":"1F367","variations":[],"docomo":null,"au":"EAEA","softbank":"E43F","google":"FE971","image":"1f367.png","sheet_x":7,"sheet_y":40,"short_name":"shaved_ice","short_names":["shaved_ice"],"text":null,"texts":null,"category":"Foods","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"whale":{"name":"Spouting Whale","unified":"1F433","variations":[],"docomo":null,"au":"E470","softbank":"E054","google":"FE1C3","image":"1f433.png","sheet_x":13,"sheet_y":15,"short_name":"whale","short_names":["whale"],"text":null,"texts":null,"category":"Nature","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"oil_drum":{"name":"Oil Drum","unified":"1F6E2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e2.png","sheet_x":31,"sheet_y":33,"short_name":"oil_drum","short_names":["oil_drum"],"text":null,"texts":null,"category":"Objects","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ice_cream":{"name":"Ice Cream","unified":"1F368","variations":[],"docomo":null,"au":"EB4A","softbank":null,"google":"FE977","image":"1f368.png","sheet_x":8,"sheet_y":0,"short_name":"ice_cream","short_names":["ice_cream"],"text":null,"texts":null,"category":"Foods","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"passenger_ship":{"name":"Passenger Ship","unified":"1F6F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f3.png","sheet_x":32,"sheet_y":0,"short_name":"passenger_ship","short_names":["passenger_ship"],"text":null,"texts":null,"category":"Places","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"biohazard_sign":{"name":"Biohazard Sign","unified":"2623","variations":["2623-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2623.png","sheet_x":1,"sheet_y":18,"short_name":"biohazard_sign","short_names":["biohazard_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"musical_score":{"name":"Musical Score","unified":"1F3BC","variations":[],"docomo":"E6FF","au":"EACC","softbank":"E326","google":"FE81A","image":"1f3bc.png","sheet_x":10,"sheet_y":2,"short_name":"musical_score","short_names":["musical_score"],"text":null,"texts":null,"category":"Activity","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"persevere":{"name":"Persevering Face","unified":"1F623","variations":[],"docomo":"E72B","au":"EAC2","softbank":"E406","google":"FE33C","image":"1f623.png","sheet_x":27,"sheet_y":9,"short_name":"persevere","short_names":["persevere"],"text":null,"texts":null,"category":"People","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-td":{"name":"Regional Indicator Symbol Letters Td","unified":"1F1F9-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e9.png","sheet_x":38,"sheet_y":8,"short_name":"flag-td","short_names":["flag-td"],"text":null,"texts":null,"category":"Flags","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"icecream":{"name":"Soft Ice Cream","unified":"1F366","variations":[],"docomo":null,"au":"EAB0","softbank":"E33A","google":"FE966","image":"1f366.png","sheet_x":7,"sheet_y":39,"short_name":"icecream","short_names":["icecream"],"text":null,"texts":null,"category":"Foods","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"whale2":{"name":"Whale","unified":"1F40B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40b.png","sheet_x":12,"sheet_y":16,"short_name":"whale2","short_names":["whale2"],"text":null,"texts":null,"category":"Nature","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"musical_keyboard":{"name":"Musical Keyboard","unified":"1F3B9","variations":[],"docomo":null,"au":"EB40","softbank":null,"google":"FE817","image":"1f3b9.png","sheet_x":9,"sheet_y":40,"short_name":"musical_keyboard","short_names":["musical_keyboard"],"text":null,"texts":null,"category":"Activity","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"money_with_wings":{"name":"Money with Wings","unified":"1F4B8","variations":[],"docomo":null,"au":"EB5B","softbank":null,"google":"FE4E4","image":"1f4b8.png","sheet_x":20,"sheet_y":36,"short_name":"money_with_wings","short_names":["money_with_wings"],"text":null,"texts":null,"category":"Objects","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"confounded":{"name":"Confounded Face","unified":"1F616","variations":[],"docomo":"E6F3","au":"EAC3","softbank":"E407","google":"FE33F","image":"1f616.png","sheet_x":26,"sheet_y":37,"short_name":"confounded","short_names":["confounded"],"text":null,"texts":null,"category":"People","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rocket":{"name":"Rocket","unified":"1F680","variations":[],"docomo":null,"au":"E5C8","softbank":"E10D","google":"FE7ED","image":"1f680.png","sheet_x":29,"sheet_y":12,"short_name":"rocket","short_names":["rocket"],"text":null,"texts":null,"category":"Places","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mobile_phone_off":{"name":"Mobile Phone off","unified":"1F4F4","variations":[],"docomo":null,"au":"EA91","softbank":"E251","google":"FE83A","image":"1f4f4.png","sheet_x":22,"sheet_y":14,"short_name":"mobile_phone_off","short_names":["mobile_phone_off"],"text":null,"texts":null,"category":"Symbols","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cl":{"name":"Regional Indicator Symbol Letters Cl","unified":"1F1E8-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f1.png","sheet_x":33,"sheet_y":38,"short_name":"flag-cl","short_names":["flag-cl"],"text":null,"texts":null,"category":"Flags","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"satellite":{"name":"Satellite","unified":"1F6F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f0.png","sheet_x":31,"sheet_y":40,"short_name":"satellite","short_names":["satellite"],"text":null,"texts":null,"category":"Places","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cn":{"name":"Regional Indicator Symbol Letters Cn","unified":"1F1E8-1F1F3","variations":[],"docomo":null,"au":"EB11","softbank":"E513","google":"FE4ED","image":"1f1e8-1f1f3.png","sheet_x":33,"sheet_y":40,"short_name":"flag-cn","short_names":["flag-cn","cn"],"text":null,"texts":null,"category":"Flags","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crocodile":{"name":"Crocodile","unified":"1F40A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40a.png","sheet_x":12,"sheet_y":15,"short_name":"crocodile","short_names":["crocodile"],"text":null,"texts":null,"category":"Nature","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cake":{"name":"Shortcake","unified":"1F370","variations":[],"docomo":"E74A","au":"E4D0","softbank":"E046","google":"FE962","image":"1f370.png","sheet_x":8,"sheet_y":8,"short_name":"cake","short_names":["cake"],"text":null,"texts":null,"category":"Foods","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dollar":{"name":"Banknote with Dollar Sign","unified":"1F4B5","variations":[],"docomo":"E715","au":"E585","softbank":"E12F","google":"FE4E3","image":"1f4b5.png","sheet_x":20,"sheet_y":33,"short_name":"dollar","short_names":["dollar"],"text":null,"texts":null,"category":"Objects","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"vibration_mode":{"name":"Vibration Mode","unified":"1F4F3","variations":[],"docomo":null,"au":"EA90","softbank":"E250","google":"FE839","image":"1f4f3.png","sheet_x":22,"sheet_y":13,"short_name":"vibration_mode","short_names":["vibration_mode"],"text":null,"texts":null,"category":"Symbols","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tired_face":{"name":"Tired Face","unified":"1F62B","variations":[],"docomo":"E72B","au":"E474","softbank":"E406","google":"FE346","image":"1f62b.png","sheet_x":27,"sheet_y":17,"short_name":"tired_face","short_names":["tired_face"],"text":null,"texts":null,"category":"People","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"saxophone":{"name":"Saxophone","unified":"1F3B7","variations":[],"docomo":null,"au":null,"softbank":"E040","google":"FE815","image":"1f3b7.png","sheet_x":9,"sheet_y":38,"short_name":"saxophone","short_names":["saxophone"],"text":null,"texts":null,"category":"Activity","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cx":{"name":"Regional Indicator Symbol Letters Cx","unified":"1F1E8-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fd.png","sheet_x":34,"sheet_y":6,"short_name":"flag-cx","short_names":["flag-cx"],"text":null,"texts":null,"category":"Flags","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"seat":{"name":"Seat","unified":"1F4BA","variations":[],"docomo":"E6B2","au":null,"softbank":"E11F","google":"FE537","image":"1f4ba.png","sheet_x":20,"sheet_y":38,"short_name":"seat","short_names":["seat"],"text":null,"texts":null,"category":"Places","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"trumpet":{"name":"Trumpet","unified":"1F3BA","variations":[],"docomo":null,"au":"EADC","softbank":"E042","google":"FE818","image":"1f3ba.png","sheet_x":10,"sheet_y":0,"short_name":"trumpet","short_names":["trumpet"],"text":null,"texts":null,"category":"Activity","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"yen":{"name":"Banknote with Yen Sign","unified":"1F4B4","variations":[],"docomo":"E6D6","au":"E57D","softbank":null,"google":"FE4E2","image":"1f4b4.png","sheet_x":20,"sheet_y":32,"short_name":"yen","short_names":["yen"],"text":null,"texts":null,"category":"Objects","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"leopard":{"name":"Leopard","unified":"1F406","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f406.png","sheet_x":12,"sheet_y":11,"short_name":"leopard","short_names":["leopard"],"text":null,"texts":null,"category":"Nature","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u6709":{"name":"Squared Cjk Unified Ideograph-6709","unified":"1F236","variations":[],"docomo":null,"au":null,"softbank":"E215","google":"FEB39","image":"1f236.png","sheet_x":5,"sheet_y":14,"short_name":"u6709","short_names":["u6709"],"text":null,"texts":null,"category":"Symbols","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"birthday":{"name":"Birthday Cake","unified":"1F382","variations":[],"docomo":"E686","au":"E5A0","softbank":"E34B","google":"FE511","image":"1f382.png","sheet_x":8,"sheet_y":26,"short_name":"birthday","short_names":["birthday"],"text":null,"texts":null,"category":"Foods","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"weary":{"name":"Weary Face","unified":"1F629","variations":[],"docomo":"E6F3","au":"EB67","softbank":"E403","google":"FE321","image":"1f629.png","sheet_x":27,"sheet_y":15,"short_name":"weary","short_names":["weary"],"text":null,"texts":null,"category":"People","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tiger2":{"name":"Tiger","unified":"1F405","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f405.png","sheet_x":12,"sheet_y":10,"short_name":"tiger2","short_names":["tiger2"],"text":null,"texts":null,"category":"Nature","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cc":{"name":"Regional Indicator Symbol Letters Cc","unified":"1F1E8-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e8.png","sheet_x":33,"sheet_y":31,"short_name":"flag-cc","short_names":["flag-cc"],"text":null,"texts":null,"category":"Flags","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u7121":{"name":"Squared Cjk Unified Ideograph-7121","unified":"1F21A","variations":["1F21A-FE0F"],"docomo":null,"au":null,"softbank":"E216","google":"FEB3A","image":"1f21a.png","sheet_x":5,"sheet_y":8,"short_name":"u7121","short_names":["u7121"],"text":null,"texts":null,"category":"Symbols","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"euro":{"name":"Banknote with Euro Sign","unified":"1F4B6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b6.png","sheet_x":20,"sheet_y":34,"short_name":"euro","short_names":["euro"],"text":null,"texts":null,"category":"Objects","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"custard":{"name":"Custard","unified":"1F36E","variations":[],"docomo":null,"au":"EB56","softbank":null,"google":"FE97D","image":"1f36e.png","sheet_x":8,"sheet_y":6,"short_name":"custard","short_names":["custard"],"text":null,"texts":null,"category":"Foods","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"triumph":{"name":"Face with Look of Triumph","unified":"1F624","variations":[],"docomo":"E753","au":"EAC1","softbank":"E404","google":"FE328","image":"1f624.png","sheet_x":27,"sheet_y":10,"short_name":"triumph","short_names":["triumph"],"text":null,"texts":null,"category":"People","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"anchor":{"name":"Anchor","unified":"2693","variations":["2693-FE0F"],"docomo":"E661","au":"E4A9","softbank":"E202","google":"FE4C1","image":"2693.png","sheet_x":2,"sheet_y":5,"short_name":"anchor","short_names":["anchor"],"text":null,"texts":null,"category":"Places","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"guitar":{"name":"Guitar","unified":"1F3B8","variations":[],"docomo":null,"au":"E506","softbank":"E041","google":"FE816","image":"1f3b8.png","sheet_x":9,"sheet_y":39,"short_name":"guitar","short_names":["guitar"],"text":null,"texts":null,"category":"Activity","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"violin":{"name":"Violin","unified":"1F3BB","variations":[],"docomo":null,"au":"E507","softbank":null,"google":"FE819","image":"1f3bb.png","sheet_x":10,"sheet_y":1,"short_name":"violin","short_names":["violin"],"text":null,"texts":null,"category":"Activity","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"construction":{"name":"Construction Sign","unified":"1F6A7","variations":[],"docomo":null,"au":"E5D7","softbank":"E137","google":"FE7F8","image":"1f6a7.png","sheet_x":30,"sheet_y":15,"short_name":"construction","short_names":["construction"],"text":null,"texts":null,"category":"Places","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"water_buffalo":{"name":"Water Buffalo","unified":"1F403","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f403.png","sheet_x":12,"sheet_y":8,"short_name":"water_buffalo","short_names":["water_buffalo"],"text":null,"texts":null,"category":"Nature","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"candy":{"name":"Candy","unified":"1F36C","variations":[],"docomo":null,"au":"EB4E","softbank":null,"google":"FE97B","image":"1f36c.png","sheet_x":8,"sheet_y":4,"short_name":"candy","short_names":["candy"],"text":null,"texts":null,"category":"Foods","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pound":{"name":"Banknote with Pound Sign","unified":"1F4B7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b7.png","sheet_x":20,"sheet_y":35,"short_name":"pound","short_names":["pound"],"text":null,"texts":null,"category":"Objects","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-co":{"name":"Regional Indicator Symbol Letters Co","unified":"1F1E8-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f4.png","sheet_x":34,"sheet_y":0,"short_name":"flag-co","short_names":["flag-co"],"text":null,"texts":null,"category":"Flags","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"open_mouth":{"name":"Face with Open Mouth","unified":"1F62E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e.png","sheet_x":27,"sheet_y":20,"short_name":"open_mouth","short_names":["open_mouth"],"text":null,"texts":[":o",":-o",":O",":-O"],"category":"People","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u7533":{"name":"Squared Cjk Unified Ideograph-7533","unified":"1F238","variations":[],"docomo":null,"au":null,"softbank":"E218","google":"FEB3C","image":"1f238.png","sheet_x":5,"sheet_y":16,"short_name":"u7533","short_names":["u7533"],"text":null,"texts":null,"category":"Symbols","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ox":{"name":"Ox","unified":"1F402","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f402.png","sheet_x":12,"sheet_y":7,"short_name":"ox","short_names":["ox"],"text":null,"texts":null,"category":"Nature","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scream":{"name":"Face Screaming in Fear","unified":"1F631","variations":[],"docomo":"E757","au":"E5C5","softbank":"E107","google":"FE341","image":"1f631.png","sheet_x":27,"sheet_y":23,"short_name":"scream","short_names":["scream"],"text":null,"texts":null,"category":"People","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-km":{"name":"Regional Indicator Symbol Letters Km","unified":"1F1F0-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f2.png","sheet_x":35,"sheet_y":34,"short_name":"flag-km","short_names":["flag-km"],"text":null,"texts":null,"category":"Flags","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clapper":{"name":"Clapper Board","unified":"1F3AC","variations":[],"docomo":"E6AC","au":"E4BE","softbank":"E324","google":"FE808","image":"1f3ac.png","sheet_x":9,"sheet_y":27,"short_name":"clapper","short_names":["clapper"],"text":null,"texts":null,"category":"Activity","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u55b6":{"name":"Squared Cjk Unified Ideograph-55b6","unified":"1F23A","variations":[],"docomo":null,"au":"EA8C","softbank":"E22D","google":"FEB41","image":"1f23a.png","sheet_x":5,"sheet_y":18,"short_name":"u55b6","short_names":["u55b6"],"text":null,"texts":null,"category":"Symbols","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fuelpump":{"name":"Fuel Pump","unified":"26FD","variations":["26FD-FE0F"],"docomo":"E66B","au":"E571","softbank":"E03A","google":"FE7F5","image":"26fd.png","sheet_x":3,"sheet_y":4,"short_name":"fuelpump","short_names":["fuelpump"],"text":null,"texts":null,"category":"Places","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"moneybag":{"name":"Money Bag","unified":"1F4B0","variations":[],"docomo":"E715","au":"E4C7","softbank":"E12F","google":"FE4DD","image":"1f4b0.png","sheet_x":20,"sheet_y":28,"short_name":"moneybag","short_names":["moneybag"],"text":null,"texts":null,"category":"Objects","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lollipop":{"name":"Lollipop","unified":"1F36D","variations":[],"docomo":null,"au":"EB4F","softbank":null,"google":"FE97C","image":"1f36d.png","sheet_x":8,"sheet_y":5,"short_name":"lollipop","short_names":["lollipop"],"text":null,"texts":null,"category":"Foods","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"credit_card":{"name":"Credit Card","unified":"1F4B3","variations":[],"docomo":null,"au":"E57C","softbank":null,"google":"FE4E1","image":"1f4b3.png","sheet_x":20,"sheet_y":31,"short_name":"credit_card","short_names":["credit_card"],"text":null,"texts":null,"category":"Objects","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cow2":{"name":"Cow","unified":"1F404","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f404.png","sheet_x":12,"sheet_y":9,"short_name":"cow2","short_names":["cow2"],"text":null,"texts":null,"category":"Nature","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"video_game":{"name":"Video Game","unified":"1F3AE","variations":[],"docomo":"E68B","au":"E4C6","softbank":null,"google":"FE80A","image":"1f3ae.png","sheet_x":9,"sheet_y":29,"short_name":"video_game","short_names":["video_game"],"text":null,"texts":null,"category":"Activity","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"busstop":{"name":"Bus Stop","unified":"1F68F","variations":[],"docomo":null,"au":"E4A7","softbank":"E150","google":"FE7E7","image":"1f68f.png","sheet_x":29,"sheet_y":27,"short_name":"busstop","short_names":["busstop"],"text":null,"texts":null,"category":"Places","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chocolate_bar":{"name":"Chocolate Bar","unified":"1F36B","variations":[],"docomo":null,"au":"EB4D","softbank":null,"google":"FE97A","image":"1f36b.png","sheet_x":8,"sheet_y":3,"short_name":"chocolate_bar","short_names":["chocolate_bar"],"text":null,"texts":null,"category":"Foods","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u6708":{"name":"Squared Cjk Unified Ideograph-6708","unified":"1F237","variations":["1F237-FE0F"],"docomo":null,"au":null,"softbank":"E217","google":"FEB3B","image":"1f237.png","sheet_x":5,"sheet_y":15,"short_name":"u6708","short_names":["u6708"],"text":null,"texts":null,"category":"Symbols","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fearful":{"name":"Fearful Face","unified":"1F628","variations":[],"docomo":"E757","au":"EAC6","softbank":"E40B","google":"FE33B","image":"1f628.png","sheet_x":27,"sheet_y":14,"short_name":"fearful","short_names":["fearful"],"text":null,"texts":null,"category":"People","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cg":{"name":"Regional Indicator Symbol Letters Cg","unified":"1F1E8-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ec.png","sheet_x":33,"sheet_y":34,"short_name":"flag-cg","short_names":["flag-cg"],"text":null,"texts":null,"category":"Flags","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dromedary_camel":{"name":"Dromedary Camel","unified":"1F42A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f42a.png","sheet_x":13,"sheet_y":6,"short_name":"dromedary_camel","short_names":["dromedary_camel"],"text":null,"texts":null,"category":"Nature","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"popcorn":{"name":"Popcorn","unified":"1F37F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37f.png","sheet_x":8,"sheet_y":23,"short_name":"popcorn","short_names":["popcorn"],"text":null,"texts":null,"category":"Foods","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eight_pointed_black_star":{"name":"Eight Pointed Black Star","unified":"2734","variations":["2734-FE0F"],"docomo":"E6F8","au":"E479","softbank":"E205","google":"FEB61","image":"2734.png","sheet_x":4,"sheet_y":0,"short_name":"eight_pointed_black_star","short_names":["eight_pointed_black_star"],"text":null,"texts":null,"category":"Symbols","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gem":{"name":"Gem Stone","unified":"1F48E","variations":[],"docomo":"E71B","au":"E514","softbank":"E035","google":"FE826","image":"1f48e.png","sheet_x":19,"sheet_y":30,"short_name":"gem","short_names":["gem"],"text":null,"texts":null,"category":"Objects","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"space_invader":{"name":"Alien Monster","unified":"1F47E","variations":[],"docomo":null,"au":"E4EC","softbank":"E12B","google":"FE1B1","image":"1f47e.png","sheet_x":18,"sheet_y":25,"short_name":"space_invader","short_names":["space_invader"],"text":null,"texts":null,"category":"Activity","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"vertical_traffic_light":{"name":"Vertical Traffic Light","unified":"1F6A6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a6.png","sheet_x":30,"sheet_y":14,"short_name":"vertical_traffic_light","short_names":["vertical_traffic_light"],"text":null,"texts":null,"category":"Places","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cold_sweat":{"name":"Face with Open Mouth and Cold Sweat","unified":"1F630","variations":[],"docomo":"E723","au":"EACB","softbank":"E40F","google":"FE325","image":"1f630.png","sheet_x":27,"sheet_y":22,"short_name":"cold_sweat","short_names":["cold_sweat"],"text":null,"texts":null,"category":"People","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cd":{"name":"Regional Indicator Symbol Letters Cd","unified":"1F1E8-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e9.png","sheet_x":33,"sheet_y":32,"short_name":"flag-cd","short_names":["flag-cd"],"text":null,"texts":null,"category":"Flags","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ck":{"name":"Regional Indicator Symbol Letters Ck","unified":"1F1E8-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f0.png","sheet_x":33,"sheet_y":37,"short_name":"flag-ck","short_names":["flag-ck"],"text":null,"texts":null,"category":"Flags","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hushed":{"name":"Hushed Face","unified":"1F62F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62f.png","sheet_x":27,"sheet_y":21,"short_name":"hushed","short_names":["hushed"],"text":null,"texts":null,"category":"People","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"traffic_light":{"name":"Horizontal Traffic Light","unified":"1F6A5","variations":[],"docomo":"E66D","au":"E46A","softbank":"E14E","google":"FE7F7","image":"1f6a5.png","sheet_x":30,"sheet_y":13,"short_name":"traffic_light","short_names":["traffic_light"],"text":null,"texts":null,"category":"Places","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"doughnut":{"name":"Doughnut","unified":"1F369","variations":[],"docomo":null,"au":"EB4B","softbank":null,"google":"FE978","image":"1f369.png","sheet_x":8,"sheet_y":1,"short_name":"doughnut","short_names":["doughnut"],"text":null,"texts":null,"category":"Foods","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"camel":{"name":"Bactrian Camel","unified":"1F42B","variations":[],"docomo":null,"au":"EB25","softbank":"E530","google":"FE1D6","image":"1f42b.png","sheet_x":13,"sheet_y":7,"short_name":"camel","short_names":["camel"],"text":null,"texts":null,"category":"Nature","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dart":{"name":"Direct Hit","unified":"1F3AF","variations":[],"docomo":null,"au":"E4C5","softbank":"E130","google":"FE80C","image":"1f3af.png","sheet_x":9,"sheet_y":30,"short_name":"dart","short_names":["dart"],"text":null,"texts":null,"category":"Activity","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scales":{"name":"Scales","unified":"2696","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2696.png","sheet_x":2,"sheet_y":7,"short_name":"scales","short_names":["scales"],"text":null,"texts":null,"category":"Objects","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"vs":{"name":"Squared Vs","unified":"1F19A","variations":[],"docomo":null,"au":"E5D2","softbank":"E12E","google":"FEB32","image":"1f19a.png","sheet_x":5,"sheet_y":5,"short_name":"vs","short_names":["vs"],"text":null,"texts":null,"category":"Symbols","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"elephant":{"name":"Elephant","unified":"1F418","variations":[],"docomo":null,"au":"EB1F","softbank":"E526","google":"FE1CC","image":"1f418.png","sheet_x":12,"sheet_y":29,"short_name":"elephant","short_names":["elephant"],"text":null,"texts":null,"category":"Nature","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wrench":{"name":"Wrench","unified":"1F527","variations":[],"docomo":"E718","au":"E587","softbank":null,"google":"FE4C9","image":"1f527.png","sheet_x":23,"sheet_y":23,"short_name":"wrench","short_names":["wrench"],"text":null,"texts":null,"category":"Objects","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"game_die":{"name":"Game Die","unified":"1F3B2","variations":[],"docomo":null,"au":"E4C8","softbank":null,"google":"FE80F","image":"1f3b2.png","sheet_x":9,"sheet_y":33,"short_name":"game_die","short_names":["game_die"],"text":null,"texts":null,"category":"Activity","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"accept":{"name":"Circled Ideograph Accept","unified":"1F251","variations":[],"docomo":null,"au":"EB01","softbank":null,"google":"FEB50","image":"1f251.png","sheet_x":5,"sheet_y":20,"short_name":"accept","short_names":["accept"],"text":null,"texts":null,"category":"Symbols","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cookie":{"name":"Cookie","unified":"1F36A","variations":[],"docomo":null,"au":"EB4C","softbank":null,"google":"FE979","image":"1f36a.png","sheet_x":8,"sheet_y":2,"short_name":"cookie","short_names":["cookie"],"text":null,"texts":null,"category":"Foods","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cr":{"name":"Regional Indicator Symbol Letters Cr","unified":"1F1E8-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f7.png","sheet_x":34,"sheet_y":2,"short_name":"flag-cr","short_names":["flag-cr"],"text":null,"texts":null,"category":"Flags","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"checkered_flag":{"name":"Chequered Flag","unified":"1F3C1","variations":[],"docomo":"E659","au":"E4B9","softbank":"E132","google":"FE7D7","image":"1f3c1.png","sheet_x":10,"sheet_y":7,"short_name":"checkered_flag","short_names":["checkered_flag"],"text":null,"texts":null,"category":"Places","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"frowning":{"name":"Frowning Face with Open Mouth","unified":"1F626","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f626.png","sheet_x":27,"sheet_y":12,"short_name":"frowning","short_names":["frowning"],"text":null,"texts":null,"category":"People","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_flower":{"name":"White Flower","unified":"1F4AE","variations":[],"docomo":null,"au":"E4F0","softbank":null,"google":"FEB7A","image":"1f4ae.png","sheet_x":20,"sheet_y":26,"short_name":"white_flower","short_names":["white_flower"],"text":null,"texts":null,"category":"Symbols","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ship":{"name":"Ship","unified":"1F6A2","variations":[],"docomo":"E661","au":"EA82","softbank":"E202","google":"FE7E8","image":"1f6a2.png","sheet_x":30,"sheet_y":5,"short_name":"ship","short_names":["ship"],"text":null,"texts":null,"category":"Places","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hammer":{"name":"Hammer","unified":"1F528","variations":[],"docomo":null,"au":"E5CB","softbank":"E116","google":"FE4CA","image":"1f528.png","sheet_x":23,"sheet_y":24,"short_name":"hammer","short_names":["hammer"],"text":null,"texts":null,"category":"Objects","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-hr":{"name":"Regional Indicator Symbol Letters Hr","unified":"1F1ED-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f7.png","sheet_x":35,"sheet_y":12,"short_name":"flag-hr","short_names":["flag-hr"],"text":null,"texts":null,"category":"Flags","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"anguished":{"name":"Anguished Face","unified":"1F627","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f627.png","sheet_x":27,"sheet_y":13,"short_name":"anguished","short_names":["anguished"],"text":null,"texts":["D:"],"category":"People","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"goat":{"name":"Goat","unified":"1F410","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f410.png","sheet_x":12,"sheet_y":21,"short_name":"goat","short_names":["goat"],"text":null,"texts":null,"category":"Nature","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"beer":{"name":"Beer Mug","unified":"1F37A","variations":[],"docomo":"E672","au":"E4C3","softbank":"E047","google":"FE983","image":"1f37a.png","sheet_x":8,"sheet_y":18,"short_name":"beer","short_names":["beer"],"text":null,"texts":null,"category":"Foods","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"slot_machine":{"name":"Slot Machine","unified":"1F3B0","variations":[],"docomo":null,"au":"E46E","softbank":"E133","google":"FE80D","image":"1f3b0.png","sheet_x":9,"sheet_y":31,"short_name":"slot_machine","short_names":["slot_machine"],"text":null,"texts":null,"category":"Activity","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cu":{"name":"Regional Indicator Symbol Letters Cu","unified":"1F1E8-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fa.png","sheet_x":34,"sheet_y":3,"short_name":"flag-cu","short_names":["flag-cu"],"text":null,"texts":null,"category":"Flags","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hammer_and_pick":{"name":"Hammer and Pick","unified":"2692","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2692.png","sheet_x":2,"sheet_y":4,"short_name":"hammer_and_pick","short_names":["hammer_and_pick"],"text":null,"texts":null,"category":"Objects","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"beers":{"name":"Clinking Beer Mugs","unified":"1F37B","variations":[],"docomo":"E672","au":"EA98","softbank":"E30C","google":"FE987","image":"1f37b.png","sheet_x":8,"sheet_y":19,"short_name":"beers","short_names":["beers"],"text":null,"texts":null,"category":"Foods","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ferris_wheel":{"name":"Ferris Wheel","unified":"1F3A1","variations":[],"docomo":null,"au":"E46D","softbank":"E124","google":"FE7FD","image":"1f3a1.png","sheet_x":9,"sheet_y":16,"short_name":"ferris_wheel","short_names":["ferris_wheel"],"text":null,"texts":null,"category":"Places","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ideograph_advantage":{"name":"Circled Ideograph Advantage","unified":"1F250","variations":[],"docomo":null,"au":"E4F7","softbank":"E226","google":"FEB3D","image":"1f250.png","sheet_x":5,"sheet_y":19,"short_name":"ideograph_advantage","short_names":["ideograph_advantage"],"text":null,"texts":null,"category":"Symbols","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ram":{"name":"Ram","unified":"1F40F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40f.png","sheet_x":12,"sheet_y":20,"short_name":"ram","short_names":["ram"],"text":null,"texts":null,"category":"Nature","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cry":{"name":"Crying Face","unified":"1F622","variations":[],"docomo":"E72E","au":"EB69","softbank":"E413","google":"FE339","image":"1f622.png","sheet_x":27,"sheet_y":8,"short_name":"cry","short_names":["cry"],"text":":'(","texts":[":'("],"category":"People","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bowling":{"name":"Bowling","unified":"1F3B3","variations":[],"docomo":null,"au":"EB43","softbank":null,"google":"FE810","image":"1f3b3.png","sheet_x":9,"sheet_y":34,"short_name":"bowling","short_names":["bowling"],"text":null,"texts":null,"category":"Activity","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cw":{"name":"Regional Indicator Symbol Letters Cw","unified":"1F1E8-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fc.png","sheet_x":34,"sheet_y":5,"short_name":"flag-cw","short_names":["flag-cw"],"text":null,"texts":null,"category":"Flags","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"secret":{"name":"Circled Ideograph Secret","unified":"3299","variations":["3299-FE0F"],"docomo":"E734","au":"E4F1","softbank":"E315","google":"FEB2B","image":"3299.png","sheet_x":4,"sheet_y":29,"short_name":"secret","short_names":["secret"],"text":null,"texts":null,"category":"Symbols","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"disappointed_relieved":{"name":"Disappointed but Relieved Face","unified":"1F625","variations":[],"docomo":"E723","au":"E5C6","softbank":"E401","google":"FE345","image":"1f625.png","sheet_x":27,"sheet_y":11,"short_name":"disappointed_relieved","short_names":["disappointed_relieved"],"text":null,"texts":null,"category":"People","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hammer_and_wrench":{"name":"Hammer and Wrench","unified":"1F6E0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e0.png","sheet_x":31,"sheet_y":31,"short_name":"hammer_and_wrench","short_names":["hammer_and_wrench"],"text":null,"texts":null,"category":"Objects","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"roller_coaster":{"name":"Roller Coaster","unified":"1F3A2","variations":[],"docomo":null,"au":"EAE2","softbank":"E433","google":"FE7FE","image":"1f3a2.png","sheet_x":9,"sheet_y":17,"short_name":"roller_coaster","short_names":["roller_coaster"],"text":null,"texts":null,"category":"Places","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sheep":{"name":"Sheep","unified":"1F411","variations":[],"docomo":null,"au":"E48F","softbank":"E529","google":"FE1CF","image":"1f411.png","sheet_x":12,"sheet_y":22,"short_name":"sheep","short_names":["sheep"],"text":null,"texts":null,"category":"Nature","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wine_glass":{"name":"Wine Glass","unified":"1F377","variations":[],"docomo":"E756","au":"E4C1","softbank":"E044","google":"FE986","image":"1f377.png","sheet_x":8,"sheet_y":15,"short_name":"wine_glass","short_names":["wine_glass"],"text":null,"texts":null,"category":"Foods","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"congratulations":{"name":"Circled Ideograph Congratulation","unified":"3297","variations":["3297-FE0F"],"docomo":null,"au":"EA99","softbank":"E30D","google":"FEB43","image":"3297.png","sheet_x":4,"sheet_y":28,"short_name":"congratulations","short_names":["congratulations"],"text":null,"texts":null,"category":"Symbols","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sleepy":{"name":"Sleepy Face","unified":"1F62A","variations":[],"docomo":"E701","au":"EAC4","softbank":"E408","google":"FE342","image":"1f62a.png","sheet_x":27,"sheet_y":16,"short_name":"sleepy","short_names":["sleepy"],"text":null,"texts":null,"category":"People","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"carousel_horse":{"name":"Carousel Horse","unified":"1F3A0","variations":[],"docomo":"E679","au":null,"softbank":null,"google":"FE7FC","image":"1f3a0.png","sheet_x":9,"sheet_y":15,"short_name":"carousel_horse","short_names":["carousel_horse"],"text":null,"texts":null,"category":"Places","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pick":{"name":"Pick","unified":"26CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26cf.png","sheet_x":2,"sheet_y":24,"short_name":"pick","short_names":["pick"],"text":null,"texts":null,"category":"Objects","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cy":{"name":"Regional Indicator Symbol Letters Cy","unified":"1F1E8-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fe.png","sheet_x":34,"sheet_y":7,"short_name":"flag-cy","short_names":["flag-cy"],"text":null,"texts":null,"category":"Flags","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cocktail":{"name":"Cocktail Glass","unified":"1F378","variations":[],"docomo":"E671","au":"E4C2","softbank":"E044","google":"FE982","image":"1f378.png","sheet_x":8,"sheet_y":16,"short_name":"cocktail","short_names":["cocktail"],"text":null,"texts":null,"category":"Foods","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"racehorse":{"name":"Horse","unified":"1F40E","variations":[],"docomo":"E754","au":"E4D8","softbank":"E134","google":"FE7DC","image":"1f40e.png","sheet_x":12,"sheet_y":19,"short_name":"racehorse","short_names":["racehorse"],"text":null,"texts":null,"category":"Nature","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cz":{"name":"Regional Indicator Symbol Letters Cz","unified":"1F1E8-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ff.png","sheet_x":34,"sheet_y":8,"short_name":"flag-cz","short_names":["flag-cz"],"text":null,"texts":null,"category":"Flags","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tropical_drink":{"name":"Tropical Drink","unified":"1F379","variations":[],"docomo":"E671","au":"EB3E","softbank":"E044","google":"FE988","image":"1f379.png","sheet_x":8,"sheet_y":17,"short_name":"tropical_drink","short_names":["tropical_drink"],"text":null,"texts":null,"category":"Foods","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u5408":{"name":"Squared Cjk Unified Ideograph-5408","unified":"1F234","variations":[],"docomo":"E73A","au":null,"softbank":null,"google":"FEB30","image":"1f234.png","sheet_x":5,"sheet_y":12,"short_name":"u5408","short_names":["u5408"],"text":null,"texts":null,"category":"Symbols","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"nut_and_bolt":{"name":"Nut and Bolt","unified":"1F529","variations":[],"docomo":null,"au":"E581","softbank":null,"google":"FE4CB","image":"1f529.png","sheet_x":23,"sheet_y":25,"short_name":"nut_and_bolt","short_names":["nut_and_bolt"],"text":null,"texts":null,"category":"Objects","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sweat":{"name":"Face with Cold Sweat","unified":"1F613","variations":[],"docomo":"E723","au":"E5C6","softbank":"E108","google":"FE344","image":"1f613.png","sheet_x":26,"sheet_y":34,"short_name":"sweat","short_names":["sweat"],"text":null,"texts":null,"category":"People","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"building_construction":{"name":"Building Construction","unified":"1F3D7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d7.png","sheet_x":11,"sheet_y":8,"short_name":"building_construction","short_names":["building_construction"],"text":null,"texts":null,"category":"Places","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pig2":{"name":"Pig","unified":"1F416","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f416.png","sheet_x":12,"sheet_y":27,"short_name":"pig2","short_names":["pig2"],"text":null,"texts":null,"category":"Nature","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sob":{"name":"Loudly Crying Face","unified":"1F62D","variations":[],"docomo":"E72D","au":"E473","softbank":"E411","google":"FE33A","image":"1f62d.png","sheet_x":27,"sheet_y":19,"short_name":"sob","short_names":["sob"],"text":":'(","texts":null,"category":"People","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u6e80":{"name":"Squared Cjk Unified Ideograph-6e80","unified":"1F235","variations":[],"docomo":"E73B","au":"EA89","softbank":"E22A","google":"FEB31","image":"1f235.png","sheet_x":5,"sheet_y":13,"short_name":"u6e80","short_names":["u6e80"],"text":null,"texts":null,"category":"Symbols","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-dk":{"name":"Regional Indicator Symbol Letters Dk","unified":"1F1E9-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f0.png","sheet_x":34,"sheet_y":12,"short_name":"flag-dk","short_names":["flag-dk"],"text":null,"texts":null,"category":"Flags","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gear":{"name":"Gear","unified":"2699","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2699.png","sheet_x":2,"sheet_y":9,"short_name":"gear","short_names":["gear"],"text":null,"texts":null,"category":"Objects","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rat":{"name":"Rat","unified":"1F400","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f400.png","sheet_x":12,"sheet_y":5,"short_name":"rat","short_names":["rat"],"text":null,"texts":null,"category":"Nature","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"champagne":{"name":"Bottle with Popping Cork","unified":"1F37E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37e.png","sheet_x":8,"sheet_y":22,"short_name":"champagne","short_names":["champagne"],"text":null,"texts":null,"category":"Foods","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"foggy":{"name":"Foggy","unified":"1F301","variations":[],"docomo":"E644","au":"E598","softbank":null,"google":"FE006","image":"1f301.png","sheet_x":5,"sheet_y":22,"short_name":"foggy","short_names":["foggy"],"text":null,"texts":null,"category":"Places","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tokyo_tower":{"name":"Tokyo Tower","unified":"1F5FC","variations":[],"docomo":null,"au":"E4C0","softbank":"E509","google":"FE4C4","image":"1f5fc.png","sheet_x":26,"sheet_y":11,"short_name":"tokyo_tower","short_names":["tokyo_tower"],"text":null,"texts":null,"category":"Places","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dizzy_face":{"name":"Dizzy Face","unified":"1F635","variations":[],"docomo":"E6F4","au":"E5AE","softbank":"E406","google":"FE324","image":"1f635.png","sheet_x":27,"sheet_y":27,"short_name":"dizzy_face","short_names":["dizzy_face"],"text":null,"texts":null,"category":"People","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sake":{"name":"Sake Bottle and Cup","unified":"1F376","variations":[],"docomo":"E74B","au":"EA97","softbank":"E30B","google":"FE985","image":"1f376.png","sheet_x":8,"sheet_y":14,"short_name":"sake","short_names":["sake"],"text":null,"texts":null,"category":"Foods","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u7981":{"name":"Squared Cjk Unified Ideograph-7981","unified":"1F232","variations":[],"docomo":"E738","au":null,"softbank":null,"google":"FEB2E","image":"1f232.png","sheet_x":5,"sheet_y":10,"short_name":"u7981","short_names":["u7981"],"text":null,"texts":null,"category":"Symbols","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mouse2":{"name":"Mouse","unified":"1F401","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f401.png","sheet_x":12,"sheet_y":6,"short_name":"mouse2","short_names":["mouse2"],"text":null,"texts":null,"category":"Nature","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-dj":{"name":"Regional Indicator Symbol Letters Dj","unified":"1F1E9-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ef.png","sheet_x":34,"sheet_y":11,"short_name":"flag-dj","short_names":["flag-dj"],"text":null,"texts":null,"category":"Flags","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chains":{"name":"Chains","unified":"26D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26d3.png","sheet_x":2,"sheet_y":26,"short_name":"chains","short_names":["chains"],"text":null,"texts":null,"category":"Objects","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"a":{"name":"Negative Squared Latin Capital Letter a","unified":"1F170","variations":["1F170-FE0F"],"docomo":null,"au":"EB26","softbank":"E532","google":"FE50B","image":"1f170.png","sheet_x":4,"sheet_y":32,"short_name":"a","short_names":["a"],"text":null,"texts":null,"category":"Symbols","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tea":{"name":"Teacup Without Handle","unified":"1F375","variations":[],"docomo":"E71E","au":"EAAE","softbank":"E338","google":"FE984","image":"1f375.png","sheet_x":8,"sheet_y":13,"short_name":"tea","short_names":["tea"],"text":null,"texts":null,"category":"Foods","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gun":{"name":"Pistol","unified":"1F52B","variations":[],"docomo":null,"au":"E50A","softbank":"E113","google":"FE4F5","image":"1f52b.png","sheet_x":23,"sheet_y":27,"short_name":"gun","short_names":["gun"],"text":null,"texts":null,"category":"Objects","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"astonished":{"name":"Astonished Face","unified":"1F632","variations":[],"docomo":"E6F4","au":"EACA","softbank":"E410","google":"FE322","image":"1f632.png","sheet_x":27,"sheet_y":24,"short_name":"astonished","short_names":["astonished"],"text":null,"texts":null,"category":"People","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-dm":{"name":"Regional Indicator Symbol Letters Dm","unified":"1F1E9-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f2.png","sheet_x":34,"sheet_y":13,"short_name":"flag-dm","short_names":["flag-dm"],"text":null,"texts":null,"category":"Flags","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rooster":{"name":"Rooster","unified":"1F413","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f413.png","sheet_x":12,"sheet_y":24,"short_name":"rooster","short_names":["rooster"],"text":null,"texts":null,"category":"Nature","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"factory":{"name":"Factory","unified":"1F3ED","variations":[],"docomo":null,"au":"EAF9","softbank":"E508","google":"FE4C0","image":"1f3ed.png","sheet_x":11,"sheet_y":30,"short_name":"factory","short_names":["factory"],"text":null,"texts":null,"category":"Places","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"coffee":{"name":"Hot Beverage","unified":"2615","variations":["2615-FE0F"],"docomo":"E670","au":"E597","softbank":"E045","google":"FE981","image":"2615.png","sheet_x":1,"sheet_y":8,"short_name":"coffee","short_names":["coffee"],"text":null,"texts":null,"category":"Foods","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bomb":{"name":"Bomb","unified":"1F4A3","variations":[],"docomo":"E6FE","au":"E47A","softbank":"E311","google":"FEB58","image":"1f4a3.png","sheet_x":20,"sheet_y":10,"short_name":"bomb","short_names":["bomb"],"text":null,"texts":null,"category":"Objects","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-do":{"name":"Regional Indicator Symbol Letters Do","unified":"1F1E9-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f4.png","sheet_x":34,"sheet_y":14,"short_name":"flag-do","short_names":["flag-do"],"text":null,"texts":null,"category":"Flags","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fountain":{"name":"Fountain","unified":"26F2","variations":["26F2-FE0F"],"docomo":null,"au":"E5CF","softbank":"E121","google":"FE4BC","image":"26f2.png","sheet_x":2,"sheet_y":32,"short_name":"fountain","short_names":["fountain"],"text":null,"texts":null,"category":"Places","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"turkey":{"name":"Turkey","unified":"1F983","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f983.png","sheet_x":32,"sheet_y":18,"short_name":"turkey","short_names":["turkey"],"text":null,"texts":null,"category":"Nature","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"zipper_mouth_face":{"name":"Zipper-Mouth Face","unified":"1F910","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f910.png","sheet_x":32,"sheet_y":1,"short_name":"zipper_mouth_face","short_names":["zipper_mouth_face"],"text":null,"texts":null,"category":"People","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"b":{"name":"Negative Squared Latin Capital Letter B","unified":"1F171","variations":["1F171-FE0F"],"docomo":null,"au":"EB27","softbank":"E533","google":"FE50C","image":"1f171.png","sheet_x":4,"sheet_y":33,"short_name":"b","short_names":["b"],"text":null,"texts":null,"category":"Symbols","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mask":{"name":"Face with Medical Mask","unified":"1F637","variations":[],"docomo":null,"au":"EAC7","softbank":"E40C","google":"FE32E","image":"1f637.png","sheet_x":27,"sheet_y":29,"short_name":"mask","short_names":["mask"],"text":null,"texts":null,"category":"People","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ec":{"name":"Regional Indicator Symbol Letters Ec","unified":"1F1EA-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e8.png","sheet_x":34,"sheet_y":17,"short_name":"flag-ec","short_names":["flag-ec"],"text":null,"texts":null,"category":"Flags","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ab":{"name":"Negative Squared Ab","unified":"1F18E","variations":[],"docomo":null,"au":"EB29","softbank":"E534","google":"FE50D","image":"1f18e.png","sheet_x":4,"sheet_y":36,"short_name":"ab","short_names":["ab"],"text":null,"texts":null,"category":"Symbols","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rice_scene":{"name":"Moon Viewing Ceremony","unified":"1F391","variations":[],"docomo":null,"au":"EAEF","softbank":"E446","google":"FE017","image":"1f391.png","sheet_x":9,"sheet_y":5,"short_name":"rice_scene","short_names":["rice_scene"],"text":null,"texts":null,"category":"Places","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"baby_bottle":{"name":"Baby Bottle","unified":"1F37C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37c.png","sheet_x":8,"sheet_y":20,"short_name":"baby_bottle","short_names":["baby_bottle"],"text":null,"texts":null,"category":"Foods","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hocho":{"name":"Hocho","unified":"1F52A","variations":[],"docomo":null,"au":"E57F","softbank":null,"google":"FE4FA","image":"1f52a.png","sheet_x":23,"sheet_y":26,"short_name":"hocho","short_names":["hocho","knife"],"text":null,"texts":null,"category":"Objects","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dove_of_peace":{"name":"Dove of Peace","unified":"1F54A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54a.png","sheet_x":24,"sheet_y":6,"short_name":"dove_of_peace","short_names":["dove_of_peace"],"text":null,"texts":null,"category":"Nature","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cl":{"name":"Squared Cl","unified":"1F191","variations":[],"docomo":"E6DB","au":"E5AB","softbank":null,"google":"FEB84","image":"1f191.png","sheet_x":4,"sheet_y":37,"short_name":"cl","short_names":["cl"],"text":null,"texts":null,"category":"Symbols","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dog2":{"name":"Dog","unified":"1F415","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f415.png","sheet_x":12,"sheet_y":26,"short_name":"dog2","short_names":["dog2"],"text":null,"texts":null,"category":"Nature","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fork_and_knife":{"name":"Fork and Knife","unified":"1F374","variations":[],"docomo":"E66F","au":"E4AC","softbank":"E043","google":"FE980","image":"1f374.png","sheet_x":8,"sheet_y":12,"short_name":"fork_and_knife","short_names":["fork_and_knife"],"text":null,"texts":null,"category":"Foods","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dagger_knife":{"name":"Dagger Knife","unified":"1F5E1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e1.png","sheet_x":26,"sheet_y":4,"short_name":"dagger_knife","short_names":["dagger_knife"],"text":null,"texts":null,"category":"Objects","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mountain":{"name":"Mountain","unified":"26F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f0.png","sheet_x":2,"sheet_y":30,"short_name":"mountain","short_names":["mountain"],"text":null,"texts":null,"category":"Places","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"face_with_thermometer":{"name":"Face with Thermometer","unified":"1F912","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f912.png","sheet_x":32,"sheet_y":3,"short_name":"face_with_thermometer","short_names":["face_with_thermometer"],"text":null,"texts":null,"category":"People","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-eg":{"name":"Regional Indicator Symbol Letters Eg","unified":"1F1EA-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ec.png","sheet_x":34,"sheet_y":19,"short_name":"flag-eg","short_names":["flag-eg"],"text":null,"texts":null,"category":"Flags","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"poodle":{"name":"Poodle","unified":"1F429","variations":[],"docomo":"E6A1","au":"E4DF","softbank":"E052","google":"FE1D8","image":"1f429.png","sheet_x":13,"sheet_y":5,"short_name":"poodle","short_names":["poodle"],"text":null,"texts":null,"category":"Nature","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sv":{"name":"Regional Indicator Symbol Letters Sv","unified":"1F1F8-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fb.png","sheet_x":38,"sheet_y":2,"short_name":"flag-sv","short_names":["flag-sv"],"text":null,"texts":null,"category":"Flags","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snow_capped_mountain":{"name":"Snow Capped Mountain","unified":"1F3D4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d4.png","sheet_x":11,"sheet_y":5,"short_name":"snow_capped_mountain","short_names":["snow_capped_mountain"],"text":null,"texts":null,"category":"Places","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"face_with_head_bandage":{"name":"Face with Head-Bandage","unified":"1F915","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f915.png","sheet_x":32,"sheet_y":6,"short_name":"face_with_head_bandage","short_names":["face_with_head_bandage"],"text":null,"texts":null,"category":"People","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"o2":{"name":"Negative Squared Latin Capital Letter O","unified":"1F17E","variations":["1F17E-FE0F"],"docomo":null,"au":"EB28","softbank":"E535","google":"FE50E","image":"1f17e.png","sheet_x":4,"sheet_y":34,"short_name":"o2","short_names":["o2"],"text":null,"texts":null,"category":"Symbols","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"knife_fork_plate":{"name":"Fork and Knife with Plate","unified":"1F37D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37d.png","sheet_x":8,"sheet_y":21,"short_name":"knife_fork_plate","short_names":["knife_fork_plate"],"text":null,"texts":null,"category":"Foods","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crossed_swords":{"name":"Crossed Swords","unified":"2694","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2694.png","sheet_x":2,"sheet_y":6,"short_name":"crossed_swords","short_names":["crossed_swords"],"text":null,"texts":null,"category":"Objects","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sos":{"name":"Squared Sos","unified":"1F198","variations":[],"docomo":null,"au":"E4E8","softbank":null,"google":"FEB4F","image":"1f198.png","sheet_x":5,"sheet_y":3,"short_name":"sos","short_names":["sos"],"text":null,"texts":null,"category":"Symbols","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gq":{"name":"Regional Indicator Symbol Letters Gq","unified":"1F1EC-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f6.png","sheet_x":35,"sheet_y":2,"short_name":"flag-gq","short_names":["flag-gq"],"text":null,"texts":null,"category":"Flags","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mount_fuji":{"name":"Mount Fuji","unified":"1F5FB","variations":[],"docomo":"E740","au":"E5BD","softbank":"E03B","google":"FE4C3","image":"1f5fb.png","sheet_x":26,"sheet_y":10,"short_name":"mount_fuji","short_names":["mount_fuji"],"text":null,"texts":null,"category":"Places","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cat2":{"name":"Cat","unified":"1F408","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f408.png","sheet_x":12,"sheet_y":13,"short_name":"cat2","short_names":["cat2"],"text":null,"texts":null,"category":"Nature","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shield":{"name":"Shield","unified":"1F6E1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e1.png","sheet_x":31,"sheet_y":32,"short_name":"shield","short_names":["shield"],"text":null,"texts":null,"category":"Objects","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sleeping":{"name":"Sleeping Face","unified":"1F634","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f634.png","sheet_x":27,"sheet_y":26,"short_name":"sleeping","short_names":["sleeping"],"text":null,"texts":null,"category":"People","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"volcano":{"name":"Volcano","unified":"1F30B","variations":[],"docomo":null,"au":"EB53","softbank":null,"google":"FE03A","image":"1f30b.png","sheet_x":5,"sheet_y":32,"short_name":"volcano","short_names":["volcano"],"text":null,"texts":null,"category":"Places","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rabbit2":{"name":"Rabbit","unified":"1F407","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f407.png","sheet_x":12,"sheet_y":12,"short_name":"rabbit2","short_names":["rabbit2"],"text":null,"texts":null,"category":"Nature","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smoking":{"name":"Smoking Symbol","unified":"1F6AC","variations":[],"docomo":"E67F","au":"E47D","softbank":"E30E","google":"FEB1E","image":"1f6ac.png","sheet_x":30,"sheet_y":20,"short_name":"smoking","short_names":["smoking"],"text":null,"texts":null,"category":"Objects","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-er":{"name":"Regional Indicator Symbol Letters Er","unified":"1F1EA-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f7.png","sheet_x":34,"sheet_y":21,"short_name":"flag-er","short_names":["flag-er"],"text":null,"texts":null,"category":"Flags","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"zzz":{"name":"Sleeping Symbol","unified":"1F4A4","variations":[],"docomo":"E701","au":"E475","softbank":"E13C","google":"FEB59","image":"1f4a4.png","sheet_x":20,"sheet_y":11,"short_name":"zzz","short_names":["zzz"],"text":null,"texts":null,"category":"People","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_entry":{"name":"No Entry","unified":"26D4","variations":["26D4-FE0F"],"docomo":"E72F","au":"E484","softbank":"E137","google":"FEB26","image":"26d4.png","sheet_x":2,"sheet_y":27,"short_name":"no_entry","short_names":["no_entry"],"text":null,"texts":null,"category":"Symbols","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hankey":{"name":"Pile of Poo","unified":"1F4A9","variations":[],"docomo":null,"au":"E4F5","softbank":"E05A","google":"FE4F4","image":"1f4a9.png","sheet_x":20,"sheet_y":16,"short_name":"hankey","short_names":["hankey","poop","shit"],"text":null,"texts":null,"category":"People","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ee":{"name":"Regional Indicator Symbol Letters Ee","unified":"1F1EA-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ea.png","sheet_x":34,"sheet_y":18,"short_name":"flag-ee","short_names":["flag-ee"],"text":null,"texts":null,"category":"Flags","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"skull_and_crossbones":{"name":"Skull and Crossbones","unified":"2620","variations":["2620-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2620.png","sheet_x":1,"sheet_y":16,"short_name":"skull_and_crossbones","short_names":["skull_and_crossbones"],"text":null,"texts":null,"category":"Objects","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chipmunk":{"name":"Chipmunk","unified":"1F43F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f43f.png","sheet_x":13,"sheet_y":27,"short_name":"chipmunk","short_names":["chipmunk"],"text":null,"texts":null,"category":"Nature","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"japan":{"name":"Silhouette of Japan","unified":"1F5FE","variations":[],"docomo":null,"au":"E572","softbank":null,"google":"FE4C7","image":"1f5fe.png","sheet_x":26,"sheet_y":13,"short_name":"japan","short_names":["japan"],"text":null,"texts":null,"category":"Places","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"name_badge":{"name":"Name Badge","unified":"1F4DB","variations":[],"docomo":null,"au":"E51D","softbank":null,"google":"FE504","image":"1f4db.png","sheet_x":21,"sheet_y":30,"short_name":"name_badge","short_names":["name_badge"],"text":null,"texts":null,"category":"Symbols","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"coffin":{"name":"Coffin","unified":"26B0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26b0.png","sheet_x":2,"sheet_y":16,"short_name":"coffin","short_names":["coffin"],"text":null,"texts":null,"category":"Objects","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"camping":{"name":"Camping","unified":"1F3D5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d5.png","sheet_x":11,"sheet_y":6,"short_name":"camping","short_names":["camping"],"text":null,"texts":null,"category":"Places","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"feet":{"name":"Paw Prints","unified":"1F43E","variations":[],"docomo":"E698","au":"E4EE","softbank":"E536","google":"FE1DB","image":"1f43e.png","sheet_x":13,"sheet_y":26,"short_name":"feet","short_names":["feet","paw_prints"],"text":null,"texts":null,"category":"Nature","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-et":{"name":"Regional Indicator Symbol Letters Et","unified":"1F1EA-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f9.png","sheet_x":34,"sheet_y":23,"short_name":"flag-et","short_names":["flag-et"],"text":null,"texts":null,"category":"Flags","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_entry_sign":{"name":"No Entry Sign","unified":"1F6AB","variations":[],"docomo":"E738","au":"E541","softbank":null,"google":"FEB48","image":"1f6ab.png","sheet_x":30,"sheet_y":19,"short_name":"no_entry_sign","short_names":["no_entry_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smiling_imp":{"name":"Smiling Face with Horns","unified":"1F608","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f608.png","sheet_x":26,"sheet_y":23,"short_name":"smiling_imp","short_names":["smiling_imp"],"text":null,"texts":null,"category":"People","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"imp":{"name":"Imp","unified":"1F47F","variations":[],"docomo":null,"au":"E4EF","softbank":"E11A","google":"FE1B2","image":"1f47f.png","sheet_x":18,"sheet_y":26,"short_name":"imp","short_names":["imp"],"text":null,"texts":null,"category":"People","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"funeral_urn":{"name":"Funeral Urn","unified":"26B1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26b1.png","sheet_x":2,"sheet_y":17,"short_name":"funeral_urn","short_names":["funeral_urn"],"text":null,"texts":null,"category":"Objects","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tent":{"name":"Tent","unified":"26FA","variations":["26FA-FE0F"],"docomo":null,"au":"E5D0","softbank":"E122","google":"FE7FB","image":"26fa.png","sheet_x":3,"sheet_y":3,"short_name":"tent","short_names":["tent"],"text":null,"texts":null,"category":"Places","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dragon":{"name":"Dragon","unified":"1F409","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f409.png","sheet_x":12,"sheet_y":14,"short_name":"dragon","short_names":["dragon"],"text":null,"texts":null,"category":"Nature","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"x":{"name":"Cross Mark","unified":"274C","variations":[],"docomo":null,"au":"E550","softbank":"E333","google":"FEB45","image":"274c.png","sheet_x":4,"sheet_y":3,"short_name":"x","short_names":["x"],"text":null,"texts":null,"category":"Symbols","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-eu":{"name":"Regional Indicator Symbol Letters Eu","unified":"1F1EA-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1fa.png","sheet_x":34,"sheet_y":24,"short_name":"flag-eu","short_names":["flag-eu"],"text":null,"texts":null,"category":"Flags","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"amphora":{"name":"Amphora","unified":"1F3FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fa.png","sheet_x":11,"sheet_y":40,"short_name":"amphora","short_names":["amphora"],"text":null,"texts":null,"category":"Objects","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"o":{"name":"Heavy Large Circle","unified":"2B55","variations":["2B55-FE0F"],"docomo":"E6A0","au":"EAAD","softbank":"E332","google":"FEB44","image":"2b55.png","sheet_x":4,"sheet_y":25,"short_name":"o","short_names":["o"],"text":null,"texts":null,"category":"Symbols","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"national_park":{"name":"National Park","unified":"1F3DE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3de.png","sheet_x":11,"sheet_y":15,"short_name":"national_park","short_names":["national_park"],"text":null,"texts":null,"category":"Places","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dragon_face":{"name":"Dragon Face","unified":"1F432","variations":[],"docomo":null,"au":"EB3F","softbank":null,"google":"FE1DE","image":"1f432.png","sheet_x":13,"sheet_y":14,"short_name":"dragon_face","short_names":["dragon_face"],"text":null,"texts":null,"category":"Nature","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fk":{"name":"Regional Indicator Symbol Letters Fk","unified":"1F1EB-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f0.png","sheet_x":34,"sheet_y":27,"short_name":"flag-fk","short_names":["flag-fk"],"text":null,"texts":null,"category":"Flags","sort_order":73,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"japanese_ogre":{"name":"Japanese Ogre","unified":"1F479","variations":[],"docomo":null,"au":"EB44","softbank":null,"google":"FE1AC","image":"1f479.png","sheet_x":18,"sheet_y":15,"short_name":"japanese_ogre","short_names":["japanese_ogre"],"text":null,"texts":null,"category":"People","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"japanese_goblin":{"name":"Japanese Goblin","unified":"1F47A","variations":[],"docomo":null,"au":"EB45","softbank":null,"google":"FE1AD","image":"1f47a.png","sheet_x":18,"sheet_y":16,"short_name":"japanese_goblin","short_names":["japanese_goblin"],"text":null,"texts":null,"category":"People","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fo":{"name":"Regional Indicator Symbol Letters Fo","unified":"1F1EB-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f4.png","sheet_x":34,"sheet_y":29,"short_name":"flag-fo","short_names":["flag-fo"],"text":null,"texts":null,"category":"Flags","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"motorway":{"name":"Motorway","unified":"1F6E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e3.png","sheet_x":31,"sheet_y":34,"short_name":"motorway","short_names":["motorway"],"text":null,"texts":null,"category":"Places","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cactus":{"name":"Cactus","unified":"1F335","variations":[],"docomo":null,"au":"EA96","softbank":"E308","google":"FE048","image":"1f335.png","sheet_x":6,"sheet_y":31,"short_name":"cactus","short_names":["cactus"],"text":null,"texts":null,"category":"Nature","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"anger":{"name":"Anger Symbol","unified":"1F4A2","variations":[],"docomo":"E6FC","au":"E4E5","softbank":"E334","google":"FEB57","image":"1f4a2.png","sheet_x":20,"sheet_y":9,"short_name":"anger","short_names":["anger"],"text":null,"texts":null,"category":"Symbols","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crystal_ball":{"name":"Crystal Ball","unified":"1F52E","variations":[],"docomo":null,"au":"EA8F","softbank":"E23E","google":"FE4F7","image":"1f52e.png","sheet_x":23,"sheet_y":30,"short_name":"crystal_ball","short_names":["crystal_ball"],"text":null,"texts":null,"category":"Objects","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"skull":{"name":"Skull","unified":"1F480","variations":[],"docomo":null,"au":"E4F8","softbank":"E11C","google":"FE1B3","image":"1f480.png","sheet_x":18,"sheet_y":27,"short_name":"skull","short_names":["skull"],"text":null,"texts":null,"category":"People","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hotsprings":{"name":"Hot Springs","unified":"2668","variations":["2668-FE0F"],"docomo":"E6F7","au":"E4BC","softbank":"E123","google":"FE7FA","image":"2668.png","sheet_x":2,"sheet_y":1,"short_name":"hotsprings","short_names":["hotsprings"],"text":null,"texts":null,"category":"Symbols","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fj":{"name":"Regional Indicator Symbol Letters Fj","unified":"1F1EB-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ef.png","sheet_x":34,"sheet_y":26,"short_name":"flag-fj","short_names":["flag-fj"],"text":null,"texts":null,"category":"Flags","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"prayer_beads":{"name":"Prayer Beads","unified":"1F4FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ff.png","sheet_x":22,"sheet_y":24,"short_name":"prayer_beads","short_names":["prayer_beads"],"text":null,"texts":null,"category":"Objects","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"christmas_tree":{"name":"Christmas Tree","unified":"1F384","variations":[],"docomo":"E6A4","au":"E4C9","softbank":"E033","google":"FE512","image":"1f384.png","sheet_x":8,"sheet_y":28,"short_name":"christmas_tree","short_names":["christmas_tree"],"text":null,"texts":null,"category":"Nature","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"railway_track":{"name":"Railway Track","unified":"1F6E4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e4.png","sheet_x":31,"sheet_y":35,"short_name":"railway_track","short_names":["railway_track"],"text":null,"texts":null,"category":"Places","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fi":{"name":"Regional Indicator Symbol Letters Fi","unified":"1F1EB-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ee.png","sheet_x":34,"sheet_y":25,"short_name":"flag-fi","short_names":["flag-fi"],"text":null,"texts":null,"category":"Flags","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"barber":{"name":"Barber Pole","unified":"1F488","variations":[],"docomo":null,"au":"EAA2","softbank":"E320","google":"FE199","image":"1f488.png","sheet_x":19,"sheet_y":24,"short_name":"barber","short_names":["barber"],"text":null,"texts":null,"category":"Objects","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ghost":{"name":"Ghost","unified":"1F47B","variations":[],"docomo":null,"au":"E4CB","softbank":"E11B","google":"FE1AE","image":"1f47b.png","sheet_x":18,"sheet_y":17,"short_name":"ghost","short_names":["ghost"],"text":null,"texts":null,"category":"People","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sunrise":{"name":"Sunrise","unified":"1F305","variations":[],"docomo":"E63E","au":"EAF4","softbank":"E449","google":"FE00A","image":"1f305.png","sheet_x":5,"sheet_y":26,"short_name":"sunrise","short_names":["sunrise"],"text":null,"texts":null,"category":"Places","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"evergreen_tree":{"name":"Evergreen Tree","unified":"1F332","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f332.png","sheet_x":6,"sheet_y":28,"short_name":"evergreen_tree","short_names":["evergreen_tree"],"text":null,"texts":null,"category":"Nature","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_pedestrians":{"name":"No Pedestrians","unified":"1F6B7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b7.png","sheet_x":31,"sheet_y":5,"short_name":"no_pedestrians","short_names":["no_pedestrians"],"text":null,"texts":null,"category":"Symbols","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sunrise_over_mountains":{"name":"Sunrise over Mountains","unified":"1F304","variations":[],"docomo":"E63E","au":"EAF4","softbank":"E04D","google":"FE009","image":"1f304.png","sheet_x":5,"sheet_y":25,"short_name":"sunrise_over_mountains","short_names":["sunrise_over_mountains"],"text":null,"texts":null,"category":"Places","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"alembic":{"name":"Alembic","unified":"2697","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2697.png","sheet_x":2,"sheet_y":8,"short_name":"alembic","short_names":["alembic"],"text":null,"texts":null,"category":"Objects","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"alien":{"name":"Extraterrestrial Alien","unified":"1F47D","variations":[],"docomo":null,"au":"E50E","softbank":"E10C","google":"FE1B0","image":"1f47d.png","sheet_x":18,"sheet_y":24,"short_name":"alien","short_names":["alien"],"text":null,"texts":null,"category":"People","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"deciduous_tree":{"name":"Deciduous Tree","unified":"1F333","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f333.png","sheet_x":6,"sheet_y":29,"short_name":"deciduous_tree","short_names":["deciduous_tree"],"text":null,"texts":null,"category":"Nature","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"do_not_litter":{"name":"Do Not Litter Symbol","unified":"1F6AF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6af.png","sheet_x":30,"sheet_y":23,"short_name":"do_not_litter","short_names":["do_not_litter"],"text":null,"texts":null,"category":"Symbols","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fr":{"name":"Regional Indicator Symbol Letters Fr","unified":"1F1EB-1F1F7","variations":[],"docomo":null,"au":"EAFA","softbank":"E50D","google":"FE4E7","image":"1f1eb-1f1f7.png","sheet_x":34,"sheet_y":30,"short_name":"flag-fr","short_names":["flag-fr","fr"],"text":null,"texts":null,"category":"Flags","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"telescope":{"name":"Telescope","unified":"1F52D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52d.png","sheet_x":23,"sheet_y":29,"short_name":"telescope","short_names":["telescope"],"text":null,"texts":null,"category":"Objects","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"palm_tree":{"name":"Palm Tree","unified":"1F334","variations":[],"docomo":null,"au":"E4E2","softbank":"E307","google":"FE047","image":"1f334.png","sheet_x":6,"sheet_y":30,"short_name":"palm_tree","short_names":["palm_tree"],"text":null,"texts":null,"category":"Nature","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_bicycles":{"name":"No Bicycles","unified":"1F6B3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b3.png","sheet_x":30,"sheet_y":27,"short_name":"no_bicycles","short_names":["no_bicycles"],"text":null,"texts":null,"category":"Symbols","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"desert":{"name":"Desert","unified":"1F3DC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dc.png","sheet_x":11,"sheet_y":13,"short_name":"desert","short_names":["desert"],"text":null,"texts":null,"category":"Places","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"robot_face":{"name":"Robot Face","unified":"1F916","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f916.png","sheet_x":32,"sheet_y":7,"short_name":"robot_face","short_names":["robot_face"],"text":null,"texts":null,"category":"People","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gf":{"name":"Regional Indicator Symbol Letters Gf","unified":"1F1EC-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1eb.png","sheet_x":34,"sheet_y":35,"short_name":"flag-gf","short_names":["flag-gf"],"text":null,"texts":null,"category":"Flags","sort_order":78,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"non-potable_water":{"name":"Non-Potable Water Symbol","unified":"1F6B1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b1.png","sheet_x":30,"sheet_y":25,"short_name":"non-potable_water","short_names":["non-potable_water"],"text":null,"texts":null,"category":"Symbols","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"beach_with_umbrella":{"name":"Beach with Umbrella","unified":"1F3D6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d6.png","sheet_x":11,"sheet_y":7,"short_name":"beach_with_umbrella","short_names":["beach_with_umbrella"],"text":null,"texts":null,"category":"Places","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"microscope":{"name":"Microscope","unified":"1F52C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52c.png","sheet_x":23,"sheet_y":28,"short_name":"microscope","short_names":["microscope"],"text":null,"texts":null,"category":"Objects","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"seedling":{"name":"Seedling","unified":"1F331","variations":[],"docomo":"E746","au":"EB7D","softbank":"E110","google":"FE03E","image":"1f331.png","sheet_x":6,"sheet_y":27,"short_name":"seedling","short_names":["seedling"],"text":null,"texts":null,"category":"Nature","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smiley_cat":{"name":"Smiling Cat Face with Open Mouth","unified":"1F63A","variations":[],"docomo":"E6F0","au":"EB61","softbank":"E057","google":"FE348","image":"1f63a.png","sheet_x":27,"sheet_y":32,"short_name":"smiley_cat","short_names":["smiley_cat"],"text":null,"texts":null,"category":"People","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pf":{"name":"Regional Indicator Symbol Letters Pf","unified":"1F1F5-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1eb.png","sheet_x":37,"sheet_y":8,"short_name":"flag-pf","short_names":["flag-pf"],"text":null,"texts":null,"category":"Flags","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"herb":{"name":"Herb","unified":"1F33F","variations":[],"docomo":"E741","au":"EB82","softbank":"E110","google":"FE04E","image":"1f33f.png","sheet_x":7,"sheet_y":0,"short_name":"herb","short_names":["herb"],"text":null,"texts":null,"category":"Nature","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"underage":{"name":"No One Under Eighteen Symbol","unified":"1F51E","variations":[],"docomo":null,"au":"EA83","softbank":"E207","google":"FEB25","image":"1f51e.png","sheet_x":23,"sheet_y":14,"short_name":"underage","short_names":["underage"],"text":null,"texts":null,"category":"Symbols","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hole":{"name":"Hole","unified":"1F573","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f573.png","sheet_x":24,"sheet_y":37,"short_name":"hole","short_names":["hole"],"text":null,"texts":null,"category":"Objects","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tf":{"name":"Regional Indicator Symbol Letters Tf","unified":"1F1F9-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1eb.png","sheet_x":38,"sheet_y":9,"short_name":"flag-tf","short_names":["flag-tf"],"text":null,"texts":null,"category":"Flags","sort_order":80,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"desert_island":{"name":"Desert Island","unified":"1F3DD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dd.png","sheet_x":11,"sheet_y":14,"short_name":"desert_island","short_names":["desert_island"],"text":null,"texts":null,"category":"Places","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smile_cat":{"name":"Grinning Cat Face with Smiling Eyes","unified":"1F638","variations":[],"docomo":"E753","au":"EB7F","softbank":"E404","google":"FE349","image":"1f638.png","sheet_x":27,"sheet_y":30,"short_name":"smile_cat","short_names":["smile_cat"],"text":null,"texts":null,"category":"People","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pill":{"name":"Pill","unified":"1F48A","variations":[],"docomo":null,"au":"EA9A","softbank":"E30F","google":"FE50A","image":"1f48a.png","sheet_x":19,"sheet_y":26,"short_name":"pill","short_names":["pill"],"text":null,"texts":null,"category":"Objects","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shamrock":{"name":"Shamrock","unified":"2618","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2618.png","sheet_x":1,"sheet_y":9,"short_name":"shamrock","short_names":["shamrock"],"text":null,"texts":null,"category":"Nature","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ga":{"name":"Regional Indicator Symbol Letters Ga","unified":"1F1EC-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e6.png","sheet_x":34,"sheet_y":31,"short_name":"flag-ga","short_names":["flag-ga"],"text":null,"texts":null,"category":"Flags","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"city_sunrise":{"name":"Sunset over Buildings","unified":"1F307","variations":[],"docomo":"E63E","au":"E5DA","softbank":"E44A","google":"FE00C","image":"1f307.png","sheet_x":5,"sheet_y":28,"short_name":"city_sunrise","short_names":["city_sunrise"],"text":null,"texts":null,"category":"Places","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"joy_cat":{"name":"Cat Face with Tears of Joy","unified":"1F639","variations":[],"docomo":"E72A","au":"EB63","softbank":"E412","google":"FE34A","image":"1f639.png","sheet_x":27,"sheet_y":31,"short_name":"joy_cat","short_names":["joy_cat"],"text":null,"texts":null,"category":"People","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_mobile_phones":{"name":"No Mobile Phones","unified":"1F4F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f5.png","sheet_x":22,"sheet_y":15,"short_name":"no_mobile_phones","short_names":["no_mobile_phones"],"text":null,"texts":null,"category":"Symbols","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heart_eyes_cat":{"name":"Smiling Cat Face with Heart-Shaped Eyes","unified":"1F63B","variations":[],"docomo":"E726","au":"EB65","softbank":"E106","google":"FE34C","image":"1f63b.png","sheet_x":27,"sheet_y":33,"short_name":"heart_eyes_cat","short_names":["heart_eyes_cat"],"text":null,"texts":null,"category":"People","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"syringe":{"name":"Syringe","unified":"1F489","variations":[],"docomo":null,"au":"E510","softbank":"E13B","google":"FE509","image":"1f489.png","sheet_x":19,"sheet_y":25,"short_name":"syringe","short_names":["syringe"],"text":null,"texts":null,"category":"Objects","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"exclamation":{"name":"Heavy Exclamation Mark Symbol","unified":"2757","variations":["2757-FE0F"],"docomo":"E702","au":"E482","softbank":"E021","google":"FEB04","image":"2757.png","sheet_x":4,"sheet_y":8,"short_name":"exclamation","short_names":["exclamation","heavy_exclamation_mark"],"text":null,"texts":null,"category":"Symbols","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"city_sunset":{"name":"Cityscape at Dusk","unified":"1F306","variations":[],"docomo":null,"au":"E5DA","softbank":"E146","google":"FE00B","image":"1f306.png","sheet_x":5,"sheet_y":27,"short_name":"city_sunset","short_names":["city_sunset"],"text":null,"texts":null,"category":"Places","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gm":{"name":"Regional Indicator Symbol Letters Gm","unified":"1F1EC-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f2.png","sheet_x":34,"sheet_y":40,"short_name":"flag-gm","short_names":["flag-gm"],"text":null,"texts":null,"category":"Flags","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"four_leaf_clover":{"name":"Four Leaf Clover","unified":"1F340","variations":[],"docomo":"E741","au":"E513","softbank":"E110","google":"FE03C","image":"1f340.png","sheet_x":7,"sheet_y":1,"short_name":"four_leaf_clover","short_names":["four_leaf_clover"],"text":null,"texts":null,"category":"Nature","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"grey_exclamation":{"name":"White Exclamation Mark Ornament","unified":"2755","variations":[],"docomo":"E702","au":"E482","softbank":"E337","google":"FEB0B","image":"2755.png","sheet_x":4,"sheet_y":7,"short_name":"grey_exclamation","short_names":["grey_exclamation"],"text":null,"texts":null,"category":"Symbols","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"smirk_cat":{"name":"Cat Face with Wry Smile","unified":"1F63C","variations":[],"docomo":"E753","au":"EB6A","softbank":"E404","google":"FE34F","image":"1f63c.png","sheet_x":27,"sheet_y":34,"short_name":"smirk_cat","short_names":["smirk_cat"],"text":null,"texts":null,"category":"People","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"thermometer":{"name":"Thermometer","unified":"1F321","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f321.png","sheet_x":6,"sheet_y":13,"short_name":"thermometer","short_names":["thermometer"],"text":null,"texts":null,"category":"Objects","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cityscape":{"name":"Cityscape","unified":"1F3D9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d9.png","sheet_x":11,"sheet_y":10,"short_name":"cityscape","short_names":["cityscape"],"text":null,"texts":null,"category":"Places","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ge":{"name":"Regional Indicator Symbol Letters Ge","unified":"1F1EC-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ea.png","sheet_x":34,"sheet_y":34,"short_name":"flag-ge","short_names":["flag-ge"],"text":null,"texts":null,"category":"Flags","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bamboo":{"name":"Pine Decoration","unified":"1F38D","variations":[],"docomo":null,"au":"EAE3","softbank":"E436","google":"FE518","image":"1f38d.png","sheet_x":9,"sheet_y":1,"short_name":"bamboo","short_names":["bamboo"],"text":null,"texts":null,"category":"Nature","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-de":{"name":"Regional Indicator Symbol Letters De","unified":"1F1E9-1F1EA","variations":[],"docomo":null,"au":"EB0E","softbank":"E50E","google":"FE4E8","image":"1f1e9-1f1ea.png","sheet_x":34,"sheet_y":9,"short_name":"flag-de","short_names":["flag-de","de"],"text":null,"texts":null,"category":"Flags","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"night_with_stars":{"name":"Night with Stars","unified":"1F303","variations":[],"docomo":"E6B3","au":"EAF1","softbank":"E44B","google":"FE008","image":"1f303.png","sheet_x":5,"sheet_y":24,"short_name":"night_with_stars","short_names":["night_with_stars"],"text":null,"texts":null,"category":"Places","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kissing_cat":{"name":"Kissing Cat Face with Closed Eyes","unified":"1F63D","variations":[],"docomo":"E726","au":"EB60","softbank":"E418","google":"FE34B","image":"1f63d.png","sheet_x":27,"sheet_y":35,"short_name":"kissing_cat","short_names":["kissing_cat"],"text":null,"texts":null,"category":"People","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tanabata_tree":{"name":"Tanabata Tree","unified":"1F38B","variations":[],"docomo":null,"au":"EB3D","softbank":null,"google":"FE521","image":"1f38b.png","sheet_x":8,"sheet_y":40,"short_name":"tanabata_tree","short_names":["tanabata_tree"],"text":null,"texts":null,"category":"Nature","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"label":{"name":"Label","unified":"1F3F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f7.png","sheet_x":11,"sheet_y":37,"short_name":"label","short_names":["label"],"text":null,"texts":null,"category":"Objects","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"question":{"name":"Black Question Mark Ornament","unified":"2753","variations":[],"docomo":null,"au":"E483","softbank":"E020","google":"FEB09","image":"2753.png","sheet_x":4,"sheet_y":5,"short_name":"question","short_names":["question"],"text":null,"texts":null,"category":"Symbols","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"leaves":{"name":"Leaf Fluttering in Wind","unified":"1F343","variations":[],"docomo":null,"au":"E5CD","softbank":"E447","google":"FE043","image":"1f343.png","sheet_x":7,"sheet_y":4,"short_name":"leaves","short_names":["leaves"],"text":null,"texts":null,"category":"Nature","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"grey_question":{"name":"White Question Mark Ornament","unified":"2754","variations":[],"docomo":null,"au":"E483","softbank":"E336","google":"FEB0A","image":"2754.png","sheet_x":4,"sheet_y":6,"short_name":"grey_question","short_names":["grey_question"],"text":null,"texts":null,"category":"Symbols","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scream_cat":{"name":"Weary Cat Face","unified":"1F640","variations":[],"docomo":"E6F3","au":"EB66","softbank":"E403","google":"FE350","image":"1f640.png","sheet_x":27,"sheet_y":38,"short_name":"scream_cat","short_names":["scream_cat"],"text":null,"texts":null,"category":"People","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bookmark":{"name":"Bookmark","unified":"1F516","variations":[],"docomo":null,"au":"EB07","softbank":null,"google":"FEB8F","image":"1f516.png","sheet_x":23,"sheet_y":6,"short_name":"bookmark","short_names":["bookmark"],"text":null,"texts":null,"category":"Objects","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bridge_at_night":{"name":"Bridge at Night","unified":"1F309","variations":[],"docomo":"E6B3","au":"E4BF","softbank":"E44B","google":"FE010","image":"1f309.png","sheet_x":5,"sheet_y":30,"short_name":"bridge_at_night","short_names":["bridge_at_night"],"text":null,"texts":null,"category":"Places","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gh":{"name":"Regional Indicator Symbol Letters Gh","unified":"1F1EC-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ed.png","sheet_x":34,"sheet_y":37,"short_name":"flag-gh","short_names":["flag-gh"],"text":null,"texts":null,"category":"Flags","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"milky_way":{"name":"Milky Way","unified":"1F30C","variations":[],"docomo":"E6B3","au":"EB5F","softbank":"E44B","google":"FE03B","image":"1f30c.png","sheet_x":5,"sheet_y":33,"short_name":"milky_way","short_names":["milky_way"],"text":null,"texts":null,"category":"Places","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"toilet":{"name":"Toilet","unified":"1F6BD","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E140","google":"FE507","image":"1f6bd.png","sheet_x":31,"sheet_y":11,"short_name":"toilet","short_names":["toilet"],"text":null,"texts":null,"category":"Objects","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crying_cat_face":{"name":"Crying Cat Face","unified":"1F63F","variations":[],"docomo":"E72E","au":"EB68","softbank":"E413","google":"FE34D","image":"1f63f.png","sheet_x":27,"sheet_y":37,"short_name":"crying_cat_face","short_names":["crying_cat_face"],"text":null,"texts":null,"category":"People","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bangbang":{"name":"Double Exclamation Mark","unified":"203C","variations":["203C-FE0F"],"docomo":"E704","au":"EB30","softbank":null,"google":"FEB06","image":"203c.png","sheet_x":0,"sheet_y":2,"short_name":"bangbang","short_names":["bangbang"],"text":null,"texts":null,"category":"Symbols","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fallen_leaf":{"name":"Fallen Leaf","unified":"1F342","variations":[],"docomo":"E747","au":"E5CD","softbank":"E119","google":"FE042","image":"1f342.png","sheet_x":7,"sheet_y":3,"short_name":"fallen_leaf","short_names":["fallen_leaf"],"text":null,"texts":null,"category":"Nature","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gi":{"name":"Regional Indicator Symbol Letters Gi","unified":"1F1EC-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ee.png","sheet_x":34,"sheet_y":38,"short_name":"flag-gi","short_names":["flag-gi"],"text":null,"texts":null,"category":"Flags","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pouting_cat":{"name":"Pouting Cat Face","unified":"1F63E","variations":[],"docomo":"E724","au":"EB5E","softbank":"E416","google":"FE34E","image":"1f63e.png","sheet_x":27,"sheet_y":36,"short_name":"pouting_cat","short_names":["pouting_cat"],"text":null,"texts":null,"category":"People","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"maple_leaf":{"name":"Maple Leaf","unified":"1F341","variations":[],"docomo":"E747","au":"E4CE","softbank":"E118","google":"FE03F","image":"1f341.png","sheet_x":7,"sheet_y":2,"short_name":"maple_leaf","short_names":["maple_leaf"],"text":null,"texts":null,"category":"Nature","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gr":{"name":"Regional Indicator Symbol Letters Gr","unified":"1F1EC-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f7.png","sheet_x":35,"sheet_y":3,"short_name":"flag-gr","short_names":["flag-gr"],"text":null,"texts":null,"category":"Flags","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"interrobang":{"name":"Exclamation Question Mark","unified":"2049","variations":["2049-FE0F"],"docomo":"E703","au":"EB2F","softbank":null,"google":"FEB05","image":"2049.png","sheet_x":0,"sheet_y":3,"short_name":"interrobang","short_names":["interrobang"],"text":null,"texts":null,"category":"Symbols","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"stars":{"name":"Shooting Star","unified":"1F320","variations":[],"docomo":null,"au":"E468","softbank":null,"google":"FEB6A","image":"1f320.png","sheet_x":6,"sheet_y":12,"short_name":"stars","short_names":["stars"],"text":null,"texts":null,"category":"Places","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shower":{"name":"Shower","unified":"1F6BF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6bf.png","sheet_x":31,"sheet_y":13,"short_name":"shower","short_names":["shower"],"text":null,"texts":null,"category":"Objects","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"raised_hands":{"name":"Person Raising Both Hands in Celebration","unified":"1F64C","variations":[],"docomo":null,"au":"EB86","softbank":"E427","google":"FE358","image":"1f64c.png","sheet_x":28,"sheet_y":29,"short_name":"raised_hands","short_names":["raised_hands"],"text":null,"texts":null,"category":"People","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64C-1F3FB":{"unified":"1F64C-1F3FB","image":"1f64c-1f3fb.png","sheet_x":28,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FC":{"unified":"1F64C-1F3FC","image":"1f64c-1f3fc.png","sheet_x":28,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FD":{"unified":"1F64C-1F3FD","image":"1f64c-1f3fd.png","sheet_x":28,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FE":{"unified":"1F64C-1F3FE","image":"1f64c-1f3fe.png","sheet_x":28,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FF":{"unified":"1F64C-1F3FF","image":"1f64c-1f3ff.png","sheet_x":28,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-gl":{"name":"Regional Indicator Symbol Letters Gl","unified":"1F1EC-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f1.png","sheet_x":34,"sheet_y":39,"short_name":"flag-gl","short_names":["flag-gl"],"text":null,"texts":null,"category":"Flags","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ear_of_rice":{"name":"Ear of Rice","unified":"1F33E","variations":[],"docomo":null,"au":null,"softbank":"E444","google":"FE049","image":"1f33e.png","sheet_x":6,"sheet_y":40,"short_name":"ear_of_rice","short_names":["ear_of_rice"],"text":null,"texts":null,"category":"Nature","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sparkler":{"name":"Firework Sparkler","unified":"1F387","variations":[],"docomo":null,"au":"EAEB","softbank":"E440","google":"FE51D","image":"1f387.png","sheet_x":8,"sheet_y":36,"short_name":"sparkler","short_names":["sparkler"],"text":null,"texts":null,"category":"Places","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bathtub":{"name":"Bathtub","unified":"1F6C1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c1.png","sheet_x":31,"sheet_y":20,"short_name":"bathtub","short_names":["bathtub"],"text":null,"texts":null,"category":"Objects","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hibiscus":{"name":"Hibiscus","unified":"1F33A","variations":[],"docomo":null,"au":"EA94","softbank":"E303","google":"FE045","image":"1f33a.png","sheet_x":6,"sheet_y":36,"short_name":"hibiscus","short_names":["hibiscus"],"text":null,"texts":null,"category":"Nature","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gd":{"name":"Regional Indicator Symbol Letters Gd","unified":"1F1EC-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e9.png","sheet_x":34,"sheet_y":33,"short_name":"flag-gd","short_names":["flag-gd"],"text":null,"texts":null,"category":"Flags","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"key":{"name":"Key","unified":"1F511","variations":[],"docomo":"E6D9","au":"E519","softbank":"E03F","google":"FEB82","image":"1f511.png","sheet_x":23,"sheet_y":1,"short_name":"key","short_names":["key"],"text":null,"texts":null,"category":"Objects","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"low_brightness":{"name":"Low Brightness Symbol","unified":"1F505","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f505.png","sheet_x":22,"sheet_y":30,"short_name":"low_brightness","short_names":["low_brightness"],"text":null,"texts":null,"category":"Symbols","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fireworks":{"name":"Fireworks","unified":"1F386","variations":[],"docomo":null,"au":"E5CC","softbank":"E117","google":"FE515","image":"1f386.png","sheet_x":8,"sheet_y":35,"short_name":"fireworks","short_names":["fireworks"],"text":null,"texts":null,"category":"Places","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clap":{"name":"Clapping Hands Sign","unified":"1F44F","variations":[],"docomo":null,"au":"EAD3","softbank":"E41F","google":"FEB9E","image":"1f44f.png","sheet_x":15,"sheet_y":16,"short_name":"clap","short_names":["clap"],"text":null,"texts":null,"category":"People","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44F-1F3FB":{"unified":"1F44F-1F3FB","image":"1f44f-1f3fb.png","sheet_x":15,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FC":{"unified":"1F44F-1F3FC","image":"1f44f-1f3fc.png","sheet_x":15,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FD":{"unified":"1F44F-1F3FD","image":"1f44f-1f3fd.png","sheet_x":15,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FE":{"unified":"1F44F-1F3FE","image":"1f44f-1f3fe.png","sheet_x":15,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FF":{"unified":"1F44F-1F3FF","image":"1f44f-1f3ff.png","sheet_x":15,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-gp":{"name":"Regional Indicator Symbol Letters Gp","unified":"1F1EC-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f5.png","sheet_x":35,"sheet_y":1,"short_name":"flag-gp","short_names":["flag-gp"],"text":null,"texts":null,"category":"Flags","sort_order":90,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"old_key":{"name":"Old Key","unified":"1F5DD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dd.png","sheet_x":26,"sheet_y":2,"short_name":"old_key","short_names":["old_key"],"text":null,"texts":null,"category":"Objects","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"high_brightness":{"name":"High Brightness Symbol","unified":"1F506","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f506.png","sheet_x":22,"sheet_y":31,"short_name":"high_brightness","short_names":["high_brightness"],"text":null,"texts":null,"category":"Symbols","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rainbow":{"name":"Rainbow","unified":"1F308","variations":[],"docomo":null,"au":"EAF2","softbank":"E44C","google":"FE00D","image":"1f308.png","sheet_x":5,"sheet_y":29,"short_name":"rainbow","short_names":["rainbow"],"text":null,"texts":null,"category":"Places","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wave":{"name":"Waving Hand Sign","unified":"1F44B","variations":[],"docomo":"E695","au":"EAD6","softbank":"E41E","google":"FEB9D","image":"1f44b.png","sheet_x":14,"sheet_y":33,"short_name":"wave","short_names":["wave"],"text":null,"texts":null,"category":"People","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44B-1F3FB":{"unified":"1F44B-1F3FB","image":"1f44b-1f3fb.png","sheet_x":14,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FC":{"unified":"1F44B-1F3FC","image":"1f44b-1f3fc.png","sheet_x":14,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FD":{"unified":"1F44B-1F3FD","image":"1f44b-1f3fd.png","sheet_x":14,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FE":{"unified":"1F44B-1F3FE","image":"1f44b-1f3fe.png","sheet_x":14,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FF":{"unified":"1F44B-1F3FF","image":"1f44b-1f3ff.png","sheet_x":14,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"sunflower":{"name":"Sunflower","unified":"1F33B","variations":[],"docomo":null,"au":"E4E3","softbank":"E305","google":"FE046","image":"1f33b.png","sheet_x":6,"sheet_y":37,"short_name":"sunflower","short_names":["sunflower"],"text":null,"texts":null,"category":"Nature","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"+1":{"name":"Thumbs Up Sign","unified":"1F44D","variations":[],"docomo":"E727","au":"E4F9","softbank":"E00E","google":"FEB97","image":"1f44d.png","sheet_x":15,"sheet_y":4,"short_name":"+1","short_names":["+1","thumbsup"],"text":null,"texts":null,"category":"People","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44D-1F3FB":{"unified":"1F44D-1F3FB","image":"1f44d-1f3fb.png","sheet_x":15,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FC":{"unified":"1F44D-1F3FC","image":"1f44d-1f3fc.png","sheet_x":15,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FD":{"unified":"1F44D-1F3FD","image":"1f44d-1f3fd.png","sheet_x":15,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FE":{"unified":"1F44D-1F3FE","image":"1f44d-1f3fe.png","sheet_x":15,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FF":{"unified":"1F44D-1F3FF","image":"1f44d-1f3ff.png","sheet_x":15,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"couch_and_lamp":{"name":"Couch and Lamp","unified":"1F6CB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cb.png","sheet_x":31,"sheet_y":25,"short_name":"couch_and_lamp","short_names":["couch_and_lamp"],"text":null,"texts":null,"category":"Objects","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"house_buildings":{"name":"House Buildings","unified":"1F3D8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d8.png","sheet_x":11,"sheet_y":9,"short_name":"house_buildings","short_names":["house_buildings"],"text":null,"texts":null,"category":"Places","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rose":{"name":"Rose","unified":"1F339","variations":[],"docomo":null,"au":"E5BA","softbank":"E032","google":"FE041","image":"1f339.png","sheet_x":6,"sheet_y":35,"short_name":"rose","short_names":["rose"],"text":null,"texts":null,"category":"Nature","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"trident":{"name":"Trident Emblem","unified":"1F531","variations":[],"docomo":"E71A","au":"E5C9","softbank":"E031","google":"FE4D2","image":"1f531.png","sheet_x":23,"sheet_y":33,"short_name":"trident","short_names":["trident"],"text":null,"texts":null,"category":"Symbols","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gu":{"name":"Regional Indicator Symbol Letters Gu","unified":"1F1EC-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fa.png","sheet_x":35,"sheet_y":6,"short_name":"flag-gu","short_names":["flag-gu"],"text":null,"texts":null,"category":"Flags","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"european_castle":{"name":"European Castle","unified":"1F3F0","variations":[],"docomo":null,"au":"EAF8","softbank":"E506","google":"FE4BF","image":"1f3f0.png","sheet_x":11,"sheet_y":33,"short_name":"european_castle","short_names":["european_castle"],"text":null,"texts":null,"category":"Places","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"-1":{"name":"Thumbs Down Sign","unified":"1F44E","variations":[],"docomo":"E700","au":"EAD5","softbank":"E421","google":"FEBA0","image":"1f44e.png","sheet_x":15,"sheet_y":10,"short_name":"-1","short_names":["-1","thumbsdown"],"text":null,"texts":null,"category":"People","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44E-1F3FB":{"unified":"1F44E-1F3FB","image":"1f44e-1f3fb.png","sheet_x":15,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FC":{"unified":"1F44E-1F3FC","image":"1f44e-1f3fc.png","sheet_x":15,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FD":{"unified":"1F44E-1F3FD","image":"1f44e-1f3fd.png","sheet_x":15,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FE":{"unified":"1F44E-1F3FE","image":"1f44e-1f3fe.png","sheet_x":15,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FF":{"unified":"1F44E-1F3FF","image":"1f44e-1f3ff.png","sheet_x":15,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"fleur_de_lis":{"name":"Fleur-De-Lis","unified":"269C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"269c.png","sheet_x":2,"sheet_y":11,"short_name":"fleur_de_lis","short_names":["fleur_de_lis"],"text":null,"texts":null,"category":"Symbols","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tulip":{"name":"Tulip","unified":"1F337","variations":[],"docomo":"E743","au":"E4E4","softbank":"E304","google":"FE03D","image":"1f337.png","sheet_x":6,"sheet_y":33,"short_name":"tulip","short_names":["tulip"],"text":null,"texts":null,"category":"Nature","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sleeping_accommodation":{"name":"Sleeping Accommodation","unified":"1F6CC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cc.png","sheet_x":31,"sheet_y":26,"short_name":"sleeping_accommodation","short_names":["sleeping_accommodation"],"text":null,"texts":null,"category":"Objects","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gt":{"name":"Regional Indicator Symbol Letters Gt","unified":"1F1EC-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f9.png","sheet_x":35,"sheet_y":5,"short_name":"flag-gt","short_names":["flag-gt"],"text":null,"texts":null,"category":"Flags","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"part_alternation_mark":{"name":"Part Alternation Mark","unified":"303D","variations":["303D-FE0F"],"docomo":null,"au":null,"softbank":"E12C","google":"FE81B","image":"303d.png","sheet_x":4,"sheet_y":27,"short_name":"part_alternation_mark","short_names":["part_alternation_mark"],"text":null,"texts":null,"category":"Symbols","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"blossom":{"name":"Blossom","unified":"1F33C","variations":[],"docomo":null,"au":"EB49","softbank":"E305","google":"FE04D","image":"1f33c.png","sheet_x":6,"sheet_y":38,"short_name":"blossom","short_names":["blossom"],"text":null,"texts":null,"category":"Nature","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bed":{"name":"Bed","unified":"1F6CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cf.png","sheet_x":31,"sheet_y":29,"short_name":"bed","short_names":["bed"],"text":null,"texts":null,"category":"Objects","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gg":{"name":"Regional Indicator Symbol Letters Gg","unified":"1F1EC-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ec.png","sheet_x":34,"sheet_y":36,"short_name":"flag-gg","short_names":["flag-gg"],"text":null,"texts":null,"category":"Flags","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"japanese_castle":{"name":"Japanese Castle","unified":"1F3EF","variations":[],"docomo":null,"au":"EAF7","softbank":"E505","google":"FE4BE","image":"1f3ef.png","sheet_x":11,"sheet_y":32,"short_name":"japanese_castle","short_names":["japanese_castle"],"text":null,"texts":null,"category":"Places","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"facepunch":{"name":"Fisted Hand Sign","unified":"1F44A","variations":[],"docomo":"E6FD","au":"E4F3","softbank":"E00D","google":"FEB96","image":"1f44a.png","sheet_x":14,"sheet_y":27,"short_name":"facepunch","short_names":["facepunch","punch"],"text":null,"texts":null,"category":"People","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44A-1F3FB":{"unified":"1F44A-1F3FB","image":"1f44a-1f3fb.png","sheet_x":14,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FC":{"unified":"1F44A-1F3FC","image":"1f44a-1f3fc.png","sheet_x":14,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FD":{"unified":"1F44A-1F3FD","image":"1f44a-1f3fd.png","sheet_x":14,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FE":{"unified":"1F44A-1F3FE","image":"1f44a-1f3fe.png","sheet_x":14,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FF":{"unified":"1F44A-1F3FF","image":"1f44a-1f3ff.png","sheet_x":14,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"stadium":{"name":"Stadium","unified":"1F3DF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3df.png","sheet_x":11,"sheet_y":16,"short_name":"stadium","short_names":["stadium"],"text":null,"texts":null,"category":"Places","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gn":{"name":"Regional Indicator Symbol Letters Gn","unified":"1F1EC-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f3.png","sheet_x":35,"sheet_y":0,"short_name":"flag-gn","short_names":["flag-gn"],"text":null,"texts":null,"category":"Flags","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"warning":{"name":"Warning Sign","unified":"26A0","variations":["26A0-FE0F"],"docomo":"E737","au":"E481","softbank":"E252","google":"FEB23","image":"26a0.png","sheet_x":2,"sheet_y":12,"short_name":"warning","short_names":["warning"],"text":null,"texts":null,"category":"Symbols","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"door":{"name":"Door","unified":"1F6AA","variations":[],"docomo":"E714","au":null,"softbank":null,"google":"FE4F3","image":"1f6aa.png","sheet_x":30,"sheet_y":18,"short_name":"door","short_names":["door"],"text":null,"texts":null,"category":"Objects","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cherry_blossom":{"name":"Cherry Blossom","unified":"1F338","variations":[],"docomo":"E748","au":"E4CA","softbank":"E030","google":"FE040","image":"1f338.png","sheet_x":6,"sheet_y":34,"short_name":"cherry_blossom","short_names":["cherry_blossom"],"text":null,"texts":null,"category":"Nature","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fist":{"name":"Raised Fist","unified":"270A","variations":[],"docomo":"E693","au":"EB83","softbank":"E010","google":"FEB93","image":"270a.png","sheet_x":3,"sheet_y":9,"short_name":"fist","short_names":["fist"],"text":null,"texts":null,"category":"People","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270A-1F3FB":{"unified":"270A-1F3FB","image":"270a-1f3fb.png","sheet_x":3,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FC":{"unified":"270A-1F3FC","image":"270a-1f3fc.png","sheet_x":3,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FD":{"unified":"270A-1F3FD","image":"270a-1f3fd.png","sheet_x":3,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FE":{"unified":"270A-1F3FE","image":"270a-1f3fe.png","sheet_x":3,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FF":{"unified":"270A-1F3FF","image":"270a-1f3ff.png","sheet_x":3,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"statue_of_liberty":{"name":"Statue of Liberty","unified":"1F5FD","variations":[],"docomo":null,"au":null,"softbank":"E51D","google":"FE4C6","image":"1f5fd.png","sheet_x":26,"sheet_y":12,"short_name":"statue_of_liberty","short_names":["statue_of_liberty"],"text":null,"texts":null,"category":"Places","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"v":{"name":"Victory Hand","unified":"270C","variations":["270C-FE0F"],"docomo":"E694","au":"E5A6","softbank":"E011","google":"FEB94","image":"270c.png","sheet_x":3,"sheet_y":21,"short_name":"v","short_names":["v"],"text":null,"texts":null,"category":"People","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270C-1F3FB":{"unified":"270C-1F3FB","image":"270c-1f3fb.png","sheet_x":3,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FC":{"unified":"270C-1F3FC","image":"270c-1f3fc.png","sheet_x":3,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FD":{"unified":"270C-1F3FD","image":"270c-1f3fd.png","sheet_x":3,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FE":{"unified":"270C-1F3FE","image":"270c-1f3fe.png","sheet_x":3,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FF":{"unified":"270C-1F3FF","image":"270c-1f3ff.png","sheet_x":3,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"children_crossing":{"name":"Children Crossing","unified":"1F6B8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b8.png","sheet_x":31,"sheet_y":6,"short_name":"children_crossing","short_names":["children_crossing"],"text":null,"texts":null,"category":"Symbols","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bouquet":{"name":"Bouquet","unified":"1F490","variations":[],"docomo":null,"au":"EA95","softbank":"E306","google":"FE828","image":"1f490.png","sheet_x":19,"sheet_y":32,"short_name":"bouquet","short_names":["bouquet"],"text":null,"texts":null,"category":"Nature","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bellhop_bell":{"name":"Bellhop Bell","unified":"1F6CE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ce.png","sheet_x":31,"sheet_y":28,"short_name":"bellhop_bell","short_names":["bellhop_bell"],"text":null,"texts":null,"category":"Objects","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gw":{"name":"Regional Indicator Symbol Letters Gw","unified":"1F1EC-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fc.png","sheet_x":35,"sheet_y":7,"short_name":"flag-gw","short_names":["flag-gw"],"text":null,"texts":null,"category":"Flags","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"beginner":{"name":"Japanese Symbol for Beginner","unified":"1F530","variations":[],"docomo":null,"au":"E480","softbank":"E209","google":"FE044","image":"1f530.png","sheet_x":23,"sheet_y":32,"short_name":"beginner","short_names":["beginner"],"text":null,"texts":null,"category":"Symbols","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"house":{"name":"House Building","unified":"1F3E0","variations":[],"docomo":"E663","au":"E4AB","softbank":"E036","google":"FE4B0","image":"1f3e0.png","sheet_x":11,"sheet_y":17,"short_name":"house","short_names":["house"],"text":null,"texts":null,"category":"Places","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mushroom":{"name":"Mushroom","unified":"1F344","variations":[],"docomo":null,"au":"EB37","softbank":null,"google":"FE04B","image":"1f344.png","sheet_x":7,"sheet_y":5,"short_name":"mushroom","short_names":["mushroom"],"text":null,"texts":null,"category":"Nature","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"frame_with_picture":{"name":"Frame with Picture","unified":"1F5BC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5bc.png","sheet_x":25,"sheet_y":35,"short_name":"frame_with_picture","short_names":["frame_with_picture"],"text":null,"texts":null,"category":"Objects","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ok_hand":{"name":"Ok Hand Sign","unified":"1F44C","variations":[],"docomo":"E70B","au":"EAD4","softbank":"E420","google":"FEB9F","image":"1f44c.png","sheet_x":14,"sheet_y":39,"short_name":"ok_hand","short_names":["ok_hand"],"text":null,"texts":null,"category":"People","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44C-1F3FB":{"unified":"1F44C-1F3FB","image":"1f44c-1f3fb.png","sheet_x":14,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FC":{"unified":"1F44C-1F3FC","image":"1f44c-1f3fc.png","sheet_x":15,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FD":{"unified":"1F44C-1F3FD","image":"1f44c-1f3fd.png","sheet_x":15,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FE":{"unified":"1F44C-1F3FE","image":"1f44c-1f3fe.png","sheet_x":15,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FF":{"unified":"1F44C-1F3FF","image":"1f44c-1f3ff.png","sheet_x":15,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-gy":{"name":"Regional Indicator Symbol Letters Gy","unified":"1F1EC-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fe.png","sheet_x":35,"sheet_y":8,"short_name":"flag-gy","short_names":["flag-gy"],"text":null,"texts":null,"category":"Flags","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ht":{"name":"Regional Indicator Symbol Letters Ht","unified":"1F1ED-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f9.png","sheet_x":35,"sheet_y":13,"short_name":"flag-ht","short_names":["flag-ht"],"text":null,"texts":null,"category":"Flags","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"house_with_garden":{"name":"House with Garden","unified":"1F3E1","variations":[],"docomo":"E663","au":"EB09","softbank":"E036","google":"FE4B1","image":"1f3e1.png","sheet_x":11,"sheet_y":18,"short_name":"house_with_garden","short_names":["house_with_garden"],"text":null,"texts":null,"category":"Places","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"world_map":{"name":"World Map","unified":"1F5FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5fa.png","sheet_x":26,"sheet_y":9,"short_name":"world_map","short_names":["world_map"],"text":null,"texts":null,"category":"Objects","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chestnut":{"name":"Chestnut","unified":"1F330","variations":[],"docomo":null,"au":"EB38","softbank":null,"google":"FE04C","image":"1f330.png","sheet_x":6,"sheet_y":26,"short_name":"chestnut","short_names":["chestnut"],"text":null,"texts":null,"category":"Nature","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hand":{"name":"Raised Hand","unified":"270B","variations":[],"docomo":"E695","au":"E5A7","softbank":"E012","google":"FEB95","image":"270b.png","sheet_x":3,"sheet_y":15,"short_name":"hand","short_names":["hand","raised_hand"],"text":null,"texts":null,"category":"People","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270B-1F3FB":{"unified":"270B-1F3FB","image":"270b-1f3fb.png","sheet_x":3,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FC":{"unified":"270B-1F3FC","image":"270b-1f3fc.png","sheet_x":3,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FD":{"unified":"270B-1F3FD","image":"270b-1f3fd.png","sheet_x":3,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FE":{"unified":"270B-1F3FE","image":"270b-1f3fe.png","sheet_x":3,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FF":{"unified":"270B-1F3FF","image":"270b-1f3ff.png","sheet_x":3,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"recycle":{"name":"Black Universal Recycling Symbol","unified":"267B","variations":["267B-FE0F"],"docomo":"E735","au":"EB79","softbank":null,"google":"FEB2C","image":"267b.png","sheet_x":2,"sheet_y":2,"short_name":"recycle","short_names":["recycle"],"text":null,"texts":null,"category":"Symbols","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"umbrella_on_ground":{"name":"Umbrella on Ground","unified":"26F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f1.png","sheet_x":2,"sheet_y":31,"short_name":"umbrella_on_ground","short_names":["umbrella_on_ground"],"text":null,"texts":null,"category":"Objects","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"jack_o_lantern":{"name":"Jack-O-Lantern","unified":"1F383","variations":[],"docomo":null,"au":"EAEE","softbank":"E445","google":"FE51F","image":"1f383.png","sheet_x":8,"sheet_y":27,"short_name":"jack_o_lantern","short_names":["jack_o_lantern"],"text":null,"texts":null,"category":"Nature","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"open_hands":{"name":"Open Hands Sign","unified":"1F450","variations":[],"docomo":"E695","au":"EAD6","softbank":"E422","google":"FEBA1","image":"1f450.png","sheet_x":15,"sheet_y":22,"short_name":"open_hands","short_names":["open_hands"],"text":null,"texts":null,"category":"People","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F450-1F3FB":{"unified":"1F450-1F3FB","image":"1f450-1f3fb.png","sheet_x":15,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FC":{"unified":"1F450-1F3FC","image":"1f450-1f3fc.png","sheet_x":15,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FD":{"unified":"1F450-1F3FD","image":"1f450-1f3fd.png","sheet_x":15,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FE":{"unified":"1F450-1F3FE","image":"1f450-1f3fe.png","sheet_x":15,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FF":{"unified":"1F450-1F3FF","image":"1f450-1f3ff.png","sheet_x":15,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"derelict_house_building":{"name":"Derelict House Building","unified":"1F3DA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3da.png","sheet_x":11,"sheet_y":11,"short_name":"derelict_house_building","short_names":["derelict_house_building"],"text":null,"texts":null,"category":"Places","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"u6307":{"name":"Squared Cjk Unified Ideograph-6307","unified":"1F22F","variations":["1F22F-FE0F"],"docomo":null,"au":"EA8B","softbank":"E22C","google":"FEB40","image":"1f22f.png","sheet_x":5,"sheet_y":9,"short_name":"u6307","short_names":["u6307"],"text":null,"texts":null,"category":"Symbols","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-hn":{"name":"Regional Indicator Symbol Letters Hn","unified":"1F1ED-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f3.png","sheet_x":35,"sheet_y":11,"short_name":"flag-hn","short_names":["flag-hn"],"text":null,"texts":null,"category":"Flags","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shell":{"name":"Spiral Shell","unified":"1F41A","variations":[],"docomo":null,"au":"EAEC","softbank":"E441","google":"FE1C6","image":"1f41a.png","sheet_x":12,"sheet_y":31,"short_name":"shell","short_names":["shell"],"text":null,"texts":null,"category":"Nature","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-hk":{"name":"Regional Indicator Symbol Letters Hk","unified":"1F1ED-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f0.png","sheet_x":35,"sheet_y":9,"short_name":"flag-hk","short_names":["flag-hk"],"text":null,"texts":null,"category":"Flags","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"moyai":{"name":"Moyai","unified":"1F5FF","variations":[],"docomo":null,"au":"EB6C","softbank":null,"google":"FE4C8","image":"1f5ff.png","sheet_x":26,"sheet_y":14,"short_name":"moyai","short_names":["moyai"],"text":null,"texts":null,"category":"Objects","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"muscle":{"name":"Flexed Biceps","unified":"1F4AA","variations":[],"docomo":null,"au":"E4E9","softbank":"E14C","google":"FEB5E","image":"1f4aa.png","sheet_x":20,"sheet_y":17,"short_name":"muscle","short_names":["muscle"],"text":null,"texts":null,"category":"People","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F4AA-1F3FB":{"unified":"1F4AA-1F3FB","image":"1f4aa-1f3fb.png","sheet_x":20,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FC":{"unified":"1F4AA-1F3FC","image":"1f4aa-1f3fc.png","sheet_x":20,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FD":{"unified":"1F4AA-1F3FD","image":"1f4aa-1f3fd.png","sheet_x":20,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FE":{"unified":"1F4AA-1F3FE","image":"1f4aa-1f3fe.png","sheet_x":20,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FF":{"unified":"1F4AA-1F3FF","image":"1f4aa-1f3ff.png","sheet_x":20,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"chart":{"name":"Chart with Upwards Trend and Yen Sign","unified":"1F4B9","variations":[],"docomo":null,"au":"E5DC","softbank":"E14A","google":"FE4DF","image":"1f4b9.png","sheet_x":20,"sheet_y":37,"short_name":"chart","short_names":["chart"],"text":null,"texts":null,"category":"Symbols","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"office":{"name":"Office Building","unified":"1F3E2","variations":[],"docomo":"E664","au":"E4AD","softbank":"E038","google":"FE4B2","image":"1f3e2.png","sheet_x":11,"sheet_y":19,"short_name":"office","short_names":["office"],"text":null,"texts":null,"category":"Places","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shopping_bags":{"name":"Shopping Bags","unified":"1F6CD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cd.png","sheet_x":31,"sheet_y":27,"short_name":"shopping_bags","short_names":["shopping_bags"],"text":null,"texts":null,"category":"Objects","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"department_store":{"name":"Department Store","unified":"1F3EC","variations":[],"docomo":null,"au":"EAF6","softbank":"E504","google":"FE4BD","image":"1f3ec.png","sheet_x":11,"sheet_y":29,"short_name":"department_store","short_names":["department_store"],"text":null,"texts":null,"category":"Places","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pray":{"name":"Person with Folded Hands","unified":"1F64F","variations":[],"docomo":null,"au":"EAD2","softbank":"E41D","google":"FE35B","image":"1f64f.png","sheet_x":29,"sheet_y":6,"short_name":"pray","short_names":["pray"],"text":null,"texts":null,"category":"People","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64F-1F3FB":{"unified":"1F64F-1F3FB","image":"1f64f-1f3fb.png","sheet_x":29,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FC":{"unified":"1F64F-1F3FC","image":"1f64f-1f3fc.png","sheet_x":29,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FD":{"unified":"1F64F-1F3FD","image":"1f64f-1f3fd.png","sheet_x":29,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FE":{"unified":"1F64F-1F3FE","image":"1f64f-1f3fe.png","sheet_x":29,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FF":{"unified":"1F64F-1F3FF","image":"1f64f-1f3ff.png","sheet_x":29,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-hu":{"name":"Regional Indicator Symbol Letters Hu","unified":"1F1ED-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1fa.png","sheet_x":35,"sheet_y":14,"short_name":"flag-hu","short_names":["flag-hu"],"text":null,"texts":null,"category":"Flags","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sparkle":{"name":"Sparkle","unified":"2747","variations":["2747-FE0F"],"docomo":"E6FA","au":"E46C","softbank":"E32E","google":"FEB77","image":"2747.png","sheet_x":4,"sheet_y":2,"short_name":"sparkle","short_names":["sparkle"],"text":null,"texts":null,"category":"Symbols","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spider_web":{"name":"Spider Web","unified":"1F578","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f578.png","sheet_x":25,"sheet_y":6,"short_name":"spider_web","short_names":["spider_web"],"text":null,"texts":null,"category":"Nature","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"point_up":{"name":"White Up Pointing Index","unified":"261D","variations":["261D-FE0F"],"docomo":null,"au":"E4F6","softbank":"E00F","google":"FEB98","image":"261d.png","sheet_x":1,"sheet_y":10,"short_name":"point_up","short_names":["point_up"],"text":null,"texts":null,"category":"People","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"261D-1F3FB":{"unified":"261D-1F3FB","image":"261d-1f3fb.png","sheet_x":1,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FC":{"unified":"261D-1F3FC","image":"261d-1f3fc.png","sheet_x":1,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FD":{"unified":"261D-1F3FD","image":"261d-1f3fd.png","sheet_x":1,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FE":{"unified":"261D-1F3FE","image":"261d-1f3fe.png","sheet_x":1,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FF":{"unified":"261D-1F3FF","image":"261d-1f3ff.png","sheet_x":1,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"eight_spoked_asterisk":{"name":"Eight Spoked Asterisk","unified":"2733","variations":["2733-FE0F"],"docomo":"E6F8","au":"E53E","softbank":"E206","google":"FEB62","image":"2733.png","sheet_x":3,"sheet_y":40,"short_name":"eight_spoked_asterisk","short_names":["eight_spoked_asterisk"],"text":null,"texts":null,"category":"Symbols","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-is":{"name":"Regional Indicator Symbol Letters Is","unified":"1F1EE-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f8.png","sheet_x":35,"sheet_y":24,"short_name":"flag-is","short_names":["flag-is"],"text":null,"texts":null,"category":"Flags","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"post_office":{"name":"Japanese Post Office","unified":"1F3E3","variations":[],"docomo":"E665","au":"E5DE","softbank":"E153","google":"FE4B3","image":"1f3e3.png","sheet_x":11,"sheet_y":20,"short_name":"post_office","short_names":["post_office"],"text":null,"texts":null,"category":"Places","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"earth_americas":{"name":"Earth Globe Americas","unified":"1F30E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30e.png","sheet_x":5,"sheet_y":35,"short_name":"earth_americas","short_names":["earth_americas"],"text":null,"texts":null,"category":"Nature","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"balloon":{"name":"Balloon","unified":"1F388","variations":[],"docomo":null,"au":"EA9B","softbank":"E310","google":"FE516","image":"1f388.png","sheet_x":8,"sheet_y":37,"short_name":"balloon","short_names":["balloon"],"text":null,"texts":null,"category":"Objects","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"european_post_office":{"name":"European Post Office","unified":"1F3E4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3e4.png","sheet_x":11,"sheet_y":21,"short_name":"european_post_office","short_names":["european_post_office"],"text":null,"texts":null,"category":"Places","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"point_up_2":{"name":"White Up Pointing Backhand Index","unified":"1F446","variations":[],"docomo":null,"au":"EA8D","softbank":"E22E","google":"FEB99","image":"1f446.png","sheet_x":14,"sheet_y":3,"short_name":"point_up_2","short_names":["point_up_2"],"text":null,"texts":null,"category":"People","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F446-1F3FB":{"unified":"1F446-1F3FB","image":"1f446-1f3fb.png","sheet_x":14,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FC":{"unified":"1F446-1F3FC","image":"1f446-1f3fc.png","sheet_x":14,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FD":{"unified":"1F446-1F3FD","image":"1f446-1f3fd.png","sheet_x":14,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FE":{"unified":"1F446-1F3FE","image":"1f446-1f3fe.png","sheet_x":14,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FF":{"unified":"1F446-1F3FF","image":"1f446-1f3ff.png","sheet_x":14,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"earth_africa":{"name":"Earth Globe Europe-Africa","unified":"1F30D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30d.png","sheet_x":5,"sheet_y":34,"short_name":"earth_africa","short_names":["earth_africa"],"text":null,"texts":null,"category":"Nature","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"negative_squared_cross_mark":{"name":"Negative Squared Cross Mark","unified":"274E","variations":[],"docomo":null,"au":"E551","softbank":"E333","google":"FEB46","image":"274e.png","sheet_x":4,"sheet_y":4,"short_name":"negative_squared_cross_mark","short_names":["negative_squared_cross_mark"],"text":null,"texts":null,"category":"Symbols","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flags":{"name":"Carp Streamer","unified":"1F38F","variations":[],"docomo":null,"au":"EAE7","softbank":"E43B","google":"FE51C","image":"1f38f.png","sheet_x":9,"sheet_y":3,"short_name":"flags","short_names":["flags"],"text":null,"texts":null,"category":"Objects","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-in":{"name":"Regional Indicator Symbol Letters in","unified":"1F1EE-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f3.png","sheet_x":35,"sheet_y":20,"short_name":"flag-in","short_names":["flag-in"],"text":null,"texts":null,"category":"Flags","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hospital":{"name":"Hospital","unified":"1F3E5","variations":[],"docomo":"E666","au":"E5DF","softbank":"E155","google":"FE4B4","image":"1f3e5.png","sheet_x":11,"sheet_y":22,"short_name":"hospital","short_names":["hospital"],"text":null,"texts":null,"category":"Places","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"point_down":{"name":"White Down Pointing Backhand Index","unified":"1F447","variations":[],"docomo":null,"au":"EA8E","softbank":"E22F","google":"FEB9A","image":"1f447.png","sheet_x":14,"sheet_y":9,"short_name":"point_down","short_names":["point_down"],"text":null,"texts":null,"category":"People","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F447-1F3FB":{"unified":"1F447-1F3FB","image":"1f447-1f3fb.png","sheet_x":14,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FC":{"unified":"1F447-1F3FC","image":"1f447-1f3fc.png","sheet_x":14,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FD":{"unified":"1F447-1F3FD","image":"1f447-1f3fd.png","sheet_x":14,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FE":{"unified":"1F447-1F3FE","image":"1f447-1f3fe.png","sheet_x":14,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FF":{"unified":"1F447-1F3FF","image":"1f447-1f3ff.png","sheet_x":14,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"white_check_mark":{"name":"White Heavy Check Mark","unified":"2705","variations":[],"docomo":null,"au":"E55E","softbank":null,"google":"FEB4A","image":"2705.png","sheet_x":3,"sheet_y":6,"short_name":"white_check_mark","short_names":["white_check_mark"],"text":null,"texts":null,"category":"Symbols","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ribbon":{"name":"Ribbon","unified":"1F380","variations":[],"docomo":"E684","au":"E59F","softbank":"E314","google":"FE50F","image":"1f380.png","sheet_x":8,"sheet_y":24,"short_name":"ribbon","short_names":["ribbon"],"text":null,"texts":null,"category":"Objects","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"earth_asia":{"name":"Earth Globe Asia-Australia","unified":"1F30F","variations":[],"docomo":null,"au":"E5B3","softbank":null,"google":"FE039","image":"1f30f.png","sheet_x":5,"sheet_y":36,"short_name":"earth_asia","short_names":["earth_asia"],"text":null,"texts":null,"category":"Nature","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-id":{"name":"Regional Indicator Symbol Letters Id","unified":"1F1EE-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e9.png","sheet_x":35,"sheet_y":16,"short_name":"flag-id","short_names":["flag-id"],"text":null,"texts":null,"category":"Flags","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"full_moon":{"name":"Full Moon Symbol","unified":"1F315","variations":[],"docomo":"E6A0","au":null,"softbank":null,"google":"FE015","image":"1f315.png","sheet_x":6,"sheet_y":1,"short_name":"full_moon","short_names":["full_moon"],"text":null,"texts":null,"category":"Nature","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"point_left":{"name":"White Left Pointing Backhand Index","unified":"1F448","variations":[],"docomo":null,"au":"E4FF","softbank":"E230","google":"FEB9B","image":"1f448.png","sheet_x":14,"sheet_y":15,"short_name":"point_left","short_names":["point_left"],"text":null,"texts":null,"category":"People","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F448-1F3FB":{"unified":"1F448-1F3FB","image":"1f448-1f3fb.png","sheet_x":14,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FC":{"unified":"1F448-1F3FC","image":"1f448-1f3fc.png","sheet_x":14,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FD":{"unified":"1F448-1F3FD","image":"1f448-1f3fd.png","sheet_x":14,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FE":{"unified":"1F448-1F3FE","image":"1f448-1f3fe.png","sheet_x":14,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FF":{"unified":"1F448-1F3FF","image":"1f448-1f3ff.png","sheet_x":14,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-ir":{"name":"Regional Indicator Symbol Letters Ir","unified":"1F1EE-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f7.png","sheet_x":35,"sheet_y":23,"short_name":"flag-ir","short_names":["flag-ir"],"text":null,"texts":null,"category":"Flags","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"gift":{"name":"Wrapped Present","unified":"1F381","variations":[],"docomo":"E685","au":"E4CF","softbank":"E112","google":"FE510","image":"1f381.png","sheet_x":8,"sheet_y":25,"short_name":"gift","short_names":["gift"],"text":null,"texts":null,"category":"Objects","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bank":{"name":"Bank","unified":"1F3E6","variations":[],"docomo":"E667","au":"E4AA","softbank":"E14D","google":"FE4B5","image":"1f3e6.png","sheet_x":11,"sheet_y":23,"short_name":"bank","short_names":["bank"],"text":null,"texts":null,"category":"Places","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"diamond_shape_with_a_dot_inside":{"name":"Diamond Shape with a Dot Inside","unified":"1F4A0","variations":[],"docomo":"E6F8","au":null,"softbank":null,"google":"FEB55","image":"1f4a0.png","sheet_x":20,"sheet_y":7,"short_name":"diamond_shape_with_a_dot_inside","short_names":["diamond_shape_with_a_dot_inside"],"text":null,"texts":null,"category":"Symbols","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-iq":{"name":"Regional Indicator Symbol Letters Iq","unified":"1F1EE-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f6.png","sheet_x":35,"sheet_y":22,"short_name":"flag-iq","short_names":["flag-iq"],"text":null,"texts":null,"category":"Flags","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"confetti_ball":{"name":"Confetti Ball","unified":"1F38A","variations":[],"docomo":null,"au":"E46F","softbank":null,"google":"FE520","image":"1f38a.png","sheet_x":8,"sheet_y":39,"short_name":"confetti_ball","short_names":["confetti_ball"],"text":null,"texts":null,"category":"Objects","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"point_right":{"name":"White Right Pointing Backhand Index","unified":"1F449","variations":[],"docomo":null,"au":"E500","softbank":"E231","google":"FEB9C","image":"1f449.png","sheet_x":14,"sheet_y":21,"short_name":"point_right","short_names":["point_right"],"text":null,"texts":null,"category":"People","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F449-1F3FB":{"unified":"1F449-1F3FB","image":"1f449-1f3fb.png","sheet_x":14,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FC":{"unified":"1F449-1F3FC","image":"1f449-1f3fc.png","sheet_x":14,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FD":{"unified":"1F449-1F3FD","image":"1f449-1f3fd.png","sheet_x":14,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FE":{"unified":"1F449-1F3FE","image":"1f449-1f3fe.png","sheet_x":14,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FF":{"unified":"1F449-1F3FF","image":"1f449-1f3ff.png","sheet_x":14,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"cyclone":{"name":"Cyclone","unified":"1F300","variations":[],"docomo":"E643","au":"E469","softbank":"E443","google":"FE005","image":"1f300.png","sheet_x":5,"sheet_y":21,"short_name":"cyclone","short_names":["cyclone"],"text":null,"texts":null,"category":"Symbols","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"waning_gibbous_moon":{"name":"Waning Gibbous Moon Symbol","unified":"1F316","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f316.png","sheet_x":6,"sheet_y":2,"short_name":"waning_gibbous_moon","short_names":["waning_gibbous_moon"],"text":null,"texts":null,"category":"Nature","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hotel":{"name":"Hotel","unified":"1F3E8","variations":[],"docomo":"E669","au":"EA81","softbank":"E158","google":"FE4B7","image":"1f3e8.png","sheet_x":11,"sheet_y":25,"short_name":"hotel","short_names":["hotel"],"text":null,"texts":null,"category":"Places","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"loop":{"name":"Double Curly Loop","unified":"27BF","variations":[],"docomo":"E6DF","au":null,"softbank":"E211","google":"FE82B","image":"27bf.png","sheet_x":4,"sheet_y":16,"short_name":"loop","short_names":["loop"],"text":null,"texts":null,"category":"Symbols","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"convenience_store":{"name":"Convenience Store","unified":"1F3EA","variations":[],"docomo":"E66A","au":"E4A4","softbank":"E156","google":"FE4B9","image":"1f3ea.png","sheet_x":11,"sheet_y":27,"short_name":"convenience_store","short_names":["convenience_store"],"text":null,"texts":null,"category":"Places","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"last_quarter_moon":{"name":"Last Quarter Moon Symbol","unified":"1F317","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f317.png","sheet_x":6,"sheet_y":3,"short_name":"last_quarter_moon","short_names":["last_quarter_moon"],"text":null,"texts":null,"category":"Nature","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tada":{"name":"Party Popper","unified":"1F389","variations":[],"docomo":null,"au":"EA9C","softbank":"E312","google":"FE517","image":"1f389.png","sheet_x":8,"sheet_y":38,"short_name":"tada","short_names":["tada"],"text":null,"texts":null,"category":"Objects","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"middle_finger":{"name":"Reversed Hand with Middle Finger Extended","unified":"1F595","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f595.png","sheet_x":25,"sheet_y":19,"short_name":"middle_finger","short_names":["middle_finger","reversed_hand_with_middle_finger_extended"],"text":null,"texts":null,"category":"People","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F595-1F3FB":{"unified":"1F595-1F3FB","image":"1f595-1f3fb.png","sheet_x":25,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FC":{"unified":"1F595-1F3FC","image":"1f595-1f3fc.png","sheet_x":25,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FD":{"unified":"1F595-1F3FD","image":"1f595-1f3fd.png","sheet_x":25,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FE":{"unified":"1F595-1F3FE","image":"1f595-1f3fe.png","sheet_x":25,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FF":{"unified":"1F595-1F3FF","image":"1f595-1f3ff.png","sheet_x":25,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-ie":{"name":"Regional Indicator Symbol Letters Ie","unified":"1F1EE-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1ea.png","sheet_x":35,"sheet_y":17,"short_name":"flag-ie","short_names":["flag-ie"],"text":null,"texts":null,"category":"Flags","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dolls":{"name":"Japanese Dolls","unified":"1F38E","variations":[],"docomo":null,"au":"EAE4","softbank":"E438","google":"FE519","image":"1f38e.png","sheet_x":9,"sheet_y":2,"short_name":"dolls","short_names":["dolls"],"text":null,"texts":null,"category":"Objects","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"globe_with_meridians":{"name":"Globe with Meridians","unified":"1F310","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f310.png","sheet_x":5,"sheet_y":37,"short_name":"globe_with_meridians","short_names":["globe_with_meridians"],"text":null,"texts":null,"category":"Symbols","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-im":{"name":"Regional Indicator Symbol Letters Im","unified":"1F1EE-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f2.png","sheet_x":35,"sheet_y":19,"short_name":"flag-im","short_names":["flag-im"],"text":null,"texts":null,"category":"Flags","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"waning_crescent_moon":{"name":"Waning Crescent Moon Symbol","unified":"1F318","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f318.png","sheet_x":6,"sheet_y":4,"short_name":"waning_crescent_moon","short_names":["waning_crescent_moon"],"text":null,"texts":null,"category":"Nature","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"raised_hand_with_fingers_splayed":{"name":"Raised Hand with Fingers Splayed","unified":"1F590","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f590.png","sheet_x":25,"sheet_y":13,"short_name":"raised_hand_with_fingers_splayed","short_names":["raised_hand_with_fingers_splayed"],"text":null,"texts":null,"category":"People","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F590-1F3FB":{"unified":"1F590-1F3FB","image":"1f590-1f3fb.png","sheet_x":25,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FC":{"unified":"1F590-1F3FC","image":"1f590-1f3fc.png","sheet_x":25,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FD":{"unified":"1F590-1F3FD","image":"1f590-1f3fd.png","sheet_x":25,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FE":{"unified":"1F590-1F3FE","image":"1f590-1f3fe.png","sheet_x":25,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FF":{"unified":"1F590-1F3FF","image":"1f590-1f3ff.png","sheet_x":25,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"school":{"name":"School","unified":"1F3EB","variations":[],"docomo":"E73E","au":"EA80","softbank":"E157","google":"FE4BA","image":"1f3eb.png","sheet_x":11,"sheet_y":28,"short_name":"school","short_names":["school"],"text":null,"texts":null,"category":"Places","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"new_moon":{"name":"New Moon Symbol","unified":"1F311","variations":[],"docomo":"E69C","au":"E5A8","softbank":null,"google":"FE011","image":"1f311.png","sheet_x":5,"sheet_y":38,"short_name":"new_moon","short_names":["new_moon"],"text":null,"texts":null,"category":"Nature","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"the_horns":{"name":"Sign of the Horns","unified":"1F918","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f918.png","sheet_x":32,"sheet_y":9,"short_name":"the_horns","short_names":["the_horns","sign_of_the_horns"],"text":null,"texts":null,"category":"People","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F918-1F3FB":{"unified":"1F918-1F3FB","image":"1f918-1f3fb.png","sheet_x":32,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FC":{"unified":"1F918-1F3FC","image":"1f918-1f3fc.png","sheet_x":32,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FD":{"unified":"1F918-1F3FD","image":"1f918-1f3fd.png","sheet_x":32,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FE":{"unified":"1F918-1F3FE","image":"1f918-1f3fe.png","sheet_x":32,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FF":{"unified":"1F918-1F3FF","image":"1f918-1f3ff.png","sheet_x":32,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"love_hotel":{"name":"Love Hotel","unified":"1F3E9","variations":[],"docomo":"E669-E6EF","au":"EAF3","softbank":"E501","google":"FE4B8","image":"1f3e9.png","sheet_x":11,"sheet_y":26,"short_name":"love_hotel","short_names":["love_hotel"],"text":null,"texts":null,"category":"Places","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"m":{"name":"Circled Latin Capital Letter M","unified":"24C2","variations":["24C2-FE0F"],"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E1","image":"24c2.png","sheet_x":0,"sheet_y":32,"short_name":"m","short_names":["m"],"text":null,"texts":null,"category":"Symbols","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-il":{"name":"Regional Indicator Symbol Letters Il","unified":"1F1EE-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f1.png","sheet_x":35,"sheet_y":18,"short_name":"flag-il","short_names":["flag-il"],"text":null,"texts":null,"category":"Flags","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wind_chime":{"name":"Wind Chime","unified":"1F390","variations":[],"docomo":null,"au":"EAED","softbank":"E442","google":"FE51E","image":"1f390.png","sheet_x":9,"sheet_y":4,"short_name":"wind_chime","short_names":["wind_chime"],"text":null,"texts":null,"category":"Objects","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spock-hand":{"name":"Raised Hand with Part Between Middle and Ring Fingers","unified":"1F596","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f596.png","sheet_x":25,"sheet_y":25,"short_name":"spock-hand","short_names":["spock-hand"],"text":null,"texts":null,"category":"People","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F596-1F3FB":{"unified":"1F596-1F3FB","image":"1f596-1f3fb.png","sheet_x":25,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FC":{"unified":"1F596-1F3FC","image":"1f596-1f3fc.png","sheet_x":25,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FD":{"unified":"1F596-1F3FD","image":"1f596-1f3fd.png","sheet_x":25,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FE":{"unified":"1F596-1F3FE","image":"1f596-1f3fe.png","sheet_x":25,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FF":{"unified":"1F596-1F3FF","image":"1f596-1f3ff.png","sheet_x":25,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"wedding":{"name":"Wedding","unified":"1F492","variations":[],"docomo":null,"au":"E5BB","softbank":"E43D","google":"FE82A","image":"1f492.png","sheet_x":19,"sheet_y":34,"short_name":"wedding","short_names":["wedding"],"text":null,"texts":null,"category":"Places","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"atm":{"name":"Automated Teller Machine","unified":"1F3E7","variations":[],"docomo":"E668","au":"E4A3","softbank":"E154","google":"FE4B6","image":"1f3e7.png","sheet_x":11,"sheet_y":24,"short_name":"atm","short_names":["atm"],"text":null,"texts":null,"category":"Symbols","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crossed_flags":{"name":"Crossed Flags","unified":"1F38C","variations":[],"docomo":null,"au":"E5D9","softbank":"E143","google":"FE514","image":"1f38c.png","sheet_x":9,"sheet_y":0,"short_name":"crossed_flags","short_names":["crossed_flags"],"text":null,"texts":null,"category":"Objects","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-it":{"name":"Regional Indicator Symbol Letters It","unified":"1F1EE-1F1F9","variations":[],"docomo":null,"au":"EB0F","softbank":"E50F","google":"FE4E9","image":"1f1ee-1f1f9.png","sheet_x":35,"sheet_y":25,"short_name":"flag-it","short_names":["flag-it","it"],"text":null,"texts":null,"category":"Flags","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"waxing_crescent_moon":{"name":"Waxing Crescent Moon Symbol","unified":"1F312","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f312.png","sheet_x":5,"sheet_y":39,"short_name":"waxing_crescent_moon","short_names":["waxing_crescent_moon"],"text":null,"texts":null,"category":"Nature","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"izakaya_lantern":{"name":"Izakaya Lantern","unified":"1F3EE","variations":[],"docomo":"E74B","au":"E4BD","softbank":"E30B","google":"FE4C2","image":"1f3ee.png","sheet_x":11,"sheet_y":31,"short_name":"izakaya_lantern","short_names":["izakaya_lantern","lantern"],"text":null,"texts":null,"category":"Objects","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"first_quarter_moon":{"name":"First Quarter Moon Symbol","unified":"1F313","variations":[],"docomo":"E69E","au":"E5AA","softbank":"E04C","google":"FE013","image":"1f313.png","sheet_x":5,"sheet_y":40,"short_name":"first_quarter_moon","short_names":["first_quarter_moon"],"text":null,"texts":null,"category":"Nature","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sa":{"name":"Squared Katakana Sa","unified":"1F202","variations":["1F202-FE0F"],"docomo":null,"au":"EA87","softbank":"E228","google":"FEB3F","image":"1f202.png","sheet_x":5,"sheet_y":7,"short_name":"sa","short_names":["sa"],"text":null,"texts":null,"category":"Symbols","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"classical_building":{"name":"Classical Building","unified":"1F3DB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3db.png","sheet_x":11,"sheet_y":12,"short_name":"classical_building","short_names":["classical_building"],"text":null,"texts":null,"category":"Places","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"writing_hand":{"name":"Writing Hand","unified":"270D","variations":["270D-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"270d.png","sheet_x":3,"sheet_y":27,"short_name":"writing_hand","short_names":["writing_hand"],"text":null,"texts":null,"category":"People","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270D-1F3FB":{"unified":"270D-1F3FB","image":"270d-1f3fb.png","sheet_x":3,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FC":{"unified":"270D-1F3FC","image":"270d-1f3fc.png","sheet_x":3,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FD":{"unified":"270D-1F3FD","image":"270d-1f3fd.png","sheet_x":3,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FE":{"unified":"270D-1F3FE","image":"270d-1f3fe.png","sheet_x":3,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FF":{"unified":"270D-1F3FF","image":"270d-1f3ff.png","sheet_x":3,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-ci":{"name":"Regional Indicator Symbol Letters Ci","unified":"1F1E8-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ee.png","sheet_x":33,"sheet_y":36,"short_name":"flag-ci","short_names":["flag-ci"],"text":null,"texts":null,"category":"Flags","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"moon":{"name":"Waxing Gibbous Moon Symbol","unified":"1F314","variations":[],"docomo":"E69D","au":"E5A9","softbank":"E04C","google":"FE012","image":"1f314.png","sheet_x":6,"sheet_y":0,"short_name":"moon","short_names":["moon","waxing_gibbous_moon"],"text":null,"texts":null,"category":"Nature","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"church":{"name":"Church","unified":"26EA","variations":["26EA-FE0F"],"docomo":null,"au":"E5BB","softbank":"E037","google":"FE4BB","image":"26ea.png","sheet_x":2,"sheet_y":29,"short_name":"church","short_names":["church"],"text":null,"texts":null,"category":"Places","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"email":{"name":"Envelope","unified":"2709","variations":["2709-FE0F"],"docomo":"E6D3","au":"E521","softbank":"E103","google":"FE529","image":"2709.png","sheet_x":3,"sheet_y":8,"short_name":"email","short_names":["email","envelope"],"text":null,"texts":null,"category":"Objects","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"passport_control":{"name":"Passport Control","unified":"1F6C2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c2.png","sheet_x":31,"sheet_y":21,"short_name":"passport_control","short_names":["passport_control"],"text":null,"texts":null,"category":"Symbols","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"nail_care":{"name":"Nail Polish","unified":"1F485","variations":[],"docomo":null,"au":"EAA0","softbank":"E31D","google":"FE196","image":"1f485.png","sheet_x":19,"sheet_y":6,"short_name":"nail_care","short_names":["nail_care"],"text":null,"texts":null,"category":"People","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F485-1F3FB":{"unified":"1F485-1F3FB","image":"1f485-1f3fb.png","sheet_x":19,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FC":{"unified":"1F485-1F3FC","image":"1f485-1f3fc.png","sheet_x":19,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FD":{"unified":"1F485-1F3FD","image":"1f485-1f3fd.png","sheet_x":19,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FE":{"unified":"1F485-1F3FE","image":"1f485-1f3fe.png","sheet_x":19,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FF":{"unified":"1F485-1F3FF","image":"1f485-1f3ff.png","sheet_x":19,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-jm":{"name":"Regional Indicator Symbol Letters Jm","unified":"1F1EF-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f2.png","sheet_x":35,"sheet_y":27,"short_name":"flag-jm","short_names":["flag-jm"],"text":null,"texts":null,"category":"Flags","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lips":{"name":"Mouth","unified":"1F444","variations":[],"docomo":"E6F9","au":"EAD1","softbank":"E41C","google":"FE193","image":"1f444.png","sheet_x":14,"sheet_y":1,"short_name":"lips","short_names":["lips"],"text":null,"texts":null,"category":"People","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mosque":{"name":"Mosque","unified":"1F54C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54c.png","sheet_x":24,"sheet_y":8,"short_name":"mosque","short_names":["mosque"],"text":null,"texts":null,"category":"Places","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-jp":{"name":"Regional Indicator Symbol Letters Jp","unified":"1F1EF-1F1F5","variations":[],"docomo":null,"au":"E4CC","softbank":"E50B","google":"FE4E5","image":"1f1ef-1f1f5.png","sheet_x":35,"sheet_y":29,"short_name":"flag-jp","short_names":["flag-jp","jp"],"text":null,"texts":null,"category":"Flags","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"new_moon_with_face":{"name":"New Moon with Face","unified":"1F31A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31a.png","sheet_x":6,"sheet_y":6,"short_name":"new_moon_with_face","short_names":["new_moon_with_face"],"text":null,"texts":null,"category":"Nature","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"customs":{"name":"Customs","unified":"1F6C3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c3.png","sheet_x":31,"sheet_y":22,"short_name":"customs","short_names":["customs"],"text":null,"texts":null,"category":"Symbols","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"envelope_with_arrow":{"name":"Envelope with Downwards Arrow Above","unified":"1F4E9","variations":[],"docomo":"E6CF","au":"EB62","softbank":"E103","google":"FE52B","image":"1f4e9.png","sheet_x":22,"sheet_y":3,"short_name":"envelope_with_arrow","short_names":["envelope_with_arrow"],"text":null,"texts":null,"category":"Objects","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"full_moon_with_face":{"name":"Full Moon with Face","unified":"1F31D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31d.png","sheet_x":6,"sheet_y":9,"short_name":"full_moon_with_face","short_names":["full_moon_with_face"],"text":null,"texts":null,"category":"Nature","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-je":{"name":"Regional Indicator Symbol Letters Je","unified":"1F1EF-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1ea.png","sheet_x":35,"sheet_y":26,"short_name":"flag-je","short_names":["flag-je"],"text":null,"texts":null,"category":"Flags","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"synagogue":{"name":"Synagogue","unified":"1F54D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54d.png","sheet_x":24,"sheet_y":9,"short_name":"synagogue","short_names":["synagogue"],"text":null,"texts":null,"category":"Places","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"baggage_claim":{"name":"Baggage Claim","unified":"1F6C4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c4.png","sheet_x":31,"sheet_y":23,"short_name":"baggage_claim","short_names":["baggage_claim"],"text":null,"texts":null,"category":"Symbols","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tongue":{"name":"Tongue","unified":"1F445","variations":[],"docomo":"E728","au":"EB47","softbank":"E409","google":"FE194","image":"1f445.png","sheet_x":14,"sheet_y":2,"short_name":"tongue","short_names":["tongue"],"text":null,"texts":null,"category":"People","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"incoming_envelope":{"name":"Incoming Envelope","unified":"1F4E8","variations":[],"docomo":"E6CF","au":"E591","softbank":"E103","google":"FE52A","image":"1f4e8.png","sheet_x":22,"sheet_y":2,"short_name":"incoming_envelope","short_names":["incoming_envelope"],"text":null,"texts":null,"category":"Objects","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"e-mail":{"name":"E-Mail Symbol","unified":"1F4E7","variations":[],"docomo":"E6D3","au":"EB71","softbank":"E103","google":"FEB92","image":"1f4e7.png","sheet_x":22,"sheet_y":1,"short_name":"e-mail","short_names":["e-mail"],"text":null,"texts":null,"category":"Objects","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ear":{"name":"Ear","unified":"1F442","variations":[],"docomo":"E692","au":"E5A5","softbank":"E41B","google":"FE191","image":"1f442.png","sheet_x":13,"sheet_y":30,"short_name":"ear","short_names":["ear"],"text":null,"texts":null,"category":"People","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F442-1F3FB":{"unified":"1F442-1F3FB","image":"1f442-1f3fb.png","sheet_x":13,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FC":{"unified":"1F442-1F3FC","image":"1f442-1f3fc.png","sheet_x":13,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FD":{"unified":"1F442-1F3FD","image":"1f442-1f3fd.png","sheet_x":13,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FE":{"unified":"1F442-1F3FE","image":"1f442-1f3fe.png","sheet_x":13,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FF":{"unified":"1F442-1F3FF","image":"1f442-1f3ff.png","sheet_x":13,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"first_quarter_moon_with_face":{"name":"First Quarter Moon with Face","unified":"1F31B","variations":[],"docomo":"E69E","au":"E489","softbank":"E04C","google":"FE016","image":"1f31b.png","sheet_x":6,"sheet_y":7,"short_name":"first_quarter_moon_with_face","short_names":["first_quarter_moon_with_face"],"text":null,"texts":null,"category":"Nature","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"left_luggage":{"name":"Left Luggage","unified":"1F6C5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c5.png","sheet_x":31,"sheet_y":24,"short_name":"left_luggage","short_names":["left_luggage"],"text":null,"texts":null,"category":"Symbols","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kaaba":{"name":"Kaaba","unified":"1F54B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54b.png","sheet_x":24,"sheet_y":7,"short_name":"kaaba","short_names":["kaaba"],"text":null,"texts":null,"category":"Places","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-jo":{"name":"Regional Indicator Symbol Letters Jo","unified":"1F1EF-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f4.png","sheet_x":35,"sheet_y":28,"short_name":"flag-jo","short_names":["flag-jo"],"text":null,"texts":null,"category":"Flags","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kz":{"name":"Regional Indicator Symbol Letters Kz","unified":"1F1F0-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ff.png","sheet_x":35,"sheet_y":40,"short_name":"flag-kz","short_names":["flag-kz"],"text":null,"texts":null,"category":"Flags","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wheelchair":{"name":"Wheelchair Symbol","unified":"267F","variations":["267F-FE0F"],"docomo":"E69B","au":"E47F","softbank":"E20A","google":"FEB20","image":"267f.png","sheet_x":2,"sheet_y":3,"short_name":"wheelchair","short_names":["wheelchair"],"text":null,"texts":null,"category":"Symbols","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"last_quarter_moon_with_face":{"name":"Last Quarter Moon with Face","unified":"1F31C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31c.png","sheet_x":6,"sheet_y":8,"short_name":"last_quarter_moon_with_face","short_names":["last_quarter_moon_with_face"],"text":null,"texts":null,"category":"Nature","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"nose":{"name":"Nose","unified":"1F443","variations":[],"docomo":null,"au":"EAD0","softbank":"E41A","google":"FE192","image":"1f443.png","sheet_x":13,"sheet_y":36,"short_name":"nose","short_names":["nose"],"text":null,"texts":null,"category":"People","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F443-1F3FB":{"unified":"1F443-1F3FB","image":"1f443-1f3fb.png","sheet_x":13,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FC":{"unified":"1F443-1F3FC","image":"1f443-1f3fc.png","sheet_x":13,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FD":{"unified":"1F443-1F3FD","image":"1f443-1f3fd.png","sheet_x":13,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FE":{"unified":"1F443-1F3FE","image":"1f443-1f3fe.png","sheet_x":13,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FF":{"unified":"1F443-1F3FF","image":"1f443-1f3ff.png","sheet_x":14,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"love_letter":{"name":"Love Letter","unified":"1F48C","variations":[],"docomo":"E717","au":"EB78","softbank":"E103-E328","google":"FE824","image":"1f48c.png","sheet_x":19,"sheet_y":28,"short_name":"love_letter","short_names":["love_letter"],"text":null,"texts":null,"category":"Objects","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shinto_shrine":{"name":"Shinto Shrine","unified":"26E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26e9.png","sheet_x":2,"sheet_y":28,"short_name":"shinto_shrine","short_names":["shinto_shrine"],"text":null,"texts":null,"category":"Places","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_smoking":{"name":"No Smoking Symbol","unified":"1F6AD","variations":[],"docomo":"E680","au":"E47E","softbank":"E208","google":"FEB1F","image":"1f6ad.png","sheet_x":30,"sheet_y":21,"short_name":"no_smoking","short_names":["no_smoking"],"text":null,"texts":null,"category":"Symbols","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"postbox":{"name":"Postbox","unified":"1F4EE","variations":[],"docomo":"E665","au":"E51B","softbank":"E102","google":"FE52E","image":"1f4ee.png","sheet_x":22,"sheet_y":8,"short_name":"postbox","short_names":["postbox"],"text":null,"texts":null,"category":"Objects","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eye":{"name":"Eye","unified":"1F441","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f441.png","sheet_x":13,"sheet_y":29,"short_name":"eye","short_names":["eye"],"text":null,"texts":null,"category":"People","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sun_with_face":{"name":"Sun with Face","unified":"1F31E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31e.png","sheet_x":6,"sheet_y":10,"short_name":"sun_with_face","short_names":["sun_with_face"],"text":null,"texts":null,"category":"Nature","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ke":{"name":"Regional Indicator Symbol Letters Ke","unified":"1F1F0-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ea.png","sheet_x":35,"sheet_y":30,"short_name":"flag-ke","short_names":["flag-ke"],"text":null,"texts":null,"category":"Flags","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mailbox_closed":{"name":"Closed Mailbox with Lowered Flag","unified":"1F4EA","variations":[],"docomo":"E665","au":"E51B","softbank":"E101","google":"FE52C","image":"1f4ea.png","sheet_x":22,"sheet_y":4,"short_name":"mailbox_closed","short_names":["mailbox_closed"],"text":null,"texts":null,"category":"Objects","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ki":{"name":"Regional Indicator Symbol Letters Ki","unified":"1F1F0-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ee.png","sheet_x":35,"sheet_y":33,"short_name":"flag-ki","short_names":["flag-ki"],"text":null,"texts":null,"category":"Flags","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eyes":{"name":"Eyes","unified":"1F440","variations":[],"docomo":"E691","au":"E5A4","softbank":"E419","google":"FE190","image":"1f440.png","sheet_x":13,"sheet_y":28,"short_name":"eyes","short_names":["eyes"],"text":null,"texts":null,"category":"People","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wc":{"name":"Water Closet","unified":"1F6BE","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E309","google":"FE508","image":"1f6be.png","sheet_x":31,"sheet_y":12,"short_name":"wc","short_names":["wc"],"text":null,"texts":null,"category":"Symbols","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crescent_moon":{"name":"Crescent Moon","unified":"1F319","variations":[],"docomo":"E69F","au":"E486","softbank":"E04C","google":"FE014","image":"1f319.png","sheet_x":6,"sheet_y":5,"short_name":"crescent_moon","short_names":["crescent_moon"],"text":null,"texts":null,"category":"Nature","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mailbox":{"name":"Closed Mailbox with Raised Flag","unified":"1F4EB","variations":[],"docomo":"E665","au":"EB0A","softbank":"E101","google":"FE52D","image":"1f4eb.png","sheet_x":22,"sheet_y":5,"short_name":"mailbox","short_names":["mailbox"],"text":null,"texts":null,"category":"Objects","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-xk":{"name":"Regional Indicator Symbol Letters Xk","unified":"1F1FD-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fd-1f1f0.png","sheet_x":38,"sheet_y":38,"short_name":"flag-xk","short_names":["flag-xk"],"text":null,"texts":null,"category":"Flags","sort_order":118,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"parking":{"name":"Negative Squared Latin Capital Letter P","unified":"1F17F","variations":["1F17F-FE0F"],"docomo":"E66C","au":"E4A6","softbank":"E14F","google":"FE7F6","image":"1f17f.png","sheet_x":4,"sheet_y":35,"short_name":"parking","short_names":["parking"],"text":null,"texts":null,"category":"Symbols","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bust_in_silhouette":{"name":"Bust in Silhouette","unified":"1F464","variations":[],"docomo":"E6B1","au":null,"softbank":null,"google":"FE19A","image":"1f464.png","sheet_x":16,"sheet_y":6,"short_name":"bust_in_silhouette","short_names":["bust_in_silhouette"],"text":null,"texts":null,"category":"People","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"star":{"name":"White Medium Star","unified":"2B50","variations":["2B50-FE0F"],"docomo":null,"au":"E48B","softbank":"E32F","google":"FEB68","image":"2b50.png","sheet_x":4,"sheet_y":24,"short_name":"star","short_names":["star"],"text":null,"texts":null,"category":"Nature","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"star2":{"name":"Glowing Star","unified":"1F31F","variations":[],"docomo":null,"au":"E48B","softbank":"E335","google":"FEB69","image":"1f31f.png","sheet_x":6,"sheet_y":11,"short_name":"star2","short_names":["star2"],"text":null,"texts":null,"category":"Nature","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mailbox_with_mail":{"name":"Open Mailbox with Raised Flag","unified":"1F4EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ec.png","sheet_x":22,"sheet_y":6,"short_name":"mailbox_with_mail","short_names":["mailbox_with_mail"],"text":null,"texts":null,"category":"Objects","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"potable_water":{"name":"Potable Water Symbol","unified":"1F6B0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b0.png","sheet_x":30,"sheet_y":24,"short_name":"potable_water","short_names":["potable_water"],"text":null,"texts":null,"category":"Symbols","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"busts_in_silhouette":{"name":"Busts in Silhouette","unified":"1F465","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f465.png","sheet_x":16,"sheet_y":7,"short_name":"busts_in_silhouette","short_names":["busts_in_silhouette"],"text":null,"texts":null,"category":"People","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kw":{"name":"Regional Indicator Symbol Letters Kw","unified":"1F1F0-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fc.png","sheet_x":35,"sheet_y":38,"short_name":"flag-kw","short_names":["flag-kw"],"text":null,"texts":null,"category":"Flags","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mens":{"name":"Mens Symbol","unified":"1F6B9","variations":[],"docomo":null,"au":null,"softbank":"E138","google":"FEB33","image":"1f6b9.png","sheet_x":31,"sheet_y":7,"short_name":"mens","short_names":["mens"],"text":null,"texts":null,"category":"Symbols","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dizzy":{"name":"Dizzy Symbol","unified":"1F4AB","variations":[],"docomo":null,"au":"EB5C","softbank":"E407","google":"FEB5F","image":"1f4ab.png","sheet_x":20,"sheet_y":23,"short_name":"dizzy","short_names":["dizzy"],"text":null,"texts":null,"category":"Nature","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"speaking_head_in_silhouette":{"name":"Speaking Head in Silhouette","unified":"1F5E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e3.png","sheet_x":26,"sheet_y":5,"short_name":"speaking_head_in_silhouette","short_names":["speaking_head_in_silhouette"],"text":null,"texts":null,"category":"People","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kg":{"name":"Regional Indicator Symbol Letters Kg","unified":"1F1F0-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ec.png","sheet_x":35,"sheet_y":31,"short_name":"flag-kg","short_names":["flag-kg"],"text":null,"texts":null,"category":"Flags","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mailbox_with_no_mail":{"name":"Open Mailbox with Lowered Flag","unified":"1F4ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ed.png","sheet_x":22,"sheet_y":7,"short_name":"mailbox_with_no_mail","short_names":["mailbox_with_no_mail"],"text":null,"texts":null,"category":"Objects","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sparkles":{"name":"Sparkles","unified":"2728","variations":[],"docomo":"E6FA","au":"EAAB","softbank":"E32E","google":"FEB60","image":"2728.png","sheet_x":3,"sheet_y":39,"short_name":"sparkles","short_names":["sparkles"],"text":null,"texts":null,"category":"Nature","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"baby":{"name":"Baby","unified":"1F476","variations":[],"docomo":null,"au":"EB18","softbank":"E51A","google":"FE1A9","image":"1f476.png","sheet_x":17,"sheet_y":38,"short_name":"baby","short_names":["baby"],"text":null,"texts":null,"category":"People","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F476-1F3FB":{"unified":"1F476-1F3FB","image":"1f476-1f3fb.png","sheet_x":17,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FC":{"unified":"1F476-1F3FC","image":"1f476-1f3fc.png","sheet_x":17,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FD":{"unified":"1F476-1F3FD","image":"1f476-1f3fd.png","sheet_x":18,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FE":{"unified":"1F476-1F3FE","image":"1f476-1f3fe.png","sheet_x":18,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FF":{"unified":"1F476-1F3FF","image":"1f476-1f3ff.png","sheet_x":18,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"package":{"name":"Package","unified":"1F4E6","variations":[],"docomo":"E685","au":"E51F","softbank":"E112","google":"FE535","image":"1f4e6.png","sheet_x":22,"sheet_y":0,"short_name":"package","short_names":["package"],"text":null,"texts":null,"category":"Objects","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"womens":{"name":"Womens Symbol","unified":"1F6BA","variations":[],"docomo":null,"au":null,"softbank":"E139","google":"FEB34","image":"1f6ba.png","sheet_x":31,"sheet_y":8,"short_name":"womens","short_names":["womens"],"text":null,"texts":null,"category":"Symbols","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-la":{"name":"Regional Indicator Symbol Letters La","unified":"1F1F1-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e6.png","sheet_x":36,"sheet_y":0,"short_name":"flag-la","short_names":["flag-la"],"text":null,"texts":null,"category":"Flags","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"baby_symbol":{"name":"Baby Symbol","unified":"1F6BC","variations":[],"docomo":null,"au":"EB18","softbank":"E13A","google":"FEB35","image":"1f6bc.png","sheet_x":31,"sheet_y":10,"short_name":"baby_symbol","short_names":["baby_symbol"],"text":null,"texts":null,"category":"Symbols","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lv":{"name":"Regional Indicator Symbol Letters Lv","unified":"1F1F1-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fb.png","sheet_x":36,"sheet_y":9,"short_name":"flag-lv","short_names":["flag-lv"],"text":null,"texts":null,"category":"Flags","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"postal_horn":{"name":"Postal Horn","unified":"1F4EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ef.png","sheet_x":22,"sheet_y":9,"short_name":"postal_horn","short_names":["postal_horn"],"text":null,"texts":null,"category":"Objects","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"comet":{"name":"Comet","unified":"2604","variations":["2604-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2604.png","sheet_x":1,"sheet_y":4,"short_name":"comet","short_names":["comet"],"text":null,"texts":null,"category":"Nature","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"boy":{"name":"Boy","unified":"1F466","variations":[],"docomo":"E6F0","au":"E4FC","softbank":"E001","google":"FE19B","image":"1f466.png","sheet_x":16,"sheet_y":8,"short_name":"boy","short_names":["boy"],"text":null,"texts":null,"category":"People","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F466-1F3FB":{"unified":"1F466-1F3FB","image":"1f466-1f3fb.png","sheet_x":16,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FC":{"unified":"1F466-1F3FC","image":"1f466-1f3fc.png","sheet_x":16,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FD":{"unified":"1F466-1F3FD","image":"1f466-1f3fd.png","sheet_x":16,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FE":{"unified":"1F466-1F3FE","image":"1f466-1f3fe.png","sheet_x":16,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FF":{"unified":"1F466-1F3FF","image":"1f466-1f3ff.png","sheet_x":16,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"restroom":{"name":"Restroom","unified":"1F6BB","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E151","google":"FE506","image":"1f6bb.png","sheet_x":31,"sheet_y":9,"short_name":"restroom","short_names":["restroom"],"text":null,"texts":null,"category":"Symbols","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lb":{"name":"Regional Indicator Symbol Letters Lb","unified":"1F1F1-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e7.png","sheet_x":36,"sheet_y":1,"short_name":"flag-lb","short_names":["flag-lb"],"text":null,"texts":null,"category":"Flags","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"inbox_tray":{"name":"Inbox Tray","unified":"1F4E5","variations":[],"docomo":null,"au":"E593","softbank":null,"google":"FE534","image":"1f4e5.png","sheet_x":21,"sheet_y":40,"short_name":"inbox_tray","short_names":["inbox_tray"],"text":null,"texts":null,"category":"Objects","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sunny":{"name":"Black Sun with Rays","unified":"2600","variations":["2600-FE0F"],"docomo":"E63E","au":"E488","softbank":"E04A","google":"FE000","image":"2600.png","sheet_x":1,"sheet_y":0,"short_name":"sunny","short_names":["sunny"],"text":null,"texts":null,"category":"Nature","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"girl":{"name":"Girl","unified":"1F467","variations":[],"docomo":"E6F0","au":"E4FA","softbank":"E002","google":"FE19C","image":"1f467.png","sheet_x":16,"sheet_y":14,"short_name":"girl","short_names":["girl"],"text":null,"texts":null,"category":"People","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F467-1F3FB":{"unified":"1F467-1F3FB","image":"1f467-1f3fb.png","sheet_x":16,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FC":{"unified":"1F467-1F3FC","image":"1f467-1f3fc.png","sheet_x":16,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FD":{"unified":"1F467-1F3FD","image":"1f467-1f3fd.png","sheet_x":16,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FE":{"unified":"1F467-1F3FE","image":"1f467-1f3fe.png","sheet_x":16,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FF":{"unified":"1F467-1F3FF","image":"1f467-1f3ff.png","sheet_x":16,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"man":{"name":"Man","unified":"1F468","variations":[],"docomo":"E6F0","au":"E4FC","softbank":"E004","google":"FE19D","image":"1f468.png","sheet_x":16,"sheet_y":20,"short_name":"man","short_names":["man"],"text":null,"texts":null,"category":"People","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F468-1F3FB":{"unified":"1F468-1F3FB","image":"1f468-1f3fb.png","sheet_x":16,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FC":{"unified":"1F468-1F3FC","image":"1f468-1f3fc.png","sheet_x":16,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FD":{"unified":"1F468-1F3FD","image":"1f468-1f3fd.png","sheet_x":16,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FE":{"unified":"1F468-1F3FE","image":"1f468-1f3fe.png","sheet_x":16,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FF":{"unified":"1F468-1F3FF","image":"1f468-1f3ff.png","sheet_x":16,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"put_litter_in_its_place":{"name":"Put Litter in Its Place Symbol","unified":"1F6AE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ae.png","sheet_x":30,"sheet_y":22,"short_name":"put_litter_in_its_place","short_names":["put_litter_in_its_place"],"text":null,"texts":null,"category":"Symbols","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mostly_sunny":{"name":"White Sun with Small Cloud","unified":"1F324","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f324.png","sheet_x":6,"sheet_y":14,"short_name":"mostly_sunny","short_names":["mostly_sunny","sun_small_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ls":{"name":"Regional Indicator Symbol Letters Ls","unified":"1F1F1-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f8.png","sheet_x":36,"sheet_y":6,"short_name":"flag-ls","short_names":["flag-ls"],"text":null,"texts":null,"category":"Flags","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"outbox_tray":{"name":"Outbox Tray","unified":"1F4E4","variations":[],"docomo":null,"au":"E592","softbank":null,"google":"FE533","image":"1f4e4.png","sheet_x":21,"sheet_y":39,"short_name":"outbox_tray","short_names":["outbox_tray"],"text":null,"texts":null,"category":"Objects","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cinema":{"name":"Cinema","unified":"1F3A6","variations":[],"docomo":"E677","au":"E517","softbank":"E507","google":"FE802","image":"1f3a6.png","sheet_x":9,"sheet_y":21,"short_name":"cinema","short_names":["cinema"],"text":null,"texts":null,"category":"Symbols","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lr":{"name":"Regional Indicator Symbol Letters Lr","unified":"1F1F1-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f7.png","sheet_x":36,"sheet_y":5,"short_name":"flag-lr","short_names":["flag-lr"],"text":null,"texts":null,"category":"Flags","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scroll":{"name":"Scroll","unified":"1F4DC","variations":[],"docomo":"E70A","au":"E55F","softbank":null,"google":"FE4FD","image":"1f4dc.png","sheet_x":21,"sheet_y":31,"short_name":"scroll","short_names":["scroll"],"text":null,"texts":null,"category":"Objects","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"partly_sunny":{"name":"Sun Behind Cloud","unified":"26C5","variations":["26C5-FE0F"],"docomo":"E63E-E63F","au":"E48E","softbank":"E04A-E049","google":"FE00F","image":"26c5.png","sheet_x":2,"sheet_y":21,"short_name":"partly_sunny","short_names":["partly_sunny"],"text":null,"texts":null,"category":"Nature","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman":{"name":"Woman","unified":"1F469","variations":[],"docomo":"E6F0","au":"E4FA","softbank":"E005","google":"FE19E","image":"1f469.png","sheet_x":16,"sheet_y":26,"short_name":"woman","short_names":["woman"],"text":null,"texts":null,"category":"People","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F469-1F3FB":{"unified":"1F469-1F3FB","image":"1f469-1f3fb.png","sheet_x":16,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FC":{"unified":"1F469-1F3FC","image":"1f469-1f3fc.png","sheet_x":16,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FD":{"unified":"1F469-1F3FD","image":"1f469-1f3fd.png","sheet_x":16,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FE":{"unified":"1F469-1F3FE","image":"1f469-1f3fe.png","sheet_x":16,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FF":{"unified":"1F469-1F3FF","image":"1f469-1f3ff.png","sheet_x":16,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"signal_strength":{"name":"Antenna with Bars","unified":"1F4F6","variations":[],"docomo":null,"au":"EA84","softbank":"E20B","google":"FE838","image":"1f4f6.png","sheet_x":22,"sheet_y":16,"short_name":"signal_strength","short_names":["signal_strength"],"text":null,"texts":null,"category":"Symbols","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"person_with_blond_hair":{"name":"Person with Blond Hair","unified":"1F471","variations":[],"docomo":null,"au":"EB13","softbank":"E515","google":"FE1A4","image":"1f471.png","sheet_x":17,"sheet_y":8,"short_name":"person_with_blond_hair","short_names":["person_with_blond_hair"],"text":null,"texts":null,"category":"People","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F471-1F3FB":{"unified":"1F471-1F3FB","image":"1f471-1f3fb.png","sheet_x":17,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FC":{"unified":"1F471-1F3FC","image":"1f471-1f3fc.png","sheet_x":17,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FD":{"unified":"1F471-1F3FD","image":"1f471-1f3fd.png","sheet_x":17,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FE":{"unified":"1F471-1F3FE","image":"1f471-1f3fe.png","sheet_x":17,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FF":{"unified":"1F471-1F3FF","image":"1f471-1f3ff.png","sheet_x":17,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"barely_sunny":{"name":"White Sun Behind Cloud","unified":"1F325","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f325.png","sheet_x":6,"sheet_y":15,"short_name":"barely_sunny","short_names":["barely_sunny","sun_behind_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"page_with_curl":{"name":"Page with Curl","unified":"1F4C3","variations":[],"docomo":"E689","au":"E561","softbank":"E301","google":"FE540","image":"1f4c3.png","sheet_x":21,"sheet_y":6,"short_name":"page_with_curl","short_names":["page_with_curl"],"text":null,"texts":null,"category":"Objects","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ly":{"name":"Regional Indicator Symbol Letters Ly","unified":"1F1F1-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fe.png","sheet_x":36,"sheet_y":10,"short_name":"flag-ly","short_names":["flag-ly"],"text":null,"texts":null,"category":"Flags","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bookmark_tabs":{"name":"Bookmark Tabs","unified":"1F4D1","variations":[],"docomo":"E689","au":"EB0B","softbank":"E301","google":"FE552","image":"1f4d1.png","sheet_x":21,"sheet_y":20,"short_name":"bookmark_tabs","short_names":["bookmark_tabs"],"text":null,"texts":null,"category":"Objects","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-li":{"name":"Regional Indicator Symbol Letters Li","unified":"1F1F1-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1ee.png","sheet_x":36,"sheet_y":3,"short_name":"flag-li","short_names":["flag-li"],"text":null,"texts":null,"category":"Flags","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"older_man":{"name":"Older Man","unified":"1F474","variations":[],"docomo":null,"au":"EB16","softbank":"E518","google":"FE1A7","image":"1f474.png","sheet_x":17,"sheet_y":26,"short_name":"older_man","short_names":["older_man"],"text":null,"texts":null,"category":"People","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F474-1F3FB":{"unified":"1F474-1F3FB","image":"1f474-1f3fb.png","sheet_x":17,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FC":{"unified":"1F474-1F3FC","image":"1f474-1f3fc.png","sheet_x":17,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FD":{"unified":"1F474-1F3FD","image":"1f474-1f3fd.png","sheet_x":17,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FE":{"unified":"1F474-1F3FE","image":"1f474-1f3fe.png","sheet_x":17,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FF":{"unified":"1F474-1F3FF","image":"1f474-1f3ff.png","sheet_x":17,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"partly_sunny_rain":{"name":"White Sun Behind Cloud with Rain","unified":"1F326","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f326.png","sheet_x":6,"sheet_y":16,"short_name":"partly_sunny_rain","short_names":["partly_sunny_rain","sun_behind_rain_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"koko":{"name":"Squared Katakana Koko","unified":"1F201","variations":[],"docomo":null,"au":null,"softbank":"E203","google":"FEB24","image":"1f201.png","sheet_x":5,"sheet_y":6,"short_name":"koko","short_names":["koko"],"text":null,"texts":null,"category":"Symbols","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bar_chart":{"name":"Bar Chart","unified":"1F4CA","variations":[],"docomo":null,"au":"E574","softbank":"E14A","google":"FE54A","image":"1f4ca.png","sheet_x":21,"sheet_y":13,"short_name":"bar_chart","short_names":["bar_chart"],"text":null,"texts":null,"category":"Objects","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cloud":{"name":"Cloud","unified":"2601","variations":["2601-FE0F"],"docomo":"E63F","au":"E48D","softbank":"E049","google":"FE001","image":"2601.png","sheet_x":1,"sheet_y":1,"short_name":"cloud","short_names":["cloud"],"text":null,"texts":null,"category":"Nature","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ng":{"name":"Squared Ng","unified":"1F196","variations":[],"docomo":"E72F","au":null,"softbank":null,"google":"FEB28","image":"1f196.png","sheet_x":5,"sheet_y":1,"short_name":"ng","short_names":["ng"],"text":null,"texts":null,"category":"Symbols","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lt":{"name":"Regional Indicator Symbol Letters Lt","unified":"1F1F1-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f9.png","sheet_x":36,"sheet_y":7,"short_name":"flag-lt","short_names":["flag-lt"],"text":null,"texts":null,"category":"Flags","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"older_woman":{"name":"Older Woman","unified":"1F475","variations":[],"docomo":null,"au":"EB17","softbank":"E519","google":"FE1A8","image":"1f475.png","sheet_x":17,"sheet_y":32,"short_name":"older_woman","short_names":["older_woman"],"text":null,"texts":null,"category":"People","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F475-1F3FB":{"unified":"1F475-1F3FB","image":"1f475-1f3fb.png","sheet_x":17,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FC":{"unified":"1F475-1F3FC","image":"1f475-1f3fc.png","sheet_x":17,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FD":{"unified":"1F475-1F3FD","image":"1f475-1f3fd.png","sheet_x":17,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FE":{"unified":"1F475-1F3FE","image":"1f475-1f3fe.png","sheet_x":17,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FF":{"unified":"1F475-1F3FF","image":"1f475-1f3ff.png","sheet_x":17,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"rain_cloud":{"name":"Cloud with Rain","unified":"1F327","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f327.png","sheet_x":6,"sheet_y":17,"short_name":"rain_cloud","short_names":["rain_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lu":{"name":"Regional Indicator Symbol Letters Lu","unified":"1F1F1-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fa.png","sheet_x":36,"sheet_y":8,"short_name":"flag-lu","short_names":["flag-lu"],"text":null,"texts":null,"category":"Flags","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"chart_with_upwards_trend":{"name":"Chart with Upwards Trend","unified":"1F4C8","variations":[],"docomo":null,"au":"E575","softbank":"E14A","google":"FE54B","image":"1f4c8.png","sheet_x":21,"sheet_y":11,"short_name":"chart_with_upwards_trend","short_names":["chart_with_upwards_trend"],"text":null,"texts":null,"category":"Objects","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ok":{"name":"Squared Ok","unified":"1F197","variations":[],"docomo":"E70B","au":"E5AD","softbank":"E24D","google":"FEB27","image":"1f197.png","sheet_x":5,"sheet_y":2,"short_name":"ok","short_names":["ok"],"text":null,"texts":null,"category":"Symbols","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man_with_gua_pi_mao":{"name":"Man with Gua Pi Mao","unified":"1F472","variations":[],"docomo":null,"au":"EB14","softbank":"E516","google":"FE1A5","image":"1f472.png","sheet_x":17,"sheet_y":14,"short_name":"man_with_gua_pi_mao","short_names":["man_with_gua_pi_mao"],"text":null,"texts":null,"category":"People","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F472-1F3FB":{"unified":"1F472-1F3FB","image":"1f472-1f3fb.png","sheet_x":17,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FC":{"unified":"1F472-1F3FC","image":"1f472-1f3fc.png","sheet_x":17,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FD":{"unified":"1F472-1F3FD","image":"1f472-1f3fd.png","sheet_x":17,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FE":{"unified":"1F472-1F3FE","image":"1f472-1f3fe.png","sheet_x":17,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FF":{"unified":"1F472-1F3FF","image":"1f472-1f3ff.png","sheet_x":17,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"thunder_cloud_and_rain":{"name":"Thunder Cloud and Rain","unified":"26C8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26c8.png","sheet_x":2,"sheet_y":22,"short_name":"thunder_cloud_and_rain","short_names":["thunder_cloud_and_rain"],"text":null,"texts":null,"category":"Nature","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"up":{"name":"Squared Up with Exclamation Mark","unified":"1F199","variations":[],"docomo":null,"au":"E50F","softbank":"E213","google":"FEB37","image":"1f199.png","sheet_x":5,"sheet_y":4,"short_name":"up","short_names":["up"],"text":null,"texts":null,"category":"Symbols","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man_with_turban":{"name":"Man with Turban","unified":"1F473","variations":[],"docomo":null,"au":"EB15","softbank":"E517","google":"FE1A6","image":"1f473.png","sheet_x":17,"sheet_y":20,"short_name":"man_with_turban","short_names":["man_with_turban"],"text":null,"texts":null,"category":"People","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F473-1F3FB":{"unified":"1F473-1F3FB","image":"1f473-1f3fb.png","sheet_x":17,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FC":{"unified":"1F473-1F3FC","image":"1f473-1f3fc.png","sheet_x":17,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FD":{"unified":"1F473-1F3FD","image":"1f473-1f3fd.png","sheet_x":17,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FE":{"unified":"1F473-1F3FE","image":"1f473-1f3fe.png","sheet_x":17,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FF":{"unified":"1F473-1F3FF","image":"1f473-1f3ff.png","sheet_x":17,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"chart_with_downwards_trend":{"name":"Chart with Downwards Trend","unified":"1F4C9","variations":[],"docomo":null,"au":"E576","softbank":null,"google":"FE54C","image":"1f4c9.png","sheet_x":21,"sheet_y":12,"short_name":"chart_with_downwards_trend","short_names":["chart_with_downwards_trend"],"text":null,"texts":null,"category":"Objects","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mo":{"name":"Regional Indicator Symbol Letters Mo","unified":"1F1F2-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f4.png","sheet_x":36,"sheet_y":22,"short_name":"flag-mo","short_names":["flag-mo"],"text":null,"texts":null,"category":"Flags","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"page_facing_up":{"name":"Page Facing Up","unified":"1F4C4","variations":[],"docomo":"E689","au":"E569","softbank":"E301","google":"FE541","image":"1f4c4.png","sheet_x":21,"sheet_y":7,"short_name":"page_facing_up","short_names":["page_facing_up"],"text":null,"texts":null,"category":"Objects","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cool":{"name":"Squared Cool","unified":"1F192","variations":[],"docomo":null,"au":"EA85","softbank":"E214","google":"FEB38","image":"1f192.png","sheet_x":4,"sheet_y":38,"short_name":"cool","short_names":["cool"],"text":null,"texts":null,"category":"Symbols","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lightning":{"name":"Cloud with Lightning","unified":"1F329","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f329.png","sheet_x":6,"sheet_y":19,"short_name":"lightning","short_names":["lightning","lightning_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mk":{"name":"Regional Indicator Symbol Letters Mk","unified":"1F1F2-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f0.png","sheet_x":36,"sheet_y":18,"short_name":"flag-mk","short_names":["flag-mk"],"text":null,"texts":null,"category":"Flags","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"cop":{"name":"Police Officer","unified":"1F46E","variations":[],"docomo":null,"au":"E5DD","softbank":"E152","google":"FE1A1","image":"1f46e.png","sheet_x":16,"sheet_y":36,"short_name":"cop","short_names":["cop"],"text":null,"texts":null,"category":"People","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F46E-1F3FB":{"unified":"1F46E-1F3FB","image":"1f46e-1f3fb.png","sheet_x":16,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FC":{"unified":"1F46E-1F3FC","image":"1f46e-1f3fc.png","sheet_x":16,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FD":{"unified":"1F46E-1F3FD","image":"1f46e-1f3fd.png","sheet_x":16,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FE":{"unified":"1F46E-1F3FE","image":"1f46e-1f3fe.png","sheet_x":16,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FF":{"unified":"1F46E-1F3FF","image":"1f46e-1f3ff.png","sheet_x":17,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-mg":{"name":"Regional Indicator Symbol Letters Mg","unified":"1F1F2-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ec.png","sheet_x":36,"sheet_y":16,"short_name":"flag-mg","short_names":["flag-mg"],"text":null,"texts":null,"category":"Flags","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"date":{"name":"Calendar","unified":"1F4C5","variations":[],"docomo":null,"au":"E563","softbank":null,"google":"FE542","image":"1f4c5.png","sheet_x":21,"sheet_y":8,"short_name":"date","short_names":["date"],"text":null,"texts":null,"category":"Objects","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"new":{"name":"Squared New","unified":"1F195","variations":[],"docomo":"E6DD","au":"E5B5","softbank":"E212","google":"FEB36","image":"1f195.png","sheet_x":5,"sheet_y":0,"short_name":"new","short_names":["new"],"text":null,"texts":null,"category":"Symbols","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"zap":{"name":"High Voltage Sign","unified":"26A1","variations":["26A1-FE0F"],"docomo":"E642","au":"E487","softbank":"E13D","google":"FE004","image":"26a1.png","sheet_x":2,"sheet_y":13,"short_name":"zap","short_names":["zap"],"text":null,"texts":null,"category":"Nature","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"construction_worker":{"name":"Construction Worker","unified":"1F477","variations":[],"docomo":null,"au":"EB19","softbank":"E51B","google":"FE1AA","image":"1f477.png","sheet_x":18,"sheet_y":3,"short_name":"construction_worker","short_names":["construction_worker"],"text":null,"texts":null,"category":"People","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F477-1F3FB":{"unified":"1F477-1F3FB","image":"1f477-1f3fb.png","sheet_x":18,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FC":{"unified":"1F477-1F3FC","image":"1f477-1f3fc.png","sheet_x":18,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FD":{"unified":"1F477-1F3FD","image":"1f477-1f3fd.png","sheet_x":18,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FE":{"unified":"1F477-1F3FE","image":"1f477-1f3fe.png","sheet_x":18,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FF":{"unified":"1F477-1F3FF","image":"1f477-1f3ff.png","sheet_x":18,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"guardsman":{"name":"Guardsman","unified":"1F482","variations":[],"docomo":null,"au":null,"softbank":"E51E","google":"FE1B5","image":"1f482.png","sheet_x":18,"sheet_y":34,"short_name":"guardsman","short_names":["guardsman"],"text":null,"texts":null,"category":"People","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F482-1F3FB":{"unified":"1F482-1F3FB","image":"1f482-1f3fb.png","sheet_x":18,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FC":{"unified":"1F482-1F3FC","image":"1f482-1f3fc.png","sheet_x":18,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FD":{"unified":"1F482-1F3FD","image":"1f482-1f3fd.png","sheet_x":18,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FE":{"unified":"1F482-1F3FE","image":"1f482-1f3fe.png","sheet_x":18,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FF":{"unified":"1F482-1F3FF","image":"1f482-1f3ff.png","sheet_x":18,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"fire":{"name":"Fire","unified":"1F525","variations":[],"docomo":null,"au":"E47B","softbank":"E11D","google":"FE4F6","image":"1f525.png","sheet_x":23,"sheet_y":21,"short_name":"fire","short_names":["fire"],"text":null,"texts":null,"category":"Nature","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"free":{"name":"Squared Free","unified":"1F193","variations":[],"docomo":"E6D7","au":"E578","softbank":null,"google":"FEB21","image":"1f193.png","sheet_x":4,"sheet_y":39,"short_name":"free","short_names":["free"],"text":null,"texts":null,"category":"Symbols","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mw":{"name":"Regional Indicator Symbol Letters Mw","unified":"1F1F2-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fc.png","sheet_x":36,"sheet_y":30,"short_name":"flag-mw","short_names":["flag-mw"],"text":null,"texts":null,"category":"Flags","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"calendar":{"name":"Tear-off Calendar","unified":"1F4C6","variations":[],"docomo":null,"au":"E56A","softbank":null,"google":"FE549","image":"1f4c6.png","sheet_x":21,"sheet_y":9,"short_name":"calendar","short_names":["calendar"],"text":null,"texts":null,"category":"Objects","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spiral_calendar_pad":{"name":"Spiral Calendar Pad","unified":"1F5D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d3.png","sheet_x":26,"sheet_y":0,"short_name":"spiral_calendar_pad","short_names":["spiral_calendar_pad"],"text":null,"texts":null,"category":"Objects","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"boom":{"name":"Collision Symbol","unified":"1F4A5","variations":[],"docomo":"E705","au":"E5B0","softbank":null,"google":"FEB5A","image":"1f4a5.png","sheet_x":20,"sheet_y":12,"short_name":"boom","short_names":["boom","collision"],"text":null,"texts":null,"category":"Nature","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-my":{"name":"Regional Indicator Symbol Letters My","unified":"1F1F2-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fe.png","sheet_x":36,"sheet_y":32,"short_name":"flag-my","short_names":["flag-my"],"text":null,"texts":null,"category":"Flags","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"zero":{"name":"Keycap 0","unified":"0030-20E3","variations":["0030-FE0F-20E3"],"docomo":"E6EB","au":"E5AC","softbank":"E225","google":"FE837","image":"0030-20e3.png","sheet_x":32,"sheet_y":23,"short_name":"zero","short_names":["zero"],"text":null,"texts":null,"category":"Symbols","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sleuth_or_spy":{"name":"Sleuth or Spy","unified":"1F575","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f575.png","sheet_x":24,"sheet_y":39,"short_name":"sleuth_or_spy","short_names":["sleuth_or_spy"],"text":null,"texts":null,"category":"People","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F575-1F3FB":{"unified":"1F575-1F3FB","image":"1f575-1f3fb.png","sheet_x":24,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FC":{"unified":"1F575-1F3FC","image":"1f575-1f3fc.png","sheet_x":25,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FD":{"unified":"1F575-1F3FD","image":"1f575-1f3fd.png","sheet_x":25,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FE":{"unified":"1F575-1F3FE","image":"1f575-1f3fe.png","sheet_x":25,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FF":{"unified":"1F575-1F3FF","image":"1f575-1f3ff.png","sheet_x":25,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true}}},"one":{"name":"Keycap 1","unified":"0031-20E3","variations":["0031-FE0F-20E3"],"docomo":"E6E2","au":"E522","softbank":"E21C","google":"FE82E","image":"0031-20e3.png","sheet_x":32,"sheet_y":24,"short_name":"one","short_names":["one"],"text":null,"texts":null,"category":"Symbols","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"santa":{"name":"Father Christmas","unified":"1F385","variations":[],"docomo":null,"au":"EAF0","softbank":"E448","google":"FE513","image":"1f385.png","sheet_x":8,"sheet_y":29,"short_name":"santa","short_names":["santa"],"text":null,"texts":null,"category":"People","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F385-1F3FB":{"unified":"1F385-1F3FB","image":"1f385-1f3fb.png","sheet_x":8,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FC":{"unified":"1F385-1F3FC","image":"1f385-1f3fc.png","sheet_x":8,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FD":{"unified":"1F385-1F3FD","image":"1f385-1f3fd.png","sheet_x":8,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FE":{"unified":"1F385-1F3FE","image":"1f385-1f3fe.png","sheet_x":8,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FF":{"unified":"1F385-1F3FF","image":"1f385-1f3ff.png","sheet_x":8,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"card_index":{"name":"Card Index","unified":"1F4C7","variations":[],"docomo":"E683","au":"E56C","softbank":"E148","google":"FE54D","image":"1f4c7.png","sheet_x":21,"sheet_y":10,"short_name":"card_index","short_names":["card_index"],"text":null,"texts":null,"category":"Objects","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snowflake":{"name":"Snowflake","unified":"2744","variations":["2744-FE0F"],"docomo":null,"au":"E48A","softbank":null,"google":"FE00E","image":"2744.png","sheet_x":4,"sheet_y":1,"short_name":"snowflake","short_names":["snowflake"],"text":null,"texts":null,"category":"Nature","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mv":{"name":"Regional Indicator Symbol Letters Mv","unified":"1F1F2-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fb.png","sheet_x":36,"sheet_y":29,"short_name":"flag-mv","short_names":["flag-mv"],"text":null,"texts":null,"category":"Flags","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snow_cloud":{"name":"Cloud with Snow","unified":"1F328","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f328.png","sheet_x":6,"sheet_y":18,"short_name":"snow_cloud","short_names":["snow_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"angel":{"name":"Baby Angel","unified":"1F47C","variations":[],"docomo":null,"au":"E5BF","softbank":"E04E","google":"FE1AF","image":"1f47c.png","sheet_x":18,"sheet_y":18,"short_name":"angel","short_names":["angel"],"text":null,"texts":null,"category":"People","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F47C-1F3FB":{"unified":"1F47C-1F3FB","image":"1f47c-1f3fb.png","sheet_x":18,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FC":{"unified":"1F47C-1F3FC","image":"1f47c-1f3fc.png","sheet_x":18,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FD":{"unified":"1F47C-1F3FD","image":"1f47c-1f3fd.png","sheet_x":18,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FE":{"unified":"1F47C-1F3FE","image":"1f47c-1f3fe.png","sheet_x":18,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FF":{"unified":"1F47C-1F3FF","image":"1f47c-1f3ff.png","sheet_x":18,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"two":{"name":"Keycap 2","unified":"0032-20E3","variations":["0032-FE0F-20E3"],"docomo":"E6E3","au":"E523","softbank":"E21D","google":"FE82F","image":"0032-20e3.png","sheet_x":32,"sheet_y":25,"short_name":"two","short_names":["two"],"text":null,"texts":null,"category":"Symbols","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"card_file_box":{"name":"Card File Box","unified":"1F5C3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c3.png","sheet_x":25,"sheet_y":37,"short_name":"card_file_box","short_names":["card_file_box"],"text":null,"texts":null,"category":"Objects","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ml":{"name":"Regional Indicator Symbol Letters Ml","unified":"1F1F2-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f1.png","sheet_x":36,"sheet_y":19,"short_name":"flag-ml","short_names":["flag-ml"],"text":null,"texts":null,"category":"Flags","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"three":{"name":"Keycap 3","unified":"0033-20E3","variations":["0033-FE0F-20E3"],"docomo":"E6E4","au":"E524","softbank":"E21E","google":"FE830","image":"0033-20e3.png","sheet_x":32,"sheet_y":26,"short_name":"three","short_names":["three"],"text":null,"texts":null,"category":"Symbols","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"princess":{"name":"Princess","unified":"1F478","variations":[],"docomo":null,"au":"EB1A","softbank":"E51C","google":"FE1AB","image":"1f478.png","sheet_x":18,"sheet_y":9,"short_name":"princess","short_names":["princess"],"text":null,"texts":null,"category":"People","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F478-1F3FB":{"unified":"1F478-1F3FB","image":"1f478-1f3fb.png","sheet_x":18,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FC":{"unified":"1F478-1F3FC","image":"1f478-1f3fc.png","sheet_x":18,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FD":{"unified":"1F478-1F3FD","image":"1f478-1f3fd.png","sheet_x":18,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FE":{"unified":"1F478-1F3FE","image":"1f478-1f3fe.png","sheet_x":18,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FF":{"unified":"1F478-1F3FF","image":"1f478-1f3ff.png","sheet_x":18,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"snowman":{"name":"Snowman","unified":"2603","variations":["2603-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2603.png","sheet_x":1,"sheet_y":3,"short_name":"snowman","short_names":["snowman"],"text":null,"texts":null,"category":"Nature","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ballot_box_with_ballot":{"name":"Ballot Box with Ballot","unified":"1F5F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5f3.png","sheet_x":26,"sheet_y":8,"short_name":"ballot_box_with_ballot","short_names":["ballot_box_with_ballot"],"text":null,"texts":null,"category":"Objects","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mt":{"name":"Regional Indicator Symbol Letters Mt","unified":"1F1F2-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f9.png","sheet_x":36,"sheet_y":27,"short_name":"flag-mt","short_names":["flag-mt"],"text":null,"texts":null,"category":"Flags","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"file_cabinet":{"name":"File Cabinet","unified":"1F5C4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c4.png","sheet_x":25,"sheet_y":38,"short_name":"file_cabinet","short_names":["file_cabinet"],"text":null,"texts":null,"category":"Objects","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bride_with_veil":{"name":"Bride with Veil","unified":"1F470","variations":[],"docomo":null,"au":"EAE9","softbank":null,"google":"FE1A3","image":"1f470.png","sheet_x":17,"sheet_y":2,"short_name":"bride_with_veil","short_names":["bride_with_veil"],"text":null,"texts":null,"category":"People","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F470-1F3FB":{"unified":"1F470-1F3FB","image":"1f470-1f3fb.png","sheet_x":17,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FC":{"unified":"1F470-1F3FC","image":"1f470-1f3fc.png","sheet_x":17,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FD":{"unified":"1F470-1F3FD","image":"1f470-1f3fd.png","sheet_x":17,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FE":{"unified":"1F470-1F3FE","image":"1f470-1f3fe.png","sheet_x":17,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FF":{"unified":"1F470-1F3FF","image":"1f470-1f3ff.png","sheet_x":17,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-mh":{"name":"Regional Indicator Symbol Letters Mh","unified":"1F1F2-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ed.png","sheet_x":36,"sheet_y":17,"short_name":"flag-mh","short_names":["flag-mh"],"text":null,"texts":null,"category":"Flags","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"snowman_without_snow":{"name":"Snowman Without Snow","unified":"26C4","variations":["26C4-FE0F"],"docomo":"E641","au":"E485","softbank":"E048","google":"FE003","image":"26c4.png","sheet_x":2,"sheet_y":20,"short_name":"snowman_without_snow","short_names":["snowman_without_snow"],"text":null,"texts":null,"category":"Nature","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"four":{"name":"Keycap 4","unified":"0034-20E3","variations":["0034-FE0F-20E3"],"docomo":"E6E5","au":"E525","softbank":"E21F","google":"FE831","image":"0034-20e3.png","sheet_x":32,"sheet_y":27,"short_name":"four","short_names":["four"],"text":null,"texts":null,"category":"Symbols","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clipboard":{"name":"Clipboard","unified":"1F4CB","variations":[],"docomo":"E689","au":"E564","softbank":"E301","google":"FE548","image":"1f4cb.png","sheet_x":21,"sheet_y":14,"short_name":"clipboard","short_names":["clipboard"],"text":null,"texts":null,"category":"Objects","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wind_blowing_face":{"name":"Wind Blowing Face","unified":"1F32C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32c.png","sheet_x":6,"sheet_y":22,"short_name":"wind_blowing_face","short_names":["wind_blowing_face"],"text":null,"texts":null,"category":"Nature","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"five":{"name":"Keycap 5","unified":"0035-20E3","variations":["0035-FE0F-20E3"],"docomo":"E6E6","au":"E526","softbank":"E220","google":"FE832","image":"0035-20e3.png","sheet_x":32,"sheet_y":28,"short_name":"five","short_names":["five"],"text":null,"texts":null,"category":"Symbols","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"walking":{"name":"Pedestrian","unified":"1F6B6","variations":[],"docomo":"E733","au":"EB72","softbank":"E201","google":"FE7F0","image":"1f6b6.png","sheet_x":30,"sheet_y":40,"short_name":"walking","short_names":["walking"],"text":null,"texts":null,"category":"People","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B6-1F3FB":{"unified":"1F6B6-1F3FB","image":"1f6b6-1f3fb.png","sheet_x":31,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FC":{"unified":"1F6B6-1F3FC","image":"1f6b6-1f3fc.png","sheet_x":31,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FD":{"unified":"1F6B6-1F3FD","image":"1f6b6-1f3fd.png","sheet_x":31,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FE":{"unified":"1F6B6-1F3FE","image":"1f6b6-1f3fe.png","sheet_x":31,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FF":{"unified":"1F6B6-1F3FF","image":"1f6b6-1f3ff.png","sheet_x":31,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-mq":{"name":"Regional Indicator Symbol Letters Mq","unified":"1F1F2-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f6.png","sheet_x":36,"sheet_y":24,"short_name":"flag-mq","short_names":["flag-mq"],"text":null,"texts":null,"category":"Flags","sort_order":139,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"six":{"name":"Keycap 6","unified":"0036-20E3","variations":["0036-FE0F-20E3"],"docomo":"E6E7","au":"E527","softbank":"E221","google":"FE833","image":"0036-20e3.png","sheet_x":32,"sheet_y":29,"short_name":"six","short_names":["six"],"text":null,"texts":null,"category":"Symbols","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dash":{"name":"Dash Symbol","unified":"1F4A8","variations":[],"docomo":"E708","au":"E4F4","softbank":"E330","google":"FEB5D","image":"1f4a8.png","sheet_x":20,"sheet_y":15,"short_name":"dash","short_names":["dash"],"text":null,"texts":null,"category":"Nature","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mr":{"name":"Regional Indicator Symbol Letters Mr","unified":"1F1F2-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f7.png","sheet_x":36,"sheet_y":25,"short_name":"flag-mr","short_names":["flag-mr"],"text":null,"texts":null,"category":"Flags","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"runner":{"name":"Runner","unified":"1F3C3","variations":[],"docomo":"E733","au":"E46B","softbank":"E115","google":"FE7D9","image":"1f3c3.png","sheet_x":10,"sheet_y":9,"short_name":"runner","short_names":["runner","running"],"text":null,"texts":null,"category":"People","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3C3-1F3FB":{"unified":"1F3C3-1F3FB","image":"1f3c3-1f3fb.png","sheet_x":10,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FC":{"unified":"1F3C3-1F3FC","image":"1f3c3-1f3fc.png","sheet_x":10,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FD":{"unified":"1F3C3-1F3FD","image":"1f3c3-1f3fd.png","sheet_x":10,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FE":{"unified":"1F3C3-1F3FE","image":"1f3c3-1f3fe.png","sheet_x":10,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FF":{"unified":"1F3C3-1F3FF","image":"1f3c3-1f3ff.png","sheet_x":10,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"spiral_note_pad":{"name":"Spiral Note Pad","unified":"1F5D2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d2.png","sheet_x":25,"sheet_y":40,"short_name":"spiral_note_pad","short_names":["spiral_note_pad"],"text":null,"texts":null,"category":"Objects","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"seven":{"name":"Keycap 7","unified":"0037-20E3","variations":["0037-FE0F-20E3"],"docomo":"E6E8","au":"E528","softbank":"E222","google":"FE834","image":"0037-20e3.png","sheet_x":32,"sheet_y":30,"short_name":"seven","short_names":["seven"],"text":null,"texts":null,"category":"Symbols","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tornado":{"name":"Cloud with Tornado","unified":"1F32A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32a.png","sheet_x":6,"sheet_y":20,"short_name":"tornado","short_names":["tornado","tornado_cloud"],"text":null,"texts":null,"category":"Nature","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"file_folder":{"name":"File Folder","unified":"1F4C1","variations":[],"docomo":null,"au":"E58F","softbank":null,"google":"FE543","image":"1f4c1.png","sheet_x":21,"sheet_y":4,"short_name":"file_folder","short_names":["file_folder"],"text":null,"texts":null,"category":"Objects","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mu":{"name":"Regional Indicator Symbol Letters Mu","unified":"1F1F2-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fa.png","sheet_x":36,"sheet_y":28,"short_name":"flag-mu","short_names":["flag-mu"],"text":null,"texts":null,"category":"Flags","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dancer":{"name":"Dancer","unified":"1F483","variations":[],"docomo":null,"au":"EB1C","softbank":"E51F","google":"FE1B6","image":"1f483.png","sheet_x":18,"sheet_y":40,"short_name":"dancer","short_names":["dancer"],"text":null,"texts":null,"category":"People","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F483-1F3FB":{"unified":"1F483-1F3FB","image":"1f483-1f3fb.png","sheet_x":19,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FC":{"unified":"1F483-1F3FC","image":"1f483-1f3fc.png","sheet_x":19,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FD":{"unified":"1F483-1F3FD","image":"1f483-1f3fd.png","sheet_x":19,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FE":{"unified":"1F483-1F3FE","image":"1f483-1f3fe.png","sheet_x":19,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FF":{"unified":"1F483-1F3FF","image":"1f483-1f3ff.png","sheet_x":19,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"open_file_folder":{"name":"Open File Folder","unified":"1F4C2","variations":[],"docomo":null,"au":"E590","softbank":null,"google":"FE544","image":"1f4c2.png","sheet_x":21,"sheet_y":5,"short_name":"open_file_folder","short_names":["open_file_folder"],"text":null,"texts":null,"category":"Objects","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eight":{"name":"Keycap 8","unified":"0038-20E3","variations":["0038-FE0F-20E3"],"docomo":"E6E9","au":"E529","softbank":"E223","google":"FE835","image":"0038-20e3.png","sheet_x":32,"sheet_y":31,"short_name":"eight","short_names":["eight"],"text":null,"texts":null,"category":"Symbols","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fog":{"name":"Fog","unified":"1F32B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32b.png","sheet_x":6,"sheet_y":21,"short_name":"fog","short_names":["fog"],"text":null,"texts":null,"category":"Nature","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dancers":{"name":"Woman with Bunny Ears","unified":"1F46F","variations":[],"docomo":null,"au":"EADB","softbank":"E429","google":"FE1A2","image":"1f46f.png","sheet_x":17,"sheet_y":1,"short_name":"dancers","short_names":["dancers"],"text":null,"texts":null,"category":"People","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-yt":{"name":"Regional Indicator Symbol Letters Yt","unified":"1F1FE-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1f9.png","sheet_x":38,"sheet_y":40,"short_name":"flag-yt","short_names":["flag-yt"],"text":null,"texts":null,"category":"Flags","sort_order":142,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"flag-mx":{"name":"Regional Indicator Symbol Letters Mx","unified":"1F1F2-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fd.png","sheet_x":36,"sheet_y":31,"short_name":"flag-mx","short_names":["flag-mx"],"text":null,"texts":null,"category":"Flags","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"card_index_dividers":{"name":"Card Index Dividers","unified":"1F5C2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c2.png","sheet_x":25,"sheet_y":36,"short_name":"card_index_dividers","short_names":["card_index_dividers"],"text":null,"texts":null,"category":"Objects","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"couple":{"name":"Man and Woman Holding Hands","unified":"1F46B","variations":[],"docomo":null,"au":null,"softbank":"E428","google":"FE1A0","image":"1f46b.png","sheet_x":16,"sheet_y":33,"short_name":"couple","short_names":["couple","man_and_woman_holding_hands"],"text":null,"texts":null,"category":"People","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"umbrella":{"name":"Umbrella","unified":"2602","variations":["2602-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2602.png","sheet_x":1,"sheet_y":2,"short_name":"umbrella","short_names":["umbrella"],"text":null,"texts":null,"category":"Nature","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"nine":{"name":"Keycap 9","unified":"0039-20E3","variations":["0039-FE0F-20E3"],"docomo":"E6EA","au":"E52A","softbank":"E224","google":"FE836","image":"0039-20e3.png","sheet_x":32,"sheet_y":32,"short_name":"nine","short_names":["nine"],"text":null,"texts":null,"category":"Symbols","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rolled_up_newspaper":{"name":"Rolled-Up Newspaper","unified":"1F5DE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5de.png","sheet_x":26,"sheet_y":3,"short_name":"rolled_up_newspaper","short_names":["rolled_up_newspaper"],"text":null,"texts":null,"category":"Objects","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-fm":{"name":"Regional Indicator Symbol Letters Fm","unified":"1F1EB-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f2.png","sheet_x":34,"sheet_y":28,"short_name":"flag-fm","short_names":["flag-fm"],"text":null,"texts":null,"category":"Flags","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"umbrella_with_rain_drops":{"name":"Umbrella with Rain Drops","unified":"2614","variations":["2614-FE0F"],"docomo":"E640","au":"E48C","softbank":"E04B","google":"FE002","image":"2614.png","sheet_x":1,"sheet_y":7,"short_name":"umbrella_with_rain_drops","short_names":["umbrella_with_rain_drops"],"text":null,"texts":null,"category":"Nature","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"two_men_holding_hands":{"name":"Two Men Holding Hands","unified":"1F46C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46c.png","sheet_x":16,"sheet_y":34,"short_name":"two_men_holding_hands","short_names":["two_men_holding_hands"],"text":null,"texts":null,"category":"People","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"keycap_ten":{"name":"Keycap Ten","unified":"1F51F","variations":[],"docomo":null,"au":"E52B","softbank":null,"google":"FE83B","image":"1f51f.png","sheet_x":23,"sheet_y":15,"short_name":"keycap_ten","short_names":["keycap_ten"],"text":null,"texts":null,"category":"Symbols","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"newspaper":{"name":"Newspaper","unified":"1F4F0","variations":[],"docomo":null,"au":"E58B","softbank":null,"google":"FE822","image":"1f4f0.png","sheet_x":22,"sheet_y":10,"short_name":"newspaper","short_names":["newspaper"],"text":null,"texts":null,"category":"Objects","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"keycap_star":{"name":"Keycap Star","unified":"002A-20E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"002a-20e3.png","sheet_x":32,"sheet_y":22,"short_name":"keycap_star","short_names":["keycap_star"],"text":null,"texts":null,"category":"Symbols","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-md":{"name":"Regional Indicator Symbol Letters Md","unified":"1F1F2-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e9.png","sheet_x":36,"sheet_y":13,"short_name":"flag-md","short_names":["flag-md"],"text":null,"texts":null,"category":"Flags","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"two_women_holding_hands":{"name":"Two Women Holding Hands","unified":"1F46D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46d.png","sheet_x":16,"sheet_y":35,"short_name":"two_women_holding_hands","short_names":["two_women_holding_hands"],"text":null,"texts":null,"category":"People","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"droplet":{"name":"Droplet","unified":"1F4A7","variations":[],"docomo":"E707","au":"E4E6","softbank":"E331","google":"FEB5C","image":"1f4a7.png","sheet_x":20,"sheet_y":14,"short_name":"droplet","short_names":["droplet"],"text":null,"texts":null,"category":"Nature","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bow":{"name":"Person Bowing Deeply","unified":"1F647","variations":[],"docomo":null,"au":"EAD9","softbank":"E426","google":"FE353","image":"1f647.png","sheet_x":28,"sheet_y":14,"short_name":"bow","short_names":["bow"],"text":null,"texts":null,"category":"People","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F647-1F3FB":{"unified":"1F647-1F3FB","image":"1f647-1f3fb.png","sheet_x":28,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FC":{"unified":"1F647-1F3FC","image":"1f647-1f3fc.png","sheet_x":28,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FD":{"unified":"1F647-1F3FD","image":"1f647-1f3fd.png","sheet_x":28,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FE":{"unified":"1F647-1F3FE","image":"1f647-1f3fe.png","sheet_x":28,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FF":{"unified":"1F647-1F3FF","image":"1f647-1f3ff.png","sheet_x":28,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"notebook":{"name":"Notebook","unified":"1F4D3","variations":[],"docomo":"E683","au":"E56B","softbank":"E148","google":"FE545","image":"1f4d3.png","sheet_x":21,"sheet_y":22,"short_name":"notebook","short_names":["notebook"],"text":null,"texts":null,"category":"Objects","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sweat_drops":{"name":"Splashing Sweat Symbol","unified":"1F4A6","variations":[],"docomo":"E706","au":"E5B1","softbank":"E331","google":"FEB5B","image":"1f4a6.png","sheet_x":20,"sheet_y":13,"short_name":"sweat_drops","short_names":["sweat_drops"],"text":null,"texts":null,"category":"Nature","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mc":{"name":"Regional Indicator Symbol Letters Mc","unified":"1F1F2-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e8.png","sheet_x":36,"sheet_y":12,"short_name":"flag-mc","short_names":["flag-mc"],"text":null,"texts":null,"category":"Flags","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"closed_book":{"name":"Closed Book","unified":"1F4D5","variations":[],"docomo":"E683","au":"E568","softbank":"E148","google":"FE502","image":"1f4d5.png","sheet_x":21,"sheet_y":24,"short_name":"closed_book","short_names":["closed_book"],"text":null,"texts":null,"category":"Objects","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mn":{"name":"Regional Indicator Symbol Letters Mn","unified":"1F1F2-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f3.png","sheet_x":36,"sheet_y":21,"short_name":"flag-mn","short_names":["flag-mn"],"text":null,"texts":null,"category":"Flags","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_forward":{"name":"Black Right-Pointing Triangle","unified":"25B6","variations":["25B6-FE0F"],"docomo":null,"au":"E52E","softbank":"E23A","google":"FEAFC","image":"25b6.png","sheet_x":0,"sheet_y":35,"short_name":"arrow_forward","short_names":["arrow_forward"],"text":null,"texts":null,"category":"Symbols","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"information_desk_person":{"name":"Information Desk Person","unified":"1F481","variations":[],"docomo":null,"au":null,"softbank":"E253","google":"FE1B4","image":"1f481.png","sheet_x":18,"sheet_y":28,"short_name":"information_desk_person","short_names":["information_desk_person"],"text":null,"texts":null,"category":"People","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F481-1F3FB":{"unified":"1F481-1F3FB","image":"1f481-1f3fb.png","sheet_x":18,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FC":{"unified":"1F481-1F3FC","image":"1f481-1f3fc.png","sheet_x":18,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FD":{"unified":"1F481-1F3FD","image":"1f481-1f3fd.png","sheet_x":18,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FE":{"unified":"1F481-1F3FE","image":"1f481-1f3fe.png","sheet_x":18,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FF":{"unified":"1F481-1F3FF","image":"1f481-1f3ff.png","sheet_x":18,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"ocean":{"name":"Water Wave","unified":"1F30A","variations":[],"docomo":"E73F","au":"EB7C","softbank":"E43E","google":"FE038","image":"1f30a.png","sheet_x":5,"sheet_y":31,"short_name":"ocean","short_names":["ocean"],"text":null,"texts":null,"category":"Nature","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"double_vertical_bar":{"name":"Double Vertical Bar","unified":"23F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f8.png","sheet_x":0,"sheet_y":29,"short_name":"double_vertical_bar","short_names":["double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"green_book":{"name":"Green Book","unified":"1F4D7","variations":[],"docomo":"E683","au":"E565","softbank":"E148","google":"FE4FF","image":"1f4d7.png","sheet_x":21,"sheet_y":26,"short_name":"green_book","short_names":["green_book"],"text":null,"texts":null,"category":"Objects","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_good":{"name":"Face with No Good Gesture","unified":"1F645","variations":[],"docomo":"E72F","au":"EAD7","softbank":"E423","google":"FE351","image":"1f645.png","sheet_x":28,"sheet_y":2,"short_name":"no_good","short_names":["no_good"],"text":null,"texts":null,"category":"People","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F645-1F3FB":{"unified":"1F645-1F3FB","image":"1f645-1f3fb.png","sheet_x":28,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FC":{"unified":"1F645-1F3FC","image":"1f645-1f3fc.png","sheet_x":28,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FD":{"unified":"1F645-1F3FD","image":"1f645-1f3fd.png","sheet_x":28,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FE":{"unified":"1F645-1F3FE","image":"1f645-1f3fe.png","sheet_x":28,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FF":{"unified":"1F645-1F3FF","image":"1f645-1f3ff.png","sheet_x":28,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"flag-me":{"name":"Regional Indicator Symbol Letters Me","unified":"1F1F2-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ea.png","sheet_x":36,"sheet_y":14,"short_name":"flag-me","short_names":["flag-me"],"text":null,"texts":null,"category":"Flags","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ms":{"name":"Regional Indicator Symbol Letters Ms","unified":"1F1F2-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f8.png","sheet_x":36,"sheet_y":26,"short_name":"flag-ms","short_names":["flag-ms"],"text":null,"texts":null,"category":"Flags","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ok_woman":{"name":"Face with Ok Gesture","unified":"1F646","variations":[],"docomo":"E70B","au":"EAD8","softbank":"E424","google":"FE352","image":"1f646.png","sheet_x":28,"sheet_y":8,"short_name":"ok_woman","short_names":["ok_woman"],"text":null,"texts":null,"category":"People","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F646-1F3FB":{"unified":"1F646-1F3FB","image":"1f646-1f3fb.png","sheet_x":28,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FC":{"unified":"1F646-1F3FC","image":"1f646-1f3fc.png","sheet_x":28,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FD":{"unified":"1F646-1F3FD","image":"1f646-1f3fd.png","sheet_x":28,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FE":{"unified":"1F646-1F3FE","image":"1f646-1f3fe.png","sheet_x":28,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FF":{"unified":"1F646-1F3FF","image":"1f646-1f3ff.png","sheet_x":28,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"blue_book":{"name":"Blue Book","unified":"1F4D8","variations":[],"docomo":"E683","au":"E566","softbank":"E148","google":"FE500","image":"1f4d8.png","sheet_x":21,"sheet_y":27,"short_name":"blue_book","short_names":["blue_book"],"text":null,"texts":null,"category":"Objects","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_right_pointing_triangle_with_double_vertical_bar":{"name":"Black Right-Pointing Triangle with Double Vertical Bar","unified":"23EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ef.png","sheet_x":0,"sheet_y":24,"short_name":"black_right_pointing_triangle_with_double_vertical_bar","short_names":["black_right_pointing_triangle_with_double_vertical_bar"],"text":null,"texts":null,"category":"Symbols","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"raising_hand":{"name":"Happy Person Raising One Hand","unified":"1F64B","variations":[],"docomo":null,"au":"EB85","softbank":"E012","google":"FE357","image":"1f64b.png","sheet_x":28,"sheet_y":23,"short_name":"raising_hand","short_names":["raising_hand"],"text":null,"texts":null,"category":"People","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64B-1F3FB":{"unified":"1F64B-1F3FB","image":"1f64b-1f3fb.png","sheet_x":28,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FC":{"unified":"1F64B-1F3FC","image":"1f64b-1f3fc.png","sheet_x":28,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FD":{"unified":"1F64B-1F3FD","image":"1f64b-1f3fd.png","sheet_x":28,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FE":{"unified":"1F64B-1F3FE","image":"1f64b-1f3fe.png","sheet_x":28,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FF":{"unified":"1F64B-1F3FF","image":"1f64b-1f3ff.png","sheet_x":28,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"black_square_for_stop":{"name":"Black Square for Stop","unified":"23F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f9.png","sheet_x":0,"sheet_y":30,"short_name":"black_square_for_stop","short_names":["black_square_for_stop"],"text":null,"texts":null,"category":"Symbols","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"orange_book":{"name":"Orange Book","unified":"1F4D9","variations":[],"docomo":"E683","au":"E567","softbank":"E148","google":"FE501","image":"1f4d9.png","sheet_x":21,"sheet_y":28,"short_name":"orange_book","short_names":["orange_book"],"text":null,"texts":null,"category":"Objects","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ma":{"name":"Regional Indicator Symbol Letters Ma","unified":"1F1F2-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e6.png","sheet_x":36,"sheet_y":11,"short_name":"flag-ma","short_names":["flag-ma"],"text":null,"texts":null,"category":"Flags","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mz":{"name":"Regional Indicator Symbol Letters Mz","unified":"1F1F2-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ff.png","sheet_x":36,"sheet_y":33,"short_name":"flag-mz","short_names":["flag-mz"],"text":null,"texts":null,"category":"Flags","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"notebook_with_decorative_cover":{"name":"Notebook with Decorative Cover","unified":"1F4D4","variations":[],"docomo":"E683","au":"E49D","softbank":"E148","google":"FE547","image":"1f4d4.png","sheet_x":21,"sheet_y":23,"short_name":"notebook_with_decorative_cover","short_names":["notebook_with_decorative_cover"],"text":null,"texts":null,"category":"Objects","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"person_with_pouting_face":{"name":"Person with Pouting Face","unified":"1F64E","variations":[],"docomo":"E6F1","au":"EB88","softbank":"E416","google":"FE35A","image":"1f64e.png","sheet_x":29,"sheet_y":0,"short_name":"person_with_pouting_face","short_names":["person_with_pouting_face"],"text":null,"texts":null,"category":"People","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64E-1F3FB":{"unified":"1F64E-1F3FB","image":"1f64e-1f3fb.png","sheet_x":29,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FC":{"unified":"1F64E-1F3FC","image":"1f64e-1f3fc.png","sheet_x":29,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FD":{"unified":"1F64E-1F3FD","image":"1f64e-1f3fd.png","sheet_x":29,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FE":{"unified":"1F64E-1F3FE","image":"1f64e-1f3fe.png","sheet_x":29,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FF":{"unified":"1F64E-1F3FF","image":"1f64e-1f3ff.png","sheet_x":29,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"eject":{"name":"Eject Symbol","unified":"23CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23cf.png","sheet_x":0,"sheet_y":17,"short_name":"eject","short_names":["eject"],"text":null,"texts":null,"category":"Symbols","sort_order":151,"has_img_apple":false,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":false},"black_circle_for_record":{"name":"Black Circle for Record","unified":"23FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23fa.png","sheet_x":0,"sheet_y":31,"short_name":"black_circle_for_record","short_names":["black_circle_for_record"],"text":null,"texts":null,"category":"Symbols","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mm":{"name":"Regional Indicator Symbol Letters Mm","unified":"1F1F2-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f2.png","sheet_x":36,"sheet_y":20,"short_name":"flag-mm","short_names":["flag-mm"],"text":null,"texts":null,"category":"Flags","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"person_frowning":{"name":"Person Frowning","unified":"1F64D","variations":[],"docomo":"E6F3","au":"EB87","softbank":"E403","google":"FE359","image":"1f64d.png","sheet_x":28,"sheet_y":35,"short_name":"person_frowning","short_names":["person_frowning"],"text":null,"texts":null,"category":"People","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64D-1F3FB":{"unified":"1F64D-1F3FB","image":"1f64d-1f3fb.png","sheet_x":28,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FC":{"unified":"1F64D-1F3FC","image":"1f64d-1f3fc.png","sheet_x":28,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FD":{"unified":"1F64D-1F3FD","image":"1f64d-1f3fd.png","sheet_x":28,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FE":{"unified":"1F64D-1F3FE","image":"1f64d-1f3fe.png","sheet_x":28,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FF":{"unified":"1F64D-1F3FF","image":"1f64d-1f3ff.png","sheet_x":28,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"ledger":{"name":"Ledger","unified":"1F4D2","variations":[],"docomo":"E683","au":"E56E","softbank":"E148","google":"FE54F","image":"1f4d2.png","sheet_x":21,"sheet_y":21,"short_name":"ledger","short_names":["ledger"],"text":null,"texts":null,"category":"Objects","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-na":{"name":"Regional Indicator Symbol Letters Na","unified":"1F1F3-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e6.png","sheet_x":36,"sheet_y":34,"short_name":"flag-na","short_names":["flag-na"],"text":null,"texts":null,"category":"Flags","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"haircut":{"name":"Haircut","unified":"1F487","variations":[],"docomo":"E675","au":"EAA1","softbank":"E31F","google":"FE198","image":"1f487.png","sheet_x":19,"sheet_y":18,"short_name":"haircut","short_names":["haircut"],"text":null,"texts":null,"category":"People","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F487-1F3FB":{"unified":"1F487-1F3FB","image":"1f487-1f3fb.png","sheet_x":19,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FC":{"unified":"1F487-1F3FC","image":"1f487-1f3fc.png","sheet_x":19,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FD":{"unified":"1F487-1F3FD","image":"1f487-1f3fd.png","sheet_x":19,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FE":{"unified":"1F487-1F3FE","image":"1f487-1f3fe.png","sheet_x":19,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FF":{"unified":"1F487-1F3FF","image":"1f487-1f3ff.png","sheet_x":19,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"books":{"name":"Books","unified":"1F4DA","variations":[],"docomo":"E683","au":"E56F","softbank":"E148","google":"FE503","image":"1f4da.png","sheet_x":21,"sheet_y":29,"short_name":"books","short_names":["books"],"text":null,"texts":null,"category":"Objects","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_right_pointing_double_triangle_with_vertical_bar":{"name":"Black Right-Pointing Double Triangle with Vertical Bar","unified":"23ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ed.png","sheet_x":0,"sheet_y":22,"short_name":"black_right_pointing_double_triangle_with_vertical_bar","short_names":["black_right_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"book":{"name":"Open Book","unified":"1F4D6","variations":[],"docomo":"E683","au":"E49F","softbank":"E148","google":"FE546","image":"1f4d6.png","sheet_x":21,"sheet_y":25,"short_name":"book","short_names":["book","open_book"],"text":null,"texts":null,"category":"Objects","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-nr":{"name":"Regional Indicator Symbol Letters Nr","unified":"1F1F3-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f7.png","sheet_x":37,"sheet_y":2,"short_name":"flag-nr","short_names":["flag-nr"],"text":null,"texts":null,"category":"Flags","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_left_pointing_double_triangle_with_vertical_bar":{"name":"Black Left-Pointing Double Triangle with Vertical Bar","unified":"23EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ee.png","sheet_x":0,"sheet_y":23,"short_name":"black_left_pointing_double_triangle_with_vertical_bar","short_names":["black_left_pointing_double_triangle_with_vertical_bar"],"text":null,"texts":null,"category":"Symbols","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"massage":{"name":"Face Massage","unified":"1F486","variations":[],"docomo":null,"au":"E50B","softbank":"E31E","google":"FE197","image":"1f486.png","sheet_x":19,"sheet_y":12,"short_name":"massage","short_names":["massage"],"text":null,"texts":null,"category":"People","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F486-1F3FB":{"unified":"1F486-1F3FB","image":"1f486-1f3fb.png","sheet_x":19,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FC":{"unified":"1F486-1F3FC","image":"1f486-1f3fc.png","sheet_x":19,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FD":{"unified":"1F486-1F3FD","image":"1f486-1f3fd.png","sheet_x":19,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FE":{"unified":"1F486-1F3FE","image":"1f486-1f3fe.png","sheet_x":19,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FF":{"unified":"1F486-1F3FF","image":"1f486-1f3ff.png","sheet_x":19,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}},"couple_with_heart":{"name":"Couple with Heart","unified":"1F491","variations":[],"docomo":"E6ED","au":"EADA","softbank":"E425","google":"FE829","image":"1f491.png","sheet_x":19,"sheet_y":33,"short_name":"couple_with_heart","short_names":["couple_with_heart"],"text":null,"texts":null,"category":"People","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"fast_forward":{"name":"Black Right-Pointing Double Triangle","unified":"23E9","variations":[],"docomo":null,"au":"E530","softbank":"E23C","google":"FEAFE","image":"23e9.png","sheet_x":0,"sheet_y":18,"short_name":"fast_forward","short_names":["fast_forward"],"text":null,"texts":null,"category":"Symbols","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-np":{"name":"Regional Indicator Symbol Letters Np","unified":"1F1F3-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f5.png","sheet_x":37,"sheet_y":1,"short_name":"flag-np","short_names":["flag-np"],"text":null,"texts":null,"category":"Flags","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"link":{"name":"Link Symbol","unified":"1F517","variations":[],"docomo":null,"au":"E58A","softbank":null,"google":"FEB4B","image":"1f517.png","sheet_x":23,"sheet_y":7,"short_name":"link","short_names":["link"],"text":null,"texts":null,"category":"Objects","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"paperclip":{"name":"Paperclip","unified":"1F4CE","variations":[],"docomo":"E730","au":"E4A0","softbank":null,"google":"FE53A","image":"1f4ce.png","sheet_x":21,"sheet_y":17,"short_name":"paperclip","short_names":["paperclip"],"text":null,"texts":null,"category":"Objects","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"rewind":{"name":"Black Left-Pointing Double Triangle","unified":"23EA","variations":[],"docomo":null,"au":"E52F","softbank":"E23D","google":"FEAFF","image":"23ea.png","sheet_x":0,"sheet_y":19,"short_name":"rewind","short_names":["rewind"],"text":null,"texts":null,"category":"Symbols","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-heart-woman":{"name":"Woman Heart Woman","unified":"1F469-200D-2764-FE0F-200D-1F469","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f469.png","sheet_x":39,"sheet_y":19,"short_name":"woman-heart-woman","short_names":["woman-heart-woman"],"text":null,"texts":null,"category":"People","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false},"flag-nl":{"name":"Regional Indicator Symbol Letters Nl","unified":"1F1F3-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f1.png","sheet_x":36,"sheet_y":40,"short_name":"flag-nl","short_names":["flag-nl"],"text":null,"texts":null,"category":"Flags","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"linked_paperclips":{"name":"Linked Paperclips","unified":"1F587","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f587.png","sheet_x":25,"sheet_y":8,"short_name":"linked_paperclips","short_names":["linked_paperclips"],"text":null,"texts":null,"category":"Objects","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-heart-man":{"name":"Man Heart Man","unified":"1F468-200D-2764-FE0F-200D-1F468","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f468.png","sheet_x":39,"sheet_y":12,"short_name":"man-heart-man","short_names":["man-heart-man"],"text":null,"texts":null,"category":"People","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false},"flag-nc":{"name":"Regional Indicator Symbol Letters Nc","unified":"1F1F3-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e8.png","sheet_x":36,"sheet_y":35,"short_name":"flag-nc","short_names":["flag-nc"],"text":null,"texts":null,"category":"Flags","sort_order":157,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"twisted_rightwards_arrows":{"name":"Twisted Rightwards Arrows","unified":"1F500","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f500.png","sheet_x":22,"sheet_y":25,"short_name":"twisted_rightwards_arrows","short_names":["twisted_rightwards_arrows"],"text":null,"texts":null,"category":"Symbols","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"couplekiss":{"name":"Kiss","unified":"1F48F","variations":[],"docomo":"E6F9","au":"E5CA","softbank":"E111","google":"FE827","image":"1f48f.png","sheet_x":19,"sheet_y":31,"short_name":"couplekiss","short_names":["couplekiss"],"text":null,"texts":null,"category":"People","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-nz":{"name":"Regional Indicator Symbol Letters Nz","unified":"1F1F3-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ff.png","sheet_x":37,"sheet_y":4,"short_name":"flag-nz","short_names":["flag-nz"],"text":null,"texts":null,"category":"Flags","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"scissors":{"name":"Black Scissors","unified":"2702","variations":["2702-FE0F"],"docomo":"E675","au":"E516","softbank":"E313","google":"FE53E","image":"2702.png","sheet_x":3,"sheet_y":5,"short_name":"scissors","short_names":["scissors"],"text":null,"texts":null,"category":"Objects","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"repeat":{"name":"Clockwise Rightwards and Leftwards Open Circle Arrows","unified":"1F501","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f501.png","sheet_x":22,"sheet_y":26,"short_name":"repeat","short_names":["repeat"],"text":null,"texts":null,"category":"Symbols","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"repeat_one":{"name":"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay","unified":"1F502","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f502.png","sheet_x":22,"sheet_y":27,"short_name":"repeat_one","short_names":["repeat_one"],"text":null,"texts":null,"category":"Symbols","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ni":{"name":"Regional Indicator Symbol Letters Ni","unified":"1F1F3-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ee.png","sheet_x":36,"sheet_y":39,"short_name":"flag-ni","short_names":["flag-ni"],"text":null,"texts":null,"category":"Flags","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-kiss-woman":{"name":"Woman Kiss Woman","unified":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png","sheet_x":39,"sheet_y":20,"short_name":"woman-kiss-woman","short_names":["woman-kiss-woman"],"text":null,"texts":null,"category":"People","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false},"triangular_ruler":{"name":"Triangular Ruler","unified":"1F4D0","variations":[],"docomo":null,"au":"E4A2","softbank":null,"google":"FE551","image":"1f4d0.png","sheet_x":21,"sheet_y":19,"short_name":"triangular_ruler","short_names":["triangular_ruler"],"text":null,"texts":null,"category":"Objects","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"straight_ruler":{"name":"Straight Ruler","unified":"1F4CF","variations":[],"docomo":null,"au":"E570","softbank":null,"google":"FE550","image":"1f4cf.png","sheet_x":21,"sheet_y":18,"short_name":"straight_ruler","short_names":["straight_ruler"],"text":null,"texts":null,"category":"Objects","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ne":{"name":"Regional Indicator Symbol Letters Ne","unified":"1F1F3-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ea.png","sheet_x":36,"sheet_y":36,"short_name":"flag-ne","short_names":["flag-ne"],"text":null,"texts":null,"category":"Flags","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-kiss-man":{"name":"Man Kiss Man","unified":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png","sheet_x":39,"sheet_y":13,"short_name":"man-kiss-man","short_names":["man-kiss-man"],"text":null,"texts":null,"category":"People","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false},"arrow_backward":{"name":"Black Left-Pointing Triangle","unified":"25C0","variations":["25C0-FE0F"],"docomo":null,"au":"E52D","softbank":"E23B","google":"FEAFD","image":"25c0.png","sheet_x":0,"sheet_y":36,"short_name":"arrow_backward","short_names":["arrow_backward"],"text":null,"texts":null,"category":"Symbols","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_up_small":{"name":"Up-Pointing Small Red Triangle","unified":"1F53C","variations":[],"docomo":null,"au":"E543","softbank":null,"google":"FEB01","image":"1f53c.png","sheet_x":24,"sheet_y":3,"short_name":"arrow_up_small","short_names":["arrow_up_small"],"text":null,"texts":null,"category":"Symbols","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ng":{"name":"Regional Indicator Symbol Letters Ng","unified":"1F1F3-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ec.png","sheet_x":36,"sheet_y":38,"short_name":"flag-ng","short_names":["flag-ng"],"text":null,"texts":null,"category":"Flags","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"family":{"name":"Family","unified":"1F46A","variations":["1F468-200D-1F469-200D-1F466"],"docomo":null,"au":"E501","softbank":null,"google":"FE19F","image":"1f46a.png","sheet_x":16,"sheet_y":32,"short_name":"family","short_names":["family","man-woman-boy"],"text":null,"texts":null,"category":"People","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pushpin":{"name":"Pushpin","unified":"1F4CC","variations":[],"docomo":null,"au":"E56D","softbank":null,"google":"FE54E","image":"1f4cc.png","sheet_x":21,"sheet_y":15,"short_name":"pushpin","short_names":["pushpin"],"text":null,"texts":null,"category":"Objects","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-woman-girl":{"name":"Man Woman Girl","unified":"1F468-200D-1F469-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467.png","sheet_x":39,"sheet_y":9,"short_name":"man-woman-girl","short_names":["man-woman-girl"],"text":null,"texts":null,"category":"People","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"round_pushpin":{"name":"Round Pushpin","unified":"1F4CD","variations":[],"docomo":null,"au":"E560","softbank":null,"google":"FE53F","image":"1f4cd.png","sheet_x":21,"sheet_y":16,"short_name":"round_pushpin","short_names":["round_pushpin"],"text":null,"texts":null,"category":"Objects","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_down_small":{"name":"Down-Pointing Small Red Triangle","unified":"1F53D","variations":[],"docomo":null,"au":"E542","softbank":null,"google":"FEB00","image":"1f53d.png","sheet_x":24,"sheet_y":4,"short_name":"arrow_down_small","short_names":["arrow_down_small"],"text":null,"texts":null,"category":"Symbols","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-nu":{"name":"Regional Indicator Symbol Letters Nu","unified":"1F1F3-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1fa.png","sheet_x":37,"sheet_y":3,"short_name":"flag-nu","short_names":["flag-nu"],"text":null,"texts":null,"category":"Flags","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-nf":{"name":"Regional Indicator Symbol Letters Nf","unified":"1F1F3-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1eb.png","sheet_x":36,"sheet_y":37,"short_name":"flag-nf","short_names":["flag-nf"],"text":null,"texts":null,"category":"Flags","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"triangular_flag_on_post":{"name":"Triangular Flag on Post","unified":"1F6A9","variations":[],"docomo":"E6DE","au":"EB2C","softbank":null,"google":"FEB22","image":"1f6a9.png","sheet_x":30,"sheet_y":17,"short_name":"triangular_flag_on_post","short_names":["triangular_flag_on_post"],"text":null,"texts":null,"category":"Objects","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-woman-girl-boy":{"name":"Man Woman Girl Boy","unified":"1F468-200D-1F469-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":10,"short_name":"man-woman-girl-boy","short_names":["man-woman-girl-boy"],"text":null,"texts":null,"category":"People","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_double_up":{"name":"Black Up-Pointing Double Triangle","unified":"23EB","variations":[],"docomo":null,"au":"E545","softbank":null,"google":"FEB03","image":"23eb.png","sheet_x":0,"sheet_y":20,"short_name":"arrow_double_up","short_names":["arrow_double_up"],"text":null,"texts":null,"category":"Symbols","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-woman-boy-boy":{"name":"Man Woman Boy Boy","unified":"1F468-200D-1F469-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":8,"short_name":"man-woman-boy-boy","short_names":["man-woman-boy-boy"],"text":null,"texts":null,"category":"People","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mp":{"name":"Regional Indicator Symbol Letters Mp","unified":"1F1F2-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f5.png","sheet_x":36,"sheet_y":23,"short_name":"flag-mp","short_names":["flag-mp"],"text":null,"texts":null,"category":"Flags","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"waving_white_flag":{"name":"Waving White Flag","unified":"1F3F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f3.png","sheet_x":11,"sheet_y":34,"short_name":"waving_white_flag","short_names":["waving_white_flag"],"text":null,"texts":null,"category":"Objects","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_double_down":{"name":"Black Down-Pointing Double Triangle","unified":"23EC","variations":[],"docomo":null,"au":"E544","softbank":null,"google":"FEB02","image":"23ec.png","sheet_x":0,"sheet_y":21,"short_name":"arrow_double_down","short_names":["arrow_double_down"],"text":null,"texts":null,"category":"Symbols","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-woman-girl-girl":{"name":"Man Woman Girl Girl","unified":"1F468-200D-1F469-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":11,"short_name":"man-woman-girl-girl","short_names":["man-woman-girl-girl"],"text":null,"texts":null,"category":"People","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kp":{"name":"Regional Indicator Symbol Letters Kp","unified":"1F1F0-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f5.png","sheet_x":35,"sheet_y":36,"short_name":"flag-kp","short_names":["flag-kp"],"text":null,"texts":null,"category":"Flags","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"waving_black_flag":{"name":"Waving Black Flag","unified":"1F3F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4.png","sheet_x":11,"sheet_y":35,"short_name":"waving_black_flag","short_names":["waving_black_flag"],"text":null,"texts":null,"category":"Objects","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_right":{"name":"Black Rightwards Arrow","unified":"27A1","variations":["27A1-FE0F"],"docomo":null,"au":"E552","softbank":"E234","google":"FEAFA","image":"27a1.png","sheet_x":4,"sheet_y":14,"short_name":"arrow_right","short_names":["arrow_right"],"text":null,"texts":null,"category":"Symbols","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-no":{"name":"Regional Indicator Symbol Letters No","unified":"1F1F3-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f4.png","sheet_x":37,"sheet_y":0,"short_name":"flag-no","short_names":["flag-no"],"text":null,"texts":null,"category":"Flags","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-woman-boy":{"name":"Woman Woman Boy","unified":"1F469-200D-1F469-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466.png","sheet_x":39,"sheet_y":14,"short_name":"woman-woman-boy","short_names":["woman-woman-boy"],"text":null,"texts":null,"category":"People","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_left":{"name":"Leftwards Black Arrow","unified":"2B05","variations":["2B05-FE0F"],"docomo":null,"au":"E553","softbank":"E235","google":"FEAFB","image":"2b05.png","sheet_x":4,"sheet_y":19,"short_name":"arrow_left","short_names":["arrow_left"],"text":null,"texts":null,"category":"Symbols","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"closed_lock_with_key":{"name":"Closed Lock with Key","unified":"1F510","variations":[],"docomo":"E6D9","au":"EAFC","softbank":"E144","google":"FEB8A","image":"1f510.png","sheet_x":23,"sheet_y":0,"short_name":"closed_lock_with_key","short_names":["closed_lock_with_key"],"text":null,"texts":null,"category":"Objects","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-om":{"name":"Regional Indicator Symbol Letters Om","unified":"1F1F4-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f4-1f1f2.png","sheet_x":37,"sheet_y":5,"short_name":"flag-om","short_names":["flag-om"],"text":null,"texts":null,"category":"Flags","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lock":{"name":"Lock","unified":"1F512","variations":[],"docomo":"E6D9","au":"E51C","softbank":"E144","google":"FEB86","image":"1f512.png","sheet_x":23,"sheet_y":2,"short_name":"lock","short_names":["lock"],"text":null,"texts":null,"category":"Objects","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_up":{"name":"Upwards Black Arrow","unified":"2B06","variations":["2B06-FE0F"],"docomo":null,"au":"E53F","softbank":"E232","google":"FEAF8","image":"2b06.png","sheet_x":4,"sheet_y":20,"short_name":"arrow_up","short_names":["arrow_up"],"text":null,"texts":null,"category":"Symbols","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-woman-girl":{"name":"Woman Woman Girl","unified":"1F469-200D-1F469-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467.png","sheet_x":39,"sheet_y":16,"short_name":"woman-woman-girl","short_names":["woman-woman-girl"],"text":null,"texts":null,"category":"People","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_down":{"name":"Downwards Black Arrow","unified":"2B07","variations":["2B07-FE0F"],"docomo":null,"au":"E540","softbank":"E233","google":"FEAF9","image":"2b07.png","sheet_x":4,"sheet_y":21,"short_name":"arrow_down","short_names":["arrow_down"],"text":null,"texts":null,"category":"Symbols","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pk":{"name":"Regional Indicator Symbol Letters Pk","unified":"1F1F5-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f0.png","sheet_x":37,"sheet_y":11,"short_name":"flag-pk","short_names":["flag-pk"],"text":null,"texts":null,"category":"Flags","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-woman-girl-boy":{"name":"Woman Woman Girl Boy","unified":"1F469-200D-1F469-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":17,"short_name":"woman-woman-girl-boy","short_names":["woman-woman-girl-boy"],"text":null,"texts":null,"category":"People","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"unlock":{"name":"Open Lock","unified":"1F513","variations":[],"docomo":"E6D9","au":"E51C","softbank":"E145","google":"FEB87","image":"1f513.png","sheet_x":23,"sheet_y":3,"short_name":"unlock","short_names":["unlock"],"text":null,"texts":null,"category":"Objects","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-woman-boy-boy":{"name":"Woman Woman Boy Boy","unified":"1F469-200D-1F469-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":15,"short_name":"woman-woman-boy-boy","short_names":["woman-woman-boy-boy"],"text":null,"texts":null,"category":"People","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lock_with_ink_pen":{"name":"Lock with Ink Pen","unified":"1F50F","variations":[],"docomo":"E6D9","au":"EB0C","softbank":"E144","google":"FEB90","image":"1f50f.png","sheet_x":22,"sheet_y":40,"short_name":"lock_with_ink_pen","short_names":["lock_with_ink_pen"],"text":null,"texts":null,"category":"Objects","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pw":{"name":"Regional Indicator Symbol Letters Pw","unified":"1F1F5-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fc.png","sheet_x":37,"sheet_y":18,"short_name":"flag-pw","short_names":["flag-pw"],"text":null,"texts":null,"category":"Flags","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_upper_right":{"name":"North East Arrow","unified":"2197","variations":["2197-FE0F"],"docomo":"E678","au":"E555","softbank":"E236","google":"FEAF0","image":"2197.png","sheet_x":0,"sheet_y":9,"short_name":"arrow_upper_right","short_names":["arrow_upper_right"],"text":null,"texts":null,"category":"Symbols","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"woman-woman-girl-girl":{"name":"Woman Woman Girl Girl","unified":"1F469-200D-1F469-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":18,"short_name":"woman-woman-girl-girl","short_names":["woman-woman-girl-girl"],"text":null,"texts":null,"category":"People","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_lower_right":{"name":"South East Arrow","unified":"2198","variations":["2198-FE0F"],"docomo":"E696","au":"E54D","softbank":"E238","google":"FEAF1","image":"2198.png","sheet_x":0,"sheet_y":10,"short_name":"arrow_lower_right","short_names":["arrow_lower_right"],"text":null,"texts":null,"category":"Symbols","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lower_left_ballpoint_pen":{"name":"Lower Left Ballpoint Pen","unified":"1F58A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58a.png","sheet_x":25,"sheet_y":9,"short_name":"lower_left_ballpoint_pen","short_names":["lower_left_ballpoint_pen"],"text":null,"texts":null,"category":"Objects","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ps":{"name":"Regional Indicator Symbol Letters Ps","unified":"1F1F5-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f8.png","sheet_x":37,"sheet_y":16,"short_name":"flag-ps","short_names":["flag-ps"],"text":null,"texts":null,"category":"Flags","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pa":{"name":"Regional Indicator Symbol Letters Pa","unified":"1F1F5-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1e6.png","sheet_x":37,"sheet_y":6,"short_name":"flag-pa","short_names":["flag-pa"],"text":null,"texts":null,"category":"Flags","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lower_left_fountain_pen":{"name":"Lower Left Fountain Pen","unified":"1F58B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58b.png","sheet_x":25,"sheet_y":10,"short_name":"lower_left_fountain_pen","short_names":["lower_left_fountain_pen"],"text":null,"texts":null,"category":"Objects","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_lower_left":{"name":"South West Arrow","unified":"2199","variations":["2199-FE0F"],"docomo":"E6A5","au":"E556","softbank":"E239","google":"FEAF3","image":"2199.png","sheet_x":0,"sheet_y":11,"short_name":"arrow_lower_left","short_names":["arrow_lower_left"],"text":null,"texts":null,"category":"Symbols","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-man-boy":{"name":"Man Man Boy","unified":"1F468-200D-1F468-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466.png","sheet_x":39,"sheet_y":3,"short_name":"man-man-boy","short_names":["man-man-boy"],"text":null,"texts":null,"category":"People","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_nib":{"name":"Black Nib","unified":"2712","variations":["2712-FE0F"],"docomo":"E6AE","au":"EB03","softbank":null,"google":"FE536","image":"2712.png","sheet_x":3,"sheet_y":34,"short_name":"black_nib","short_names":["black_nib"],"text":null,"texts":null,"category":"Objects","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pg":{"name":"Regional Indicator Symbol Letters Pg","unified":"1F1F5-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ec.png","sheet_x":37,"sheet_y":9,"short_name":"flag-pg","short_names":["flag-pg"],"text":null,"texts":null,"category":"Flags","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_upper_left":{"name":"North West Arrow","unified":"2196","variations":["2196-FE0F"],"docomo":"E697","au":"E54C","softbank":"E237","google":"FEAF2","image":"2196.png","sheet_x":0,"sheet_y":8,"short_name":"arrow_upper_left","short_names":["arrow_upper_left"],"text":null,"texts":null,"category":"Symbols","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-man-girl":{"name":"Man Man Girl","unified":"1F468-200D-1F468-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467.png","sheet_x":39,"sheet_y":5,"short_name":"man-man-girl","short_names":["man-man-girl"],"text":null,"texts":null,"category":"People","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-man-girl-boy":{"name":"Man Man Girl Boy","unified":"1F468-200D-1F468-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":6,"short_name":"man-man-girl-boy","short_names":["man-man-girl-boy"],"text":null,"texts":null,"category":"People","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_up_down":{"name":"Up Down Arrow","unified":"2195","variations":["2195-FE0F"],"docomo":"E73D","au":"EB7B","softbank":null,"google":"FEAF7","image":"2195.png","sheet_x":0,"sheet_y":7,"short_name":"arrow_up_down","short_names":["arrow_up_down"],"text":null,"texts":null,"category":"Symbols","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"memo":{"name":"Memo","unified":"1F4DD","variations":[],"docomo":"E689","au":"EA92","softbank":"E301","google":"FE527","image":"1f4dd.png","sheet_x":21,"sheet_y":32,"short_name":"memo","short_names":["memo","pencil"],"text":null,"texts":null,"category":"Objects","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-py":{"name":"Regional Indicator Symbol Letters Py","unified":"1F1F5-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fe.png","sheet_x":37,"sheet_y":19,"short_name":"flag-py","short_names":["flag-py"],"text":null,"texts":null,"category":"Flags","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pe":{"name":"Regional Indicator Symbol Letters Pe","unified":"1F1F5-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ea.png","sheet_x":37,"sheet_y":7,"short_name":"flag-pe","short_names":["flag-pe"],"text":null,"texts":null,"category":"Flags","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pencil2":{"name":"Pencil","unified":"270F","variations":["270F-FE0F"],"docomo":"E719","au":"E4A1","softbank":"E301","google":"FE539","image":"270f.png","sheet_x":3,"sheet_y":33,"short_name":"pencil2","short_names":["pencil2"],"text":null,"texts":null,"category":"Objects","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-man-boy-boy":{"name":"Man Man Boy Boy","unified":"1F468-200D-1F468-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":4,"short_name":"man-man-boy-boy","short_names":["man-man-boy-boy"],"text":null,"texts":null,"category":"People","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"left_right_arrow":{"name":"Left Right Arrow","unified":"2194","variations":["2194-FE0F"],"docomo":"E73C","au":"EB7A","softbank":null,"google":"FEAF6","image":"2194.png","sheet_x":0,"sheet_y":6,"short_name":"left_right_arrow","short_names":["left_right_arrow"],"text":null,"texts":null,"category":"Symbols","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"man-man-girl-girl":{"name":"Man Man Girl Girl","unified":"1F468-200D-1F468-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":7,"short_name":"man-man-girl-girl","short_names":["man-man-girl-girl"],"text":null,"texts":null,"category":"People","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrows_counterclockwise":{"name":"Anticlockwise Downwards and Upwards Open Circle Arrows","unified":"1F504","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f504.png","sheet_x":22,"sheet_y":29,"short_name":"arrows_counterclockwise","short_names":["arrows_counterclockwise"],"text":null,"texts":null,"category":"Symbols","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ph":{"name":"Regional Indicator Symbol Letters Ph","unified":"1F1F5-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ed.png","sheet_x":37,"sheet_y":10,"short_name":"flag-ph","short_names":["flag-ph"],"text":null,"texts":null,"category":"Flags","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lower_left_crayon":{"name":"Lower Left Crayon","unified":"1F58D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58d.png","sheet_x":25,"sheet_y":12,"short_name":"lower_left_crayon","short_names":["lower_left_crayon"],"text":null,"texts":null,"category":"Objects","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"womans_clothes":{"name":"Womans Clothes","unified":"1F45A","variations":[],"docomo":"E70E","au":"E50D","softbank":"E006","google":"FE4DB","image":"1f45a.png","sheet_x":15,"sheet_y":37,"short_name":"womans_clothes","short_names":["womans_clothes"],"text":null,"texts":null,"category":"People","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lower_left_paintbrush":{"name":"Lower Left Paintbrush","unified":"1F58C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58c.png","sheet_x":25,"sheet_y":11,"short_name":"lower_left_paintbrush","short_names":["lower_left_paintbrush"],"text":null,"texts":null,"category":"Objects","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pn":{"name":"Regional Indicator Symbol Letters Pn","unified":"1F1F5-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f3.png","sheet_x":37,"sheet_y":14,"short_name":"flag-pn","short_names":["flag-pn"],"text":null,"texts":null,"category":"Flags","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_right_hook":{"name":"Rightwards Arrow with Hook","unified":"21AA","variations":["21AA-FE0F"],"docomo":null,"au":"E55C","softbank":null,"google":"FEB88","image":"21aa.png","sheet_x":0,"sheet_y":13,"short_name":"arrow_right_hook","short_names":["arrow_right_hook"],"text":null,"texts":null,"category":"Symbols","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"leftwards_arrow_with_hook":{"name":"Leftwards Arrow with Hook","unified":"21A9","variations":["21A9-FE0F"],"docomo":"E6DA","au":"E55D","softbank":null,"google":"FEB83","image":"21a9.png","sheet_x":0,"sheet_y":12,"short_name":"leftwards_arrow_with_hook","short_names":["leftwards_arrow_with_hook"],"text":null,"texts":null,"category":"Symbols","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mag":{"name":"Left-Pointing Magnifying Glass","unified":"1F50D","variations":[],"docomo":"E6DC","au":"E518","softbank":"E114","google":"FEB85","image":"1f50d.png","sheet_x":22,"sheet_y":38,"short_name":"mag","short_names":["mag"],"text":null,"texts":null,"category":"Objects","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pl":{"name":"Regional Indicator Symbol Letters Pl","unified":"1F1F5-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f1.png","sheet_x":37,"sheet_y":12,"short_name":"flag-pl","short_names":["flag-pl"],"text":null,"texts":null,"category":"Flags","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"shirt":{"name":"T-Shirt","unified":"1F455","variations":[],"docomo":"E70E","au":"E5B6","softbank":"E006","google":"FE4CF","image":"1f455.png","sheet_x":15,"sheet_y":32,"short_name":"shirt","short_names":["shirt","tshirt"],"text":null,"texts":null,"category":"People","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pt":{"name":"Regional Indicator Symbol Letters Pt","unified":"1F1F5-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f9.png","sheet_x":37,"sheet_y":17,"short_name":"flag-pt","short_names":["flag-pt"],"text":null,"texts":null,"category":"Flags","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"jeans":{"name":"Jeans","unified":"1F456","variations":[],"docomo":"E711","au":"EB77","softbank":null,"google":"FE4D0","image":"1f456.png","sheet_x":15,"sheet_y":33,"short_name":"jeans","short_names":["jeans"],"text":null,"texts":null,"category":"People","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mag_right":{"name":"Right-Pointing Magnifying Glass","unified":"1F50E","variations":[],"docomo":"E6DC","au":"EB05","softbank":"E114","google":"FEB8D","image":"1f50e.png","sheet_x":22,"sheet_y":39,"short_name":"mag_right","short_names":["mag_right"],"text":null,"texts":null,"category":"Objects","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_heading_up":{"name":"Arrow Pointing Rightwards Then Curving Upwards","unified":"2934","variations":["2934-FE0F"],"docomo":"E6F5","au":"EB2D","softbank":"E236","google":"FEAF4","image":"2934.png","sheet_x":4,"sheet_y":17,"short_name":"arrow_heading_up","short_names":["arrow_heading_up"],"text":null,"texts":null,"category":"Symbols","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"necktie":{"name":"Necktie","unified":"1F454","variations":[],"docomo":null,"au":"EA93","softbank":"E302","google":"FE4D3","image":"1f454.png","sheet_x":15,"sheet_y":31,"short_name":"necktie","short_names":["necktie"],"text":null,"texts":null,"category":"People","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pr":{"name":"Regional Indicator Symbol Letters Pr","unified":"1F1F5-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f7.png","sheet_x":37,"sheet_y":15,"short_name":"flag-pr","short_names":["flag-pr"],"text":null,"texts":null,"category":"Flags","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrow_heading_down":{"name":"Arrow Pointing Rightwards Then Curving Downwards","unified":"2935","variations":["2935-FE0F"],"docomo":"E700","au":"EB2E","softbank":"E238","google":"FEAF5","image":"2935.png","sheet_x":4,"sheet_y":18,"short_name":"arrow_heading_down","short_names":["arrow_heading_down"],"text":null,"texts":null,"category":"Symbols","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dress":{"name":"Dress","unified":"1F457","variations":[],"docomo":null,"au":"EB6B","softbank":"E319","google":"FE4D5","image":"1f457.png","sheet_x":15,"sheet_y":34,"short_name":"dress","short_names":["dress"],"text":null,"texts":null,"category":"People","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-qa":{"name":"Regional Indicator Symbol Letters Qa","unified":"1F1F6-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f6-1f1e6.png","sheet_x":37,"sheet_y":20,"short_name":"flag-qa","short_names":["flag-qa"],"text":null,"texts":null,"category":"Flags","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hash":{"name":"Hash Key","unified":"0023-20E3","variations":["0023-FE0F-20E3"],"docomo":"E6E0","au":"EB84","softbank":"E210","google":"FE82C","image":"0023-20e3.png","sheet_x":32,"sheet_y":21,"short_name":"hash","short_names":["hash"],"text":null,"texts":null,"category":"Symbols","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-re":{"name":"Regional Indicator Symbol Letters Re","unified":"1F1F7-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1ea.png","sheet_x":37,"sheet_y":21,"short_name":"flag-re","short_names":["flag-re"],"text":null,"texts":null,"category":"Flags","sort_order":181,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"bikini":{"name":"Bikini","unified":"1F459","variations":[],"docomo":null,"au":"EAA4","softbank":"E322","google":"FE4DA","image":"1f459.png","sheet_x":15,"sheet_y":36,"short_name":"bikini","short_names":["bikini"],"text":null,"texts":null,"category":"People","sort_order":181,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"information_source":{"name":"Information Source","unified":"2139","variations":["2139-FE0F"],"docomo":null,"au":"E533","softbank":null,"google":"FEB47","image":"2139.png","sheet_x":0,"sheet_y":5,"short_name":"information_source","short_names":["information_source"],"text":null,"texts":null,"category":"Symbols","sort_order":181,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kimono":{"name":"Kimono","unified":"1F458","variations":[],"docomo":null,"au":"EAA3","softbank":"E321","google":"FE4D9","image":"1f458.png","sheet_x":15,"sheet_y":35,"short_name":"kimono","short_names":["kimono"],"text":null,"texts":null,"category":"People","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"abc":{"name":"Input Symbol for Latin Letters","unified":"1F524","variations":[],"docomo":null,"au":"EB55","softbank":null,"google":"FEB80","image":"1f524.png","sheet_x":23,"sheet_y":20,"short_name":"abc","short_names":["abc"],"text":null,"texts":null,"category":"Symbols","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ro":{"name":"Regional Indicator Symbol Letters Ro","unified":"1F1F7-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f4.png","sheet_x":37,"sheet_y":22,"short_name":"flag-ro","short_names":["flag-ro"],"text":null,"texts":null,"category":"Flags","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"lipstick":{"name":"Lipstick","unified":"1F484","variations":[],"docomo":"E710","au":"E509","softbank":"E31C","google":"FE195","image":"1f484.png","sheet_x":19,"sheet_y":5,"short_name":"lipstick","short_names":["lipstick"],"text":null,"texts":null,"category":"People","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ru":{"name":"Regional Indicator Symbol Letters Ru","unified":"1F1F7-1F1FA","variations":[],"docomo":null,"au":"E5D6","softbank":"E512","google":"FE4EC","image":"1f1f7-1f1fa.png","sheet_x":37,"sheet_y":24,"short_name":"flag-ru","short_names":["flag-ru","ru"],"text":null,"texts":null,"category":"Flags","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"abcd":{"name":"Input Symbol for Latin Small Letters","unified":"1F521","variations":[],"docomo":null,"au":"EAFE","softbank":null,"google":"FEB7D","image":"1f521.png","sheet_x":23,"sheet_y":17,"short_name":"abcd","short_names":["abcd"],"text":null,"texts":null,"category":"Symbols","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"kiss":{"name":"Kiss Mark","unified":"1F48B","variations":[],"docomo":"E6F9","au":"E4EB","softbank":"E003","google":"FE823","image":"1f48b.png","sheet_x":19,"sheet_y":27,"short_name":"kiss","short_names":["kiss"],"text":null,"texts":[":*",":-*"],"category":"People","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"capital_abcd":{"name":"Input Symbol for Latin Capital Letters","unified":"1F520","variations":[],"docomo":null,"au":"EAFD","softbank":null,"google":"FEB7C","image":"1f520.png","sheet_x":23,"sheet_y":16,"short_name":"capital_abcd","short_names":["capital_abcd"],"text":null,"texts":null,"category":"Symbols","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-rw":{"name":"Regional Indicator Symbol Letters Rw","unified":"1F1F7-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1fc.png","sheet_x":37,"sheet_y":25,"short_name":"flag-rw","short_names":["flag-rw"],"text":null,"texts":null,"category":"Flags","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"footprints":{"name":"Footprints","unified":"1F463","variations":[],"docomo":"E698","au":"EB2A","softbank":"E536","google":"FE553","image":"1f463.png","sheet_x":16,"sheet_y":5,"short_name":"footprints","short_names":["footprints"],"text":null,"texts":null,"category":"People","sort_order":185,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bl":{"name":"Regional Indicator Symbol Letters Bl","unified":"1F1E7-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f1.png","sheet_x":33,"sheet_y":18,"short_name":"flag-bl","short_names":["flag-bl"],"text":null,"texts":null,"category":"Flags","sort_order":185,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"symbols":{"name":"Input Symbol for Symbols","unified":"1F523","variations":[],"docomo":null,"au":"EB00","softbank":null,"google":"FEB7F","image":"1f523.png","sheet_x":23,"sheet_y":19,"short_name":"symbols","short_names":["symbols"],"text":null,"texts":null,"category":"Symbols","sort_order":185,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"high_heel":{"name":"High-Heeled Shoe","unified":"1F460","variations":[],"docomo":"E674","au":"E51A","softbank":"E13E","google":"FE4D6","image":"1f460.png","sheet_x":16,"sheet_y":2,"short_name":"high_heel","short_names":["high_heel"],"text":null,"texts":null,"category":"People","sort_order":186,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"musical_note":{"name":"Musical Note","unified":"1F3B5","variations":[],"docomo":"E6F6","au":"E5BE","softbank":"E03E","google":"FE813","image":"1f3b5.png","sheet_x":9,"sheet_y":36,"short_name":"musical_note","short_names":["musical_note"],"text":null,"texts":null,"category":"Symbols","sort_order":186,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sh":{"name":"Regional Indicator Symbol Letters Sh","unified":"1F1F8-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ed.png","sheet_x":37,"sheet_y":32,"short_name":"flag-sh","short_names":["flag-sh"],"text":null,"texts":null,"category":"Flags","sort_order":186,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"flag-kn":{"name":"Regional Indicator Symbol Letters Kn","unified":"1F1F0-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f3.png","sheet_x":35,"sheet_y":35,"short_name":"flag-kn","short_names":["flag-kn"],"text":null,"texts":null,"category":"Flags","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"notes":{"name":"Multiple Musical Notes","unified":"1F3B6","variations":[],"docomo":"E6FF","au":"E505","softbank":"E326","google":"FE814","image":"1f3b6.png","sheet_x":9,"sheet_y":37,"short_name":"notes","short_names":["notes"],"text":null,"texts":null,"category":"Symbols","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sandal":{"name":"Womans Sandal","unified":"1F461","variations":[],"docomo":"E674","au":"E51A","softbank":"E31A","google":"FE4D7","image":"1f461.png","sheet_x":16,"sheet_y":3,"short_name":"sandal","short_names":["sandal"],"text":null,"texts":null,"category":"People","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"boot":{"name":"Womans Boots","unified":"1F462","variations":[],"docomo":null,"au":"EA9F","softbank":"E31B","google":"FE4D8","image":"1f462.png","sheet_x":16,"sheet_y":4,"short_name":"boot","short_names":["boot"],"text":null,"texts":null,"category":"People","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"wavy_dash":{"name":"Wavy Dash","unified":"3030","variations":["3030-FE0F"],"docomo":"E709","au":null,"softbank":null,"google":"FEB07","image":"3030.png","sheet_x":4,"sheet_y":26,"short_name":"wavy_dash","short_names":["wavy_dash"],"text":null,"texts":null,"category":"Symbols","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lc":{"name":"Regional Indicator Symbol Letters Lc","unified":"1F1F1-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e8.png","sheet_x":36,"sheet_y":2,"short_name":"flag-lc","short_names":["flag-lc"],"text":null,"texts":null,"category":"Flags","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-pm":{"name":"Regional Indicator Symbol Letters Pm","unified":"1F1F5-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f2.png","sheet_x":37,"sheet_y":13,"short_name":"flag-pm","short_names":["flag-pm"],"text":null,"texts":null,"category":"Flags","sort_order":189,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"mans_shoe":{"name":"Mans Shoe","unified":"1F45E","variations":[],"docomo":"E699","au":"E5B7","softbank":"E007","google":"FE4CC","image":"1f45e.png","sheet_x":16,"sheet_y":0,"short_name":"mans_shoe","short_names":["mans_shoe","shoe"],"text":null,"texts":null,"category":"People","sort_order":189,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"curly_loop":{"name":"Curly Loop","unified":"27B0","variations":[],"docomo":"E70A","au":"EB31","softbank":null,"google":"FEB08","image":"27b0.png","sheet_x":4,"sheet_y":15,"short_name":"curly_loop","short_names":["curly_loop"],"text":null,"texts":null,"category":"Symbols","sort_order":189,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-vc":{"name":"Regional Indicator Symbol Letters Vc","unified":"1F1FB-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e8.png","sheet_x":38,"sheet_y":30,"short_name":"flag-vc","short_names":["flag-vc"],"text":null,"texts":null,"category":"Flags","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_check_mark":{"name":"Heavy Check Mark","unified":"2714","variations":["2714-FE0F"],"docomo":null,"au":"E557","softbank":null,"google":"FEB49","image":"2714.png","sheet_x":3,"sheet_y":35,"short_name":"heavy_check_mark","short_names":["heavy_check_mark"],"text":null,"texts":null,"category":"Symbols","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"athletic_shoe":{"name":"Athletic Shoe","unified":"1F45F","variations":[],"docomo":"E699","au":"EB2B","softbank":"E007","google":"FE4CD","image":"1f45f.png","sheet_x":16,"sheet_y":1,"short_name":"athletic_shoe","short_names":["athletic_shoe"],"text":null,"texts":null,"category":"People","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"womans_hat":{"name":"Womans Hat","unified":"1F452","variations":[],"docomo":null,"au":"EA9E","softbank":"E318","google":"FE4D4","image":"1f452.png","sheet_x":15,"sheet_y":29,"short_name":"womans_hat","short_names":["womans_hat"],"text":null,"texts":null,"category":"People","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ws":{"name":"Regional Indicator Symbol Letters Ws","unified":"1F1FC-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1f8.png","sheet_x":38,"sheet_y":37,"short_name":"flag-ws","short_names":["flag-ws"],"text":null,"texts":null,"category":"Flags","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"arrows_clockwise":{"name":"Clockwise Downwards and Upwards Open Circle Arrows","unified":"1F503","variations":[],"docomo":"E735","au":"EB0D","softbank":null,"google":"FEB91","image":"1f503.png","sheet_x":22,"sheet_y":28,"short_name":"arrows_clockwise","short_names":["arrows_clockwise"],"text":null,"texts":null,"category":"Symbols","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_plus_sign":{"name":"Heavy Plus Sign","unified":"2795","variations":[],"docomo":null,"au":"E53C","softbank":null,"google":"FEB51","image":"2795.png","sheet_x":4,"sheet_y":11,"short_name":"heavy_plus_sign","short_names":["heavy_plus_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tophat":{"name":"Top Hat","unified":"1F3A9","variations":[],"docomo":"E67C","au":"EAF5","softbank":"E503","google":"FE805","image":"1f3a9.png","sheet_x":9,"sheet_y":24,"short_name":"tophat","short_names":["tophat"],"text":null,"texts":null,"category":"People","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sm":{"name":"Regional Indicator Symbol Letters Sm","unified":"1F1F8-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f2.png","sheet_x":37,"sheet_y":37,"short_name":"flag-sm","short_names":["flag-sm"],"text":null,"texts":null,"category":"Flags","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"helmet_with_white_cross":{"name":"Helmet with White Cross","unified":"26D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26d1.png","sheet_x":2,"sheet_y":25,"short_name":"helmet_with_white_cross","short_names":["helmet_with_white_cross"],"text":null,"texts":null,"category":"People","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_minus_sign":{"name":"Heavy Minus Sign","unified":"2796","variations":[],"docomo":null,"au":"E53D","softbank":null,"google":"FEB52","image":"2796.png","sheet_x":4,"sheet_y":12,"short_name":"heavy_minus_sign","short_names":["heavy_minus_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-st":{"name":"Regional Indicator Symbol Letters St","unified":"1F1F8-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f9.png","sheet_x":38,"sheet_y":1,"short_name":"flag-st","short_names":["flag-st"],"text":null,"texts":null,"category":"Flags","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sa":{"name":"Regional Indicator Symbol Letters Sa","unified":"1F1F8-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e6.png","sheet_x":37,"sheet_y":26,"short_name":"flag-sa","short_names":["flag-sa"],"text":null,"texts":null,"category":"Flags","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_division_sign":{"name":"Heavy Division Sign","unified":"2797","variations":[],"docomo":null,"au":"E554","softbank":null,"google":"FEB54","image":"2797.png","sheet_x":4,"sheet_y":13,"short_name":"heavy_division_sign","short_names":["heavy_division_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mortar_board":{"name":"Graduation Cap","unified":"1F393","variations":[],"docomo":null,"au":"EAE5","softbank":"E439","google":"FE51A","image":"1f393.png","sheet_x":9,"sheet_y":7,"short_name":"mortar_board","short_names":["mortar_board"],"text":null,"texts":null,"category":"People","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sn":{"name":"Regional Indicator Symbol Letters Sn","unified":"1F1F8-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f3.png","sheet_x":37,"sheet_y":38,"short_name":"flag-sn","short_names":["flag-sn"],"text":null,"texts":null,"category":"Flags","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_multiplication_x":{"name":"Heavy Multiplication X","unified":"2716","variations":["2716-FE0F"],"docomo":null,"au":"E54F","softbank":"E333","google":"FEB53","image":"2716.png","sheet_x":3,"sheet_y":36,"short_name":"heavy_multiplication_x","short_names":["heavy_multiplication_x"],"text":null,"texts":null,"category":"Symbols","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"crown":{"name":"Crown","unified":"1F451","variations":[],"docomo":"E71A","au":"E5C9","softbank":"E10E","google":"FE4D1","image":"1f451.png","sheet_x":15,"sheet_y":28,"short_name":"crown","short_names":["crown"],"text":null,"texts":null,"category":"People","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"school_satchel":{"name":"School Satchel","unified":"1F392","variations":[],"docomo":null,"au":"EAE6","softbank":"E43A","google":"FE51B","image":"1f392.png","sheet_x":9,"sheet_y":6,"short_name":"school_satchel","short_names":["school_satchel"],"text":null,"texts":null,"category":"People","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-rs":{"name":"Regional Indicator Symbol Letters Rs","unified":"1F1F7-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f8.png","sheet_x":37,"sheet_y":23,"short_name":"flag-rs","short_names":["flag-rs"],"text":null,"texts":null,"category":"Flags","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"heavy_dollar_sign":{"name":"Heavy Dollar Sign","unified":"1F4B2","variations":[],"docomo":"E715","au":"E579","softbank":"E12F","google":"FE4E0","image":"1f4b2.png","sheet_x":20,"sheet_y":30,"short_name":"heavy_dollar_sign","short_names":["heavy_dollar_sign"],"text":null,"texts":null,"category":"Symbols","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sc":{"name":"Regional Indicator Symbol Letters Sc","unified":"1F1F8-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e8.png","sheet_x":37,"sheet_y":28,"short_name":"flag-sc","short_names":["flag-sc"],"text":null,"texts":null,"category":"Flags","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"currency_exchange":{"name":"Currency Exchange","unified":"1F4B1","variations":[],"docomo":null,"au":null,"softbank":"E149","google":"FE4DE","image":"1f4b1.png","sheet_x":20,"sheet_y":29,"short_name":"currency_exchange","short_names":["currency_exchange"],"text":null,"texts":null,"category":"Symbols","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"pouch":{"name":"Pouch","unified":"1F45D","variations":[],"docomo":"E6AD","au":null,"softbank":null,"google":"FE4F1","image":"1f45d.png","sheet_x":15,"sheet_y":40,"short_name":"pouch","short_names":["pouch"],"text":null,"texts":null,"category":"People","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"purse":{"name":"Purse","unified":"1F45B","variations":[],"docomo":"E70F","au":"E504","softbank":null,"google":"FE4DC","image":"1f45b.png","sheet_x":15,"sheet_y":38,"short_name":"purse","short_names":["purse"],"text":null,"texts":null,"category":"People","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sl":{"name":"Regional Indicator Symbol Letters Sl","unified":"1F1F8-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f1.png","sheet_x":37,"sheet_y":36,"short_name":"flag-sl","short_names":["flag-sl"],"text":null,"texts":null,"category":"Flags","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"copyright":{"name":"Copyright Sign","unified":"00A9","variations":["00A9-FE0F"],"docomo":"E731","au":"E558","softbank":"E24E","google":"FEB29","image":"00a9.png","sheet_x":0,"sheet_y":0,"short_name":"copyright","short_names":["copyright"],"text":null,"texts":null,"category":"Symbols","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true},"handbag":{"name":"Handbag","unified":"1F45C","variations":[],"docomo":"E682","au":"E49C","softbank":"E323","google":"FE4F0","image":"1f45c.png","sheet_x":15,"sheet_y":39,"short_name":"handbag","short_names":["handbag"],"text":null,"texts":null,"category":"People","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sg":{"name":"Regional Indicator Symbol Letters Sg","unified":"1F1F8-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ec.png","sheet_x":37,"sheet_y":31,"short_name":"flag-sg","short_names":["flag-sg"],"text":null,"texts":null,"category":"Flags","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"registered":{"name":"Registered Sign","unified":"00AE","variations":["00AE-FE0F"],"docomo":"E736","au":"E559","softbank":"E24F","google":"FEB2D","image":"00ae.png","sheet_x":0,"sheet_y":1,"short_name":"registered","short_names":["registered"],"text":null,"texts":null,"category":"Symbols","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true},"briefcase":{"name":"Briefcase","unified":"1F4BC","variations":[],"docomo":"E682","au":"E5CE","softbank":"E11E","google":"FE53B","image":"1f4bc.png","sheet_x":20,"sheet_y":40,"short_name":"briefcase","short_names":["briefcase"],"text":null,"texts":null,"category":"People","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sx":{"name":"Regional Indicator Symbol Letters Sx","unified":"1F1F8-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fd.png","sheet_x":38,"sheet_y":3,"short_name":"flag-sx","short_names":["flag-sx"],"text":null,"texts":null,"category":"Flags","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"tm":{"name":"Trade Mark Sign","unified":"2122","variations":["2122-FE0F"],"docomo":"E732","au":"E54E","softbank":"E537","google":"FEB2A","image":"2122.png","sheet_x":0,"sheet_y":4,"short_name":"tm","short_names":["tm"],"text":null,"texts":null,"category":"Symbols","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true},"flag-sk":{"name":"Regional Indicator Symbol Letters Sk","unified":"1F1F8-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f0.png","sheet_x":37,"sheet_y":35,"short_name":"flag-sk","short_names":["flag-sk"],"text":null,"texts":null,"category":"Flags","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"eyeglasses":{"name":"Eyeglasses","unified":"1F453","variations":[],"docomo":"E69A","au":"E4FE","softbank":null,"google":"FE4CE","image":"1f453.png","sheet_x":15,"sheet_y":30,"short_name":"eyeglasses","short_names":["eyeglasses"],"text":null,"texts":null,"category":"People","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"end":{"name":"End with Leftwards Arrow Above","unified":"1F51A","variations":[],"docomo":"E6B9","au":null,"softbank":null,"google":"FE01A","image":"1f51a.png","sheet_x":23,"sheet_y":10,"short_name":"end","short_names":["end"],"text":null,"texts":null,"category":"Symbols","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"dark_sunglasses":{"name":"Dark Sunglasses","unified":"1F576","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f576.png","sheet_x":25,"sheet_y":4,"short_name":"dark_sunglasses","short_names":["dark_sunglasses"],"text":null,"texts":null,"category":"People","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-si":{"name":"Regional Indicator Symbol Letters Si","unified":"1F1F8-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ee.png","sheet_x":37,"sheet_y":33,"short_name":"flag-si","short_names":["flag-si"],"text":null,"texts":null,"category":"Flags","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"back":{"name":"Back with Leftwards Arrow Above","unified":"1F519","variations":[],"docomo":null,"au":"EB06","softbank":"E235","google":"FEB8E","image":"1f519.png","sheet_x":23,"sheet_y":9,"short_name":"back","short_names":["back"],"text":null,"texts":null,"category":"Symbols","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"ring":{"name":"Ring","unified":"1F48D","variations":[],"docomo":"E71B","au":"E514","softbank":"E034","google":"FE825","image":"1f48d.png","sheet_x":19,"sheet_y":29,"short_name":"ring","short_names":["ring"],"text":null,"texts":null,"category":"People","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sb":{"name":"Regional Indicator Symbol Letters Sb","unified":"1F1F8-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e7.png","sheet_x":37,"sheet_y":27,"short_name":"flag-sb","short_names":["flag-sb"],"text":null,"texts":null,"category":"Flags","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"on":{"name":"On with Exclamation Mark with Left Right Arrow Above","unified":"1F51B","variations":[],"docomo":"E6B8","au":null,"softbank":null,"google":"FE019","image":"1f51b.png","sheet_x":23,"sheet_y":11,"short_name":"on","short_names":["on"],"text":null,"texts":null,"category":"Symbols","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"top":{"name":"Top with Upwards Arrow Above","unified":"1F51D","variations":[],"docomo":null,"au":null,"softbank":"E24C","google":"FEB42","image":"1f51d.png","sheet_x":23,"sheet_y":13,"short_name":"top","short_names":["top"],"text":null,"texts":null,"category":"Symbols","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-so":{"name":"Regional Indicator Symbol Letters so","unified":"1F1F8-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f4.png","sheet_x":37,"sheet_y":39,"short_name":"flag-so","short_names":["flag-so"],"text":null,"texts":null,"category":"Flags","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"closed_umbrella":{"name":"Closed Umbrella","unified":"1F302","variations":[],"docomo":"E645","au":"EAE8","softbank":"E43C","google":"FE007","image":"1f302.png","sheet_x":5,"sheet_y":23,"short_name":"closed_umbrella","short_names":["closed_umbrella"],"text":null,"texts":null,"category":"People","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-za":{"name":"Regional Indicator Symbol Letters Za","unified":"1F1FF-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1e6.png","sheet_x":39,"sheet_y":0,"short_name":"flag-za","short_names":["flag-za"],"text":null,"texts":null,"category":"Flags","sort_order":205,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"soon":{"name":"Soon with Rightwards Arrow Above","unified":"1F51C","variations":[],"docomo":"E6B7","au":null,"softbank":null,"google":"FE018","image":"1f51c.png","sheet_x":23,"sheet_y":12,"short_name":"soon","short_names":["soon"],"text":null,"texts":null,"category":"Symbols","sort_order":205,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gs":{"name":"Regional Indicator Symbol Letters Gs","unified":"1F1EC-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f8.png","sheet_x":35,"sheet_y":4,"short_name":"flag-gs","short_names":["flag-gs"],"text":null,"texts":null,"category":"Flags","sort_order":206,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"ballot_box_with_check":{"name":"Ballot Box with Check","unified":"2611","variations":["2611-FE0F"],"docomo":null,"au":"EB02","softbank":null,"google":"FEB8B","image":"2611.png","sheet_x":1,"sheet_y":6,"short_name":"ballot_box_with_check","short_names":["ballot_box_with_check"],"text":null,"texts":null,"category":"Symbols","sort_order":206,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"radio_button":{"name":"Radio Button","unified":"1F518","variations":[],"docomo":null,"au":"EB04","softbank":null,"google":"FEB8C","image":"1f518.png","sheet_x":23,"sheet_y":8,"short_name":"radio_button","short_names":["radio_button"],"text":null,"texts":null,"category":"Symbols","sort_order":207,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-kr":{"name":"Regional Indicator Symbol Letters Kr","unified":"1F1F0-1F1F7","variations":[],"docomo":null,"au":"EB12","softbank":"E514","google":"FE4EE","image":"1f1f0-1f1f7.png","sheet_x":35,"sheet_y":37,"short_name":"flag-kr","short_names":["flag-kr","kr"],"text":null,"texts":null,"category":"Flags","sort_order":207,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ss":{"name":"Regional Indicator Symbol Letters Ss","unified":"1F1F8-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f8.png","sheet_x":38,"sheet_y":0,"short_name":"flag-ss","short_names":["flag-ss"],"text":null,"texts":null,"category":"Flags","sort_order":208,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_circle":{"name":"Medium White Circle","unified":"26AA","variations":["26AA-FE0F"],"docomo":"E69C","au":"E53A","softbank":"E219","google":"FEB65","image":"26aa.png","sheet_x":2,"sheet_y":14,"short_name":"white_circle","short_names":["white_circle"],"text":null,"texts":null,"category":"Symbols","sort_order":208,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-es":{"name":"Regional Indicator Symbol Letters Es","unified":"1F1EA-1F1F8","variations":[],"docomo":null,"au":"E5D5","softbank":"E511","google":"FE4EB","image":"1f1ea-1f1f8.png","sheet_x":34,"sheet_y":22,"short_name":"flag-es","short_names":["flag-es","es"],"text":null,"texts":null,"category":"Flags","sort_order":209,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_circle":{"name":"Medium Black Circle","unified":"26AB","variations":["26AB-FE0F"],"docomo":"E69C","au":"E53B","softbank":"E219","google":"FEB66","image":"26ab.png","sheet_x":2,"sheet_y":15,"short_name":"black_circle","short_names":["black_circle"],"text":null,"texts":null,"category":"Symbols","sort_order":209,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-lk":{"name":"Regional Indicator Symbol Letters Lk","unified":"1F1F1-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f0.png","sheet_x":36,"sheet_y":4,"short_name":"flag-lk","short_names":["flag-lk"],"text":null,"texts":null,"category":"Flags","sort_order":210,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"red_circle":{"name":"Large Red Circle","unified":"1F534","variations":[],"docomo":"E69C","au":"E54A","softbank":"E219","google":"FEB63","image":"1f534.png","sheet_x":23,"sheet_y":36,"short_name":"red_circle","short_names":["red_circle"],"text":null,"texts":null,"category":"Symbols","sort_order":210,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sd":{"name":"Regional Indicator Symbol Letters Sd","unified":"1F1F8-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e9.png","sheet_x":37,"sheet_y":29,"short_name":"flag-sd","short_names":["flag-sd"],"text":null,"texts":null,"category":"Flags","sort_order":211,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"large_blue_circle":{"name":"Large Blue Circle","unified":"1F535","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21A","google":"FEB64","image":"1f535.png","sheet_x":23,"sheet_y":37,"short_name":"large_blue_circle","short_names":["large_blue_circle"],"text":null,"texts":null,"category":"Symbols","sort_order":211,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"small_orange_diamond":{"name":"Small Orange Diamond","unified":"1F538","variations":[],"docomo":null,"au":"E536","softbank":"E21B","google":"FEB75","image":"1f538.png","sheet_x":23,"sheet_y":40,"short_name":"small_orange_diamond","short_names":["small_orange_diamond"],"text":null,"texts":null,"category":"Symbols","sort_order":212,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sr":{"name":"Regional Indicator Symbol Letters Sr","unified":"1F1F8-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f7.png","sheet_x":37,"sheet_y":40,"short_name":"flag-sr","short_names":["flag-sr"],"text":null,"texts":null,"category":"Flags","sort_order":212,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"small_blue_diamond":{"name":"Small Blue Diamond","unified":"1F539","variations":[],"docomo":null,"au":"E537","softbank":"E21B","google":"FEB76","image":"1f539.png","sheet_x":24,"sheet_y":0,"short_name":"small_blue_diamond","short_names":["small_blue_diamond"],"text":null,"texts":null,"category":"Symbols","sort_order":213,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sz":{"name":"Regional Indicator Symbol Letters Sz","unified":"1F1F8-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ff.png","sheet_x":38,"sheet_y":5,"short_name":"flag-sz","short_names":["flag-sz"],"text":null,"texts":null,"category":"Flags","sort_order":213,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"large_orange_diamond":{"name":"Large Orange Diamond","unified":"1F536","variations":[],"docomo":null,"au":"E546","softbank":"E21B","google":"FEB73","image":"1f536.png","sheet_x":23,"sheet_y":38,"short_name":"large_orange_diamond","short_names":["large_orange_diamond"],"text":null,"texts":null,"category":"Symbols","sort_order":214,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-se":{"name":"Regional Indicator Symbol Letters Se","unified":"1F1F8-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ea.png","sheet_x":37,"sheet_y":30,"short_name":"flag-se","short_names":["flag-se"],"text":null,"texts":null,"category":"Flags","sort_order":214,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ch":{"name":"Regional Indicator Symbol Letters Ch","unified":"1F1E8-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ed.png","sheet_x":33,"sheet_y":35,"short_name":"flag-ch","short_names":["flag-ch"],"text":null,"texts":null,"category":"Flags","sort_order":215,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"large_blue_diamond":{"name":"Large Blue Diamond","unified":"1F537","variations":[],"docomo":null,"au":"E547","softbank":"E21B","google":"FEB74","image":"1f537.png","sheet_x":23,"sheet_y":39,"short_name":"large_blue_diamond","short_names":["large_blue_diamond"],"text":null,"texts":null,"category":"Symbols","sort_order":215,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sy":{"name":"Regional Indicator Symbol Letters Sy","unified":"1F1F8-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fe.png","sheet_x":38,"sheet_y":4,"short_name":"flag-sy","short_names":["flag-sy"],"text":null,"texts":null,"category":"Flags","sort_order":216,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"small_red_triangle":{"name":"Up-Pointing Red Triangle","unified":"1F53A","variations":[],"docomo":null,"au":"E55A","softbank":null,"google":"FEB78","image":"1f53a.png","sheet_x":24,"sheet_y":1,"short_name":"small_red_triangle","short_names":["small_red_triangle"],"text":null,"texts":null,"category":"Symbols","sort_order":216,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tw":{"name":"Regional Indicator Symbol Letters Tw","unified":"1F1F9-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fc.png","sheet_x":38,"sheet_y":21,"short_name":"flag-tw","short_names":["flag-tw"],"text":null,"texts":null,"category":"Flags","sort_order":217,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_small_square":{"name":"Black Small Square","unified":"25AA","variations":["25AA-FE0F"],"docomo":null,"au":"E532","softbank":"E21A","google":"FEB6E","image":"25aa.png","sheet_x":0,"sheet_y":33,"short_name":"black_small_square","short_names":["black_small_square"],"text":null,"texts":null,"category":"Symbols","sort_order":217,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_small_square":{"name":"White Small Square","unified":"25AB","variations":["25AB-FE0F"],"docomo":null,"au":"E531","softbank":"E21B","google":"FEB6D","image":"25ab.png","sheet_x":0,"sheet_y":34,"short_name":"white_small_square","short_names":["white_small_square"],"text":null,"texts":null,"category":"Symbols","sort_order":218,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tj":{"name":"Regional Indicator Symbol Letters Tj","unified":"1F1F9-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ef.png","sheet_x":38,"sheet_y":12,"short_name":"flag-tj","short_names":["flag-tj"],"text":null,"texts":null,"category":"Flags","sort_order":218,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_large_square":{"name":"Black Large Square","unified":"2B1B","variations":["2B1B-FE0F"],"docomo":null,"au":"E549","softbank":"E21A","google":"FEB6C","image":"2b1b.png","sheet_x":4,"sheet_y":22,"short_name":"black_large_square","short_names":["black_large_square"],"text":null,"texts":null,"category":"Symbols","sort_order":219,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tz":{"name":"Regional Indicator Symbol Letters Tz","unified":"1F1F9-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ff.png","sheet_x":38,"sheet_y":22,"short_name":"flag-tz","short_names":["flag-tz"],"text":null,"texts":null,"category":"Flags","sort_order":219,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_large_square":{"name":"White Large Square","unified":"2B1C","variations":["2B1C-FE0F"],"docomo":null,"au":"E548","softbank":"E21B","google":"FEB6B","image":"2b1c.png","sheet_x":4,"sheet_y":23,"short_name":"white_large_square","short_names":["white_large_square"],"text":null,"texts":null,"category":"Symbols","sort_order":220,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-th":{"name":"Regional Indicator Symbol Letters Th","unified":"1F1F9-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ed.png","sheet_x":38,"sheet_y":11,"short_name":"flag-th","short_names":["flag-th"],"text":null,"texts":null,"category":"Flags","sort_order":220,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tl":{"name":"Regional Indicator Symbol Letters Tl","unified":"1F1F9-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f1.png","sheet_x":38,"sheet_y":14,"short_name":"flag-tl","short_names":["flag-tl"],"text":null,"texts":null,"category":"Flags","sort_order":221,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"small_red_triangle_down":{"name":"Down-Pointing Red Triangle","unified":"1F53B","variations":[],"docomo":null,"au":"E55B","softbank":null,"google":"FEB79","image":"1f53b.png","sheet_x":24,"sheet_y":2,"short_name":"small_red_triangle_down","short_names":["small_red_triangle_down"],"text":null,"texts":null,"category":"Symbols","sort_order":221,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tg":{"name":"Regional Indicator Symbol Letters Tg","unified":"1F1F9-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ec.png","sheet_x":38,"sheet_y":10,"short_name":"flag-tg","short_names":["flag-tg"],"text":null,"texts":null,"category":"Flags","sort_order":222,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_medium_square":{"name":"Black Medium Square","unified":"25FC","variations":["25FC-FE0F"],"docomo":null,"au":"E539","softbank":"E21A","google":"FEB72","image":"25fc.png","sheet_x":0,"sheet_y":38,"short_name":"black_medium_square","short_names":["black_medium_square"],"text":null,"texts":null,"category":"Symbols","sort_order":222,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tk":{"name":"Regional Indicator Symbol Letters Tk","unified":"1F1F9-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f0.png","sheet_x":38,"sheet_y":13,"short_name":"flag-tk","short_names":["flag-tk"],"text":null,"texts":null,"category":"Flags","sort_order":223,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_medium_square":{"name":"White Medium Square","unified":"25FB","variations":["25FB-FE0F"],"docomo":null,"au":"E538","softbank":"E21B","google":"FEB71","image":"25fb.png","sheet_x":0,"sheet_y":37,"short_name":"white_medium_square","short_names":["white_medium_square"],"text":null,"texts":null,"category":"Symbols","sort_order":223,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-to":{"name":"Regional Indicator Symbol Letters to","unified":"1F1F9-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f4.png","sheet_x":38,"sheet_y":17,"short_name":"flag-to","short_names":["flag-to"],"text":null,"texts":null,"category":"Flags","sort_order":224,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_medium_small_square":{"name":"Black Medium Small Square","unified":"25FE","variations":["25FE-FE0F"],"docomo":null,"au":"E535","softbank":"E21A","google":"FEB70","image":"25fe.png","sheet_x":0,"sheet_y":40,"short_name":"black_medium_small_square","short_names":["black_medium_small_square"],"text":null,"texts":null,"category":"Symbols","sort_order":224,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_medium_small_square":{"name":"White Medium Small Square","unified":"25FD","variations":["25FD-FE0F"],"docomo":null,"au":"E534","softbank":"E21B","google":"FEB6F","image":"25fd.png","sheet_x":0,"sheet_y":39,"short_name":"white_medium_small_square","short_names":["white_medium_small_square"],"text":null,"texts":null,"category":"Symbols","sort_order":225,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tt":{"name":"Regional Indicator Symbol Letters Tt","unified":"1F1F9-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f9.png","sheet_x":38,"sheet_y":19,"short_name":"flag-tt","short_names":["flag-tt"],"text":null,"texts":null,"category":"Flags","sort_order":225,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_square_button":{"name":"Black Square Button","unified":"1F532","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21A","google":"FEB64","image":"1f532.png","sheet_x":23,"sheet_y":34,"short_name":"black_square_button","short_names":["black_square_button"],"text":null,"texts":null,"category":"Symbols","sort_order":226,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tn":{"name":"Regional Indicator Symbol Letters Tn","unified":"1F1F9-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f3.png","sheet_x":38,"sheet_y":16,"short_name":"flag-tn","short_names":["flag-tn"],"text":null,"texts":null,"category":"Flags","sort_order":226,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tr":{"name":"Regional Indicator Symbol Letters Tr","unified":"1F1F9-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f7.png","sheet_x":38,"sheet_y":18,"short_name":"flag-tr","short_names":["flag-tr"],"text":null,"texts":null,"category":"Flags","sort_order":227,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"white_square_button":{"name":"White Square Button","unified":"1F533","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21B","google":"FEB67","image":"1f533.png","sheet_x":23,"sheet_y":35,"short_name":"white_square_button","short_names":["white_square_button"],"text":null,"texts":null,"category":"Symbols","sort_order":227,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tm":{"name":"Regional Indicator Symbol Letters Tm","unified":"1F1F9-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f2.png","sheet_x":38,"sheet_y":15,"short_name":"flag-tm","short_names":["flag-tm"],"text":null,"texts":null,"category":"Flags","sort_order":228,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"speaker":{"name":"Speaker","unified":"1F508","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f508.png","sheet_x":22,"sheet_y":33,"short_name":"speaker","short_names":["speaker"],"text":null,"texts":null,"category":"Symbols","sort_order":228,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tc":{"name":"Regional Indicator Symbol Letters Tc","unified":"1F1F9-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e8.png","sheet_x":38,"sheet_y":7,"short_name":"flag-tc","short_names":["flag-tc"],"text":null,"texts":null,"category":"Flags","sort_order":229,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"sound":{"name":"Speaker with One Sound Wave","unified":"1F509","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f509.png","sheet_x":22,"sheet_y":34,"short_name":"sound","short_names":["sound"],"text":null,"texts":null,"category":"Symbols","sort_order":229,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-tv":{"name":"Regional Indicator Symbol Letters Tv","unified":"1F1F9-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fb.png","sheet_x":38,"sheet_y":20,"short_name":"flag-tv","short_names":["flag-tv"],"text":null,"texts":null,"category":"Flags","sort_order":230,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"loud_sound":{"name":"Speaker with Three Sound Waves","unified":"1F50A","variations":[],"docomo":null,"au":"E511","softbank":"E141","google":"FE821","image":"1f50a.png","sheet_x":22,"sheet_y":35,"short_name":"loud_sound","short_names":["loud_sound"],"text":null,"texts":null,"category":"Symbols","sort_order":230,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mute":{"name":"Speaker with Cancellation Stroke","unified":"1F507","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f507.png","sheet_x":22,"sheet_y":32,"short_name":"mute","short_names":["mute"],"text":null,"texts":null,"category":"Symbols","sort_order":231,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ug":{"name":"Regional Indicator Symbol Letters Ug","unified":"1F1FA-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ec.png","sheet_x":38,"sheet_y":24,"short_name":"flag-ug","short_names":["flag-ug"],"text":null,"texts":null,"category":"Flags","sort_order":231,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ua":{"name":"Regional Indicator Symbol Letters Ua","unified":"1F1FA-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1e6.png","sheet_x":38,"sheet_y":23,"short_name":"flag-ua","short_names":["flag-ua"],"text":null,"texts":null,"category":"Flags","sort_order":232,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mega":{"name":"Cheering Megaphone","unified":"1F4E3","variations":[],"docomo":null,"au":"E511","softbank":"E317","google":"FE530","image":"1f4e3.png","sheet_x":21,"sheet_y":38,"short_name":"mega","short_names":["mega"],"text":null,"texts":null,"category":"Symbols","sort_order":232,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ae":{"name":"Regional Indicator Symbol Letters Ae","unified":"1F1E6-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ea.png","sheet_x":32,"sheet_y":35,"short_name":"flag-ae","short_names":["flag-ae"],"text":null,"texts":null,"category":"Flags","sort_order":233,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"loudspeaker":{"name":"Public Address Loudspeaker","unified":"1F4E2","variations":[],"docomo":null,"au":"E511","softbank":"E142","google":"FE52F","image":"1f4e2.png","sheet_x":21,"sheet_y":37,"short_name":"loudspeaker","short_names":["loudspeaker"],"text":null,"texts":null,"category":"Symbols","sort_order":233,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"bell":{"name":"Bell","unified":"1F514","variations":[],"docomo":"E713","au":"E512","softbank":"E325","google":"FE4F2","image":"1f514.png","sheet_x":23,"sheet_y":4,"short_name":"bell","short_names":["bell"],"text":null,"texts":null,"category":"Symbols","sort_order":234,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-gb":{"name":"Regional Indicator Symbol Letters Gb","unified":"1F1EC-1F1E7","variations":[],"docomo":null,"au":"EB10","softbank":"E510","google":"FE4EA","image":"1f1ec-1f1e7.png","sheet_x":34,"sheet_y":32,"short_name":"flag-gb","short_names":["flag-gb","gb","uk"],"text":null,"texts":null,"category":"Flags","sort_order":234,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-us":{"name":"Regional Indicator Symbol Letters Us","unified":"1F1FA-1F1F8","variations":[],"docomo":null,"au":"E573","softbank":"E50C","google":"FE4E6","image":"1f1fa-1f1f8.png","sheet_x":38,"sheet_y":26,"short_name":"flag-us","short_names":["flag-us","us"],"text":null,"texts":null,"category":"Flags","sort_order":235,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"no_bell":{"name":"Bell with Cancellation Stroke","unified":"1F515","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f515.png","sheet_x":23,"sheet_y":5,"short_name":"no_bell","short_names":["no_bell"],"text":null,"texts":null,"category":"Symbols","sort_order":235,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-vi":{"name":"Regional Indicator Symbol Letters Vi","unified":"1F1FB-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ee.png","sheet_x":38,"sheet_y":33,"short_name":"flag-vi","short_names":["flag-vi"],"text":null,"texts":null,"category":"Flags","sort_order":236,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"black_joker":{"name":"Playing Card Black Joker","unified":"1F0CF","variations":[],"docomo":null,"au":"EB6F","softbank":null,"google":"FE812","image":"1f0cf.png","sheet_x":4,"sheet_y":31,"short_name":"black_joker","short_names":["black_joker"],"text":null,"texts":null,"category":"Symbols","sort_order":236,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"mahjong":{"name":"Mahjong Tile Red Dragon","unified":"1F004","variations":["1F004-FE0F"],"docomo":null,"au":"E5D1","softbank":"E12D","google":"FE80B","image":"1f004.png","sheet_x":4,"sheet_y":30,"short_name":"mahjong","short_names":["mahjong"],"text":null,"texts":null,"category":"Symbols","sort_order":237,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-uy":{"name":"Regional Indicator Symbol Letters Uy","unified":"1F1FA-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1fe.png","sheet_x":38,"sheet_y":27,"short_name":"flag-uy","short_names":["flag-uy"],"text":null,"texts":null,"category":"Flags","sort_order":237,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"spades":{"name":"Black Spade Suit","unified":"2660","variations":["2660-FE0F"],"docomo":"E68E","au":"E5A1","softbank":"E20E","google":"FEB1B","image":"2660.png","sheet_x":1,"sheet_y":38,"short_name":"spades","short_names":["spades"],"text":null,"texts":null,"category":"Symbols","sort_order":238,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-uz":{"name":"Regional Indicator Symbol Letters Uz","unified":"1F1FA-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ff.png","sheet_x":38,"sheet_y":28,"short_name":"flag-uz","short_names":["flag-uz"],"text":null,"texts":null,"category":"Flags","sort_order":238,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clubs":{"name":"Black Club Suit","unified":"2663","variations":["2663-FE0F"],"docomo":"E690","au":"E5A3","softbank":"E20F","google":"FEB1D","image":"2663.png","sheet_x":1,"sheet_y":39,"short_name":"clubs","short_names":["clubs"],"text":null,"texts":null,"category":"Symbols","sort_order":239,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-vu":{"name":"Regional Indicator Symbol Letters Vu","unified":"1F1FB-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1fa.png","sheet_x":38,"sheet_y":35,"short_name":"flag-vu","short_names":["flag-vu"],"text":null,"texts":null,"category":"Flags","sort_order":239,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"hearts":{"name":"Black Heart Suit","unified":"2665","variations":["2665-FE0F"],"docomo":"E68D","au":"EAA5","softbank":"E20C","google":"FEB1A","image":"2665.png","sheet_x":1,"sheet_y":40,"short_name":"hearts","short_names":["hearts"],"text":null,"texts":null,"category":"Symbols","sort_order":240,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-va":{"name":"Regional Indicator Symbol Letters Va","unified":"1F1FB-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e6.png","sheet_x":38,"sheet_y":29,"short_name":"flag-va","short_names":["flag-va"],"text":null,"texts":null,"category":"Flags","sort_order":240,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"diamonds":{"name":"Black Diamond Suit","unified":"2666","variations":["2666-FE0F"],"docomo":"E68F","au":"E5A2","softbank":"E20D","google":"FEB1C","image":"2666.png","sheet_x":2,"sheet_y":0,"short_name":"diamonds","short_names":["diamonds"],"text":null,"texts":null,"category":"Symbols","sort_order":241,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ve":{"name":"Regional Indicator Symbol Letters Ve","unified":"1F1FB-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ea.png","sheet_x":38,"sheet_y":31,"short_name":"flag-ve","short_names":["flag-ve"],"text":null,"texts":null,"category":"Flags","sort_order":241,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-vn":{"name":"Regional Indicator Symbol Letters Vn","unified":"1F1FB-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1f3.png","sheet_x":38,"sheet_y":34,"short_name":"flag-vn","short_names":["flag-vn"],"text":null,"texts":null,"category":"Flags","sort_order":242,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flower_playing_cards":{"name":"Flower Playing Cards","unified":"1F3B4","variations":[],"docomo":null,"au":"EB6E","softbank":null,"google":"FE811","image":"1f3b4.png","sheet_x":9,"sheet_y":35,"short_name":"flower_playing_cards","short_names":["flower_playing_cards"],"text":null,"texts":null,"category":"Symbols","sort_order":242,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"thought_balloon":{"name":"Thought Balloon","unified":"1F4AD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ad.png","sheet_x":20,"sheet_y":25,"short_name":"thought_balloon","short_names":["thought_balloon"],"text":null,"texts":null,"category":"Symbols","sort_order":243,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-wf":{"name":"Regional Indicator Symbol Letters Wf","unified":"1F1FC-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1eb.png","sheet_x":38,"sheet_y":36,"short_name":"flag-wf","short_names":["flag-wf"],"text":null,"texts":null,"category":"Flags","sort_order":243,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"flag-eh":{"name":"Regional Indicator Symbol Letters Eh","unified":"1F1EA-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ed.png","sheet_x":34,"sheet_y":20,"short_name":"flag-eh","short_names":["flag-eh"],"text":null,"texts":null,"category":"Flags","sort_order":244,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"right_anger_bubble":{"name":"Right Anger Bubble","unified":"1F5EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5ef.png","sheet_x":26,"sheet_y":7,"short_name":"right_anger_bubble","short_names":["right_anger_bubble"],"text":null,"texts":null,"category":"Symbols","sort_order":244,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"speech_balloon":{"name":"Speech Balloon","unified":"1F4AC","variations":[],"docomo":null,"au":"E4FD","softbank":null,"google":"FE532","image":"1f4ac.png","sheet_x":20,"sheet_y":24,"short_name":"speech_balloon","short_names":["speech_balloon"],"text":null,"texts":null,"category":"Symbols","sort_order":245,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ye":{"name":"Regional Indicator Symbol Letters Ye","unified":"1F1FE-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1ea.png","sheet_x":38,"sheet_y":39,"short_name":"flag-ye","short_names":["flag-ye"],"text":null,"texts":null,"category":"Flags","sort_order":245,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"left_speech_bubble":{"name":"Left Speech Bubble","unified":"1F5E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e8.png","sheet_x":26,"sheet_y":6,"short_name":"left_speech_bubble","short_names":["left_speech_bubble"],"text":null,"texts":null,"category":"Symbols","sort_order":246,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false},"flag-zm":{"name":"Regional Indicator Symbol Letters Zm","unified":"1F1FF-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1f2.png","sheet_x":39,"sheet_y":1,"short_name":"flag-zm","short_names":["flag-zm"],"text":null,"texts":null,"category":"Flags","sort_order":246,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock1":{"name":"Clock Face One Oclock","unified":"1F550","variations":[],"docomo":"E6BA","au":"E594","softbank":"E024","google":"FE01E","image":"1f550.png","sheet_x":24,"sheet_y":11,"short_name":"clock1","short_names":["clock1"],"text":null,"texts":null,"category":"Symbols","sort_order":247,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-zw":{"name":"Regional Indicator Symbol Letters Zw","unified":"1F1FF-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1fc.png","sheet_x":39,"sheet_y":2,"short_name":"flag-zw","short_names":["flag-zw"],"text":null,"texts":null,"category":"Flags","sort_order":247,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ac":{"name":"Regional Indicator Symbol Letters Ac","unified":"1F1E6-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e8.png","sheet_x":32,"sheet_y":33,"short_name":"flag-ac","short_names":["flag-ac"],"text":null,"texts":null,"category":"Flags","sort_order":248,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock2":{"name":"Clock Face Two Oclock","unified":"1F551","variations":[],"docomo":"E6BA","au":"E594","softbank":"E025","google":"FE01F","image":"1f551.png","sheet_x":24,"sheet_y":12,"short_name":"clock2","short_names":["clock2"],"text":null,"texts":null,"category":"Symbols","sort_order":248,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-bv":{"name":"Regional Indicator Symbol Letters Bv","unified":"1F1E7-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fb.png","sheet_x":33,"sheet_y":26,"short_name":"flag-bv","short_names":["flag-bv"],"text":null,"texts":null,"category":"Flags","sort_order":249,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock3":{"name":"Clock Face Three Oclock","unified":"1F552","variations":[],"docomo":"E6BA","au":"E594","softbank":"E026","google":"FE020","image":"1f552.png","sheet_x":24,"sheet_y":13,"short_name":"clock3","short_names":["clock3"],"text":null,"texts":null,"category":"Symbols","sort_order":249,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-cp":{"name":"Regional Indicator Symbol Letters Cp","unified":"1F1E8-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f5.png","sheet_x":34,"sheet_y":1,"short_name":"flag-cp","short_names":["flag-cp"],"text":null,"texts":null,"category":"Flags","sort_order":250,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock4":{"name":"Clock Face Four Oclock","unified":"1F553","variations":[],"docomo":"E6BA","au":"E594","softbank":"E027","google":"FE021","image":"1f553.png","sheet_x":24,"sheet_y":14,"short_name":"clock4","short_names":["clock4"],"text":null,"texts":null,"category":"Symbols","sort_order":250,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock5":{"name":"Clock Face Five Oclock","unified":"1F554","variations":[],"docomo":"E6BA","au":"E594","softbank":"E028","google":"FE022","image":"1f554.png","sheet_x":24,"sheet_y":15,"short_name":"clock5","short_names":["clock5"],"text":null,"texts":null,"category":"Symbols","sort_order":251,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-dg":{"name":"Regional Indicator Symbol Letters Dg","unified":"1F1E9-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ec.png","sheet_x":34,"sheet_y":10,"short_name":"flag-dg","short_names":["flag-dg"],"text":null,"texts":null,"category":"Flags","sort_order":251,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock6":{"name":"Clock Face Six Oclock","unified":"1F555","variations":[],"docomo":"E6BA","au":"E594","softbank":"E029","google":"FE023","image":"1f555.png","sheet_x":24,"sheet_y":16,"short_name":"clock6","short_names":["clock6"],"text":null,"texts":null,"category":"Symbols","sort_order":252,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-ea":{"name":"Regional Indicator Symbol Letters Ea","unified":"1F1EA-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e6.png","sheet_x":34,"sheet_y":16,"short_name":"flag-ea","short_names":["flag-ea"],"text":null,"texts":null,"category":"Flags","sort_order":252,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"flag-hm":{"name":"Regional Indicator Symbol Letters Hm","unified":"1F1ED-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f2.png","sheet_x":35,"sheet_y":10,"short_name":"flag-hm","short_names":["flag-hm"],"text":null,"texts":null,"category":"Flags","sort_order":253,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock7":{"name":"Clock Face Seven Oclock","unified":"1F556","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02A","google":"FE024","image":"1f556.png","sheet_x":24,"sheet_y":17,"short_name":"clock7","short_names":["clock7"],"text":null,"texts":null,"category":"Symbols","sort_order":253,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-mf":{"name":"Regional Indicator Symbol Letters Mf","unified":"1F1F2-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1eb.png","sheet_x":36,"sheet_y":15,"short_name":"flag-mf","short_names":["flag-mf"],"text":null,"texts":null,"category":"Flags","sort_order":254,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock8":{"name":"Clock Face Eight Oclock","unified":"1F557","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02B","google":"FE025","image":"1f557.png","sheet_x":24,"sheet_y":18,"short_name":"clock8","short_names":["clock8"],"text":null,"texts":null,"category":"Symbols","sort_order":254,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock9":{"name":"Clock Face Nine Oclock","unified":"1F558","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02C","google":"FE026","image":"1f558.png","sheet_x":24,"sheet_y":19,"short_name":"clock9","short_names":["clock9"],"text":null,"texts":null,"category":"Symbols","sort_order":255,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-sj":{"name":"Regional Indicator Symbol Letters Sj","unified":"1F1F8-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ef.png","sheet_x":37,"sheet_y":34,"short_name":"flag-sj","short_names":["flag-sj"],"text":null,"texts":null,"category":"Flags","sort_order":255,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"flag-ta":{"name":"Regional Indicator Symbol Letters Ta","unified":"1F1F9-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e6.png","sheet_x":38,"sheet_y":6,"short_name":"flag-ta","short_names":["flag-ta"],"text":null,"texts":null,"category":"Flags","sort_order":256,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock10":{"name":"Clock Face Ten Oclock","unified":"1F559","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02D","google":"FE027","image":"1f559.png","sheet_x":24,"sheet_y":20,"short_name":"clock10","short_names":["clock10"],"text":null,"texts":null,"category":"Symbols","sort_order":256,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"flag-um":{"name":"Regional Indicator Symbol Letters Um","unified":"1F1FA-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1f2.png","sheet_x":38,"sheet_y":25,"short_name":"flag-um","short_names":["flag-um"],"text":null,"texts":null,"category":"Flags","sort_order":257,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"clock11":{"name":"Clock Face Eleven Oclock","unified":"1F55A","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02E","google":"FE028","image":"1f55a.png","sheet_x":24,"sheet_y":21,"short_name":"clock11","short_names":["clock11"],"text":null,"texts":null,"category":"Symbols","sort_order":257,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock12":{"name":"Clock Face Twelve Oclock","unified":"1F55B","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02F","google":"FE029","image":"1f55b.png","sheet_x":24,"sheet_y":22,"short_name":"clock12","short_names":["clock12"],"text":null,"texts":null,"category":"Symbols","sort_order":258,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock130":{"name":"Clock Face One-Thirty","unified":"1F55C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55c.png","sheet_x":24,"sheet_y":23,"short_name":"clock130","short_names":["clock130"],"text":null,"texts":null,"category":"Symbols","sort_order":259,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock230":{"name":"Clock Face Two-Thirty","unified":"1F55D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55d.png","sheet_x":24,"sheet_y":24,"short_name":"clock230","short_names":["clock230"],"text":null,"texts":null,"category":"Symbols","sort_order":260,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock330":{"name":"Clock Face Three-Thirty","unified":"1F55E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55e.png","sheet_x":24,"sheet_y":25,"short_name":"clock330","short_names":["clock330"],"text":null,"texts":null,"category":"Symbols","sort_order":261,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock430":{"name":"Clock Face Four-Thirty","unified":"1F55F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55f.png","sheet_x":24,"sheet_y":26,"short_name":"clock430","short_names":["clock430"],"text":null,"texts":null,"category":"Symbols","sort_order":262,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock530":{"name":"Clock Face Five-Thirty","unified":"1F560","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f560.png","sheet_x":24,"sheet_y":27,"short_name":"clock530","short_names":["clock530"],"text":null,"texts":null,"category":"Symbols","sort_order":263,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock630":{"name":"Clock Face Six-Thirty","unified":"1F561","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f561.png","sheet_x":24,"sheet_y":28,"short_name":"clock630","short_names":["clock630"],"text":null,"texts":null,"category":"Symbols","sort_order":264,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock730":{"name":"Clock Face Seven-Thirty","unified":"1F562","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f562.png","sheet_x":24,"sheet_y":29,"short_name":"clock730","short_names":["clock730"],"text":null,"texts":null,"category":"Symbols","sort_order":265,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock830":{"name":"Clock Face Eight-Thirty","unified":"1F563","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f563.png","sheet_x":24,"sheet_y":30,"short_name":"clock830","short_names":["clock830"],"text":null,"texts":null,"category":"Symbols","sort_order":266,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock930":{"name":"Clock Face Nine-Thirty","unified":"1F564","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f564.png","sheet_x":24,"sheet_y":31,"short_name":"clock930","short_names":["clock930"],"text":null,"texts":null,"category":"Symbols","sort_order":267,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock1030":{"name":"Clock Face Ten-Thirty","unified":"1F565","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f565.png","sheet_x":24,"sheet_y":32,"short_name":"clock1030","short_names":["clock1030"],"text":null,"texts":null,"category":"Symbols","sort_order":268,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock1130":{"name":"Clock Face Eleven-Thirty","unified":"1F566","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f566.png","sheet_x":24,"sheet_y":33,"short_name":"clock1130","short_names":["clock1130"],"text":null,"texts":null,"category":"Symbols","sort_order":269,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true},"clock1230":{"name":"Clock Face Twelve-Thirty","unified":"1F567","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f567.png","sheet_x":24,"sheet_y":34,"short_name":"clock1230","short_names":["clock1230"],"text":null,"texts":null,"category":"Symbols","sort_order":270,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true}},"skins":{"skin-tone-2":{"name":"Emoji Modifier Fitzpatrick Type-1-2","unified":"1F3FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fb.png","sheet_x":12,"sheet_y":0,"short_name":"skin-tone-2","short_names":["skin-tone-2"],"text":null,"texts":null,"category":"Skin Tones","sort_order":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"skin-tone-3":{"name":"Emoji Modifier Fitzpatrick Type-3","unified":"1F3FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fc.png","sheet_x":12,"sheet_y":1,"short_name":"skin-tone-3","short_names":["skin-tone-3"],"text":null,"texts":null,"category":"Skin Tones","sort_order":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"skin-tone-4":{"name":"Emoji Modifier Fitzpatrick Type-4","unified":"1F3FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fd.png","sheet_x":12,"sheet_y":2,"short_name":"skin-tone-4","short_names":["skin-tone-4"],"text":null,"texts":null,"category":"Skin Tones","sort_order":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"skin-tone-5":{"name":"Emoji Modifier Fitzpatrick Type-5","unified":"1F3FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fe.png","sheet_x":12,"sheet_y":3,"short_name":"skin-tone-5","short_names":["skin-tone-5"],"text":null,"texts":null,"category":"Skin Tones","sort_order":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"skin-tone-6":{"name":"Emoji Modifier Fitzpatrick Type-6","unified":"1F3FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ff.png","sheet_x":12,"sheet_y":4,"short_name":"skin-tone-6","short_names":["skin-tone-6"],"text":null,"texts":null,"category":"Skin Tones","sort_order":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}}}; + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + var NAMESPACE = 'emoji-picker'; + + function update(state) { + for (var key in state) { + var value = state[key]; + set(key, value); + } + } + + function set(key, value) { + if (!('localStorage' in window)) return; + window.localStorage[NAMESPACE + '.' + key] = JSON.stringify(value); + } + + function get(key) { + if (!('localStorage' in window)) return; + + var value = window.localStorage[NAMESPACE + '.' + key]; + + if (value) { + return JSON.parse(value); + } + } + + exports.default = { update: update, set: set, get: get }; /***/ }, /* 18 */ @@ -955,530 +912,73 @@ return /******/ (function(modules) { // webpackBootstrap value: true }); - var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - - __webpack_require__(19); - - var _react = __webpack_require__(3); - - var _react2 = _interopRequireDefault(_react); - - var _data = __webpack_require__(17); - - var _data2 = _interopRequireDefault(_data); - - var _ = __webpack_require__(1); - - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - - function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - - function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } - - function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - - var DEFAULT_CATEGORIES = [{ name: 'Recent', emojis: null }].concat(_data2.default.categories); - - var Picker = function (_React$Component) { - _inherits(Picker, _React$Component); - - function Picker(props) { - _classCallCheck(this, Picker); - - var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Picker).call(this, props)); - - _this.testStickyPosition(); - - _this.state = { - categories: DEFAULT_CATEGORIES, - skin: props.skin - }; - return _this; - } - - _createClass(Picker, [{ - key: 'componentWillReceiveProps', - value: function componentWillReceiveProps(props) { - this.setState({ skin: props.skin }); - } - }, { - key: 'componentDidUpdate', - value: function componentDidUpdate() { - this.handleScroll(); - } - }, { - key: 'testStickyPosition', - value: function testStickyPosition() { - var stickyTestElement = document.createElement('div'); - var _arr = ['', '-webkit-', '-ms-', '-moz-', '-o-']; - for (var _i = 0; _i < _arr.length; _i++) { - var prefix = _arr[_i]; - stickyTestElement.style.position = prefix + 'sticky'; - } - - this.hasStickyPosition = !!stickyTestElement.style.position.length; - } - }, { - key: 'handleEmojiOver', - value: function handleEmojiOver(emoji) { - var preview = this.refs.preview; - - preview.setState({ emoji: emoji }); - clearTimeout(this.leaveTimeout); - } - }, { - key: 'handleEmojiLeave', - value: function handleEmojiLeave(emoji) { - var _this2 = this; - - this.leaveTimeout = setTimeout(function () { - var preview = _this2.refs.preview; - - preview.setState({ emoji: null }); - }, 16); - } - }, { - key: 'handleScroll', - value: function handleScroll() { - if (!this.waitingForPaint) { - this.waitingForPaint = true; - window.requestAnimationFrame(this.handleScrollPaint.bind(this)); - } - } - }, { - key: 'handleScrollPaint', - value: function handleScrollPaint() { - this.waitingForPaint = false; - - var target = this.refs.scroll; - var scrollTop = target.scrollTop; - var scrollingDown = scrollTop > (this.scrollTop || 0); - var activeCategory = null; - var categories = this.state.categories; - - - for (var i = 0, l = categories.length; i < l; i++) { - var ii = scrollingDown ? categories.length - 1 - i : i, - category = categories[ii], - component = this.refs['category-' + ii]; - - if (component) { - var active = component.handleScroll(scrollTop); - if (active && !activeCategory) { - activeCategory = category; - } - } - } - - if (activeCategory) { - var anchors = this.refs.anchors; - var _activeCategory = activeCategory; - var categoryName = _activeCategory.name; - - - if (anchors.state.selected != categoryName) { - anchors.setState({ selected: categoryName }); - } - } - - this.scrollTop = scrollTop; - } - }, { - key: 'handleSearch', - value: function handleSearch(emojis) { - if (emojis == null) { - this.setState({ categories: DEFAULT_CATEGORIES }); - } else { - this.setState({ categories: [{ - name: 'Search Results', - emojis: emojis - }] }); - } - } - }, { - key: 'handleAnchorClick', - value: function handleAnchorClick(category, i) { - var component = this.refs['category-' + i]; - var _refs = this.refs; - var scroll = _refs.scroll; - var anchors = _refs.anchors; - - - if (component) { - var top = component.top; - - - if (i == 0) { - top = 0; - } else { - top += 1; - } - - scroll.scrollTop = top; - } - } - }, { - key: 'handleSkinChange', - value: function handleSkinChange(skin) { - this.setState({ skin: skin }); - } - }, { - key: 'render', - value: function render() { - var _this3 = this; - - var _props = this.props; - var perLine = _props.perLine; - var emojiSize = _props.emojiSize; - var sheetURL = _props.sheetURL; - var skin = this.state.skin; - var width = perLine * (emojiSize + 12) + 12 + 2; - - return _react2.default.createElement( - 'div', - { style: { width: width }, className: 'emoji-picker' }, - _react2.default.createElement( - 'div', - { className: 'emoji-picker-bar' }, - _react2.default.createElement(_.Anchors, { - ref: 'anchors', - categories: DEFAULT_CATEGORIES, - onAnchorClick: this.handleAnchorClick.bind(this) - }) - ), - _react2.default.createElement( - 'div', - { ref: 'scroll', className: 'emoji-picker-scroll', onScroll: this.handleScroll.bind(this) }, - _react2.default.createElement(_.Search, { - onSearch: this.handleSearch.bind(this) - }), - this.state.categories.map(function (category, i) { - return _react2.default.createElement(_.Category, { - ref: 'category-' + i, - key: category.name, - name: category.name, - emojis: category.emojis, - hasStickyPosition: _this3.hasStickyPosition, - emojiProps: { - skin: skin, - size: emojiSize, - sheetURL: sheetURL, - onOver: _this3.handleEmojiOver.bind(_this3), - onLeave: _this3.handleEmojiLeave.bind(_this3), - onClick: _this3.props.onClick - } - }); - }) - ), - _react2.default.createElement( - 'div', - { className: 'emoji-picker-bar' }, - _react2.default.createElement(_.Preview, { - ref: 'preview', - emojiProps: { - size: 38, - sheetURL: sheetURL - }, - skinsProps: { - skin: skin, - onChange: this.handleSkinChange.bind(this) - } - }) - ) - ); - } - }]); - - return Picker; - }(_react2.default.Component); - - exports.default = Picker; - - - Picker.propTypes = { - onClick: _react2.default.PropTypes.func, - skin: _react2.default.PropTypes.number, - perLine: _react2.default.PropTypes.number, - emojiSize: _react2.default.PropTypes.number, - sheetURL: _react2.default.PropTypes.string.isRequired - }; - - Picker.defaultProps = { - onClick: function onClick() {}, - emojiSize: 24, - perLine: 9, - skin: 1 - }; - -/***/ }, -/* 19 */ -/***/ function(module, exports) { - - 'use strict'; - - // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ - // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating - - // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel - - // MIT license - - (function () { - var lastTime = 0; - var vendors = ['ms', 'moz', 'webkit', 'o']; - for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { - window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; - window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame']; - } - - if (!window.requestAnimationFrame) window.requestAnimationFrame = function (callback, element) { - var currTime = new Date().getTime(); - var timeToCall = Math.max(0, 16 - (currTime - lastTime)); - var id = window.setTimeout(function () { - callback(currTime + timeToCall); - }, timeToCall); - lastTime = currTime + timeToCall; - return id; - }; - - if (!window.cancelAnimationFrame) window.cancelAnimationFrame = function (id) { - clearTimeout(id); - }; - })(); - -/***/ }, -/* 20 */ -/***/ function(module, exports, __webpack_require__) { - - 'use strict'; - - Object.defineProperty(exports, "__esModule", { - value: true - }); - - var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - - var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - - var _react = __webpack_require__(3); - - var _react2 = _interopRequireDefault(_react); - - var _ = __webpack_require__(1); - - function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - - function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } - - function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } - - function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } - - var Preview = function (_React$Component) { - _inherits(Preview, _React$Component); - - function Preview(props) { - _classCallCheck(this, Preview); - - var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Preview).call(this, props)); - - _this.state = { emoji: null }; - return _this; - } - - _createClass(Preview, [{ - key: 'render', - value: function render() { - var emoji = this.state.emoji; - var _props = this.props; - var emojiProps = _props.emojiProps; - var skinsProps = _props.skinsProps; - - - if (emoji) { - return _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview' }, - _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview-emoji' }, - _react2.default.createElement(_.Emoji, _extends({ - key: emoji.short_name || emoji, - emoji: emoji - }, emojiProps)) - ), - _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview-data' }, - _react2.default.createElement( - 'span', - { className: 'emoji-picker-preview-name' }, - emoji.name - ), - _react2.default.createElement('br', null), - _react2.default.createElement( - 'span', - { className: 'emoji-picker-preview-shortnames' }, - emoji.short_names.map(function (short_name) { - return _react2.default.createElement( - 'span', - { key: short_name, className: 'emoji-picker-preview-shortname' }, - ':', - short_name, - ':' - ); - }) - ) - ) - ); - } else { - return _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview' }, - _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview-emoji' }, - _react2.default.createElement(_.Emoji, _extends({ - emoji: 'tophat' - }, emojiProps)) - ), - _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview-data' }, - _react2.default.createElement( - 'span', - { className: 'emoji-picker-title-label' }, - 'EmojiPicker' - ) - ), - _react2.default.createElement( - 'div', - { className: 'emoji-picker-preview-skins' }, - _react2.default.createElement(_.Skins, skinsProps) - ) - ); - } - } - }]); - - return Preview; - }(_react2.default.Component); - - exports.default = Preview; - - - Preview.propTypes = { - emojiProps: _react2.default.PropTypes.object.isRequired, - skinsProps: _react2.default.PropTypes.object.isRequired - }; - -/***/ }, -/* 21 */ -/***/ function(module, exports, __webpack_require__) { - - 'use strict'; - - Object.defineProperty(exports, "__esModule", { - value: true - }); - - var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); - - var _react = __webpack_require__(3); - - var _react2 = _interopRequireDefault(_react); - - var _lunr = __webpack_require__(22); + var _lunr = __webpack_require__(19); var _lunr2 = _interopRequireDefault(_lunr); - var _data = __webpack_require__(17); + var _data = __webpack_require__(20); var _data2 = _interopRequireDefault(_data); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } - function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + var index = (0, _lunr2.default)(function () { + this.pipeline.reset(); - function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + this.field('short_name', { boost: 2 }); + this.field('emoticons'); + this.field('name'); - function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + this.ref('id'); + }); - var Search = function (_React$Component) { - _inherits(Search, _React$Component); + for (var emoji in _data2.default.emojis) { + var emojiData = _data2.default.emojis[emoji]; + var short_name = emojiData.short_name; + var name = emojiData.name; + var emoticons = emojiData.emoticons; - function Search(props) { - _classCallCheck(this, Search); - var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Search).call(this, props)); + index.add({ + id: short_name, + emoticons: emoticons, + short_name: tokenize(short_name), + name: tokenize(name) + }); + } - _this.buildIndex(); - return _this; + function search(value) { + var maxResults = arguments.length <= 1 || arguments[1] === undefined ? 75 : arguments[1]; + + var results = null; + + if (value.length) { + results = index.search(tokenize(value)).map(function (result) { + return result.ref; + }); + + results = results.slice(0, maxResults); } - _createClass(Search, [{ - key: 'buildIndex', - value: function buildIndex() { - this.index = (0, _lunr2.default)(function () { - this.field('short_name', { boost: 2 }); - this.field('name'); + return results; + } - this.ref('short_name'); - }); + function tokenize(string) { + if (['-', '-1', '+', '+1'].indexOf(string) == 0) { + return string.split(''); + } - for (var emoji in _data2.default.emojis) { - var emojiData = _data2.default.emojis[emoji]; - var short_name = emojiData.short_name; - var name = emojiData.name; + if (/(:|;|=)-/.test(string)) { + return [string]; + } + return string.split(/[-|_|\s]+/); + } - this.index.add({ short_name: short_name, name: name }); - } - } - }, { - key: 'handleChange', - value: function handleChange() { - var input = this.refs.input; - var value = input.value; - var results = null; - - if (value.length) { - results = this.index.search(value).map(function (result) { - return result.ref; - }); - } - - this.props.onSearch(results); - } - }, { - key: 'render', - value: function render() { - return _react2.default.createElement('input', { - ref: 'input', - type: 'text', - onChange: this.handleChange.bind(this), - placeholder: 'Search', - className: 'emoji-picker-search' - }); - } - }]); - - return Search; - }(_react2.default.Component); - - exports.default = Search; - - - Search.propTypes = { - onSearch: _react2.default.PropTypes.func - }; - - Search.defaultProps = { - onSearch: function onSearch() {} - }; + exports.default = { search: search }; /***/ }, -/* 22 */ +/* 19 */ /***/ function(module, exports, __webpack_require__) { var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/** @@ -3536,6 +3036,244 @@ return /******/ (function(modules) { // webpackBootstrap })(); +/***/ }, +/* 20 */ +/***/ function(module, exports) { + + "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default={"categories":[{"name":"People","emojis":["grinning","grimacing","grin","joy","smiley","smile","sweat_smile","laughing","innocent","wink","blush","slightly_smiling_face","upside_down_face","relaxed","yum","relieved","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","stuck_out_tongue","money_mouth_face","nerd_face","sunglasses","hugging_face","smirk","no_mouth","neutral_face","expressionless","unamused","face_with_rolling_eyes","thinking_face","flushed","disappointed","worried","angry","rage","pensive","confused","slightly_frowning_face","white_frowning_face","persevere","confounded","tired_face","weary","triumph","open_mouth","scream","fearful","cold_sweat","hushed","frowning","anguished","cry","disappointed_relieved","sleepy","sweat","sob","dizzy_face","astonished","zipper_mouth_face","mask","face_with_thermometer","face_with_head_bandage","sleeping","zzz","hankey","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","ghost","alien","robot_face","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","raised_hands","clap","wave","+1","-1","facepunch","fist","v","ok_hand","hand","open_hands","muscle","pray","point_up","point_up_2","point_down","point_left","point_right","middle_finger","raised_hand_with_fingers_splayed","the_horns","spock-hand","writing_hand","nail_care","lips","tongue","ear","nose","eye","eyes","bust_in_silhouette","busts_in_silhouette","speaking_head_in_silhouette","baby","boy","girl","man","woman","person_with_blond_hair","older_man","older_woman","man_with_gua_pi_mao","man_with_turban","cop","construction_worker","guardsman","sleuth_or_spy","santa","angel","princess","bride_with_veil","walking","runner","dancer","dancers","couple","two_men_holding_hands","two_women_holding_hands","bow","information_desk_person","no_good","ok_woman","raising_hand","person_with_pouting_face","person_frowning","haircut","massage","couple_with_heart","woman-heart-woman","man-heart-man","couplekiss","woman-kiss-woman","man-kiss-man","family","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","womans_clothes","shirt","jeans","necktie","dress","bikini","kimono","lipstick","kiss","footprints","high_heel","sandal","boot","mans_shoe","athletic_shoe","womans_hat","tophat","helmet_with_white_cross","mortar_board","crown","school_satchel","pouch","purse","handbag","briefcase","eyeglasses","dark_sunglasses","ring","closed_umbrella"]},{"name":"Nature","emojis":["dog","cat","mouse","hamster","rabbit","bear","panda_face","koala","tiger","lion_face","cow","pig","pig_nose","frog","octopus","monkey_face","see_no_evil","hear_no_evil","speak_no_evil","monkey","chicken","penguin","bird","baby_chick","hatching_chick","hatched_chick","wolf","boar","horse","unicorn_face","bee","bug","snail","beetle","ant","spider","scorpion","crab","snake","turtle","tropical_fish","fish","blowfish","dolphin","whale","whale2","crocodile","leopard","tiger2","water_buffalo","ox","cow2","dromedary_camel","camel","elephant","goat","ram","sheep","racehorse","pig2","rat","mouse2","rooster","turkey","dove_of_peace","dog2","poodle","cat2","rabbit2","chipmunk","feet","dragon","dragon_face","cactus","christmas_tree","evergreen_tree","deciduous_tree","palm_tree","seedling","herb","shamrock","four_leaf_clover","bamboo","tanabata_tree","leaves","fallen_leaf","maple_leaf","ear_of_rice","hibiscus","sunflower","rose","tulip","blossom","cherry_blossom","bouquet","mushroom","chestnut","jack_o_lantern","shell","spider_web","earth_americas","earth_africa","earth_asia","full_moon","waning_gibbous_moon","last_quarter_moon","waning_crescent_moon","new_moon","waxing_crescent_moon","first_quarter_moon","moon","new_moon_with_face","full_moon_with_face","first_quarter_moon_with_face","last_quarter_moon_with_face","sun_with_face","crescent_moon","star","star2","dizzy","sparkles","comet","sunny","mostly_sunny","partly_sunny","barely_sunny","partly_sunny_rain","cloud","rain_cloud","thunder_cloud_and_rain","lightning","zap","fire","boom","snowflake","snow_cloud","snowman","snowman_without_snow","wind_blowing_face","dash","tornado","fog","umbrella","umbrella_with_rain_drops","droplet","sweat_drops","ocean"]},{"name":"Foods","emojis":["green_apple","apple","pear","tangerine","lemon","banana","watermelon","grapes","strawberry","melon","cherries","peach","pineapple","tomato","eggplant","hot_pepper","corn","sweet_potato","honey_pot","bread","cheese_wedge","poultry_leg","meat_on_bone","fried_shrimp","egg","hamburger","fries","hotdog","pizza","spaghetti","taco","burrito","ramen","stew","fish_cake","sushi","bento","curry","rice_ball","rice","rice_cracker","oden","dango","shaved_ice","ice_cream","icecream","cake","birthday","custard","candy","lollipop","chocolate_bar","popcorn","doughnut","cookie","beer","beers","wine_glass","cocktail","tropical_drink","champagne","sake","tea","coffee","baby_bottle","fork_and_knife","knife_fork_plate"]},{"name":"Activity","emojis":["soccer","basketball","football","baseball","tennis","volleyball","rugby_football","8ball","golf","golfer","table_tennis_paddle_and_ball","badminton_racquet_and_shuttlecock","ice_hockey_stick_and_puck","field_hockey_stick_and_ball","cricket_bat_and_ball","ski","skier","snowboarder","ice_skate","bow_and_arrow","fishing_pole_and_fish","rowboat","swimmer","surfer","bath","person_with_ball","weight_lifter","bicyclist","mountain_bicyclist","horse_racing","man_in_business_suit_levitating","trophy","running_shirt_with_sash","sports_medal","medal","reminder_ribbon","rosette","ticket","admission_tickets","performing_arts","art","circus_tent","microphone","headphones","musical_score","musical_keyboard","saxophone","trumpet","guitar","violin","clapper","video_game","space_invader","dart","game_die","slot_machine","bowling"]},{"name":"Places","emojis":["car","taxi","blue_car","bus","trolleybus","racing_car","police_car","ambulance","fire_engine","minibus","truck","articulated_lorry","tractor","racing_motorcycle","bike","rotating_light","oncoming_police_car","oncoming_bus","oncoming_automobile","oncoming_taxi","aerial_tramway","mountain_cableway","suspension_railway","railway_car","train","monorail","bullettrain_side","bullettrain_front","light_rail","mountain_railway","steam_locomotive","train2","metro","tram","station","helicopter","small_airplane","airplane","airplane_departure","airplane_arriving","boat","motor_boat","speedboat","ferry","passenger_ship","rocket","satellite","seat","anchor","construction","fuelpump","busstop","vertical_traffic_light","traffic_light","checkered_flag","ship","ferris_wheel","roller_coaster","carousel_horse","building_construction","foggy","tokyo_tower","factory","fountain","rice_scene","mountain","snow_capped_mountain","mount_fuji","volcano","japan","camping","tent","national_park","motorway","railway_track","sunrise","sunrise_over_mountains","desert","beach_with_umbrella","desert_island","city_sunrise","city_sunset","cityscape","night_with_stars","bridge_at_night","milky_way","stars","sparkler","fireworks","rainbow","house_buildings","european_castle","japanese_castle","stadium","statue_of_liberty","house","house_with_garden","derelict_house_building","office","department_store","post_office","european_post_office","hospital","bank","hotel","convenience_store","school","love_hotel","wedding","classical_building","church","mosque","synagogue","kaaba","shinto_shrine"]},{"name":"Objects","emojis":["watch","iphone","calling","computer","keyboard","desktop_computer","printer","three_button_mouse","trackball","joystick","compression","minidisc","floppy_disk","cd","dvd","vhs","camera","camera_with_flash","video_camera","movie_camera","film_projector","film_frames","telephone_receiver","phone","pager","fax","tv","radio","studio_microphone","level_slider","control_knobs","stopwatch","timer_clock","alarm_clock","mantelpiece_clock","hourglass_flowing_sand","hourglass","satellite_antenna","battery","electric_plug","bulb","flashlight","candle","wastebasket","oil_drum","money_with_wings","dollar","yen","euro","pound","moneybag","credit_card","gem","scales","wrench","hammer","hammer_and_pick","hammer_and_wrench","pick","nut_and_bolt","gear","chains","gun","bomb","hocho","dagger_knife","crossed_swords","shield","smoking","skull_and_crossbones","coffin","funeral_urn","amphora","crystal_ball","prayer_beads","barber","alembic","telescope","microscope","hole","pill","syringe","thermometer","label","bookmark","toilet","shower","bathtub","key","old_key","couch_and_lamp","sleeping_accommodation","bed","door","bellhop_bell","frame_with_picture","world_map","umbrella_on_ground","moyai","shopping_bags","balloon","flags","ribbon","gift","confetti_ball","tada","dolls","wind_chime","crossed_flags","izakaya_lantern","email","envelope_with_arrow","incoming_envelope","e-mail","love_letter","postbox","mailbox_closed","mailbox","mailbox_with_mail","mailbox_with_no_mail","package","postal_horn","inbox_tray","outbox_tray","scroll","page_with_curl","bookmark_tabs","bar_chart","chart_with_upwards_trend","chart_with_downwards_trend","page_facing_up","date","calendar","spiral_calendar_pad","card_index","card_file_box","ballot_box_with_ballot","file_cabinet","clipboard","spiral_note_pad","file_folder","open_file_folder","card_index_dividers","rolled_up_newspaper","newspaper","notebook","closed_book","green_book","blue_book","orange_book","notebook_with_decorative_cover","ledger","books","book","link","paperclip","linked_paperclips","scissors","triangular_ruler","straight_ruler","pushpin","round_pushpin","triangular_flag_on_post","waving_white_flag","waving_black_flag","closed_lock_with_key","lock","unlock","lock_with_ink_pen","lower_left_ballpoint_pen","lower_left_fountain_pen","black_nib","memo","pencil2","lower_left_crayon","lower_left_paintbrush","mag","mag_right"]},{"name":"Symbols","emojis":["heart","yellow_heart","green_heart","blue_heart","purple_heart","broken_heart","heavy_heart_exclamation_mark_ornament","two_hearts","revolving_hearts","heartbeat","heartpulse","sparkling_heart","cupid","gift_heart","heart_decoration","peace_symbol","latin_cross","star_and_crescent","om_symbol","wheel_of_dharma","star_of_david","six_pointed_star","menorah_with_nine_branches","yin_yang","orthodox_cross","place_of_worship","ophiuchus","aries","taurus","gemini","cancer","leo","virgo","libra","scorpius","sagittarius","capricorn","aquarius","pisces","id","atom_symbol","u7a7a","u5272","radioactive_sign","biohazard_sign","mobile_phone_off","vibration_mode","u6709","u7121","u7533","u55b6","u6708","eight_pointed_black_star","vs","accept","white_flower","ideograph_advantage","secret","congratulations","u5408","u6e80","u7981","a","b","ab","cl","o2","sos","no_entry","name_badge","no_entry_sign","x","o","anger","hotsprings","no_pedestrians","do_not_litter","no_bicycles","non-potable_water","underage","no_mobile_phones","exclamation","grey_exclamation","question","grey_question","bangbang","interrobang","100","low_brightness","high_brightness","trident","fleur_de_lis","part_alternation_mark","warning","children_crossing","beginner","recycle","u6307","chart","sparkle","eight_spoked_asterisk","negative_squared_cross_mark","white_check_mark","diamond_shape_with_a_dot_inside","cyclone","loop","globe_with_meridians","m","atm","sa","passport_control","customs","baggage_claim","left_luggage","wheelchair","no_smoking","wc","parking","potable_water","mens","womens","baby_symbol","restroom","put_litter_in_its_place","cinema","signal_strength","koko","ng","ok","up","cool","new","free","zero","one","two","three","four","five","six","seven","eight","nine","keycap_ten","keycap_star","1234","arrow_forward","double_vertical_bar","black_right_pointing_triangle_with_double_vertical_bar","black_square_for_stop","eject","black_circle_for_record","black_right_pointing_double_triangle_with_vertical_bar","black_left_pointing_double_triangle_with_vertical_bar","fast_forward","rewind","twisted_rightwards_arrows","repeat","repeat_one","arrow_backward","arrow_up_small","arrow_down_small","arrow_double_up","arrow_double_down","arrow_right","arrow_left","arrow_up","arrow_down","arrow_upper_right","arrow_lower_right","arrow_lower_left","arrow_upper_left","arrow_up_down","left_right_arrow","arrows_counterclockwise","arrow_right_hook","leftwards_arrow_with_hook","arrow_heading_up","arrow_heading_down","hash","information_source","abc","abcd","capital_abcd","symbols","musical_note","notes","wavy_dash","curly_loop","heavy_check_mark","arrows_clockwise","heavy_plus_sign","heavy_minus_sign","heavy_division_sign","heavy_multiplication_x","heavy_dollar_sign","currency_exchange","copyright","registered","tm","end","back","on","top","soon","ballot_box_with_check","radio_button","white_circle","black_circle","red_circle","large_blue_circle","small_orange_diamond","small_blue_diamond","large_orange_diamond","large_blue_diamond","small_red_triangle","black_small_square","white_small_square","black_large_square","white_large_square","small_red_triangle_down","black_medium_square","white_medium_square","black_medium_small_square","white_medium_small_square","black_square_button","white_square_button","speaker","sound","loud_sound","mute","mega","loudspeaker","bell","no_bell","black_joker","mahjong","spades","clubs","hearts","diamonds","flower_playing_cards","thought_balloon","right_anger_bubble","speech_balloon","left_speech_bubble","clock1","clock2","clock3","clock4","clock5","clock6","clock7","clock8","clock9","clock10","clock11","clock12","clock130","clock230","clock330","clock430","clock530","clock630","clock730","clock830","clock930","clock1030","clock1130","clock1230"]},{"name":"Flags","emojis":["flag-ac","flag-ad","flag-ae","flag-af","flag-ag","flag-ai","flag-al","flag-am","flag-ao","flag-aq","flag-ar","flag-as","flag-at","flag-au","flag-aw","flag-ax","flag-az","flag-ba","flag-bb","flag-bd","flag-be","flag-bf","flag-bg","flag-bh","flag-bi","flag-bj","flag-bl","flag-bm","flag-bn","flag-bo","flag-bq","flag-br","flag-bs","flag-bt","flag-bv","flag-bw","flag-by","flag-bz","flag-ca","flag-cc","flag-cd","flag-cf","flag-cg","flag-ch","flag-ci","flag-ck","flag-cl","flag-cm","flag-cn","flag-co","flag-cp","flag-cr","flag-cu","flag-cv","flag-cw","flag-cx","flag-cy","flag-cz","flag-de","flag-dg","flag-dj","flag-dk","flag-dm","flag-do","flag-dz","flag-ea","flag-ec","flag-ee","flag-eg","flag-eh","flag-er","flag-es","flag-et","flag-eu","flag-fi","flag-fj","flag-fk","flag-fm","flag-fo","flag-fr","flag-ga","flag-gb","flag-gd","flag-ge","flag-gf","flag-gg","flag-gh","flag-gi","flag-gl","flag-gm","flag-gn","flag-gp","flag-gq","flag-gr","flag-gs","flag-gt","flag-gu","flag-gw","flag-gy","flag-hk","flag-hm","flag-hn","flag-hr","flag-ht","flag-hu","flag-ic","flag-id","flag-ie","flag-il","flag-im","flag-in","flag-io","flag-iq","flag-ir","flag-is","flag-it","flag-je","flag-jm","flag-jo","flag-jp","flag-ke","flag-kg","flag-kh","flag-ki","flag-km","flag-kn","flag-kp","flag-kr","flag-kw","flag-ky","flag-kz","flag-la","flag-lb","flag-lc","flag-li","flag-lk","flag-lr","flag-ls","flag-lt","flag-lu","flag-lv","flag-ly","flag-ma","flag-mc","flag-md","flag-me","flag-mf","flag-mg","flag-mh","flag-mk","flag-ml","flag-mm","flag-mn","flag-mo","flag-mp","flag-mq","flag-mr","flag-ms","flag-mt","flag-mu","flag-mv","flag-mw","flag-mx","flag-my","flag-mz","flag-na","flag-nc","flag-ne","flag-nf","flag-ng","flag-ni","flag-nl","flag-no","flag-np","flag-nr","flag-nu","flag-nz","flag-om","flag-pa","flag-pe","flag-pf","flag-pg","flag-ph","flag-pk","flag-pl","flag-pm","flag-pn","flag-pr","flag-ps","flag-pt","flag-pw","flag-py","flag-qa","flag-re","flag-ro","flag-rs","flag-ru","flag-rw","flag-sa","flag-sb","flag-sc","flag-sd","flag-se","flag-sg","flag-sh","flag-si","flag-sj","flag-sk","flag-sl","flag-sm","flag-sn","flag-so","flag-sr","flag-ss","flag-st","flag-sv","flag-sx","flag-sy","flag-sz","flag-ta","flag-tc","flag-td","flag-tf","flag-tg","flag-th","flag-tj","flag-tk","flag-tl","flag-tm","flag-tn","flag-to","flag-tr","flag-tt","flag-tv","flag-tw","flag-tz","flag-ua","flag-ug","flag-um","flag-us","flag-uy","flag-uz","flag-va","flag-vc","flag-ve","flag-vg","flag-vi","flag-vn","flag-vu","flag-wf","flag-ws","flag-xk","flag-ye","flag-yt","flag-za","flag-zm","flag-zw"]}],"emojis":{"100":{"name":"Hundred Points Symbol","unified":"1F4AF","variations":[],"docomo":null,"au":"E4F2","softbank":null,"google":"FEB7B","image":"1f4af.png","sheet_x":20,"sheet_y":27,"short_name":"100","short_names":["100"],"category":"Symbols","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"1234":{"name":"Input Symbol for Numbers","unified":"1F522","variations":[],"docomo":null,"au":"EAFF","softbank":null,"google":"FEB7E","image":"1f522.png","sheet_x":23,"sheet_y":18,"short_name":"1234","short_names":["1234"],"category":"Symbols","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"grinning":{"name":"Grinning Face","unified":"1F600","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f600.png","sheet_x":26,"sheet_y":15,"short_name":"grinning","short_names":["grinning"],"category":"People","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":D"]},"heart":{"name":"Heavy Black Heart","unified":"2764","variations":["2764-FE0F"],"docomo":"E6EC","au":"E595","softbank":"E022","google":"FEB0C","image":"2764.png","sheet_x":4,"sheet_y":10,"short_name":"heart","short_names":["heart"],"category":"Symbols","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["<3"]},"dog":{"name":"Dog Face","unified":"1F436","variations":[],"docomo":"E6A1","au":"E4E1","softbank":"E052","google":"FE1B7","image":"1f436.png","sheet_x":13,"sheet_y":18,"short_name":"dog","short_names":["dog"],"category":"Nature","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"soccer":{"name":"Soccer Ball","unified":"26BD","variations":["26BD-FE0F"],"docomo":"E656","au":"E4B6","softbank":"E018","google":"FE7D4","image":"26bd.png","sheet_x":2,"sheet_y":18,"short_name":"soccer","short_names":["soccer"],"category":"Activity","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"watch":{"name":"Watch","unified":"231A","variations":["231A-FE0F"],"docomo":"E71F","au":"E57A","softbank":null,"google":"FE01D","image":"231a.png","sheet_x":0,"sheet_y":14,"short_name":"watch","short_names":["watch"],"category":"Objects","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"green_apple":{"name":"Green Apple","unified":"1F34F","variations":[],"docomo":"E745","au":"EB5A","softbank":"E345","google":"FE05B","image":"1f34f.png","sheet_x":7,"sheet_y":16,"short_name":"green_apple","short_names":["green_apple"],"category":"Foods","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-af":{"name":"Regional Indicator Symbol Letters AF","unified":"1F1E6-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1eb.png","sheet_x":32,"sheet_y":36,"short_name":"flag-af","short_names":["flag-af"],"category":"Flags","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"car":{"name":"Automobile","unified":"1F697","variations":[],"docomo":"E65E","au":"E4B1","softbank":"E01B","google":"FE7E4","image":"1f697.png","sheet_x":29,"sheet_y":35,"short_name":"car","short_names":["car","red_car"],"category":"Places","sort_order":1,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ax":{"name":"Regional Indicator Symbol Letters AX","unified":"1F1E6-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fd.png","sheet_x":33,"sheet_y":7,"short_name":"flag-ax","short_names":["flag-ax"],"category":"Flags","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"grimacing":{"name":"Grimacing Face","unified":"1F62C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62c.png","sheet_x":27,"sheet_y":18,"short_name":"grimacing","short_names":["grimacing"],"category":"People","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"taxi":{"name":"Taxi","unified":"1F695","variations":[],"docomo":"E65E","au":"E4B1","softbank":"E15A","google":"FE7EF","image":"1f695.png","sheet_x":29,"sheet_y":33,"short_name":"taxi","short_names":["taxi"],"category":"Places","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"iphone":{"name":"Mobile Phone","unified":"1F4F1","variations":[],"docomo":"E688","au":"E588","softbank":"E00A","google":"FE525","image":"1f4f1.png","sheet_x":22,"sheet_y":11,"short_name":"iphone","short_names":["iphone"],"category":"Objects","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"basketball":{"name":"Basketball and Hoop","unified":"1F3C0","variations":[],"docomo":"E658","au":"E59A","softbank":"E42A","google":"FE7D6","image":"1f3c0.png","sheet_x":10,"sheet_y":6,"short_name":"basketball","short_names":["basketball"],"category":"Activity","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cat":{"name":"Cat Face","unified":"1F431","variations":[],"docomo":"E6A2","au":"E4DB","softbank":"E04F","google":"FE1B8","image":"1f431.png","sheet_x":13,"sheet_y":13,"short_name":"cat","short_names":["cat"],"category":"Nature","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"apple":{"name":"Red Apple","unified":"1F34E","variations":[],"docomo":"E745","au":"EAB9","softbank":"E345","google":"FE051","image":"1f34e.png","sheet_x":7,"sheet_y":15,"short_name":"apple","short_names":["apple"],"category":"Foods","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"yellow_heart":{"name":"Yellow Heart","unified":"1F49B","variations":[],"docomo":"E6EC","au":"EAA9","softbank":"E32C","google":"FEB15","image":"1f49b.png","sheet_x":20,"sheet_y":2,"short_name":"yellow_heart","short_names":["yellow_heart"],"category":"Symbols","sort_order":2,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["<3"]},"mouse":{"name":"Mouse Face","unified":"1F42D","variations":[],"docomo":null,"au":"E5C2","softbank":"E053","google":"FE1C2","image":"1f42d.png","sheet_x":13,"sheet_y":9,"short_name":"mouse","short_names":["mouse"],"category":"Nature","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pear":{"name":"Pear","unified":"1F350","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f350.png","sheet_x":7,"sheet_y":17,"short_name":"pear","short_names":["pear"],"category":"Foods","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"green_heart":{"name":"Green Heart","unified":"1F49A","variations":[],"docomo":"E6EC","au":"EAA8","softbank":"E32B","google":"FEB14","image":"1f49a.png","sheet_x":20,"sheet_y":1,"short_name":"green_heart","short_names":["green_heart"],"category":"Symbols","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["<3"]},"football":{"name":"American Football","unified":"1F3C8","variations":[],"docomo":null,"au":"E4BB","softbank":"E42B","google":"FE7DD","image":"1f3c8.png","sheet_x":10,"sheet_y":24,"short_name":"football","short_names":["football"],"category":"Activity","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"grin":{"name":"Grinning Face with Smiling Eyes","unified":"1F601","variations":[],"docomo":"E753","au":"EB80","softbank":"E404","google":"FE333","image":"1f601.png","sheet_x":26,"sheet_y":16,"short_name":"grin","short_names":["grin"],"category":"People","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-al":{"name":"Regional Indicator Symbol Letters AL","unified":"1F1E6-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f1.png","sheet_x":32,"sheet_y":39,"short_name":"flag-al","short_names":["flag-al"],"category":"Flags","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"calling":{"name":"Mobile Phone with Rightwards Arrow at Left","unified":"1F4F2","variations":[],"docomo":"E6CE","au":"EB08","softbank":"E104","google":"FE526","image":"1f4f2.png","sheet_x":22,"sheet_y":12,"short_name":"calling","short_names":["calling"],"category":"Objects","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"blue_car":{"name":"Recreational Vehicle","unified":"1F699","variations":[],"docomo":"E65F","au":"E4B1","softbank":"E42E","google":"FE7E5","image":"1f699.png","sheet_x":29,"sheet_y":37,"short_name":"blue_car","short_names":["blue_car"],"category":"Places","sort_order":3,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hamster":{"name":"Hamster Face","unified":"1F439","variations":[],"docomo":null,"au":null,"softbank":"E524","google":"FE1CA","image":"1f439.png","sheet_x":13,"sheet_y":21,"short_name":"hamster","short_names":["hamster"],"category":"Nature","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"blue_heart":{"name":"Blue Heart","unified":"1F499","variations":[],"docomo":"E6EC","au":"EAA7","softbank":"E32A","google":"FEB13","image":"1f499.png","sheet_x":20,"sheet_y":0,"short_name":"blue_heart","short_names":["blue_heart"],"category":"Symbols","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["<3"]},"bus":{"name":"Bus","unified":"1F68C","variations":[],"docomo":"E660","au":"E4AF","softbank":"E159","google":"FE7E6","image":"1f68c.png","sheet_x":29,"sheet_y":24,"short_name":"bus","short_names":["bus"],"category":"Places","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"joy":{"name":"Face with Tears of Joy","unified":"1F602","variations":[],"docomo":"E72A","au":"EB64","softbank":"E412","google":"FE334","image":"1f602.png","sheet_x":26,"sheet_y":17,"short_name":"joy","short_names":["joy"],"category":"People","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"computer":{"name":"Personal Computer","unified":"1F4BB","variations":[],"docomo":"E716","au":"E5B8","softbank":"E00C","google":"FE538","image":"1f4bb.png","sheet_x":20,"sheet_y":39,"short_name":"computer","short_names":["computer"],"category":"Objects","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tangerine":{"name":"Tangerine","unified":"1F34A","variations":[],"docomo":null,"au":"EABA","softbank":"E346","google":"FE052","image":"1f34a.png","sheet_x":7,"sheet_y":11,"short_name":"tangerine","short_names":["tangerine"],"category":"Foods","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"baseball":{"name":"Baseball","unified":"26BE","variations":["26BE-FE0F"],"docomo":"E653","au":"E4BA","softbank":"E016","google":"FE7D1","image":"26be.png","sheet_x":2,"sheet_y":19,"short_name":"baseball","short_names":["baseball"],"category":"Activity","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-dz":{"name":"Regional Indicator Symbol Letters DZ","unified":"1F1E9-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ff.png","sheet_x":34,"sheet_y":15,"short_name":"flag-dz","short_names":["flag-dz"],"category":"Flags","sort_order":4,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tennis":{"name":"Tennis Racquet and Ball","unified":"1F3BE","variations":[],"docomo":"E655","au":"E4B7","softbank":"E015","google":"FE7D3","image":"1f3be.png","sheet_x":10,"sheet_y":4,"short_name":"tennis","short_names":["tennis"],"category":"Activity","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"trolleybus":{"name":"Trolleybus","unified":"1F68E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68e.png","sheet_x":29,"sheet_y":26,"short_name":"trolleybus","short_names":["trolleybus"],"category":"Places","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"keyboard":{"name":"Keyboard","unified":"2328","variations":["2328-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2328.png","sheet_x":0,"sheet_y":16,"short_name":"keyboard","short_names":["keyboard"],"category":"Objects","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rabbit":{"name":"Rabbit Face","unified":"1F430","variations":[],"docomo":null,"au":"E4D7","softbank":"E52C","google":"FE1D2","image":"1f430.png","sheet_x":13,"sheet_y":12,"short_name":"rabbit","short_names":["rabbit"],"category":"Nature","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-as":{"name":"Regional Indicator Symbol Letters AS","unified":"1F1E6-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f8.png","sheet_x":33,"sheet_y":3,"short_name":"flag-as","short_names":["flag-as"],"category":"Flags","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lemon":{"name":"Lemon","unified":"1F34B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f34b.png","sheet_x":7,"sheet_y":12,"short_name":"lemon","short_names":["lemon"],"category":"Foods","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"purple_heart":{"name":"Purple Heart","unified":"1F49C","variations":[],"docomo":"E6EC","au":"EAAA","softbank":"E32D","google":"FEB16","image":"1f49c.png","sheet_x":20,"sheet_y":3,"short_name":"purple_heart","short_names":["purple_heart"],"category":"Symbols","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["<3"]},"smiley":{"name":"Smiling Face with Open Mouth","unified":"1F603","variations":[],"docomo":"E6F0","au":"E471","softbank":"E057","google":"FE330","image":"1f603.png","sheet_x":26,"sheet_y":18,"short_name":"smiley","short_names":["smiley"],"category":"People","sort_order":5,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["=)","=-)"]},"desktop_computer":{"name":"Desktop Computer","unified":"1F5A5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5a5.png","sheet_x":25,"sheet_y":31,"short_name":"desktop_computer","short_names":["desktop_computer"],"category":"Objects","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"racing_car":{"name":"Racing Car","unified":"1F3CE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ce.png","sheet_x":10,"sheet_y":40,"short_name":"racing_car","short_names":["racing_car"],"category":"Places","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"volleyball":{"name":"Volleyball","unified":"1F3D0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d0.png","sheet_x":11,"sheet_y":1,"short_name":"volleyball","short_names":["volleyball"],"category":"Activity","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"banana":{"name":"Banana","unified":"1F34C","variations":[],"docomo":"E744","au":"EB35","softbank":null,"google":"FE050","image":"1f34c.png","sheet_x":7,"sheet_y":13,"short_name":"banana","short_names":["banana"],"category":"Foods","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bear":{"name":"Bear Face","unified":"1F43B","variations":[],"docomo":null,"au":"E5C1","softbank":"E051","google":"FE1C1","image":"1f43b.png","sheet_x":13,"sheet_y":23,"short_name":"bear","short_names":["bear"],"category":"Nature","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smile":{"name":"Smiling Face with Open Mouth and Smiling Eyes","unified":"1F604","variations":[],"docomo":"E6F0","au":"E471","softbank":"E415","google":"FE338","image":"1f604.png","sheet_x":26,"sheet_y":19,"short_name":"smile","short_names":["smile"],"category":"People","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["C:","c:",":D",":-D"]},"flag-ad":{"name":"Regional Indicator Symbol Letters AD","unified":"1F1E6-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e9.png","sheet_x":32,"sheet_y":34,"short_name":"flag-ad","short_names":["flag-ad"],"category":"Flags","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"broken_heart":{"name":"Broken Heart","unified":"1F494","variations":[],"docomo":"E6EE","au":"E477","softbank":"E023","google":"FEB0E","image":"1f494.png","sheet_x":19,"sheet_y":36,"short_name":"broken_heart","short_names":["broken_heart"],"category":"Symbols","sort_order":6,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["",":->"]},"koala":{"name":"Koala","unified":"1F428","variations":[],"docomo":null,"au":"EB20","softbank":"E527","google":"FE1CD","image":"1f428.png","sheet_x":13,"sheet_y":4,"short_name":"koala","short_names":["koala"],"category":"Nature","sort_order":8,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-aq":{"name":"Regional Indicator Symbol Letters AQ","unified":"1F1E6-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f6.png","sheet_x":33,"sheet_y":1,"short_name":"flag-aq","short_names":["flag-aq"],"category":"Flags","sort_order":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fire_engine":{"name":"Fire Engine","unified":"1F692","variations":[],"docomo":null,"au":"EADF","softbank":"E430","google":"FE7F2","image":"1f692.png","sheet_x":29,"sheet_y":30,"short_name":"fire_engine","short_names":["fire_engine"],"category":"Places","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"revolving_hearts":{"name":"Revolving Hearts","unified":"1F49E","variations":[],"docomo":"E6ED","au":"E5AF","softbank":"E327","google":"FEB18","image":"1f49e.png","sheet_x":20,"sheet_y":5,"short_name":"revolving_hearts","short_names":["revolving_hearts"],"category":"Symbols","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"golf":{"name":"Flag in Hole","unified":"26F3","variations":["26F3-FE0F"],"docomo":"E654","au":"E599","softbank":"E014","google":"FE7D2","image":"26f3.png","sheet_x":2,"sheet_y":33,"short_name":"golf","short_names":["golf"],"category":"Activity","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"innocent":{"name":"Smiling Face with Halo","unified":"1F607","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f607.png","sheet_x":26,"sheet_y":22,"short_name":"innocent","short_names":["innocent"],"category":"People","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"strawberry":{"name":"Strawberry","unified":"1F353","variations":[],"docomo":null,"au":"E4D4","softbank":"E347","google":"FE053","image":"1f353.png","sheet_x":7,"sheet_y":20,"short_name":"strawberry","short_names":["strawberry"],"category":"Foods","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"trackball":{"name":"Trackball","unified":"1F5B2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5b2.png","sheet_x":25,"sheet_y":34,"short_name":"trackball","short_names":["trackball"],"category":"Objects","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tiger":{"name":"Tiger Face","unified":"1F42F","variations":[],"docomo":null,"au":"E5C0","softbank":"E050","google":"FE1C0","image":"1f42f.png","sheet_x":13,"sheet_y":11,"short_name":"tiger","short_names":["tiger"],"category":"Nature","sort_order":9,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lion_face":{"name":"Lion Face","unified":"1F981","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f981.png","sheet_x":32,"sheet_y":16,"short_name":"lion_face","short_names":["lion_face"],"category":"Nature","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ag":{"name":"Regional Indicator Symbol Letters AG","unified":"1F1E6-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ec.png","sheet_x":32,"sheet_y":37,"short_name":"flag-ag","short_names":["flag-ag"],"category":"Flags","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"minibus":{"name":"Minibus","unified":"1F690","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f690.png","sheet_x":29,"sheet_y":28,"short_name":"minibus","short_names":["minibus"],"category":"Places","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"melon":{"name":"Melon","unified":"1F348","variations":[],"docomo":null,"au":"EB32","softbank":null,"google":"FE057","image":"1f348.png","sheet_x":7,"sheet_y":9,"short_name":"melon","short_names":["melon"],"category":"Foods","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wink":{"name":"Winking Face","unified":"1F609","variations":[],"docomo":"E729","au":"E5C3","softbank":"E405","google":"FE347","image":"1f609.png","sheet_x":26,"sheet_y":24,"short_name":"wink","short_names":["wink"],"category":"People","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[";)",";-)"]},"golfer":{"name":"Golfer","unified":"1F3CC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cc.png","sheet_x":10,"sheet_y":38,"short_name":"golfer","short_names":["golfer"],"category":"Activity","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heartbeat":{"name":"Beating Heart","unified":"1F493","variations":[],"docomo":"E6ED","au":"EB75","softbank":"E327","google":"FEB0D","image":"1f493.png","sheet_x":19,"sheet_y":35,"short_name":"heartbeat","short_names":["heartbeat"],"category":"Symbols","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"joystick":{"name":"Joystick","unified":"1F579","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f579.png","sheet_x":25,"sheet_y":7,"short_name":"joystick","short_names":["joystick"],"category":"Objects","sort_order":10,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heartpulse":{"name":"Growing Heart","unified":"1F497","variations":[],"docomo":"E6ED","au":"EB75","softbank":"E328","google":"FEB11","image":"1f497.png","sheet_x":19,"sheet_y":39,"short_name":"heartpulse","short_names":["heartpulse"],"category":"Symbols","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ar":{"name":"Regional Indicator Symbol Letters AR","unified":"1F1E6-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f7.png","sheet_x":33,"sheet_y":2,"short_name":"flag-ar","short_names":["flag-ar"],"category":"Flags","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"table_tennis_paddle_and_ball":{"name":"Table Tennis Paddle and Ball","unified":"1F3D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d3.png","sheet_x":11,"sheet_y":4,"short_name":"table_tennis_paddle_and_ball","short_names":["table_tennis_paddle_and_ball"],"category":"Activity","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cow":{"name":"Cow Face","unified":"1F42E","variations":[],"docomo":null,"au":"EB21","softbank":"E52B","google":"FE1D1","image":"1f42e.png","sheet_x":13,"sheet_y":10,"short_name":"cow","short_names":["cow"],"category":"Nature","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cherries":{"name":"Cherries","unified":"1F352","variations":[],"docomo":"E742","au":"E4D2","softbank":null,"google":"FE04F","image":"1f352.png","sheet_x":7,"sheet_y":19,"short_name":"cherries","short_names":["cherries"],"category":"Foods","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"compression":{"name":"Compression","unified":"1F5DC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dc.png","sheet_x":26,"sheet_y":1,"short_name":"compression","short_names":["compression"],"category":"Objects","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"truck":{"name":"Delivery Truck","unified":"1F69A","variations":[],"docomo":null,"au":"E4B2","softbank":"E42F","google":"FE7F1","image":"1f69a.png","sheet_x":29,"sheet_y":38,"short_name":"truck","short_names":["truck"],"category":"Places","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"blush":{"name":"Smiling Face with Smiling Eyes","unified":"1F60A","variations":[],"docomo":"E6F0","au":"EACD","softbank":"E056","google":"FE335","image":"1f60a.png","sheet_x":26,"sheet_y":25,"short_name":"blush","short_names":["blush"],"category":"People","sort_order":11,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":)"]},"slightly_smiling_face":{"name":"Slightly Smiling Face","unified":"1F642","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f642.png","sheet_x":27,"sheet_y":40,"short_name":"slightly_smiling_face","short_names":["slightly_smiling_face"],"category":"People","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":)","(:",":-)"]},"pig":{"name":"Pig Face","unified":"1F437","variations":[],"docomo":"E755","au":"E4DE","softbank":"E10B","google":"FE1BF","image":"1f437.png","sheet_x":13,"sheet_y":19,"short_name":"pig","short_names":["pig"],"category":"Nature","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sparkling_heart":{"name":"Sparkling Heart","unified":"1F496","variations":[],"docomo":"E6EC","au":"EAA6","softbank":"E327","google":"FEB10","image":"1f496.png","sheet_x":19,"sheet_y":38,"short_name":"sparkling_heart","short_names":["sparkling_heart"],"category":"Symbols","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"badminton_racquet_and_shuttlecock":{"name":"Badminton Racquet and Shuttlecock","unified":"1F3F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f8.png","sheet_x":11,"sheet_y":38,"short_name":"badminton_racquet_and_shuttlecock","short_names":["badminton_racquet_and_shuttlecock"],"category":"Activity","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"peach":{"name":"Peach","unified":"1F351","variations":[],"docomo":null,"au":"EB39","softbank":null,"google":"FE05A","image":"1f351.png","sheet_x":7,"sheet_y":18,"short_name":"peach","short_names":["peach"],"category":"Foods","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"minidisc":{"name":"Minidisc","unified":"1F4BD","variations":[],"docomo":null,"au":"E582","softbank":"E316","google":"FE53C","image":"1f4bd.png","sheet_x":21,"sheet_y":0,"short_name":"minidisc","short_names":["minidisc"],"category":"Objects","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"articulated_lorry":{"name":"Articulated Lorry","unified":"1F69B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69b.png","sheet_x":29,"sheet_y":39,"short_name":"articulated_lorry","short_names":["articulated_lorry"],"category":"Places","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-am":{"name":"Regional Indicator Symbol Letters AM","unified":"1F1E6-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f2.png","sheet_x":32,"sheet_y":40,"short_name":"flag-am","short_names":["flag-am"],"category":"Flags","sort_order":12,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ice_hockey_stick_and_puck":{"name":"Ice Hockey Stick and Puck","unified":"1F3D2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d2.png","sheet_x":11,"sheet_y":3,"short_name":"ice_hockey_stick_and_puck","short_names":["ice_hockey_stick_and_puck"],"category":"Activity","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pineapple":{"name":"Pineapple","unified":"1F34D","variations":[],"docomo":null,"au":"EB33","softbank":null,"google":"FE058","image":"1f34d.png","sheet_x":7,"sheet_y":14,"short_name":"pineapple","short_names":["pineapple"],"category":"Foods","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-aw":{"name":"Regional Indicator Symbol Letters AW","unified":"1F1E6-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fc.png","sheet_x":33,"sheet_y":6,"short_name":"flag-aw","short_names":["flag-aw"],"category":"Flags","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pig_nose":{"name":"Pig Nose","unified":"1F43D","variations":[],"docomo":"E755","au":"EB48","softbank":"E10B","google":"FE1E0","image":"1f43d.png","sheet_x":13,"sheet_y":25,"short_name":"pig_nose","short_names":["pig_nose"],"category":"Nature","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"floppy_disk":{"name":"Floppy Disk","unified":"1F4BE","variations":[],"docomo":null,"au":"E562","softbank":"E316","google":"FE53D","image":"1f4be.png","sheet_x":21,"sheet_y":1,"short_name":"floppy_disk","short_names":["floppy_disk"],"category":"Objects","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tractor":{"name":"Tractor","unified":"1F69C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69c.png","sheet_x":29,"sheet_y":40,"short_name":"tractor","short_names":["tractor"],"category":"Places","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"upside_down_face":{"name":"Upside-Down Face","unified":"1F643","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f643.png","sheet_x":28,"sheet_y":0,"short_name":"upside_down_face","short_names":["upside_down_face"],"category":"People","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cupid":{"name":"Heart with Arrow","unified":"1F498","variations":[],"docomo":"E6EC","au":"E4EA","softbank":"E329","google":"FEB12","image":"1f498.png","sheet_x":19,"sheet_y":40,"short_name":"cupid","short_names":["cupid"],"category":"Symbols","sort_order":13,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cd":{"name":"Optical Disc","unified":"1F4BF","variations":[],"docomo":"E68C","au":"E50C","softbank":"E126","google":"FE81D","image":"1f4bf.png","sheet_x":21,"sheet_y":2,"short_name":"cd","short_names":["cd"],"category":"Objects","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gift_heart":{"name":"Heart with Ribbon","unified":"1F49D","variations":[],"docomo":"E6EC","au":"EB54","softbank":"E437","google":"FEB17","image":"1f49d.png","sheet_x":20,"sheet_y":4,"short_name":"gift_heart","short_names":["gift_heart"],"category":"Symbols","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-au":{"name":"Regional Indicator Symbol Letters AU","unified":"1F1E6-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1fa.png","sheet_x":33,"sheet_y":5,"short_name":"flag-au","short_names":["flag-au"],"category":"Flags","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"field_hockey_stick_and_ball":{"name":"Field Hockey Stick and Ball","unified":"1F3D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d1.png","sheet_x":11,"sheet_y":2,"short_name":"field_hockey_stick_and_ball","short_names":["field_hockey_stick_and_ball"],"category":"Activity","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tomato":{"name":"Tomato","unified":"1F345","variations":[],"docomo":null,"au":"EABB","softbank":"E349","google":"FE055","image":"1f345.png","sheet_x":7,"sheet_y":6,"short_name":"tomato","short_names":["tomato"],"category":"Foods","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"racing_motorcycle":{"name":"Racing Motorcycle","unified":"1F3CD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cd.png","sheet_x":10,"sheet_y":39,"short_name":"racing_motorcycle","short_names":["racing_motorcycle"],"category":"Places","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"relaxed":{"name":"White Smiling Face","unified":"263A","variations":["263A-FE0F"],"docomo":"E6F0","au":"E4FB","softbank":"E414","google":"FE336","image":"263a.png","sheet_x":1,"sheet_y":25,"short_name":"relaxed","short_names":["relaxed"],"category":"People","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"frog":{"name":"Frog Face","unified":"1F438","variations":[],"docomo":null,"au":"E4DA","softbank":"E531","google":"FE1D7","image":"1f438.png","sheet_x":13,"sheet_y":20,"short_name":"frog","short_names":["frog"],"category":"Nature","sort_order":14,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cricket_bat_and_ball":{"name":"Cricket Bat and Ball","unified":"1F3CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cf.png","sheet_x":11,"sheet_y":0,"short_name":"cricket_bat_and_ball","short_names":["cricket_bat_and_ball"],"category":"Activity","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dvd":{"name":"Dvd","unified":"1F4C0","variations":[],"docomo":"E68C","au":"E50C","softbank":"E127","google":"FE81E","image":"1f4c0.png","sheet_x":21,"sheet_y":3,"short_name":"dvd","short_names":["dvd"],"category":"Objects","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"octopus":{"name":"Octopus","unified":"1F419","variations":[],"docomo":null,"au":"E5C7","softbank":"E10A","google":"FE1C5","image":"1f419.png","sheet_x":12,"sheet_y":30,"short_name":"octopus","short_names":["octopus"],"category":"Nature","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bike":{"name":"Bicycle","unified":"1F6B2","variations":[],"docomo":"E71D","au":"E4AE","softbank":"E136","google":"FE7EB","image":"1f6b2.png","sheet_x":30,"sheet_y":26,"short_name":"bike","short_names":["bike"],"category":"Places","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heart_decoration":{"name":"Heart Decoration","unified":"1F49F","variations":[],"docomo":"E6F8","au":"E595","softbank":"E204","google":"FEB19","image":"1f49f.png","sheet_x":20,"sheet_y":6,"short_name":"heart_decoration","short_names":["heart_decoration"],"category":"Symbols","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"yum":{"name":"Face Savouring Delicious Food","unified":"1F60B","variations":[],"docomo":"E752","au":"EACD","softbank":"E056","google":"FE32B","image":"1f60b.png","sheet_x":26,"sheet_y":26,"short_name":"yum","short_names":["yum"],"category":"People","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eggplant":{"name":"Aubergine","unified":"1F346","variations":[],"docomo":null,"au":"EABC","softbank":"E34A","google":"FE056","image":"1f346.png","sheet_x":7,"sheet_y":7,"short_name":"eggplant","short_names":["eggplant"],"category":"Foods","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-at":{"name":"Regional Indicator Symbol Letters AT","unified":"1F1E6-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1f9.png","sheet_x":33,"sheet_y":4,"short_name":"flag-at","short_names":["flag-at"],"category":"Flags","sort_order":15,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rotating_light":{"name":"Police Cars Revolving Light","unified":"1F6A8","variations":[],"docomo":null,"au":"EB73","softbank":"E432","google":"FE7F9","image":"1f6a8.png","sheet_x":30,"sheet_y":16,"short_name":"rotating_light","short_names":["rotating_light"],"category":"Places","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"monkey_face":{"name":"Monkey Face","unified":"1F435","variations":[],"docomo":null,"au":"E4D9","softbank":"E109","google":"FE1C4","image":"1f435.png","sheet_x":13,"sheet_y":17,"short_name":"monkey_face","short_names":["monkey_face"],"category":"Nature","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":o)"]},"ski":{"name":"Ski and Ski Boot","unified":"1F3BF","variations":[],"docomo":"E657","au":"EAAC","softbank":"E013","google":"FE7D5","image":"1f3bf.png","sheet_x":10,"sheet_y":5,"short_name":"ski","short_names":["ski"],"category":"Activity","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hot_pepper":{"name":"Hot Pepper","unified":"1F336","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f336.png","sheet_x":6,"sheet_y":32,"short_name":"hot_pepper","short_names":["hot_pepper"],"category":"Foods","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"peace_symbol":{"name":"Peace Symbol","unified":"262E","variations":["262E-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262e.png","sheet_x":1,"sheet_y":21,"short_name":"peace_symbol","short_names":["peace_symbol"],"category":"Symbols","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-az":{"name":"Regional Indicator Symbol Letters AZ","unified":"1F1E6-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ff.png","sheet_x":33,"sheet_y":8,"short_name":"flag-az","short_names":["flag-az"],"category":"Flags","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"relieved":{"name":"Relieved Face","unified":"1F60C","variations":[],"docomo":"E721","au":"EAC5","softbank":"E40A","google":"FE33E","image":"1f60c.png","sheet_x":26,"sheet_y":27,"short_name":"relieved","short_names":["relieved"],"category":"People","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"vhs":{"name":"Videocassette","unified":"1F4FC","variations":[],"docomo":null,"au":"E580","softbank":"E129","google":"FE820","image":"1f4fc.png","sheet_x":22,"sheet_y":22,"short_name":"vhs","short_names":["vhs"],"category":"Objects","sort_order":16,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oncoming_police_car":{"name":"Oncoming Police Car","unified":"1F694","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f694.png","sheet_x":29,"sheet_y":32,"short_name":"oncoming_police_car","short_names":["oncoming_police_car"],"category":"Places","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"corn":{"name":"Ear of Maize","unified":"1F33D","variations":[],"docomo":null,"au":"EB36","softbank":null,"google":"FE04A","image":"1f33d.png","sheet_x":6,"sheet_y":39,"short_name":"corn","short_names":["corn"],"category":"Foods","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"latin_cross":{"name":"Latin Cross","unified":"271D","variations":["271D-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"271d.png","sheet_x":3,"sheet_y":37,"short_name":"latin_cross","short_names":["latin_cross"],"category":"Symbols","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"camera":{"name":"Camera","unified":"1F4F7","variations":[],"docomo":"E681","au":"E515","softbank":"E008","google":"FE4EF","image":"1f4f7.png","sheet_x":22,"sheet_y":17,"short_name":"camera","short_names":["camera"],"category":"Objects","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"see_no_evil":{"name":"See-No-Evil Monkey","unified":"1F648","variations":[],"docomo":null,"au":"EB50","softbank":null,"google":"FE354","image":"1f648.png","sheet_x":28,"sheet_y":20,"short_name":"see_no_evil","short_names":["see_no_evil"],"category":"Nature","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heart_eyes":{"name":"Smiling Face with Heart-Shaped Eyes","unified":"1F60D","variations":[],"docomo":"E726","au":"E5C4","softbank":"E106","google":"FE327","image":"1f60d.png","sheet_x":26,"sheet_y":28,"short_name":"heart_eyes","short_names":["heart_eyes"],"category":"People","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bs":{"name":"Regional Indicator Symbol Letters BS","unified":"1F1E7-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f8.png","sheet_x":33,"sheet_y":24,"short_name":"flag-bs","short_names":["flag-bs"],"category":"Flags","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skier":{"name":"Skier","unified":"26F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f7.png","sheet_x":2,"sheet_y":36,"short_name":"skier","short_names":["skier"],"category":"Activity","sort_order":17,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oncoming_bus":{"name":"Oncoming Bus","unified":"1F68D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68d.png","sheet_x":29,"sheet_y":25,"short_name":"oncoming_bus","short_names":["oncoming_bus"],"category":"Places","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snowboarder":{"name":"Snowboarder","unified":"1F3C2","variations":[],"docomo":"E712","au":"E4B8","softbank":null,"google":"FE7D8","image":"1f3c2.png","sheet_x":10,"sheet_y":8,"short_name":"snowboarder","short_names":["snowboarder"],"category":"Activity","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sweet_potato":{"name":"Roasted Sweet Potato","unified":"1F360","variations":[],"docomo":null,"au":"EB3A","softbank":null,"google":"FE974","image":"1f360.png","sheet_x":7,"sheet_y":33,"short_name":"sweet_potato","short_names":["sweet_potato"],"category":"Foods","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hear_no_evil":{"name":"Hear-No-Evil Monkey","unified":"1F649","variations":[],"docomo":null,"au":"EB52","softbank":null,"google":"FE356","image":"1f649.png","sheet_x":28,"sheet_y":21,"short_name":"hear_no_evil","short_names":["hear_no_evil"],"category":"Nature","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bh":{"name":"Regional Indicator Symbol Letters BH","unified":"1F1E7-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ed.png","sheet_x":33,"sheet_y":15,"short_name":"flag-bh","short_names":["flag-bh"],"category":"Flags","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"star_and_crescent":{"name":"Star and Crescent","unified":"262A","variations":["262A-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262a.png","sheet_x":1,"sheet_y":20,"short_name":"star_and_crescent","short_names":["star_and_crescent"],"category":"Symbols","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kissing_heart":{"name":"Face Throwing a Kiss","unified":"1F618","variations":[],"docomo":"E726","au":"EACF","softbank":"E418","google":"FE32C","image":"1f618.png","sheet_x":26,"sheet_y":39,"short_name":"kissing_heart","short_names":["kissing_heart"],"category":"People","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"camera_with_flash":{"name":"Camera with Flash","unified":"1F4F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f8.png","sheet_x":22,"sheet_y":18,"short_name":"camera_with_flash","short_names":["camera_with_flash"],"category":"Objects","sort_order":18,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ice_skate":{"name":"Ice Skate","unified":"26F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f8.png","sheet_x":2,"sheet_y":37,"short_name":"ice_skate","short_names":["ice_skate"],"category":"Activity","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oncoming_automobile":{"name":"Oncoming Automobile","unified":"1F698","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f698.png","sheet_x":29,"sheet_y":36,"short_name":"oncoming_automobile","short_names":["oncoming_automobile"],"category":"Places","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"speak_no_evil":{"name":"Speak-No-Evil Monkey","unified":"1F64A","variations":[],"docomo":null,"au":"EB51","softbank":null,"google":"FE355","image":"1f64a.png","sheet_x":28,"sheet_y":22,"short_name":"speak_no_evil","short_names":["speak_no_evil"],"category":"Nature","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"honey_pot":{"name":"Honey Pot","unified":"1F36F","variations":[],"docomo":null,"au":"EB59","softbank":null,"google":"FE97E","image":"1f36f.png","sheet_x":8,"sheet_y":7,"short_name":"honey_pot","short_names":["honey_pot"],"category":"Foods","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kissing":{"name":"Kissing Face","unified":"1F617","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f617.png","sheet_x":26,"sheet_y":38,"short_name":"kissing","short_names":["kissing"],"category":"People","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"video_camera":{"name":"Video Camera","unified":"1F4F9","variations":[],"docomo":"E677","au":"E57E","softbank":"E03D","google":"FE4F9","image":"1f4f9.png","sheet_x":22,"sheet_y":19,"short_name":"video_camera","short_names":["video_camera"],"category":"Objects","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"om_symbol":{"name":"Om Symbol","unified":"1F549","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f549.png","sheet_x":24,"sheet_y":5,"short_name":"om_symbol","short_names":["om_symbol"],"category":"Symbols","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bd":{"name":"Regional Indicator Symbol Letters BD","unified":"1F1E7-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e9.png","sheet_x":33,"sheet_y":11,"short_name":"flag-bd","short_names":["flag-bd"],"category":"Flags","sort_order":19,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"monkey":{"name":"Monkey","unified":"1F412","variations":[],"docomo":null,"au":"E4D9","softbank":"E528","google":"FE1CE","image":"1f412.png","sheet_x":12,"sheet_y":23,"short_name":"monkey","short_names":["monkey"],"category":"Nature","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"movie_camera":{"name":"Movie Camera","unified":"1F3A5","variations":[],"docomo":"E677","au":"E517","softbank":"E03D","google":"FE801","image":"1f3a5.png","sheet_x":9,"sheet_y":20,"short_name":"movie_camera","short_names":["movie_camera"],"category":"Objects","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oncoming_taxi":{"name":"Oncoming Taxi","unified":"1F696","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f696.png","sheet_x":29,"sheet_y":34,"short_name":"oncoming_taxi","short_names":["oncoming_taxi"],"category":"Places","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bb":{"name":"Regional Indicator Symbol Letters BB","unified":"1F1E7-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e7.png","sheet_x":33,"sheet_y":10,"short_name":"flag-bb","short_names":["flag-bb"],"category":"Flags","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kissing_smiling_eyes":{"name":"Kissing Face with Smiling Eyes","unified":"1F619","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f619.png","sheet_x":26,"sheet_y":40,"short_name":"kissing_smiling_eyes","short_names":["kissing_smiling_eyes"],"category":"People","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bread":{"name":"Bread","unified":"1F35E","variations":[],"docomo":"E74D","au":"EAAF","softbank":"E339","google":"FE964","image":"1f35e.png","sheet_x":7,"sheet_y":31,"short_name":"bread","short_names":["bread"],"category":"Foods","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bow_and_arrow":{"name":"Bow and Arrow","unified":"1F3F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f9.png","sheet_x":11,"sheet_y":39,"short_name":"bow_and_arrow","short_names":["bow_and_arrow"],"category":"Activity","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wheel_of_dharma":{"name":"Wheel of Dharma","unified":"2638","variations":["2638-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2638.png","sheet_x":1,"sheet_y":23,"short_name":"wheel_of_dharma","short_names":["wheel_of_dharma"],"category":"Symbols","sort_order":20,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"aerial_tramway":{"name":"Aerial Tramway","unified":"1F6A1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a1.png","sheet_x":30,"sheet_y":4,"short_name":"aerial_tramway","short_names":["aerial_tramway"],"category":"Places","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cheese_wedge":{"name":"Cheese Wedge","unified":"1F9C0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f9c0.png","sheet_x":32,"sheet_y":20,"short_name":"cheese_wedge","short_names":["cheese_wedge"],"category":"Foods","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"film_projector":{"name":"Film Projector","unified":"1F4FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4fd.png","sheet_x":22,"sheet_y":23,"short_name":"film_projector","short_names":["film_projector"],"category":"Objects","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fishing_pole_and_fish":{"name":"Fishing Pole and Fish","unified":"1F3A3","variations":[],"docomo":"E751","au":"EB42","softbank":"E019","google":"FE7FF","image":"1f3a3.png","sheet_x":9,"sheet_y":18,"short_name":"fishing_pole_and_fish","short_names":["fishing_pole_and_fish"],"category":"Activity","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kissing_closed_eyes":{"name":"Kissing Face with Closed Eyes","unified":"1F61A","variations":[],"docomo":"E726","au":"EACE","softbank":"E417","google":"FE32D","image":"1f61a.png","sheet_x":27,"sheet_y":0,"short_name":"kissing_closed_eyes","short_names":["kissing_closed_eyes"],"category":"People","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"star_of_david":{"name":"Star of David","unified":"2721","variations":["2721-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2721.png","sheet_x":3,"sheet_y":38,"short_name":"star_of_david","short_names":["star_of_david"],"category":"Symbols","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chicken":{"name":"Chicken","unified":"1F414","variations":[],"docomo":null,"au":"EB23","softbank":"E52E","google":"FE1D4","image":"1f414.png","sheet_x":12,"sheet_y":25,"short_name":"chicken","short_names":["chicken"],"category":"Nature","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-by":{"name":"Regional Indicator Symbol Letters BY","unified":"1F1E7-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fe.png","sheet_x":33,"sheet_y":28,"short_name":"flag-by","short_names":["flag-by"],"category":"Flags","sort_order":21,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"six_pointed_star":{"name":"Six Pointed Star with Middle Dot","unified":"1F52F","variations":[],"docomo":null,"au":"EA8F","softbank":"E23E","google":"FE4F8","image":"1f52f.png","sheet_x":23,"sheet_y":31,"short_name":"six_pointed_star","short_names":["six_pointed_star"],"category":"Symbols","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"penguin":{"name":"Penguin","unified":"1F427","variations":[],"docomo":"E750","au":"E4DC","softbank":"E055","google":"FE1BC","image":"1f427.png","sheet_x":13,"sheet_y":3,"short_name":"penguin","short_names":["penguin"],"category":"Nature","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mountain_cableway":{"name":"Mountain Cableway","unified":"1F6A0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a0.png","sheet_x":30,"sheet_y":3,"short_name":"mountain_cableway","short_names":["mountain_cableway"],"category":"Places","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stuck_out_tongue_winking_eye":{"name":"Face with Stuck-out Tongue and Winking Eye","unified":"1F61C","variations":[],"docomo":"E728","au":"E4E7","softbank":"E105","google":"FE329","image":"1f61c.png","sheet_x":27,"sheet_y":2,"short_name":"stuck_out_tongue_winking_eye","short_names":["stuck_out_tongue_winking_eye"],"category":"People","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[";p",";-p",";b",";-b",";P",";-P"]},"flag-be":{"name":"Regional Indicator Symbol Letters BE","unified":"1F1E7-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ea.png","sheet_x":33,"sheet_y":12,"short_name":"flag-be","short_names":["flag-be"],"category":"Flags","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"film_frames":{"name":"Film Frames","unified":"1F39E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39e.png","sheet_x":9,"sheet_y":13,"short_name":"film_frames","short_names":["film_frames"],"category":"Objects","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"poultry_leg":{"name":"Poultry Leg","unified":"1F357","variations":[],"docomo":null,"au":"EB3C","softbank":null,"google":"FE976","image":"1f357.png","sheet_x":7,"sheet_y":24,"short_name":"poultry_leg","short_names":["poultry_leg"],"category":"Foods","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rowboat":{"name":"Rowboat","unified":"1F6A3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a3.png","sheet_x":30,"sheet_y":6,"short_name":"rowboat","short_names":["rowboat"],"category":"Activity","sort_order":22,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6A3-1F3FB":{"unified":"1F6A3-1F3FB","image":"1f6a3-1f3fb.png","sheet_x":30,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FC":{"unified":"1F6A3-1F3FC","image":"1f6a3-1f3fc.png","sheet_x":30,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FD":{"unified":"1F6A3-1F3FD","image":"1f6a3-1f3fd.png","sheet_x":30,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FE":{"unified":"1F6A3-1F3FE","image":"1f6a3-1f3fe.png","sheet_x":30,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6A3-1F3FF":{"unified":"1F6A3-1F3FF","image":"1f6a3-1f3ff.png","sheet_x":30,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"menorah_with_nine_branches":{"name":"Menorah with Nine Branches","unified":"1F54E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54e.png","sheet_x":24,"sheet_y":10,"short_name":"menorah_with_nine_branches","short_names":["menorah_with_nine_branches"],"category":"Symbols","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stuck_out_tongue_closed_eyes":{"name":"Face with Stuck-out Tongue and Tightly-Closed Eyes","unified":"1F61D","variations":[],"docomo":"E728","au":"E4E7","softbank":"E409","google":"FE32A","image":"1f61d.png","sheet_x":27,"sheet_y":3,"short_name":"stuck_out_tongue_closed_eyes","short_names":["stuck_out_tongue_closed_eyes"],"category":"People","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bz":{"name":"Regional Indicator Symbol Letters BZ","unified":"1F1E7-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ff.png","sheet_x":33,"sheet_y":29,"short_name":"flag-bz","short_names":["flag-bz"],"category":"Flags","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"swimmer":{"name":"Swimmer","unified":"1F3CA","variations":[],"docomo":null,"au":"EADE","softbank":"E42D","google":"FE7DE","image":"1f3ca.png","sheet_x":10,"sheet_y":26,"short_name":"swimmer","short_names":["swimmer"],"category":"Activity","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3CA-1F3FB":{"unified":"1F3CA-1F3FB","image":"1f3ca-1f3fb.png","sheet_x":10,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FC":{"unified":"1F3CA-1F3FC","image":"1f3ca-1f3fc.png","sheet_x":10,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FD":{"unified":"1F3CA-1F3FD","image":"1f3ca-1f3fd.png","sheet_x":10,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FE":{"unified":"1F3CA-1F3FE","image":"1f3ca-1f3fe.png","sheet_x":10,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CA-1F3FF":{"unified":"1F3CA-1F3FF","image":"1f3ca-1f3ff.png","sheet_x":10,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"bird":{"name":"Bird","unified":"1F426","variations":[],"docomo":"E74F","au":"E4E0","softbank":"E521","google":"FE1C8","image":"1f426.png","sheet_x":13,"sheet_y":2,"short_name":"bird","short_names":["bird"],"category":"Nature","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"telephone_receiver":{"name":"Telephone Receiver","unified":"1F4DE","variations":[],"docomo":"E687","au":"E51E","softbank":"E009","google":"FE524","image":"1f4de.png","sheet_x":21,"sheet_y":33,"short_name":"telephone_receiver","short_names":["telephone_receiver"],"category":"Objects","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"meat_on_bone":{"name":"Meat on Bone","unified":"1F356","variations":[],"docomo":null,"au":"E4C4","softbank":null,"google":"FE972","image":"1f356.png","sheet_x":7,"sheet_y":23,"short_name":"meat_on_bone","short_names":["meat_on_bone"],"category":"Foods","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"suspension_railway":{"name":"Suspension Railway","unified":"1F69F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69f.png","sheet_x":30,"sheet_y":2,"short_name":"suspension_railway","short_names":["suspension_railway"],"category":"Places","sort_order":23,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bj":{"name":"Regional Indicator Symbol Letters BJ","unified":"1F1E7-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ef.png","sheet_x":33,"sheet_y":17,"short_name":"flag-bj","short_names":["flag-bj"],"category":"Flags","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"yin_yang":{"name":"Yin Yang","unified":"262F","variations":["262F-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"262f.png","sheet_x":1,"sheet_y":22,"short_name":"yin_yang","short_names":["yin_yang"],"category":"Symbols","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stuck_out_tongue":{"name":"Face with Stuck-out Tongue","unified":"1F61B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61b.png","sheet_x":27,"sheet_y":1,"short_name":"stuck_out_tongue","short_names":["stuck_out_tongue"],"category":"People","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":p",":-p",":P",":-P",":b",":-b"]},"phone":{"name":"Black Telephone","unified":"260E","variations":["260E-FE0F"],"docomo":"E687","au":"E596","softbank":"E009","google":"FE523","image":"260e.png","sheet_x":1,"sheet_y":5,"short_name":"phone","short_names":["phone","telephone"],"category":"Objects","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"railway_car":{"name":"Railway Car","unified":"1F683","variations":[],"docomo":"E65B","au":"E4B5","softbank":"E01E","google":"FE7DF","image":"1f683.png","sheet_x":29,"sheet_y":15,"short_name":"railway_car","short_names":["railway_car"],"category":"Places","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fried_shrimp":{"name":"Fried Shrimp","unified":"1F364","variations":[],"docomo":null,"au":"EB70","softbank":null,"google":"FE97F","image":"1f364.png","sheet_x":7,"sheet_y":37,"short_name":"fried_shrimp","short_names":["fried_shrimp"],"category":"Foods","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"surfer":{"name":"Surfer","unified":"1F3C4","variations":[],"docomo":"E712","au":"EB41","softbank":"E017","google":"FE7DA","image":"1f3c4.png","sheet_x":10,"sheet_y":15,"short_name":"surfer","short_names":["surfer"],"category":"Activity","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3C4-1F3FB":{"unified":"1F3C4-1F3FB","image":"1f3c4-1f3fb.png","sheet_x":10,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FC":{"unified":"1F3C4-1F3FC","image":"1f3c4-1f3fc.png","sheet_x":10,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FD":{"unified":"1F3C4-1F3FD","image":"1f3c4-1f3fd.png","sheet_x":10,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FE":{"unified":"1F3C4-1F3FE","image":"1f3c4-1f3fe.png","sheet_x":10,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C4-1F3FF":{"unified":"1F3C4-1F3FF","image":"1f3c4-1f3ff.png","sheet_x":10,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"baby_chick":{"name":"Baby Chick","unified":"1F424","variations":[],"docomo":"E74F","au":"E4E0","softbank":"E523","google":"FE1BA","image":"1f424.png","sheet_x":13,"sheet_y":0,"short_name":"baby_chick","short_names":["baby_chick"],"category":"Nature","sort_order":24,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"egg":{"name":"Cooking","unified":"1F373","variations":[],"docomo":null,"au":"E4D1","softbank":"E147","google":"FE965","image":"1f373.png","sheet_x":8,"sheet_y":11,"short_name":"egg","short_names":["egg"],"category":"Foods","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bm":{"name":"Regional Indicator Symbol Letters BM","unified":"1F1E7-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f2.png","sheet_x":33,"sheet_y":19,"short_name":"flag-bm","short_names":["flag-bm"],"category":"Flags","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hatching_chick":{"name":"Hatching Chick","unified":"1F423","variations":[],"docomo":"E74F","au":"E5DB","softbank":"E523","google":"FE1DD","image":"1f423.png","sheet_x":12,"sheet_y":40,"short_name":"hatching_chick","short_names":["hatching_chick"],"category":"Nature","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"train":{"name":"Tram Car","unified":"1F68B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68b.png","sheet_x":29,"sheet_y":23,"short_name":"train","short_names":["train"],"category":"Places","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pager":{"name":"Pager","unified":"1F4DF","variations":[],"docomo":"E65A","au":"E59B","softbank":null,"google":"FE522","image":"1f4df.png","sheet_x":21,"sheet_y":34,"short_name":"pager","short_names":["pager"],"category":"Objects","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bath":{"name":"Bath","unified":"1F6C0","variations":[],"docomo":"E6F7","au":"E5D8","softbank":"E13F","google":"FE505","image":"1f6c0.png","sheet_x":31,"sheet_y":14,"short_name":"bath","short_names":["bath"],"category":"Activity","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6C0-1F3FB":{"unified":"1F6C0-1F3FB","image":"1f6c0-1f3fb.png","sheet_x":31,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FC":{"unified":"1F6C0-1F3FC","image":"1f6c0-1f3fc.png","sheet_x":31,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FD":{"unified":"1F6C0-1F3FD","image":"1f6c0-1f3fd.png","sheet_x":31,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FE":{"unified":"1F6C0-1F3FE","image":"1f6c0-1f3fe.png","sheet_x":31,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6C0-1F3FF":{"unified":"1F6C0-1F3FF","image":"1f6c0-1f3ff.png","sheet_x":31,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"money_mouth_face":{"name":"Money-Mouth Face","unified":"1F911","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f911.png","sheet_x":32,"sheet_y":2,"short_name":"money_mouth_face","short_names":["money_mouth_face"],"category":"People","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"orthodox_cross":{"name":"Orthodox Cross","unified":"2626","variations":["2626-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2626.png","sheet_x":1,"sheet_y":19,"short_name":"orthodox_cross","short_names":["orthodox_cross"],"category":"Symbols","sort_order":25,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hatched_chick":{"name":"Front-Facing Baby Chick","unified":"1F425","variations":[],"docomo":"E74F","au":"EB76","softbank":"E523","google":"FE1BB","image":"1f425.png","sheet_x":13,"sheet_y":1,"short_name":"hatched_chick","short_names":["hatched_chick"],"category":"Nature","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"place_of_worship":{"name":"Place of Worship","unified":"1F6D0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6d0.png","sheet_x":31,"sheet_y":30,"short_name":"place_of_worship","short_names":["place_of_worship"],"category":"Symbols","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hamburger":{"name":"Hamburger","unified":"1F354","variations":[],"docomo":"E673","au":"E4D6","softbank":"E120","google":"FE960","image":"1f354.png","sheet_x":7,"sheet_y":21,"short_name":"hamburger","short_names":["hamburger"],"category":"Foods","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bt":{"name":"Regional Indicator Symbol Letters BT","unified":"1F1E7-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f9.png","sheet_x":33,"sheet_y":25,"short_name":"flag-bt","short_names":["flag-bt"],"category":"Flags","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fax":{"name":"Fax Machine","unified":"1F4E0","variations":[],"docomo":"E6D0","au":"E520","softbank":"E00B","google":"FE528","image":"1f4e0.png","sheet_x":21,"sheet_y":35,"short_name":"fax","short_names":["fax"],"category":"Objects","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"nerd_face":{"name":"Nerd Face","unified":"1F913","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f913.png","sheet_x":32,"sheet_y":4,"short_name":"nerd_face","short_names":["nerd_face"],"category":"People","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"monorail":{"name":"Monorail","unified":"1F69D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69d.png","sheet_x":30,"sheet_y":0,"short_name":"monorail","short_names":["monorail"],"category":"Places","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"person_with_ball":{"name":"Person with Ball","unified":"26F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f9.png","sheet_x":2,"sheet_y":38,"short_name":"person_with_ball","short_names":["person_with_ball"],"category":"Activity","sort_order":26,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"26F9-1F3FB":{"unified":"26F9-1F3FB","image":"26f9-1f3fb.png","sheet_x":2,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FC":{"unified":"26F9-1F3FC","image":"26f9-1f3fc.png","sheet_x":2,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FD":{"unified":"26F9-1F3FD","image":"26f9-1f3fd.png","sheet_x":3,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FE":{"unified":"26F9-1F3FE","image":"26f9-1f3fe.png","sheet_x":3,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"26F9-1F3FF":{"unified":"26F9-1F3FF","image":"26f9-1f3ff.png","sheet_x":3,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"weight_lifter":{"name":"Weight Lifter","unified":"1F3CB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3cb.png","sheet_x":10,"sheet_y":32,"short_name":"weight_lifter","short_names":["weight_lifter"],"category":"Activity","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3CB-1F3FB":{"unified":"1F3CB-1F3FB","image":"1f3cb-1f3fb.png","sheet_x":10,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FC":{"unified":"1F3CB-1F3FC","image":"1f3cb-1f3fc.png","sheet_x":10,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FD":{"unified":"1F3CB-1F3FD","image":"1f3cb-1f3fd.png","sheet_x":10,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FE":{"unified":"1F3CB-1F3FE","image":"1f3cb-1f3fe.png","sheet_x":10,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3CB-1F3FF":{"unified":"1F3CB-1F3FF","image":"1f3cb-1f3ff.png","sheet_x":10,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"sunglasses":{"name":"Smiling Face with Sunglasses","unified":"1F60E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f60e.png","sheet_x":26,"sheet_y":29,"short_name":"sunglasses","short_names":["sunglasses"],"category":"People","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["8)"]},"wolf":{"name":"Wolf Face","unified":"1F43A","variations":[],"docomo":"E6A1","au":"E4E1","softbank":"E52A","google":"FE1D0","image":"1f43a.png","sheet_x":13,"sheet_y":22,"short_name":"wolf","short_names":["wolf"],"category":"Nature","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bullettrain_side":{"name":"High-Speed Train","unified":"1F684","variations":[],"docomo":"E65D","au":"E4B0","softbank":"E435","google":"FE7E2","image":"1f684.png","sheet_x":29,"sheet_y":16,"short_name":"bullettrain_side","short_names":["bullettrain_side"],"category":"Places","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ophiuchus":{"name":"Ophiuchus","unified":"26CE","variations":[],"docomo":null,"au":"E49B","softbank":"E24B","google":"FE037","image":"26ce.png","sheet_x":2,"sheet_y":23,"short_name":"ophiuchus","short_names":["ophiuchus"],"category":"Symbols","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bo":{"name":"Regional Indicator Symbol Letters BO","unified":"1F1E7-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f4.png","sheet_x":33,"sheet_y":21,"short_name":"flag-bo","short_names":["flag-bo"],"category":"Flags","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tv":{"name":"Television","unified":"1F4FA","variations":[],"docomo":"E68A","au":"E502","softbank":"E12A","google":"FE81C","image":"1f4fa.png","sheet_x":22,"sheet_y":20,"short_name":"tv","short_names":["tv"],"category":"Objects","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fries":{"name":"French Fries","unified":"1F35F","variations":[],"docomo":null,"au":"EAB1","softbank":"E33B","google":"FE967","image":"1f35f.png","sheet_x":7,"sheet_y":32,"short_name":"fries","short_names":["fries"],"category":"Foods","sort_order":27,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bicyclist":{"name":"Bicyclist","unified":"1F6B4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b4.png","sheet_x":30,"sheet_y":28,"short_name":"bicyclist","short_names":["bicyclist"],"category":"Activity","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B4-1F3FB":{"unified":"1F6B4-1F3FB","image":"1f6b4-1f3fb.png","sheet_x":30,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FC":{"unified":"1F6B4-1F3FC","image":"1f6b4-1f3fc.png","sheet_x":30,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FD":{"unified":"1F6B4-1F3FD","image":"1f6b4-1f3fd.png","sheet_x":30,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FE":{"unified":"1F6B4-1F3FE","image":"1f6b4-1f3fe.png","sheet_x":30,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B4-1F3FF":{"unified":"1F6B4-1F3FF","image":"1f6b4-1f3ff.png","sheet_x":30,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"aries":{"name":"Aries","unified":"2648","variations":["2648-FE0F"],"docomo":"E646","au":"E48F","softbank":"E23F","google":"FE02B","image":"2648.png","sheet_x":1,"sheet_y":26,"short_name":"aries","short_names":["aries"],"category":"Symbols","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hugging_face":{"name":"Hugging Face","unified":"1F917","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f917.png","sheet_x":32,"sheet_y":8,"short_name":"hugging_face","short_names":["hugging_face"],"category":"People","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bq":{"name":"Regional Indicator Symbol Letters BQ","unified":"1F1E7-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f6.png","sheet_x":33,"sheet_y":22,"short_name":"flag-bq","short_names":["flag-bq"],"category":"Flags","sort_order":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bullettrain_front":{"name":"High-Speed Train with Bullet Nose","unified":"1F685","variations":[],"docomo":"E65D","au":"E4B0","softbank":"E01F","google":"FE7E3","image":"1f685.png","sheet_x":29,"sheet_y":17,"short_name":"bullettrain_front","short_names":["bullettrain_front"],"category":"Places","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"radio":{"name":"Radio","unified":"1F4FB","variations":[],"docomo":null,"au":"E5B9","softbank":"E128","google":"FE81F","image":"1f4fb.png","sheet_x":22,"sheet_y":21,"short_name":"radio","short_names":["radio"],"category":"Objects","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hotdog":{"name":"Hot Dog","unified":"1F32D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32d.png","sheet_x":6,"sheet_y":23,"short_name":"hotdog","short_names":["hotdog"],"category":"Foods","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"boar":{"name":"Boar","unified":"1F417","variations":[],"docomo":null,"au":"EB24","softbank":"E52F","google":"FE1D5","image":"1f417.png","sheet_x":12,"sheet_y":28,"short_name":"boar","short_names":["boar"],"category":"Nature","sort_order":28,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"studio_microphone":{"name":"Studio Microphone","unified":"1F399","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f399.png","sheet_x":9,"sheet_y":10,"short_name":"studio_microphone","short_names":["studio_microphone"],"category":"Objects","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pizza":{"name":"Slice of Pizza","unified":"1F355","variations":[],"docomo":null,"au":"EB3B","softbank":null,"google":"FE975","image":"1f355.png","sheet_x":7,"sheet_y":22,"short_name":"pizza","short_names":["pizza"],"category":"Foods","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ba":{"name":"Regional Indicator Symbol Letters BA","unified":"1F1E7-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1e6.png","sheet_x":33,"sheet_y":9,"short_name":"flag-ba","short_names":["flag-ba"],"category":"Flags","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mountain_bicyclist":{"name":"Mountain Bicyclist","unified":"1F6B5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b5.png","sheet_x":30,"sheet_y":34,"short_name":"mountain_bicyclist","short_names":["mountain_bicyclist"],"category":"Activity","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B5-1F3FB":{"unified":"1F6B5-1F3FB","image":"1f6b5-1f3fb.png","sheet_x":30,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FC":{"unified":"1F6B5-1F3FC","image":"1f6b5-1f3fc.png","sheet_x":30,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FD":{"unified":"1F6B5-1F3FD","image":"1f6b5-1f3fd.png","sheet_x":30,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FE":{"unified":"1F6B5-1F3FE","image":"1f6b5-1f3fe.png","sheet_x":30,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B5-1F3FF":{"unified":"1F6B5-1F3FF","image":"1f6b5-1f3ff.png","sheet_x":30,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"smirk":{"name":"Smirking Face","unified":"1F60F","variations":[],"docomo":"E72C","au":"EABF","softbank":"E402","google":"FE343","image":"1f60f.png","sheet_x":26,"sheet_y":30,"short_name":"smirk","short_names":["smirk"],"category":"People","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"light_rail":{"name":"Light Rail","unified":"1F688","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f688.png","sheet_x":29,"sheet_y":20,"short_name":"light_rail","short_names":["light_rail"],"category":"Places","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"horse":{"name":"Horse Face","unified":"1F434","variations":[],"docomo":"E754","au":"E4D8","softbank":"E01A","google":"FE1BE","image":"1f434.png","sheet_x":13,"sheet_y":16,"short_name":"horse","short_names":["horse"],"category":"Nature","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"taurus":{"name":"Taurus","unified":"2649","variations":["2649-FE0F"],"docomo":"E647","au":"E490","softbank":"E240","google":"FE02C","image":"2649.png","sheet_x":1,"sheet_y":27,"short_name":"taurus","short_names":["taurus"],"category":"Symbols","sort_order":29,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gemini":{"name":"Gemini","unified":"264A","variations":["264A-FE0F"],"docomo":"E648","au":"E491","softbank":"E241","google":"FE02D","image":"264a.png","sheet_x":1,"sheet_y":28,"short_name":"gemini","short_names":["gemini"],"category":"Symbols","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"horse_racing":{"name":"Horse Racing","unified":"1F3C7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c7.png","sheet_x":10,"sheet_y":23,"short_name":"horse_racing","short_names":["horse_racing"],"category":"Activity","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"level_slider":{"name":"Level Slider","unified":"1F39A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39a.png","sheet_x":9,"sheet_y":11,"short_name":"level_slider","short_names":["level_slider"],"category":"Objects","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bw":{"name":"Regional Indicator Symbol Letters BW","unified":"1F1E7-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fc.png","sheet_x":33,"sheet_y":27,"short_name":"flag-bw","short_names":["flag-bw"],"category":"Flags","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"unicorn_face":{"name":"Unicorn Face","unified":"1F984","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f984.png","sheet_x":32,"sheet_y":19,"short_name":"unicorn_face","short_names":["unicorn_face"],"category":"Nature","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mountain_railway":{"name":"Mountain Railway","unified":"1F69E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f69e.png","sheet_x":30,"sheet_y":1,"short_name":"mountain_railway","short_names":["mountain_railway"],"category":"Places","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spaghetti":{"name":"Spaghetti","unified":"1F35D","variations":[],"docomo":null,"au":"EAB5","softbank":"E33F","google":"FE96B","image":"1f35d.png","sheet_x":7,"sheet_y":30,"short_name":"spaghetti","short_names":["spaghetti"],"category":"Foods","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_mouth":{"name":"Face Without Mouth","unified":"1F636","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f636.png","sheet_x":27,"sheet_y":28,"short_name":"no_mouth","short_names":["no_mouth"],"category":"People","sort_order":30,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-br":{"name":"Regional Indicator Symbol Letters BR","unified":"1F1E7-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f7.png","sheet_x":33,"sheet_y":23,"short_name":"flag-br","short_names":["flag-br"],"category":"Flags","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man_in_business_suit_levitating":{"name":"Man in Business Suit Levitating","unified":"1F574","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f574.png","sheet_x":24,"sheet_y":38,"short_name":"man_in_business_suit_levitating","short_names":["man_in_business_suit_levitating"],"category":"Activity","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"control_knobs":{"name":"Control Knobs","unified":"1F39B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39b.png","sheet_x":9,"sheet_y":12,"short_name":"control_knobs","short_names":["control_knobs"],"category":"Objects","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bee":{"name":"Honeybee","unified":"1F41D","variations":[],"docomo":null,"au":"EB57","softbank":null,"google":"FE1E1","image":"1f41d.png","sheet_x":12,"sheet_y":34,"short_name":"bee","short_names":["bee","honeybee"],"category":"Nature","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"neutral_face":{"name":"Neutral Face","unified":"1F610","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f610.png","sheet_x":26,"sheet_y":31,"short_name":"neutral_face","short_names":["neutral_face"],"category":"People","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":|",":-|"]},"steam_locomotive":{"name":"Steam Locomotive","unified":"1F682","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f682.png","sheet_x":29,"sheet_y":14,"short_name":"steam_locomotive","short_names":["steam_locomotive"],"category":"Places","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cancer":{"name":"Cancer","unified":"264B","variations":["264B-FE0F"],"docomo":"E649","au":"E492","softbank":"E242","google":"FE02E","image":"264b.png","sheet_x":1,"sheet_y":29,"short_name":"cancer","short_names":["cancer"],"category":"Symbols","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"taco":{"name":"Taco","unified":"1F32E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32e.png","sheet_x":6,"sheet_y":24,"short_name":"taco","short_names":["taco"],"category":"Foods","sort_order":31,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"burrito":{"name":"Burrito","unified":"1F32F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32f.png","sheet_x":6,"sheet_y":25,"short_name":"burrito","short_names":["burrito"],"category":"Foods","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"expressionless":{"name":"Expressionless Face","unified":"1F611","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f611.png","sheet_x":26,"sheet_y":32,"short_name":"expressionless","short_names":["expressionless"],"category":"People","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"trophy":{"name":"Trophy","unified":"1F3C6","variations":[],"docomo":null,"au":"E5D3","softbank":"E131","google":"FE7DB","image":"1f3c6.png","sheet_x":10,"sheet_y":22,"short_name":"trophy","short_names":["trophy"],"category":"Activity","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"train2":{"name":"Train","unified":"1F686","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f686.png","sheet_x":29,"sheet_y":18,"short_name":"train2","short_names":["train2"],"category":"Places","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-io":{"name":"Regional Indicator Symbol Letters IO","unified":"1F1EE-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f4.png","sheet_x":35,"sheet_y":21,"short_name":"flag-io","short_names":["flag-io"],"category":"Flags","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bug":{"name":"Bug","unified":"1F41B","variations":[],"docomo":null,"au":"EB1E","softbank":"E525","google":"FE1CB","image":"1f41b.png","sheet_x":12,"sheet_y":32,"short_name":"bug","short_names":["bug"],"category":"Nature","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stopwatch":{"name":"Stopwatch","unified":"23F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f1.png","sheet_x":0,"sheet_y":26,"short_name":"stopwatch","short_names":["stopwatch"],"category":"Objects","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"leo":{"name":"Leo","unified":"264C","variations":["264C-FE0F"],"docomo":"E64A","au":"E493","softbank":"E243","google":"FE02F","image":"264c.png","sheet_x":1,"sheet_y":30,"short_name":"leo","short_names":["leo"],"category":"Symbols","sort_order":32,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"virgo":{"name":"Virgo","unified":"264D","variations":["264D-FE0F"],"docomo":"E64B","au":"E494","softbank":"E244","google":"FE030","image":"264d.png","sheet_x":1,"sheet_y":31,"short_name":"virgo","short_names":["virgo"],"category":"Symbols","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"running_shirt_with_sash":{"name":"Running Shirt with Sash","unified":"1F3BD","variations":[],"docomo":"E652","au":null,"softbank":null,"google":"FE7D0","image":"1f3bd.png","sheet_x":10,"sheet_y":3,"short_name":"running_shirt_with_sash","short_names":["running_shirt_with_sash"],"category":"Activity","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-vg":{"name":"Regional Indicator Symbol Letters VG","unified":"1F1FB-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ec.png","sheet_x":38,"sheet_y":32,"short_name":"flag-vg","short_names":["flag-vg"],"category":"Flags","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"metro":{"name":"Metro","unified":"1F687","variations":[],"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E0","image":"1f687.png","sheet_x":29,"sheet_y":19,"short_name":"metro","short_names":["metro"],"category":"Places","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"unamused":{"name":"Unamused Face","unified":"1F612","variations":[],"docomo":"E725","au":"EAC9","softbank":"E40E","google":"FE326","image":"1f612.png","sheet_x":26,"sheet_y":33,"short_name":"unamused","short_names":["unamused"],"category":"People","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":("]},"snail":{"name":"Snail","unified":"1F40C","variations":[],"docomo":"E74E","au":"EB7E","softbank":null,"google":"FE1B9","image":"1f40c.png","sheet_x":12,"sheet_y":17,"short_name":"snail","short_names":["snail"],"category":"Nature","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"timer_clock":{"name":"Timer Clock","unified":"23F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f2.png","sheet_x":0,"sheet_y":27,"short_name":"timer_clock","short_names":["timer_clock"],"category":"Objects","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ramen":{"name":"Steaming Bowl","unified":"1F35C","variations":[],"docomo":"E74C","au":"E5B4","softbank":"E340","google":"FE963","image":"1f35c.png","sheet_x":7,"sheet_y":29,"short_name":"ramen","short_names":["ramen"],"category":"Foods","sort_order":33,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"beetle":{"name":"Lady Beetle","unified":"1F41E","variations":[],"docomo":null,"au":"EB58","softbank":null,"google":"FE1E2","image":"1f41e.png","sheet_x":12,"sheet_y":35,"short_name":"beetle","short_names":["beetle"],"category":"Nature","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"face_with_rolling_eyes":{"name":"Face with Rolling Eyes","unified":"1F644","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f644.png","sheet_x":28,"sheet_y":1,"short_name":"face_with_rolling_eyes","short_names":["face_with_rolling_eyes"],"category":"People","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"libra":{"name":"Libra","unified":"264E","variations":["264E-FE0F"],"docomo":"E64C","au":"E495","softbank":"E245","google":"FE031","image":"264e.png","sheet_x":1,"sheet_y":32,"short_name":"libra","short_names":["libra"],"category":"Symbols","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stew":{"name":"Pot of Food","unified":"1F372","variations":[],"docomo":null,"au":"EABE","softbank":"E34D","google":"FE970","image":"1f372.png","sheet_x":8,"sheet_y":10,"short_name":"stew","short_names":["stew"],"category":"Foods","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sports_medal":{"name":"Sports Medal","unified":"1F3C5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3c5.png","sheet_x":10,"sheet_y":21,"short_name":"sports_medal","short_names":["sports_medal"],"category":"Activity","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bn":{"name":"Regional Indicator Symbol Letters BN","unified":"1F1E7-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f3.png","sheet_x":33,"sheet_y":20,"short_name":"flag-bn","short_names":["flag-bn"],"category":"Flags","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"alarm_clock":{"name":"Alarm Clock","unified":"23F0","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02D","google":"FE02A","image":"23f0.png","sheet_x":0,"sheet_y":25,"short_name":"alarm_clock","short_names":["alarm_clock"],"category":"Objects","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tram":{"name":"Tram","unified":"1F68A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f68a.png","sheet_x":29,"sheet_y":22,"short_name":"tram","short_names":["tram"],"category":"Places","sort_order":34,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fish_cake":{"name":"Fish Cake with Swirl Design","unified":"1F365","variations":[],"docomo":"E643","au":"E4ED","softbank":null,"google":"FE973","image":"1f365.png","sheet_x":7,"sheet_y":38,"short_name":"fish_cake","short_names":["fish_cake"],"category":"Foods","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"thinking_face":{"name":"Thinking Face","unified":"1F914","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f914.png","sheet_x":32,"sheet_y":5,"short_name":"thinking_face","short_names":["thinking_face"],"category":"People","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"medal":{"name":"Military Medal","unified":"1F396","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f396.png","sheet_x":9,"sheet_y":8,"short_name":"medal","short_names":["medal"],"category":"Activity","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mantelpiece_clock":{"name":"Mantelpiece Clock","unified":"1F570","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f570.png","sheet_x":24,"sheet_y":36,"short_name":"mantelpiece_clock","short_names":["mantelpiece_clock"],"category":"Objects","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"station":{"name":"Station","unified":"1F689","variations":[],"docomo":null,"au":"EB6D","softbank":"E039","google":"FE7EC","image":"1f689.png","sheet_x":29,"sheet_y":21,"short_name":"station","short_names":["station"],"category":"Places","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bg":{"name":"Regional Indicator Symbol Letters BG","unified":"1F1E7-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ec.png","sheet_x":33,"sheet_y":14,"short_name":"flag-bg","short_names":["flag-bg"],"category":"Flags","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ant":{"name":"Ant","unified":"1F41C","variations":[],"docomo":null,"au":"E4DD","softbank":null,"google":"FE1DA","image":"1f41c.png","sheet_x":12,"sheet_y":33,"short_name":"ant","short_names":["ant"],"category":"Nature","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scorpius":{"name":"Scorpius","unified":"264F","variations":["264F-FE0F"],"docomo":"E64D","au":"E496","softbank":"E246","google":"FE032","image":"264f.png","sheet_x":1,"sheet_y":33,"short_name":"scorpius","short_names":["scorpius"],"category":"Symbols","sort_order":35,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sushi":{"name":"Sushi","unified":"1F363","variations":[],"docomo":null,"au":"EAB8","softbank":"E344","google":"FE96E","image":"1f363.png","sheet_x":7,"sheet_y":36,"short_name":"sushi","short_names":["sushi"],"category":"Foods","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flushed":{"name":"Flushed Face","unified":"1F633","variations":[],"docomo":"E72A","au":"EAC8","softbank":"E40D","google":"FE32F","image":"1f633.png","sheet_x":27,"sheet_y":25,"short_name":"flushed","short_names":["flushed"],"category":"People","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spider":{"name":"Spider","unified":"1F577","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f577.png","sheet_x":25,"sheet_y":5,"short_name":"spider","short_names":["spider"],"category":"Nature","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"reminder_ribbon":{"name":"Reminder Ribbon","unified":"1F397","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f397.png","sheet_x":9,"sheet_y":9,"short_name":"reminder_ribbon","short_names":["reminder_ribbon"],"category":"Activity","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"helicopter":{"name":"Helicopter","unified":"1F681","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f681.png","sheet_x":29,"sheet_y":13,"short_name":"helicopter","short_names":["helicopter"],"category":"Places","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sagittarius":{"name":"Sagittarius","unified":"2650","variations":["2650-FE0F"],"docomo":"E64E","au":"E497","softbank":"E247","google":"FE033","image":"2650.png","sheet_x":1,"sheet_y":34,"short_name":"sagittarius","short_names":["sagittarius"],"category":"Symbols","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bf":{"name":"Regional Indicator Symbol Letters BF","unified":"1F1E7-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1eb.png","sheet_x":33,"sheet_y":13,"short_name":"flag-bf","short_names":["flag-bf"],"category":"Flags","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hourglass_flowing_sand":{"name":"Hourglass with Flowing Sand","unified":"23F3","variations":[],"docomo":"E71C","au":"E47C","softbank":null,"google":"FE01B","image":"23f3.png","sheet_x":0,"sheet_y":28,"short_name":"hourglass_flowing_sand","short_names":["hourglass_flowing_sand"],"category":"Objects","sort_order":36,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"small_airplane":{"name":"Small Airplane","unified":"1F6E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e9.png","sheet_x":31,"sheet_y":37,"short_name":"small_airplane","short_names":["small_airplane"],"category":"Places","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rosette":{"name":"Rosette","unified":"1F3F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f5.png","sheet_x":11,"sheet_y":36,"short_name":"rosette","short_names":["rosette"],"category":"Activity","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bento":{"name":"Bento Box","unified":"1F371","variations":[],"docomo":null,"au":"EABD","softbank":"E34C","google":"FE96F","image":"1f371.png","sheet_x":8,"sheet_y":9,"short_name":"bento","short_names":["bento"],"category":"Foods","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"capricorn":{"name":"Capricorn","unified":"2651","variations":["2651-FE0F"],"docomo":"E64F","au":"E498","softbank":"E248","google":"FE034","image":"2651.png","sheet_x":1,"sheet_y":35,"short_name":"capricorn","short_names":["capricorn"],"category":"Symbols","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bi":{"name":"Regional Indicator Symbol Letters BI","unified":"1F1E7-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1ee.png","sheet_x":33,"sheet_y":16,"short_name":"flag-bi","short_names":["flag-bi"],"category":"Flags","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"disappointed":{"name":"Disappointed Face","unified":"1F61E","variations":[],"docomo":"E6F2","au":"EAC0","softbank":"E058","google":"FE323","image":"1f61e.png","sheet_x":27,"sheet_y":4,"short_name":"disappointed","short_names":["disappointed"],"category":"People","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["):",":(",":-("]},"scorpion":{"name":"Scorpion","unified":"1F982","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f982.png","sheet_x":32,"sheet_y":17,"short_name":"scorpion","short_names":["scorpion"],"category":"Nature","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hourglass":{"name":"Hourglass","unified":"231B","variations":["231B-FE0F"],"docomo":"E71C","au":"E57B","softbank":null,"google":"FE01C","image":"231b.png","sheet_x":0,"sheet_y":15,"short_name":"hourglass","short_names":["hourglass"],"category":"Objects","sort_order":37,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crab":{"name":"Crab","unified":"1F980","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f980.png","sheet_x":32,"sheet_y":15,"short_name":"crab","short_names":["crab"],"category":"Nature","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"satellite_antenna":{"name":"Satellite Antenna","unified":"1F4E1","variations":[],"docomo":null,"au":"E4A8","softbank":"E14B","google":"FE531","image":"1f4e1.png","sheet_x":21,"sheet_y":36,"short_name":"satellite_antenna","short_names":["satellite_antenna"],"category":"Objects","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"airplane":{"name":"Airplane","unified":"2708","variations":["2708-FE0F"],"docomo":"E662","au":"E4B3","softbank":"E01D","google":"FE7E9","image":"2708.png","sheet_x":3,"sheet_y":7,"short_name":"airplane","short_names":["airplane"],"category":"Places","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"aquarius":{"name":"Aquarius","unified":"2652","variations":["2652-FE0F"],"docomo":"E650","au":"E499","softbank":"E249","google":"FE035","image":"2652.png","sheet_x":1,"sheet_y":36,"short_name":"aquarius","short_names":["aquarius"],"category":"Symbols","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ticket":{"name":"Ticket","unified":"1F3AB","variations":[],"docomo":"E67E","au":"E49E","softbank":"E125","google":"FE807","image":"1f3ab.png","sheet_x":9,"sheet_y":26,"short_name":"ticket","short_names":["ticket"],"category":"Activity","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"worried":{"name":"Worried Face","unified":"1F61F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f61f.png","sheet_x":27,"sheet_y":5,"short_name":"worried","short_names":["worried"],"category":"People","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cv":{"name":"Regional Indicator Symbol Letters CV","unified":"1F1E8-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fb.png","sheet_x":34,"sheet_y":4,"short_name":"flag-cv","short_names":["flag-cv"],"category":"Flags","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"curry":{"name":"Curry and Rice","unified":"1F35B","variations":[],"docomo":null,"au":"EAB6","softbank":"E341","google":"FE96C","image":"1f35b.png","sheet_x":7,"sheet_y":28,"short_name":"curry","short_names":["curry"],"category":"Foods","sort_order":38,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pisces":{"name":"Pisces","unified":"2653","variations":["2653-FE0F"],"docomo":"E651","au":"E49A","softbank":"E24A","google":"FE036","image":"2653.png","sheet_x":1,"sheet_y":37,"short_name":"pisces","short_names":["pisces"],"category":"Symbols","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"airplane_departure":{"name":"Airplane Departure","unified":"1F6EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6eb.png","sheet_x":31,"sheet_y":38,"short_name":"airplane_departure","short_names":["airplane_departure"],"category":"Places","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kh":{"name":"Regional Indicator Symbol Letters KH","unified":"1F1F0-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ed.png","sheet_x":35,"sheet_y":32,"short_name":"flag-kh","short_names":["flag-kh"],"category":"Flags","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"battery":{"name":"Battery","unified":"1F50B","variations":[],"docomo":null,"au":"E584","softbank":null,"google":"FE4FC","image":"1f50b.png","sheet_x":22,"sheet_y":36,"short_name":"battery","short_names":["battery"],"category":"Objects","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snake":{"name":"Snake","unified":"1F40D","variations":[],"docomo":null,"au":"EB22","softbank":"E52D","google":"FE1D3","image":"1f40d.png","sheet_x":12,"sheet_y":18,"short_name":"snake","short_names":["snake"],"category":"Nature","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"angry":{"name":"Angry Face","unified":"1F620","variations":[],"docomo":"E6F1","au":"E472","softbank":"E059","google":"FE320","image":"1f620.png","sheet_x":27,"sheet_y":6,"short_name":"angry","short_names":["angry"],"category":"People","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[">:(",">:-("]},"rice_ball":{"name":"Rice Ball","unified":"1F359","variations":[],"docomo":"E749","au":"E4D5","softbank":"E342","google":"FE961","image":"1f359.png","sheet_x":7,"sheet_y":26,"short_name":"rice_ball","short_names":["rice_ball"],"category":"Foods","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"admission_tickets":{"name":"Admission Tickets","unified":"1F39F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f39f.png","sheet_x":9,"sheet_y":14,"short_name":"admission_tickets","short_names":["admission_tickets"],"category":"Activity","sort_order":39,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"performing_arts":{"name":"Performing Arts","unified":"1F3AD","variations":[],"docomo":null,"au":"E59D","softbank":"E503","google":"FE809","image":"1f3ad.png","sheet_x":9,"sheet_y":28,"short_name":"performing_arts","short_names":["performing_arts"],"category":"Activity","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rage":{"name":"Pouting Face","unified":"1F621","variations":[],"docomo":"E724","au":"EB5D","softbank":"E416","google":"FE33D","image":"1f621.png","sheet_x":27,"sheet_y":7,"short_name":"rage","short_names":["rage"],"category":"People","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rice":{"name":"Cooked Rice","unified":"1F35A","variations":[],"docomo":"E74C","au":"EAB4","softbank":"E33E","google":"FE96A","image":"1f35a.png","sheet_x":7,"sheet_y":27,"short_name":"rice","short_names":["rice"],"category":"Foods","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"airplane_arriving":{"name":"Airplane Arriving","unified":"1F6EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ec.png","sheet_x":31,"sheet_y":39,"short_name":"airplane_arriving","short_names":["airplane_arriving"],"category":"Places","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"id":{"name":"Squared Id","unified":"1F194","variations":[],"docomo":"E6D8","au":"EA88","softbank":"E229","google":"FEB81","image":"1f194.png","sheet_x":4,"sheet_y":40,"short_name":"id","short_names":["id"],"category":"Symbols","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cm":{"name":"Regional Indicator Symbol Letters CM","unified":"1F1E8-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f2.png","sheet_x":33,"sheet_y":39,"short_name":"flag-cm","short_names":["flag-cm"],"category":"Flags","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"turtle":{"name":"Turtle","unified":"1F422","variations":[],"docomo":null,"au":"E5D4","softbank":null,"google":"FE1DC","image":"1f422.png","sheet_x":12,"sheet_y":39,"short_name":"turtle","short_names":["turtle"],"category":"Nature","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"electric_plug":{"name":"Electric Plug","unified":"1F50C","variations":[],"docomo":null,"au":"E589","softbank":null,"google":"FE4FE","image":"1f50c.png","sheet_x":22,"sheet_y":37,"short_name":"electric_plug","short_names":["electric_plug"],"category":"Objects","sort_order":40,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tropical_fish":{"name":"Tropical Fish","unified":"1F420","variations":[],"docomo":"E751","au":"EB1D","softbank":"E522","google":"FE1C9","image":"1f420.png","sheet_x":12,"sheet_y":37,"short_name":"tropical_fish","short_names":["tropical_fish"],"category":"Nature","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bulb":{"name":"Electric Light Bulb","unified":"1F4A1","variations":[],"docomo":"E6FB","au":"E476","softbank":"E10F","google":"FEB56","image":"1f4a1.png","sheet_x":20,"sheet_y":8,"short_name":"bulb","short_names":["bulb"],"category":"Objects","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pensive":{"name":"Pensive Face","unified":"1F614","variations":[],"docomo":"E720","au":"EAC0","softbank":"E403","google":"FE340","image":"1f614.png","sheet_x":26,"sheet_y":35,"short_name":"pensive","short_names":["pensive"],"category":"People","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rice_cracker":{"name":"Rice Cracker","unified":"1F358","variations":[],"docomo":null,"au":"EAB3","softbank":"E33D","google":"FE969","image":"1f358.png","sheet_x":7,"sheet_y":25,"short_name":"rice_cracker","short_names":["rice_cracker"],"category":"Foods","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"art":{"name":"Artist Palette","unified":"1F3A8","variations":[],"docomo":"E67B","au":"E59C","softbank":"E502","google":"FE804","image":"1f3a8.png","sheet_x":9,"sheet_y":23,"short_name":"art","short_names":["art"],"category":"Activity","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"boat":{"name":"Sailboat","unified":"26F5","variations":["26F5-FE0F"],"docomo":"E6A3","au":"E4B4","softbank":"E01C","google":"FE7EA","image":"26f5.png","sheet_x":2,"sheet_y":35,"short_name":"boat","short_names":["boat","sailboat"],"category":"Places","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"atom_symbol":{"name":"Atom Symbol","unified":"269B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"269b.png","sheet_x":2,"sheet_y":10,"short_name":"atom_symbol","short_names":["atom_symbol"],"category":"Symbols","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ca":{"name":"Regional Indicator Symbol Letters CA","unified":"1F1E8-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e6.png","sheet_x":33,"sheet_y":30,"short_name":"flag-ca","short_names":["flag-ca"],"category":"Flags","sort_order":41,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oden":{"name":"Oden","unified":"1F362","variations":[],"docomo":null,"au":"EAB7","softbank":"E343","google":"FE96D","image":"1f362.png","sheet_x":7,"sheet_y":35,"short_name":"oden","short_names":["oden"],"category":"Foods","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flashlight":{"name":"Electric Torch","unified":"1F526","variations":[],"docomo":"E6FB","au":"E583","softbank":null,"google":"FE4FB","image":"1f526.png","sheet_x":23,"sheet_y":22,"short_name":"flashlight","short_names":["flashlight"],"category":"Objects","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"confused":{"name":"Confused Face","unified":"1F615","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f615.png","sheet_x":26,"sheet_y":36,"short_name":"confused","short_names":["confused"],"category":"People","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":\\",":-\\",":/",":-/"]},"u7a7a":{"name":"Squared Cjk Unified Ideograph-7a7a","unified":"1F233","variations":[],"docomo":"E739","au":"EA8A","softbank":"E22B","google":"FEB2F","image":"1f233.png","sheet_x":5,"sheet_y":11,"short_name":"u7a7a","short_names":["u7a7a"],"category":"Symbols","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"circus_tent":{"name":"Circus Tent","unified":"1F3AA","variations":[],"docomo":"E67D","au":"E59E","softbank":null,"google":"FE806","image":"1f3aa.png","sheet_x":9,"sheet_y":25,"short_name":"circus_tent","short_names":["circus_tent"],"category":"Activity","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"motor_boat":{"name":"Motor Boat","unified":"1F6E5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e5.png","sheet_x":31,"sheet_y":36,"short_name":"motor_boat","short_names":["motor_boat"],"category":"Places","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ic":{"name":"Regional Indicator Symbol Letters IC","unified":"1F1EE-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e8.png","sheet_x":35,"sheet_y":15,"short_name":"flag-ic","short_names":["flag-ic"],"category":"Flags","sort_order":42,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fish":{"name":"Fish","unified":"1F41F","variations":[],"docomo":"E751","au":"E49A","softbank":"E019","google":"FE1BD","image":"1f41f.png","sheet_x":12,"sheet_y":36,"short_name":"fish","short_names":["fish"],"category":"Nature","sort_order":42,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"microphone":{"name":"Microphone","unified":"1F3A4","variations":[],"docomo":"E676","au":"E503","softbank":"E03C","google":"FE800","image":"1f3a4.png","sheet_x":9,"sheet_y":19,"short_name":"microphone","short_names":["microphone"],"category":"Activity","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ky":{"name":"Regional Indicator Symbol Letters KY","unified":"1F1F0-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fe.png","sheet_x":35,"sheet_y":39,"short_name":"flag-ky","short_names":["flag-ky"],"category":"Flags","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"candle":{"name":"Candle","unified":"1F56F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f56f.png","sheet_x":24,"sheet_y":35,"short_name":"candle","short_names":["candle"],"category":"Objects","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dango":{"name":"Dango","unified":"1F361","variations":[],"docomo":null,"au":"EAB2","softbank":"E33C","google":"FE968","image":"1f361.png","sheet_x":7,"sheet_y":34,"short_name":"dango","short_names":["dango"],"category":"Foods","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"slightly_frowning_face":{"name":"Slightly Frowning Face","unified":"1F641","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f641.png","sheet_x":27,"sheet_y":39,"short_name":"slightly_frowning_face","short_names":["slightly_frowning_face"],"category":"People","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"blowfish":{"name":"Blowfish","unified":"1F421","variations":[],"docomo":"E751","au":"E4D3","softbank":"E019","google":"FE1D9","image":"1f421.png","sheet_x":12,"sheet_y":38,"short_name":"blowfish","short_names":["blowfish"],"category":"Nature","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u5272":{"name":"Squared Cjk Unified Ideograph-5272","unified":"1F239","variations":[],"docomo":null,"au":"EA86","softbank":"E227","google":"FEB3E","image":"1f239.png","sheet_x":5,"sheet_y":17,"short_name":"u5272","short_names":["u5272"],"category":"Symbols","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"speedboat":{"name":"Speedboat","unified":"1F6A4","variations":[],"docomo":"E6A3","au":"E4B4","softbank":"E135","google":"FE7EE","image":"1f6a4.png","sheet_x":30,"sheet_y":12,"short_name":"speedboat","short_names":["speedboat"],"category":"Places","sort_order":43,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_frowning_face":{"name":"White Frowning Face","unified":"2639","variations":["2639-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2639.png","sheet_x":1,"sheet_y":24,"short_name":"white_frowning_face","short_names":["white_frowning_face"],"category":"People","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dolphin":{"name":"Dolphin","unified":"1F42C","variations":[],"docomo":null,"au":"EB1B","softbank":"E520","google":"FE1C7","image":"1f42c.png","sheet_x":13,"sheet_y":8,"short_name":"dolphin","short_names":["dolphin","flipper"],"category":"Nature","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"radioactive_sign":{"name":"Radioactive Sign","unified":"2622","variations":["2622-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2622.png","sheet_x":1,"sheet_y":17,"short_name":"radioactive_sign","short_names":["radioactive_sign"],"category":"Symbols","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"headphones":{"name":"Headphone","unified":"1F3A7","variations":[],"docomo":"E67A","au":"E508","softbank":"E30A","google":"FE803","image":"1f3a7.png","sheet_x":9,"sheet_y":22,"short_name":"headphones","short_names":["headphones"],"category":"Activity","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cf":{"name":"Regional Indicator Symbol Letters CF","unified":"1F1E8-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1eb.png","sheet_x":33,"sheet_y":33,"short_name":"flag-cf","short_names":["flag-cf"],"category":"Flags","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ferry":{"name":"Ferry","unified":"26F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f4.png","sheet_x":2,"sheet_y":34,"short_name":"ferry","short_names":["ferry"],"category":"Places","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wastebasket":{"name":"Wastebasket","unified":"1F5D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d1.png","sheet_x":25,"sheet_y":39,"short_name":"wastebasket","short_names":["wastebasket"],"category":"Objects","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shaved_ice":{"name":"Shaved Ice","unified":"1F367","variations":[],"docomo":null,"au":"EAEA","softbank":"E43F","google":"FE971","image":"1f367.png","sheet_x":7,"sheet_y":40,"short_name":"shaved_ice","short_names":["shaved_ice"],"category":"Foods","sort_order":44,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"whale":{"name":"Spouting Whale","unified":"1F433","variations":[],"docomo":null,"au":"E470","softbank":"E054","google":"FE1C3","image":"1f433.png","sheet_x":13,"sheet_y":15,"short_name":"whale","short_names":["whale"],"category":"Nature","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"oil_drum":{"name":"Oil Drum","unified":"1F6E2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e2.png","sheet_x":31,"sheet_y":33,"short_name":"oil_drum","short_names":["oil_drum"],"category":"Objects","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ice_cream":{"name":"Ice Cream","unified":"1F368","variations":[],"docomo":null,"au":"EB4A","softbank":null,"google":"FE977","image":"1f368.png","sheet_x":8,"sheet_y":0,"short_name":"ice_cream","short_names":["ice_cream"],"category":"Foods","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"passenger_ship":{"name":"Passenger Ship","unified":"1F6F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f3.png","sheet_x":32,"sheet_y":0,"short_name":"passenger_ship","short_names":["passenger_ship"],"category":"Places","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"biohazard_sign":{"name":"Biohazard Sign","unified":"2623","variations":["2623-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2623.png","sheet_x":1,"sheet_y":18,"short_name":"biohazard_sign","short_names":["biohazard_sign"],"category":"Symbols","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"musical_score":{"name":"Musical Score","unified":"1F3BC","variations":[],"docomo":"E6FF","au":"EACC","softbank":"E326","google":"FE81A","image":"1f3bc.png","sheet_x":10,"sheet_y":2,"short_name":"musical_score","short_names":["musical_score"],"category":"Activity","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"persevere":{"name":"Persevering Face","unified":"1F623","variations":[],"docomo":"E72B","au":"EAC2","softbank":"E406","google":"FE33C","image":"1f623.png","sheet_x":27,"sheet_y":9,"short_name":"persevere","short_names":["persevere"],"category":"People","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-td":{"name":"Regional Indicator Symbol Letters TD","unified":"1F1F9-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e9.png","sheet_x":38,"sheet_y":8,"short_name":"flag-td","short_names":["flag-td"],"category":"Flags","sort_order":45,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"icecream":{"name":"Soft Ice Cream","unified":"1F366","variations":[],"docomo":null,"au":"EAB0","softbank":"E33A","google":"FE966","image":"1f366.png","sheet_x":7,"sheet_y":39,"short_name":"icecream","short_names":["icecream"],"category":"Foods","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"whale2":{"name":"Whale","unified":"1F40B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40b.png","sheet_x":12,"sheet_y":16,"short_name":"whale2","short_names":["whale2"],"category":"Nature","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"musical_keyboard":{"name":"Musical Keyboard","unified":"1F3B9","variations":[],"docomo":null,"au":"EB40","softbank":null,"google":"FE817","image":"1f3b9.png","sheet_x":9,"sheet_y":40,"short_name":"musical_keyboard","short_names":["musical_keyboard"],"category":"Activity","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"money_with_wings":{"name":"Money with Wings","unified":"1F4B8","variations":[],"docomo":null,"au":"EB5B","softbank":null,"google":"FE4E4","image":"1f4b8.png","sheet_x":20,"sheet_y":36,"short_name":"money_with_wings","short_names":["money_with_wings"],"category":"Objects","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"confounded":{"name":"Confounded Face","unified":"1F616","variations":[],"docomo":"E6F3","au":"EAC3","softbank":"E407","google":"FE33F","image":"1f616.png","sheet_x":26,"sheet_y":37,"short_name":"confounded","short_names":["confounded"],"category":"People","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rocket":{"name":"Rocket","unified":"1F680","variations":[],"docomo":null,"au":"E5C8","softbank":"E10D","google":"FE7ED","image":"1f680.png","sheet_x":29,"sheet_y":12,"short_name":"rocket","short_names":["rocket"],"category":"Places","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mobile_phone_off":{"name":"Mobile Phone off","unified":"1F4F4","variations":[],"docomo":null,"au":"EA91","softbank":"E251","google":"FE83A","image":"1f4f4.png","sheet_x":22,"sheet_y":14,"short_name":"mobile_phone_off","short_names":["mobile_phone_off"],"category":"Symbols","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cl":{"name":"Regional Indicator Symbol Letters CL","unified":"1F1E8-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f1.png","sheet_x":33,"sheet_y":38,"short_name":"flag-cl","short_names":["flag-cl"],"category":"Flags","sort_order":46,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"satellite":{"name":"Satellite","unified":"1F6F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6f0.png","sheet_x":31,"sheet_y":40,"short_name":"satellite","short_names":["satellite"],"category":"Places","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cn":{"name":"Regional Indicator Symbol Letters CN","unified":"1F1E8-1F1F3","variations":[],"docomo":null,"au":"EB11","softbank":"E513","google":"FE4ED","image":"1f1e8-1f1f3.png","sheet_x":33,"sheet_y":40,"short_name":"flag-cn","short_names":["flag-cn","cn"],"category":"Flags","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crocodile":{"name":"Crocodile","unified":"1F40A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40a.png","sheet_x":12,"sheet_y":15,"short_name":"crocodile","short_names":["crocodile"],"category":"Nature","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cake":{"name":"Shortcake","unified":"1F370","variations":[],"docomo":"E74A","au":"E4D0","softbank":"E046","google":"FE962","image":"1f370.png","sheet_x":8,"sheet_y":8,"short_name":"cake","short_names":["cake"],"category":"Foods","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dollar":{"name":"Banknote with Dollar Sign","unified":"1F4B5","variations":[],"docomo":"E715","au":"E585","softbank":"E12F","google":"FE4E3","image":"1f4b5.png","sheet_x":20,"sheet_y":33,"short_name":"dollar","short_names":["dollar"],"category":"Objects","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"vibration_mode":{"name":"Vibration Mode","unified":"1F4F3","variations":[],"docomo":null,"au":"EA90","softbank":"E250","google":"FE839","image":"1f4f3.png","sheet_x":22,"sheet_y":13,"short_name":"vibration_mode","short_names":["vibration_mode"],"category":"Symbols","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tired_face":{"name":"Tired Face","unified":"1F62B","variations":[],"docomo":"E72B","au":"E474","softbank":"E406","google":"FE346","image":"1f62b.png","sheet_x":27,"sheet_y":17,"short_name":"tired_face","short_names":["tired_face"],"category":"People","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"saxophone":{"name":"Saxophone","unified":"1F3B7","variations":[],"docomo":null,"au":null,"softbank":"E040","google":"FE815","image":"1f3b7.png","sheet_x":9,"sheet_y":38,"short_name":"saxophone","short_names":["saxophone"],"category":"Activity","sort_order":47,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cx":{"name":"Regional Indicator Symbol Letters CX","unified":"1F1E8-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fd.png","sheet_x":34,"sheet_y":6,"short_name":"flag-cx","short_names":["flag-cx"],"category":"Flags","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"seat":{"name":"Seat","unified":"1F4BA","variations":[],"docomo":"E6B2","au":null,"softbank":"E11F","google":"FE537","image":"1f4ba.png","sheet_x":20,"sheet_y":38,"short_name":"seat","short_names":["seat"],"category":"Places","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"trumpet":{"name":"Trumpet","unified":"1F3BA","variations":[],"docomo":null,"au":"EADC","softbank":"E042","google":"FE818","image":"1f3ba.png","sheet_x":10,"sheet_y":0,"short_name":"trumpet","short_names":["trumpet"],"category":"Activity","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"yen":{"name":"Banknote with Yen Sign","unified":"1F4B4","variations":[],"docomo":"E6D6","au":"E57D","softbank":null,"google":"FE4E2","image":"1f4b4.png","sheet_x":20,"sheet_y":32,"short_name":"yen","short_names":["yen"],"category":"Objects","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"leopard":{"name":"Leopard","unified":"1F406","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f406.png","sheet_x":12,"sheet_y":11,"short_name":"leopard","short_names":["leopard"],"category":"Nature","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u6709":{"name":"Squared Cjk Unified Ideograph-6709","unified":"1F236","variations":[],"docomo":null,"au":null,"softbank":"E215","google":"FEB39","image":"1f236.png","sheet_x":5,"sheet_y":14,"short_name":"u6709","short_names":["u6709"],"category":"Symbols","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"birthday":{"name":"Birthday Cake","unified":"1F382","variations":[],"docomo":"E686","au":"E5A0","softbank":"E34B","google":"FE511","image":"1f382.png","sheet_x":8,"sheet_y":26,"short_name":"birthday","short_names":["birthday"],"category":"Foods","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"weary":{"name":"Weary Face","unified":"1F629","variations":[],"docomo":"E6F3","au":"EB67","softbank":"E403","google":"FE321","image":"1f629.png","sheet_x":27,"sheet_y":15,"short_name":"weary","short_names":["weary"],"category":"People","sort_order":48,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tiger2":{"name":"Tiger","unified":"1F405","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f405.png","sheet_x":12,"sheet_y":10,"short_name":"tiger2","short_names":["tiger2"],"category":"Nature","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cc":{"name":"Regional Indicator Symbol Letters CC","unified":"1F1E8-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e8.png","sheet_x":33,"sheet_y":31,"short_name":"flag-cc","short_names":["flag-cc"],"category":"Flags","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u7121":{"name":"Squared Cjk Unified Ideograph-7121","unified":"1F21A","variations":["1F21A-FE0F"],"docomo":null,"au":null,"softbank":"E216","google":"FEB3A","image":"1f21a.png","sheet_x":5,"sheet_y":8,"short_name":"u7121","short_names":["u7121"],"category":"Symbols","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"euro":{"name":"Banknote with Euro Sign","unified":"1F4B6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b6.png","sheet_x":20,"sheet_y":34,"short_name":"euro","short_names":["euro"],"category":"Objects","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"custard":{"name":"Custard","unified":"1F36E","variations":[],"docomo":null,"au":"EB56","softbank":null,"google":"FE97D","image":"1f36e.png","sheet_x":8,"sheet_y":6,"short_name":"custard","short_names":["custard"],"category":"Foods","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"triumph":{"name":"Face with Look of Triumph","unified":"1F624","variations":[],"docomo":"E753","au":"EAC1","softbank":"E404","google":"FE328","image":"1f624.png","sheet_x":27,"sheet_y":10,"short_name":"triumph","short_names":["triumph"],"category":"People","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"anchor":{"name":"Anchor","unified":"2693","variations":["2693-FE0F"],"docomo":"E661","au":"E4A9","softbank":"E202","google":"FE4C1","image":"2693.png","sheet_x":2,"sheet_y":5,"short_name":"anchor","short_names":["anchor"],"category":"Places","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"guitar":{"name":"Guitar","unified":"1F3B8","variations":[],"docomo":null,"au":"E506","softbank":"E041","google":"FE816","image":"1f3b8.png","sheet_x":9,"sheet_y":39,"short_name":"guitar","short_names":["guitar"],"category":"Activity","sort_order":49,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"violin":{"name":"Violin","unified":"1F3BB","variations":[],"docomo":null,"au":"E507","softbank":null,"google":"FE819","image":"1f3bb.png","sheet_x":10,"sheet_y":1,"short_name":"violin","short_names":["violin"],"category":"Activity","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"construction":{"name":"Construction Sign","unified":"1F6A7","variations":[],"docomo":null,"au":"E5D7","softbank":"E137","google":"FE7F8","image":"1f6a7.png","sheet_x":30,"sheet_y":15,"short_name":"construction","short_names":["construction"],"category":"Places","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"water_buffalo":{"name":"Water Buffalo","unified":"1F403","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f403.png","sheet_x":12,"sheet_y":8,"short_name":"water_buffalo","short_names":["water_buffalo"],"category":"Nature","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"candy":{"name":"Candy","unified":"1F36C","variations":[],"docomo":null,"au":"EB4E","softbank":null,"google":"FE97B","image":"1f36c.png","sheet_x":8,"sheet_y":4,"short_name":"candy","short_names":["candy"],"category":"Foods","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pound":{"name":"Banknote with Pound Sign","unified":"1F4B7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4b7.png","sheet_x":20,"sheet_y":35,"short_name":"pound","short_names":["pound"],"category":"Objects","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-co":{"name":"Regional Indicator Symbol Letters CO","unified":"1F1E8-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f4.png","sheet_x":34,"sheet_y":0,"short_name":"flag-co","short_names":["flag-co"],"category":"Flags","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"open_mouth":{"name":"Face with Open Mouth","unified":"1F62E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62e.png","sheet_x":27,"sheet_y":20,"short_name":"open_mouth","short_names":["open_mouth"],"category":"People","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":o",":-o",":O",":-O"]},"u7533":{"name":"Squared Cjk Unified Ideograph-7533","unified":"1F238","variations":[],"docomo":null,"au":null,"softbank":"E218","google":"FEB3C","image":"1f238.png","sheet_x":5,"sheet_y":16,"short_name":"u7533","short_names":["u7533"],"category":"Symbols","sort_order":50,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ox":{"name":"Ox","unified":"1F402","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f402.png","sheet_x":12,"sheet_y":7,"short_name":"ox","short_names":["ox"],"category":"Nature","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scream":{"name":"Face Screaming in Fear","unified":"1F631","variations":[],"docomo":"E757","au":"E5C5","softbank":"E107","google":"FE341","image":"1f631.png","sheet_x":27,"sheet_y":23,"short_name":"scream","short_names":["scream"],"category":"People","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-km":{"name":"Regional Indicator Symbol Letters KM","unified":"1F1F0-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f2.png","sheet_x":35,"sheet_y":34,"short_name":"flag-km","short_names":["flag-km"],"category":"Flags","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clapper":{"name":"Clapper Board","unified":"1F3AC","variations":[],"docomo":"E6AC","au":"E4BE","softbank":"E324","google":"FE808","image":"1f3ac.png","sheet_x":9,"sheet_y":27,"short_name":"clapper","short_names":["clapper"],"category":"Activity","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u55b6":{"name":"Squared Cjk Unified Ideograph-55b6","unified":"1F23A","variations":[],"docomo":null,"au":"EA8C","softbank":"E22D","google":"FEB41","image":"1f23a.png","sheet_x":5,"sheet_y":18,"short_name":"u55b6","short_names":["u55b6"],"category":"Symbols","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fuelpump":{"name":"Fuel Pump","unified":"26FD","variations":["26FD-FE0F"],"docomo":"E66B","au":"E571","softbank":"E03A","google":"FE7F5","image":"26fd.png","sheet_x":3,"sheet_y":4,"short_name":"fuelpump","short_names":["fuelpump"],"category":"Places","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"moneybag":{"name":"Money Bag","unified":"1F4B0","variations":[],"docomo":"E715","au":"E4C7","softbank":"E12F","google":"FE4DD","image":"1f4b0.png","sheet_x":20,"sheet_y":28,"short_name":"moneybag","short_names":["moneybag"],"category":"Objects","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lollipop":{"name":"Lollipop","unified":"1F36D","variations":[],"docomo":null,"au":"EB4F","softbank":null,"google":"FE97C","image":"1f36d.png","sheet_x":8,"sheet_y":5,"short_name":"lollipop","short_names":["lollipop"],"category":"Foods","sort_order":51,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"credit_card":{"name":"Credit Card","unified":"1F4B3","variations":[],"docomo":null,"au":"E57C","softbank":null,"google":"FE4E1","image":"1f4b3.png","sheet_x":20,"sheet_y":31,"short_name":"credit_card","short_names":["credit_card"],"category":"Objects","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cow2":{"name":"Cow","unified":"1F404","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f404.png","sheet_x":12,"sheet_y":9,"short_name":"cow2","short_names":["cow2"],"category":"Nature","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"video_game":{"name":"Video Game","unified":"1F3AE","variations":[],"docomo":"E68B","au":"E4C6","softbank":null,"google":"FE80A","image":"1f3ae.png","sheet_x":9,"sheet_y":29,"short_name":"video_game","short_names":["video_game"],"category":"Activity","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"busstop":{"name":"Bus Stop","unified":"1F68F","variations":[],"docomo":null,"au":"E4A7","softbank":"E150","google":"FE7E7","image":"1f68f.png","sheet_x":29,"sheet_y":27,"short_name":"busstop","short_names":["busstop"],"category":"Places","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chocolate_bar":{"name":"Chocolate Bar","unified":"1F36B","variations":[],"docomo":null,"au":"EB4D","softbank":null,"google":"FE97A","image":"1f36b.png","sheet_x":8,"sheet_y":3,"short_name":"chocolate_bar","short_names":["chocolate_bar"],"category":"Foods","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u6708":{"name":"Squared Cjk Unified Ideograph-6708","unified":"1F237","variations":["1F237-FE0F"],"docomo":null,"au":null,"softbank":"E217","google":"FEB3B","image":"1f237.png","sheet_x":5,"sheet_y":15,"short_name":"u6708","short_names":["u6708"],"category":"Symbols","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fearful":{"name":"Fearful Face","unified":"1F628","variations":[],"docomo":"E757","au":"EAC6","softbank":"E40B","google":"FE33B","image":"1f628.png","sheet_x":27,"sheet_y":14,"short_name":"fearful","short_names":["fearful"],"category":"People","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cg":{"name":"Regional Indicator Symbol Letters CG","unified":"1F1E8-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ec.png","sheet_x":33,"sheet_y":34,"short_name":"flag-cg","short_names":["flag-cg"],"category":"Flags","sort_order":52,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dromedary_camel":{"name":"Dromedary Camel","unified":"1F42A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f42a.png","sheet_x":13,"sheet_y":6,"short_name":"dromedary_camel","short_names":["dromedary_camel"],"category":"Nature","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"popcorn":{"name":"Popcorn","unified":"1F37F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37f.png","sheet_x":8,"sheet_y":23,"short_name":"popcorn","short_names":["popcorn"],"category":"Foods","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eight_pointed_black_star":{"name":"Eight Pointed Black Star","unified":"2734","variations":["2734-FE0F"],"docomo":"E6F8","au":"E479","softbank":"E205","google":"FEB61","image":"2734.png","sheet_x":4,"sheet_y":0,"short_name":"eight_pointed_black_star","short_names":["eight_pointed_black_star"],"category":"Symbols","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gem":{"name":"Gem Stone","unified":"1F48E","variations":[],"docomo":"E71B","au":"E514","softbank":"E035","google":"FE826","image":"1f48e.png","sheet_x":19,"sheet_y":30,"short_name":"gem","short_names":["gem"],"category":"Objects","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"space_invader":{"name":"Alien Monster","unified":"1F47E","variations":[],"docomo":null,"au":"E4EC","softbank":"E12B","google":"FE1B1","image":"1f47e.png","sheet_x":18,"sheet_y":25,"short_name":"space_invader","short_names":["space_invader"],"category":"Activity","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"vertical_traffic_light":{"name":"Vertical Traffic Light","unified":"1F6A6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6a6.png","sheet_x":30,"sheet_y":14,"short_name":"vertical_traffic_light","short_names":["vertical_traffic_light"],"category":"Places","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cold_sweat":{"name":"Face with Open Mouth and Cold Sweat","unified":"1F630","variations":[],"docomo":"E723","au":"EACB","softbank":"E40F","google":"FE325","image":"1f630.png","sheet_x":27,"sheet_y":22,"short_name":"cold_sweat","short_names":["cold_sweat"],"category":"People","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cd":{"name":"Regional Indicator Symbol Letters CD","unified":"1F1E8-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1e9.png","sheet_x":33,"sheet_y":32,"short_name":"flag-cd","short_names":["flag-cd"],"category":"Flags","sort_order":53,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ck":{"name":"Regional Indicator Symbol Letters CK","unified":"1F1E8-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f0.png","sheet_x":33,"sheet_y":37,"short_name":"flag-ck","short_names":["flag-ck"],"category":"Flags","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hushed":{"name":"Hushed Face","unified":"1F62F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f62f.png","sheet_x":27,"sheet_y":21,"short_name":"hushed","short_names":["hushed"],"category":"People","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"traffic_light":{"name":"Horizontal Traffic Light","unified":"1F6A5","variations":[],"docomo":"E66D","au":"E46A","softbank":"E14E","google":"FE7F7","image":"1f6a5.png","sheet_x":30,"sheet_y":13,"short_name":"traffic_light","short_names":["traffic_light"],"category":"Places","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"doughnut":{"name":"Doughnut","unified":"1F369","variations":[],"docomo":null,"au":"EB4B","softbank":null,"google":"FE978","image":"1f369.png","sheet_x":8,"sheet_y":1,"short_name":"doughnut","short_names":["doughnut"],"category":"Foods","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"camel":{"name":"Bactrian Camel","unified":"1F42B","variations":[],"docomo":null,"au":"EB25","softbank":"E530","google":"FE1D6","image":"1f42b.png","sheet_x":13,"sheet_y":7,"short_name":"camel","short_names":["camel"],"category":"Nature","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dart":{"name":"Direct Hit","unified":"1F3AF","variations":[],"docomo":null,"au":"E4C5","softbank":"E130","google":"FE80C","image":"1f3af.png","sheet_x":9,"sheet_y":30,"short_name":"dart","short_names":["dart"],"category":"Activity","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scales":{"name":"Scales","unified":"2696","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2696.png","sheet_x":2,"sheet_y":7,"short_name":"scales","short_names":["scales"],"category":"Objects","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"vs":{"name":"Squared Vs","unified":"1F19A","variations":[],"docomo":null,"au":"E5D2","softbank":"E12E","google":"FEB32","image":"1f19a.png","sheet_x":5,"sheet_y":5,"short_name":"vs","short_names":["vs"],"category":"Symbols","sort_order":54,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"elephant":{"name":"Elephant","unified":"1F418","variations":[],"docomo":null,"au":"EB1F","softbank":"E526","google":"FE1CC","image":"1f418.png","sheet_x":12,"sheet_y":29,"short_name":"elephant","short_names":["elephant"],"category":"Nature","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wrench":{"name":"Wrench","unified":"1F527","variations":[],"docomo":"E718","au":"E587","softbank":null,"google":"FE4C9","image":"1f527.png","sheet_x":23,"sheet_y":23,"short_name":"wrench","short_names":["wrench"],"category":"Objects","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"game_die":{"name":"Game Die","unified":"1F3B2","variations":[],"docomo":null,"au":"E4C8","softbank":null,"google":"FE80F","image":"1f3b2.png","sheet_x":9,"sheet_y":33,"short_name":"game_die","short_names":["game_die"],"category":"Activity","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"accept":{"name":"Circled Ideograph Accept","unified":"1F251","variations":[],"docomo":null,"au":"EB01","softbank":null,"google":"FEB50","image":"1f251.png","sheet_x":5,"sheet_y":20,"short_name":"accept","short_names":["accept"],"category":"Symbols","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cookie":{"name":"Cookie","unified":"1F36A","variations":[],"docomo":null,"au":"EB4C","softbank":null,"google":"FE979","image":"1f36a.png","sheet_x":8,"sheet_y":2,"short_name":"cookie","short_names":["cookie"],"category":"Foods","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cr":{"name":"Regional Indicator Symbol Letters CR","unified":"1F1E8-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f7.png","sheet_x":34,"sheet_y":2,"short_name":"flag-cr","short_names":["flag-cr"],"category":"Flags","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"checkered_flag":{"name":"Chequered Flag","unified":"1F3C1","variations":[],"docomo":"E659","au":"E4B9","softbank":"E132","google":"FE7D7","image":"1f3c1.png","sheet_x":10,"sheet_y":7,"short_name":"checkered_flag","short_names":["checkered_flag"],"category":"Places","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"frowning":{"name":"Frowning Face with Open Mouth","unified":"1F626","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f626.png","sheet_x":27,"sheet_y":12,"short_name":"frowning","short_names":["frowning"],"category":"People","sort_order":55,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_flower":{"name":"White Flower","unified":"1F4AE","variations":[],"docomo":null,"au":"E4F0","softbank":null,"google":"FEB7A","image":"1f4ae.png","sheet_x":20,"sheet_y":26,"short_name":"white_flower","short_names":["white_flower"],"category":"Symbols","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ship":{"name":"Ship","unified":"1F6A2","variations":[],"docomo":"E661","au":"EA82","softbank":"E202","google":"FE7E8","image":"1f6a2.png","sheet_x":30,"sheet_y":5,"short_name":"ship","short_names":["ship"],"category":"Places","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hammer":{"name":"Hammer","unified":"1F528","variations":[],"docomo":null,"au":"E5CB","softbank":"E116","google":"FE4CA","image":"1f528.png","sheet_x":23,"sheet_y":24,"short_name":"hammer","short_names":["hammer"],"category":"Objects","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-hr":{"name":"Regional Indicator Symbol Letters HR","unified":"1F1ED-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f7.png","sheet_x":35,"sheet_y":12,"short_name":"flag-hr","short_names":["flag-hr"],"category":"Flags","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"anguished":{"name":"Anguished Face","unified":"1F627","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f627.png","sheet_x":27,"sheet_y":13,"short_name":"anguished","short_names":["anguished"],"category":"People","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":["D:"]},"goat":{"name":"Goat","unified":"1F410","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f410.png","sheet_x":12,"sheet_y":21,"short_name":"goat","short_names":["goat"],"category":"Nature","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"beer":{"name":"Beer Mug","unified":"1F37A","variations":[],"docomo":"E672","au":"E4C3","softbank":"E047","google":"FE983","image":"1f37a.png","sheet_x":8,"sheet_y":18,"short_name":"beer","short_names":["beer"],"category":"Foods","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"slot_machine":{"name":"Slot Machine","unified":"1F3B0","variations":[],"docomo":null,"au":"E46E","softbank":"E133","google":"FE80D","image":"1f3b0.png","sheet_x":9,"sheet_y":31,"short_name":"slot_machine","short_names":["slot_machine"],"category":"Activity","sort_order":56,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cu":{"name":"Regional Indicator Symbol Letters CU","unified":"1F1E8-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fa.png","sheet_x":34,"sheet_y":3,"short_name":"flag-cu","short_names":["flag-cu"],"category":"Flags","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hammer_and_pick":{"name":"Hammer and Pick","unified":"2692","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2692.png","sheet_x":2,"sheet_y":4,"short_name":"hammer_and_pick","short_names":["hammer_and_pick"],"category":"Objects","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"beers":{"name":"Clinking Beer Mugs","unified":"1F37B","variations":[],"docomo":"E672","au":"EA98","softbank":"E30C","google":"FE987","image":"1f37b.png","sheet_x":8,"sheet_y":19,"short_name":"beers","short_names":["beers"],"category":"Foods","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ferris_wheel":{"name":"Ferris Wheel","unified":"1F3A1","variations":[],"docomo":null,"au":"E46D","softbank":"E124","google":"FE7FD","image":"1f3a1.png","sheet_x":9,"sheet_y":16,"short_name":"ferris_wheel","short_names":["ferris_wheel"],"category":"Places","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ideograph_advantage":{"name":"Circled Ideograph Advantage","unified":"1F250","variations":[],"docomo":null,"au":"E4F7","softbank":"E226","google":"FEB3D","image":"1f250.png","sheet_x":5,"sheet_y":19,"short_name":"ideograph_advantage","short_names":["ideograph_advantage"],"category":"Symbols","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ram":{"name":"Ram","unified":"1F40F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f40f.png","sheet_x":12,"sheet_y":20,"short_name":"ram","short_names":["ram"],"category":"Nature","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cry":{"name":"Crying Face","unified":"1F622","variations":[],"docomo":"E72E","au":"EB69","softbank":"E413","google":"FE339","image":"1f622.png","sheet_x":27,"sheet_y":8,"short_name":"cry","short_names":["cry"],"category":"People","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":'("]},"bowling":{"name":"Bowling","unified":"1F3B3","variations":[],"docomo":null,"au":"EB43","softbank":null,"google":"FE810","image":"1f3b3.png","sheet_x":9,"sheet_y":34,"short_name":"bowling","short_names":["bowling"],"category":"Activity","sort_order":57,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cw":{"name":"Regional Indicator Symbol Letters CW","unified":"1F1E8-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fc.png","sheet_x":34,"sheet_y":5,"short_name":"flag-cw","short_names":["flag-cw"],"category":"Flags","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"secret":{"name":"Circled Ideograph Secret","unified":"3299","variations":["3299-FE0F"],"docomo":"E734","au":"E4F1","softbank":"E315","google":"FEB2B","image":"3299.png","sheet_x":4,"sheet_y":29,"short_name":"secret","short_names":["secret"],"category":"Symbols","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"disappointed_relieved":{"name":"Disappointed but Relieved Face","unified":"1F625","variations":[],"docomo":"E723","au":"E5C6","softbank":"E401","google":"FE345","image":"1f625.png","sheet_x":27,"sheet_y":11,"short_name":"disappointed_relieved","short_names":["disappointed_relieved"],"category":"People","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hammer_and_wrench":{"name":"Hammer and Wrench","unified":"1F6E0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e0.png","sheet_x":31,"sheet_y":31,"short_name":"hammer_and_wrench","short_names":["hammer_and_wrench"],"category":"Objects","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"roller_coaster":{"name":"Roller Coaster","unified":"1F3A2","variations":[],"docomo":null,"au":"EAE2","softbank":"E433","google":"FE7FE","image":"1f3a2.png","sheet_x":9,"sheet_y":17,"short_name":"roller_coaster","short_names":["roller_coaster"],"category":"Places","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sheep":{"name":"Sheep","unified":"1F411","variations":[],"docomo":null,"au":"E48F","softbank":"E529","google":"FE1CF","image":"1f411.png","sheet_x":12,"sheet_y":22,"short_name":"sheep","short_names":["sheep"],"category":"Nature","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wine_glass":{"name":"Wine Glass","unified":"1F377","variations":[],"docomo":"E756","au":"E4C1","softbank":"E044","google":"FE986","image":"1f377.png","sheet_x":8,"sheet_y":15,"short_name":"wine_glass","short_names":["wine_glass"],"category":"Foods","sort_order":58,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"congratulations":{"name":"Circled Ideograph Congratulation","unified":"3297","variations":["3297-FE0F"],"docomo":null,"au":"EA99","softbank":"E30D","google":"FEB43","image":"3297.png","sheet_x":4,"sheet_y":28,"short_name":"congratulations","short_names":["congratulations"],"category":"Symbols","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sleepy":{"name":"Sleepy Face","unified":"1F62A","variations":[],"docomo":"E701","au":"EAC4","softbank":"E408","google":"FE342","image":"1f62a.png","sheet_x":27,"sheet_y":16,"short_name":"sleepy","short_names":["sleepy"],"category":"People","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"carousel_horse":{"name":"Carousel Horse","unified":"1F3A0","variations":[],"docomo":"E679","au":null,"softbank":null,"google":"FE7FC","image":"1f3a0.png","sheet_x":9,"sheet_y":15,"short_name":"carousel_horse","short_names":["carousel_horse"],"category":"Places","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pick":{"name":"Pick","unified":"26CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26cf.png","sheet_x":2,"sheet_y":24,"short_name":"pick","short_names":["pick"],"category":"Objects","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cy":{"name":"Regional Indicator Symbol Letters CY","unified":"1F1E8-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1fe.png","sheet_x":34,"sheet_y":7,"short_name":"flag-cy","short_names":["flag-cy"],"category":"Flags","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cocktail":{"name":"Cocktail Glass","unified":"1F378","variations":[],"docomo":"E671","au":"E4C2","softbank":"E044","google":"FE982","image":"1f378.png","sheet_x":8,"sheet_y":16,"short_name":"cocktail","short_names":["cocktail"],"category":"Foods","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"racehorse":{"name":"Horse","unified":"1F40E","variations":[],"docomo":"E754","au":"E4D8","softbank":"E134","google":"FE7DC","image":"1f40e.png","sheet_x":12,"sheet_y":19,"short_name":"racehorse","short_names":["racehorse"],"category":"Nature","sort_order":59,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cz":{"name":"Regional Indicator Symbol Letters CZ","unified":"1F1E8-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ff.png","sheet_x":34,"sheet_y":8,"short_name":"flag-cz","short_names":["flag-cz"],"category":"Flags","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tropical_drink":{"name":"Tropical Drink","unified":"1F379","variations":[],"docomo":"E671","au":"EB3E","softbank":"E044","google":"FE988","image":"1f379.png","sheet_x":8,"sheet_y":17,"short_name":"tropical_drink","short_names":["tropical_drink"],"category":"Foods","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u5408":{"name":"Squared Cjk Unified Ideograph-5408","unified":"1F234","variations":[],"docomo":"E73A","au":null,"softbank":null,"google":"FEB30","image":"1f234.png","sheet_x":5,"sheet_y":12,"short_name":"u5408","short_names":["u5408"],"category":"Symbols","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"nut_and_bolt":{"name":"Nut and Bolt","unified":"1F529","variations":[],"docomo":null,"au":"E581","softbank":null,"google":"FE4CB","image":"1f529.png","sheet_x":23,"sheet_y":25,"short_name":"nut_and_bolt","short_names":["nut_and_bolt"],"category":"Objects","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sweat":{"name":"Face with Cold Sweat","unified":"1F613","variations":[],"docomo":"E723","au":"E5C6","softbank":"E108","google":"FE344","image":"1f613.png","sheet_x":26,"sheet_y":34,"short_name":"sweat","short_names":["sweat"],"category":"People","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"building_construction":{"name":"Building Construction","unified":"1F3D7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d7.png","sheet_x":11,"sheet_y":8,"short_name":"building_construction","short_names":["building_construction"],"category":"Places","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pig2":{"name":"Pig","unified":"1F416","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f416.png","sheet_x":12,"sheet_y":27,"short_name":"pig2","short_names":["pig2"],"category":"Nature","sort_order":60,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sob":{"name":"Loudly Crying Face","unified":"1F62D","variations":[],"docomo":"E72D","au":"E473","softbank":"E411","google":"FE33A","image":"1f62d.png","sheet_x":27,"sheet_y":19,"short_name":"sob","short_names":["sob"],"category":"People","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":'("]},"u6e80":{"name":"Squared Cjk Unified Ideograph-6e80","unified":"1F235","variations":[],"docomo":"E73B","au":"EA89","softbank":"E22A","google":"FEB31","image":"1f235.png","sheet_x":5,"sheet_y":13,"short_name":"u6e80","short_names":["u6e80"],"category":"Symbols","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-dk":{"name":"Regional Indicator Symbol Letters DK","unified":"1F1E9-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f0.png","sheet_x":34,"sheet_y":12,"short_name":"flag-dk","short_names":["flag-dk"],"category":"Flags","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gear":{"name":"Gear","unified":"2699","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2699.png","sheet_x":2,"sheet_y":9,"short_name":"gear","short_names":["gear"],"category":"Objects","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rat":{"name":"Rat","unified":"1F400","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f400.png","sheet_x":12,"sheet_y":5,"short_name":"rat","short_names":["rat"],"category":"Nature","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"champagne":{"name":"Bottle with Popping Cork","unified":"1F37E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37e.png","sheet_x":8,"sheet_y":22,"short_name":"champagne","short_names":["champagne"],"category":"Foods","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"foggy":{"name":"Foggy","unified":"1F301","variations":[],"docomo":"E644","au":"E598","softbank":null,"google":"FE006","image":"1f301.png","sheet_x":5,"sheet_y":22,"short_name":"foggy","short_names":["foggy"],"category":"Places","sort_order":61,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tokyo_tower":{"name":"Tokyo Tower","unified":"1F5FC","variations":[],"docomo":null,"au":"E4C0","softbank":"E509","google":"FE4C4","image":"1f5fc.png","sheet_x":26,"sheet_y":11,"short_name":"tokyo_tower","short_names":["tokyo_tower"],"category":"Places","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dizzy_face":{"name":"Dizzy Face","unified":"1F635","variations":[],"docomo":"E6F4","au":"E5AE","softbank":"E406","google":"FE324","image":"1f635.png","sheet_x":27,"sheet_y":27,"short_name":"dizzy_face","short_names":["dizzy_face"],"category":"People","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sake":{"name":"Sake Bottle and Cup","unified":"1F376","variations":[],"docomo":"E74B","au":"EA97","softbank":"E30B","google":"FE985","image":"1f376.png","sheet_x":8,"sheet_y":14,"short_name":"sake","short_names":["sake"],"category":"Foods","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u7981":{"name":"Squared Cjk Unified Ideograph-7981","unified":"1F232","variations":[],"docomo":"E738","au":null,"softbank":null,"google":"FEB2E","image":"1f232.png","sheet_x":5,"sheet_y":10,"short_name":"u7981","short_names":["u7981"],"category":"Symbols","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mouse2":{"name":"Mouse","unified":"1F401","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f401.png","sheet_x":12,"sheet_y":6,"short_name":"mouse2","short_names":["mouse2"],"category":"Nature","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-dj":{"name":"Regional Indicator Symbol Letters DJ","unified":"1F1E9-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ef.png","sheet_x":34,"sheet_y":11,"short_name":"flag-dj","short_names":["flag-dj"],"category":"Flags","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chains":{"name":"Chains","unified":"26D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26d3.png","sheet_x":2,"sheet_y":26,"short_name":"chains","short_names":["chains"],"category":"Objects","sort_order":62,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"a":{"name":"Negative Squared Latin Capital Letter a","unified":"1F170","variations":["1F170-FE0F"],"docomo":null,"au":"EB26","softbank":"E532","google":"FE50B","image":"1f170.png","sheet_x":4,"sheet_y":32,"short_name":"a","short_names":["a"],"category":"Symbols","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tea":{"name":"Teacup Without Handle","unified":"1F375","variations":[],"docomo":"E71E","au":"EAAE","softbank":"E338","google":"FE984","image":"1f375.png","sheet_x":8,"sheet_y":13,"short_name":"tea","short_names":["tea"],"category":"Foods","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gun":{"name":"Pistol","unified":"1F52B","variations":[],"docomo":null,"au":"E50A","softbank":"E113","google":"FE4F5","image":"1f52b.png","sheet_x":23,"sheet_y":27,"short_name":"gun","short_names":["gun"],"category":"Objects","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"astonished":{"name":"Astonished Face","unified":"1F632","variations":[],"docomo":"E6F4","au":"EACA","softbank":"E410","google":"FE322","image":"1f632.png","sheet_x":27,"sheet_y":24,"short_name":"astonished","short_names":["astonished"],"category":"People","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-dm":{"name":"Regional Indicator Symbol Letters DM","unified":"1F1E9-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f2.png","sheet_x":34,"sheet_y":13,"short_name":"flag-dm","short_names":["flag-dm"],"category":"Flags","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rooster":{"name":"Rooster","unified":"1F413","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f413.png","sheet_x":12,"sheet_y":24,"short_name":"rooster","short_names":["rooster"],"category":"Nature","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"factory":{"name":"Factory","unified":"1F3ED","variations":[],"docomo":null,"au":"EAF9","softbank":"E508","google":"FE4C0","image":"1f3ed.png","sheet_x":11,"sheet_y":30,"short_name":"factory","short_names":["factory"],"category":"Places","sort_order":63,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"coffee":{"name":"Hot Beverage","unified":"2615","variations":["2615-FE0F"],"docomo":"E670","au":"E597","softbank":"E045","google":"FE981","image":"2615.png","sheet_x":1,"sheet_y":8,"short_name":"coffee","short_names":["coffee"],"category":"Foods","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bomb":{"name":"Bomb","unified":"1F4A3","variations":[],"docomo":"E6FE","au":"E47A","softbank":"E311","google":"FEB58","image":"1f4a3.png","sheet_x":20,"sheet_y":10,"short_name":"bomb","short_names":["bomb"],"category":"Objects","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-do":{"name":"Regional Indicator Symbol Letters DO","unified":"1F1E9-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1f4.png","sheet_x":34,"sheet_y":14,"short_name":"flag-do","short_names":["flag-do"],"category":"Flags","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fountain":{"name":"Fountain","unified":"26F2","variations":["26F2-FE0F"],"docomo":null,"au":"E5CF","softbank":"E121","google":"FE4BC","image":"26f2.png","sheet_x":2,"sheet_y":32,"short_name":"fountain","short_names":["fountain"],"category":"Places","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"turkey":{"name":"Turkey","unified":"1F983","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f983.png","sheet_x":32,"sheet_y":18,"short_name":"turkey","short_names":["turkey"],"category":"Nature","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"zipper_mouth_face":{"name":"Zipper-Mouth Face","unified":"1F910","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f910.png","sheet_x":32,"sheet_y":1,"short_name":"zipper_mouth_face","short_names":["zipper_mouth_face"],"category":"People","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"b":{"name":"Negative Squared Latin Capital Letter B","unified":"1F171","variations":["1F171-FE0F"],"docomo":null,"au":"EB27","softbank":"E533","google":"FE50C","image":"1f171.png","sheet_x":4,"sheet_y":33,"short_name":"b","short_names":["b"],"category":"Symbols","sort_order":64,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mask":{"name":"Face with Medical Mask","unified":"1F637","variations":[],"docomo":null,"au":"EAC7","softbank":"E40C","google":"FE32E","image":"1f637.png","sheet_x":27,"sheet_y":29,"short_name":"mask","short_names":["mask"],"category":"People","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ec":{"name":"Regional Indicator Symbol Letters EC","unified":"1F1EA-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e8.png","sheet_x":34,"sheet_y":17,"short_name":"flag-ec","short_names":["flag-ec"],"category":"Flags","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ab":{"name":"Negative Squared Ab","unified":"1F18E","variations":[],"docomo":null,"au":"EB29","softbank":"E534","google":"FE50D","image":"1f18e.png","sheet_x":4,"sheet_y":36,"short_name":"ab","short_names":["ab"],"category":"Symbols","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rice_scene":{"name":"Moon Viewing Ceremony","unified":"1F391","variations":[],"docomo":null,"au":"EAEF","softbank":"E446","google":"FE017","image":"1f391.png","sheet_x":9,"sheet_y":5,"short_name":"rice_scene","short_names":["rice_scene"],"category":"Places","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"baby_bottle":{"name":"Baby Bottle","unified":"1F37C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37c.png","sheet_x":8,"sheet_y":20,"short_name":"baby_bottle","short_names":["baby_bottle"],"category":"Foods","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hocho":{"name":"Hocho","unified":"1F52A","variations":[],"docomo":null,"au":"E57F","softbank":null,"google":"FE4FA","image":"1f52a.png","sheet_x":23,"sheet_y":26,"short_name":"hocho","short_names":["hocho","knife"],"category":"Objects","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dove_of_peace":{"name":"Dove of Peace","unified":"1F54A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54a.png","sheet_x":24,"sheet_y":6,"short_name":"dove_of_peace","short_names":["dove_of_peace"],"category":"Nature","sort_order":65,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cl":{"name":"Squared Cl","unified":"1F191","variations":[],"docomo":"E6DB","au":"E5AB","softbank":null,"google":"FEB84","image":"1f191.png","sheet_x":4,"sheet_y":37,"short_name":"cl","short_names":["cl"],"category":"Symbols","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dog2":{"name":"Dog","unified":"1F415","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f415.png","sheet_x":12,"sheet_y":26,"short_name":"dog2","short_names":["dog2"],"category":"Nature","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fork_and_knife":{"name":"Fork and Knife","unified":"1F374","variations":[],"docomo":"E66F","au":"E4AC","softbank":"E043","google":"FE980","image":"1f374.png","sheet_x":8,"sheet_y":12,"short_name":"fork_and_knife","short_names":["fork_and_knife"],"category":"Foods","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dagger_knife":{"name":"Dagger Knife","unified":"1F5E1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e1.png","sheet_x":26,"sheet_y":4,"short_name":"dagger_knife","short_names":["dagger_knife"],"category":"Objects","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mountain":{"name":"Mountain","unified":"26F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f0.png","sheet_x":2,"sheet_y":30,"short_name":"mountain","short_names":["mountain"],"category":"Places","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"face_with_thermometer":{"name":"Face with Thermometer","unified":"1F912","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f912.png","sheet_x":32,"sheet_y":3,"short_name":"face_with_thermometer","short_names":["face_with_thermometer"],"category":"People","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-eg":{"name":"Regional Indicator Symbol Letters EG","unified":"1F1EA-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ec.png","sheet_x":34,"sheet_y":19,"short_name":"flag-eg","short_names":["flag-eg"],"category":"Flags","sort_order":66,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"poodle":{"name":"Poodle","unified":"1F429","variations":[],"docomo":"E6A1","au":"E4DF","softbank":"E052","google":"FE1D8","image":"1f429.png","sheet_x":13,"sheet_y":5,"short_name":"poodle","short_names":["poodle"],"category":"Nature","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sv":{"name":"Regional Indicator Symbol Letters SV","unified":"1F1F8-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fb.png","sheet_x":38,"sheet_y":2,"short_name":"flag-sv","short_names":["flag-sv"],"category":"Flags","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snow_capped_mountain":{"name":"Snow Capped Mountain","unified":"1F3D4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d4.png","sheet_x":11,"sheet_y":5,"short_name":"snow_capped_mountain","short_names":["snow_capped_mountain"],"category":"Places","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"face_with_head_bandage":{"name":"Face with Head-Bandage","unified":"1F915","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f915.png","sheet_x":32,"sheet_y":6,"short_name":"face_with_head_bandage","short_names":["face_with_head_bandage"],"category":"People","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"o2":{"name":"Negative Squared Latin Capital Letter O","unified":"1F17E","variations":["1F17E-FE0F"],"docomo":null,"au":"EB28","softbank":"E535","google":"FE50E","image":"1f17e.png","sheet_x":4,"sheet_y":34,"short_name":"o2","short_names":["o2"],"category":"Symbols","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"knife_fork_plate":{"name":"Fork and Knife with Plate","unified":"1F37D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f37d.png","sheet_x":8,"sheet_y":21,"short_name":"knife_fork_plate","short_names":["knife_fork_plate"],"category":"Foods","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crossed_swords":{"name":"Crossed Swords","unified":"2694","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2694.png","sheet_x":2,"sheet_y":6,"short_name":"crossed_swords","short_names":["crossed_swords"],"category":"Objects","sort_order":67,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sos":{"name":"Squared Sos","unified":"1F198","variations":[],"docomo":null,"au":"E4E8","softbank":null,"google":"FEB4F","image":"1f198.png","sheet_x":5,"sheet_y":3,"short_name":"sos","short_names":["sos"],"category":"Symbols","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gq":{"name":"Regional Indicator Symbol Letters GQ","unified":"1F1EC-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f6.png","sheet_x":35,"sheet_y":2,"short_name":"flag-gq","short_names":["flag-gq"],"category":"Flags","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mount_fuji":{"name":"Mount Fuji","unified":"1F5FB","variations":[],"docomo":"E740","au":"E5BD","softbank":"E03B","google":"FE4C3","image":"1f5fb.png","sheet_x":26,"sheet_y":10,"short_name":"mount_fuji","short_names":["mount_fuji"],"category":"Places","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cat2":{"name":"Cat","unified":"1F408","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f408.png","sheet_x":12,"sheet_y":13,"short_name":"cat2","short_names":["cat2"],"category":"Nature","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shield":{"name":"Shield","unified":"1F6E1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e1.png","sheet_x":31,"sheet_y":32,"short_name":"shield","short_names":["shield"],"category":"Objects","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sleeping":{"name":"Sleeping Face","unified":"1F634","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f634.png","sheet_x":27,"sheet_y":26,"short_name":"sleeping","short_names":["sleeping"],"category":"People","sort_order":68,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"volcano":{"name":"Volcano","unified":"1F30B","variations":[],"docomo":null,"au":"EB53","softbank":null,"google":"FE03A","image":"1f30b.png","sheet_x":5,"sheet_y":32,"short_name":"volcano","short_names":["volcano"],"category":"Places","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rabbit2":{"name":"Rabbit","unified":"1F407","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f407.png","sheet_x":12,"sheet_y":12,"short_name":"rabbit2","short_names":["rabbit2"],"category":"Nature","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smoking":{"name":"Smoking Symbol","unified":"1F6AC","variations":[],"docomo":"E67F","au":"E47D","softbank":"E30E","google":"FEB1E","image":"1f6ac.png","sheet_x":30,"sheet_y":20,"short_name":"smoking","short_names":["smoking"],"category":"Objects","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-er":{"name":"Regional Indicator Symbol Letters ER","unified":"1F1EA-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f7.png","sheet_x":34,"sheet_y":21,"short_name":"flag-er","short_names":["flag-er"],"category":"Flags","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"zzz":{"name":"Sleeping Symbol","unified":"1F4A4","variations":[],"docomo":"E701","au":"E475","softbank":"E13C","google":"FEB59","image":"1f4a4.png","sheet_x":20,"sheet_y":11,"short_name":"zzz","short_names":["zzz"],"category":"People","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_entry":{"name":"No Entry","unified":"26D4","variations":["26D4-FE0F"],"docomo":"E72F","au":"E484","softbank":"E137","google":"FEB26","image":"26d4.png","sheet_x":2,"sheet_y":27,"short_name":"no_entry","short_names":["no_entry"],"category":"Symbols","sort_order":69,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hankey":{"name":"Pile of Poo","unified":"1F4A9","variations":[],"docomo":null,"au":"E4F5","softbank":"E05A","google":"FE4F4","image":"1f4a9.png","sheet_x":20,"sheet_y":16,"short_name":"hankey","short_names":["hankey","poop","shit"],"category":"People","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ee":{"name":"Regional Indicator Symbol Letters EE","unified":"1F1EA-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ea.png","sheet_x":34,"sheet_y":18,"short_name":"flag-ee","short_names":["flag-ee"],"category":"Flags","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skull_and_crossbones":{"name":"Skull and Crossbones","unified":"2620","variations":["2620-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2620.png","sheet_x":1,"sheet_y":16,"short_name":"skull_and_crossbones","short_names":["skull_and_crossbones"],"category":"Objects","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chipmunk":{"name":"Chipmunk","unified":"1F43F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f43f.png","sheet_x":13,"sheet_y":27,"short_name":"chipmunk","short_names":["chipmunk"],"category":"Nature","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"japan":{"name":"Silhouette of Japan","unified":"1F5FE","variations":[],"docomo":null,"au":"E572","softbank":null,"google":"FE4C7","image":"1f5fe.png","sheet_x":26,"sheet_y":13,"short_name":"japan","short_names":["japan"],"category":"Places","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"name_badge":{"name":"Name Badge","unified":"1F4DB","variations":[],"docomo":null,"au":"E51D","softbank":null,"google":"FE504","image":"1f4db.png","sheet_x":21,"sheet_y":30,"short_name":"name_badge","short_names":["name_badge"],"category":"Symbols","sort_order":70,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"coffin":{"name":"Coffin","unified":"26B0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26b0.png","sheet_x":2,"sheet_y":16,"short_name":"coffin","short_names":["coffin"],"category":"Objects","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"camping":{"name":"Camping","unified":"1F3D5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d5.png","sheet_x":11,"sheet_y":6,"short_name":"camping","short_names":["camping"],"category":"Places","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"feet":{"name":"Paw Prints","unified":"1F43E","variations":[],"docomo":"E698","au":"E4EE","softbank":"E536","google":"FE1DB","image":"1f43e.png","sheet_x":13,"sheet_y":26,"short_name":"feet","short_names":["feet","paw_prints"],"category":"Nature","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-et":{"name":"Regional Indicator Symbol Letters ET","unified":"1F1EA-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1f9.png","sheet_x":34,"sheet_y":23,"short_name":"flag-et","short_names":["flag-et"],"category":"Flags","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_entry_sign":{"name":"No Entry Sign","unified":"1F6AB","variations":[],"docomo":"E738","au":"E541","softbank":null,"google":"FEB48","image":"1f6ab.png","sheet_x":30,"sheet_y":19,"short_name":"no_entry_sign","short_names":["no_entry_sign"],"category":"Symbols","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smiling_imp":{"name":"Smiling Face with Horns","unified":"1F608","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f608.png","sheet_x":26,"sheet_y":23,"short_name":"smiling_imp","short_names":["smiling_imp"],"category":"People","sort_order":71,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"imp":{"name":"Imp","unified":"1F47F","variations":[],"docomo":null,"au":"E4EF","softbank":"E11A","google":"FE1B2","image":"1f47f.png","sheet_x":18,"sheet_y":26,"short_name":"imp","short_names":["imp"],"category":"People","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"funeral_urn":{"name":"Funeral Urn","unified":"26B1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26b1.png","sheet_x":2,"sheet_y":17,"short_name":"funeral_urn","short_names":["funeral_urn"],"category":"Objects","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tent":{"name":"Tent","unified":"26FA","variations":["26FA-FE0F"],"docomo":null,"au":"E5D0","softbank":"E122","google":"FE7FB","image":"26fa.png","sheet_x":3,"sheet_y":3,"short_name":"tent","short_names":["tent"],"category":"Places","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dragon":{"name":"Dragon","unified":"1F409","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f409.png","sheet_x":12,"sheet_y":14,"short_name":"dragon","short_names":["dragon"],"category":"Nature","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"x":{"name":"Cross Mark","unified":"274C","variations":[],"docomo":null,"au":"E550","softbank":"E333","google":"FEB45","image":"274c.png","sheet_x":4,"sheet_y":3,"short_name":"x","short_names":["x"],"category":"Symbols","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-eu":{"name":"Regional Indicator Symbol Letters EU","unified":"1F1EA-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1fa.png","sheet_x":34,"sheet_y":24,"short_name":"flag-eu","short_names":["flag-eu"],"category":"Flags","sort_order":72,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"amphora":{"name":"Amphora","unified":"1F3FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fa.png","sheet_x":11,"sheet_y":40,"short_name":"amphora","short_names":["amphora"],"category":"Objects","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"o":{"name":"Heavy Large Circle","unified":"2B55","variations":["2B55-FE0F"],"docomo":"E6A0","au":"EAAD","softbank":"E332","google":"FEB44","image":"2b55.png","sheet_x":4,"sheet_y":25,"short_name":"o","short_names":["o"],"category":"Symbols","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"national_park":{"name":"National Park","unified":"1F3DE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3de.png","sheet_x":11,"sheet_y":15,"short_name":"national_park","short_names":["national_park"],"category":"Places","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dragon_face":{"name":"Dragon Face","unified":"1F432","variations":[],"docomo":null,"au":"EB3F","softbank":null,"google":"FE1DE","image":"1f432.png","sheet_x":13,"sheet_y":14,"short_name":"dragon_face","short_names":["dragon_face"],"category":"Nature","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fk":{"name":"Regional Indicator Symbol Letters FK","unified":"1F1EB-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f0.png","sheet_x":34,"sheet_y":27,"short_name":"flag-fk","short_names":["flag-fk"],"category":"Flags","sort_order":73,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"japanese_ogre":{"name":"Japanese Ogre","unified":"1F479","variations":[],"docomo":null,"au":"EB44","softbank":null,"google":"FE1AC","image":"1f479.png","sheet_x":18,"sheet_y":15,"short_name":"japanese_ogre","short_names":["japanese_ogre"],"category":"People","sort_order":73,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"japanese_goblin":{"name":"Japanese Goblin","unified":"1F47A","variations":[],"docomo":null,"au":"EB45","softbank":null,"google":"FE1AD","image":"1f47a.png","sheet_x":18,"sheet_y":16,"short_name":"japanese_goblin","short_names":["japanese_goblin"],"category":"People","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fo":{"name":"Regional Indicator Symbol Letters FO","unified":"1F1EB-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f4.png","sheet_x":34,"sheet_y":29,"short_name":"flag-fo","short_names":["flag-fo"],"category":"Flags","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"motorway":{"name":"Motorway","unified":"1F6E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e3.png","sheet_x":31,"sheet_y":34,"short_name":"motorway","short_names":["motorway"],"category":"Places","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cactus":{"name":"Cactus","unified":"1F335","variations":[],"docomo":null,"au":"EA96","softbank":"E308","google":"FE048","image":"1f335.png","sheet_x":6,"sheet_y":31,"short_name":"cactus","short_names":["cactus"],"category":"Nature","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"anger":{"name":"Anger Symbol","unified":"1F4A2","variations":[],"docomo":"E6FC","au":"E4E5","softbank":"E334","google":"FEB57","image":"1f4a2.png","sheet_x":20,"sheet_y":9,"short_name":"anger","short_names":["anger"],"category":"Symbols","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crystal_ball":{"name":"Crystal Ball","unified":"1F52E","variations":[],"docomo":null,"au":"EA8F","softbank":"E23E","google":"FE4F7","image":"1f52e.png","sheet_x":23,"sheet_y":30,"short_name":"crystal_ball","short_names":["crystal_ball"],"category":"Objects","sort_order":74,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skull":{"name":"Skull","unified":"1F480","variations":[],"docomo":null,"au":"E4F8","softbank":"E11C","google":"FE1B3","image":"1f480.png","sheet_x":18,"sheet_y":27,"short_name":"skull","short_names":["skull"],"category":"People","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hotsprings":{"name":"Hot Springs","unified":"2668","variations":["2668-FE0F"],"docomo":"E6F7","au":"E4BC","softbank":"E123","google":"FE7FA","image":"2668.png","sheet_x":2,"sheet_y":1,"short_name":"hotsprings","short_names":["hotsprings"],"category":"Symbols","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fj":{"name":"Regional Indicator Symbol Letters FJ","unified":"1F1EB-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ef.png","sheet_x":34,"sheet_y":26,"short_name":"flag-fj","short_names":["flag-fj"],"category":"Flags","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"prayer_beads":{"name":"Prayer Beads","unified":"1F4FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ff.png","sheet_x":22,"sheet_y":24,"short_name":"prayer_beads","short_names":["prayer_beads"],"category":"Objects","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"christmas_tree":{"name":"Christmas Tree","unified":"1F384","variations":[],"docomo":"E6A4","au":"E4C9","softbank":"E033","google":"FE512","image":"1f384.png","sheet_x":8,"sheet_y":28,"short_name":"christmas_tree","short_names":["christmas_tree"],"category":"Nature","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"railway_track":{"name":"Railway Track","unified":"1F6E4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6e4.png","sheet_x":31,"sheet_y":35,"short_name":"railway_track","short_names":["railway_track"],"category":"Places","sort_order":75,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fi":{"name":"Regional Indicator Symbol Letters FI","unified":"1F1EB-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1ee.png","sheet_x":34,"sheet_y":25,"short_name":"flag-fi","short_names":["flag-fi"],"category":"Flags","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"barber":{"name":"Barber Pole","unified":"1F488","variations":[],"docomo":null,"au":"EAA2","softbank":"E320","google":"FE199","image":"1f488.png","sheet_x":19,"sheet_y":24,"short_name":"barber","short_names":["barber"],"category":"Objects","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ghost":{"name":"Ghost","unified":"1F47B","variations":[],"docomo":null,"au":"E4CB","softbank":"E11B","google":"FE1AE","image":"1f47b.png","sheet_x":18,"sheet_y":17,"short_name":"ghost","short_names":["ghost"],"category":"People","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sunrise":{"name":"Sunrise","unified":"1F305","variations":[],"docomo":"E63E","au":"EAF4","softbank":"E449","google":"FE00A","image":"1f305.png","sheet_x":5,"sheet_y":26,"short_name":"sunrise","short_names":["sunrise"],"category":"Places","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"evergreen_tree":{"name":"Evergreen Tree","unified":"1F332","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f332.png","sheet_x":6,"sheet_y":28,"short_name":"evergreen_tree","short_names":["evergreen_tree"],"category":"Nature","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_pedestrians":{"name":"No Pedestrians","unified":"1F6B7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b7.png","sheet_x":31,"sheet_y":5,"short_name":"no_pedestrians","short_names":["no_pedestrians"],"category":"Symbols","sort_order":76,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sunrise_over_mountains":{"name":"Sunrise over Mountains","unified":"1F304","variations":[],"docomo":"E63E","au":"EAF4","softbank":"E04D","google":"FE009","image":"1f304.png","sheet_x":5,"sheet_y":25,"short_name":"sunrise_over_mountains","short_names":["sunrise_over_mountains"],"category":"Places","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"alembic":{"name":"Alembic","unified":"2697","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2697.png","sheet_x":2,"sheet_y":8,"short_name":"alembic","short_names":["alembic"],"category":"Objects","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"alien":{"name":"Extraterrestrial Alien","unified":"1F47D","variations":[],"docomo":null,"au":"E50E","softbank":"E10C","google":"FE1B0","image":"1f47d.png","sheet_x":18,"sheet_y":24,"short_name":"alien","short_names":["alien"],"category":"People","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"deciduous_tree":{"name":"Deciduous Tree","unified":"1F333","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f333.png","sheet_x":6,"sheet_y":29,"short_name":"deciduous_tree","short_names":["deciduous_tree"],"category":"Nature","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"do_not_litter":{"name":"Do Not Litter Symbol","unified":"1F6AF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6af.png","sheet_x":30,"sheet_y":23,"short_name":"do_not_litter","short_names":["do_not_litter"],"category":"Symbols","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fr":{"name":"Regional Indicator Symbol Letters FR","unified":"1F1EB-1F1F7","variations":[],"docomo":null,"au":"EAFA","softbank":"E50D","google":"FE4E7","image":"1f1eb-1f1f7.png","sheet_x":34,"sheet_y":30,"short_name":"flag-fr","short_names":["flag-fr","fr"],"category":"Flags","sort_order":77,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"telescope":{"name":"Telescope","unified":"1F52D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52d.png","sheet_x":23,"sheet_y":29,"short_name":"telescope","short_names":["telescope"],"category":"Objects","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"palm_tree":{"name":"Palm Tree","unified":"1F334","variations":[],"docomo":null,"au":"E4E2","softbank":"E307","google":"FE047","image":"1f334.png","sheet_x":6,"sheet_y":30,"short_name":"palm_tree","short_names":["palm_tree"],"category":"Nature","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_bicycles":{"name":"No Bicycles","unified":"1F6B3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b3.png","sheet_x":30,"sheet_y":27,"short_name":"no_bicycles","short_names":["no_bicycles"],"category":"Symbols","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"desert":{"name":"Desert","unified":"1F3DC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dc.png","sheet_x":11,"sheet_y":13,"short_name":"desert","short_names":["desert"],"category":"Places","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"robot_face":{"name":"Robot Face","unified":"1F916","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f916.png","sheet_x":32,"sheet_y":7,"short_name":"robot_face","short_names":["robot_face"],"category":"People","sort_order":78,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gf":{"name":"Regional Indicator Symbol Letters GF","unified":"1F1EC-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1eb.png","sheet_x":34,"sheet_y":35,"short_name":"flag-gf","short_names":["flag-gf"],"category":"Flags","sort_order":78,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"non-potable_water":{"name":"Non-Potable Water Symbol","unified":"1F6B1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b1.png","sheet_x":30,"sheet_y":25,"short_name":"non-potable_water","short_names":["non-potable_water"],"category":"Symbols","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"beach_with_umbrella":{"name":"Beach with Umbrella","unified":"1F3D6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d6.png","sheet_x":11,"sheet_y":7,"short_name":"beach_with_umbrella","short_names":["beach_with_umbrella"],"category":"Places","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"microscope":{"name":"Microscope","unified":"1F52C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f52c.png","sheet_x":23,"sheet_y":28,"short_name":"microscope","short_names":["microscope"],"category":"Objects","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"seedling":{"name":"Seedling","unified":"1F331","variations":[],"docomo":"E746","au":"EB7D","softbank":"E110","google":"FE03E","image":"1f331.png","sheet_x":6,"sheet_y":27,"short_name":"seedling","short_names":["seedling"],"category":"Nature","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smiley_cat":{"name":"Smiling Cat Face with Open Mouth","unified":"1F63A","variations":[],"docomo":"E6F0","au":"EB61","softbank":"E057","google":"FE348","image":"1f63a.png","sheet_x":27,"sheet_y":32,"short_name":"smiley_cat","short_names":["smiley_cat"],"category":"People","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pf":{"name":"Regional Indicator Symbol Letters PF","unified":"1F1F5-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1eb.png","sheet_x":37,"sheet_y":8,"short_name":"flag-pf","short_names":["flag-pf"],"category":"Flags","sort_order":79,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"herb":{"name":"Herb","unified":"1F33F","variations":[],"docomo":"E741","au":"EB82","softbank":"E110","google":"FE04E","image":"1f33f.png","sheet_x":7,"sheet_y":0,"short_name":"herb","short_names":["herb"],"category":"Nature","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"underage":{"name":"No One Under Eighteen Symbol","unified":"1F51E","variations":[],"docomo":null,"au":"EA83","softbank":"E207","google":"FEB25","image":"1f51e.png","sheet_x":23,"sheet_y":14,"short_name":"underage","short_names":["underage"],"category":"Symbols","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hole":{"name":"Hole","unified":"1F573","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f573.png","sheet_x":24,"sheet_y":37,"short_name":"hole","short_names":["hole"],"category":"Objects","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tf":{"name":"Regional Indicator Symbol Letters TF","unified":"1F1F9-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1eb.png","sheet_x":38,"sheet_y":9,"short_name":"flag-tf","short_names":["flag-tf"],"category":"Flags","sort_order":80,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"desert_island":{"name":"Desert Island","unified":"1F3DD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3dd.png","sheet_x":11,"sheet_y":14,"short_name":"desert_island","short_names":["desert_island"],"category":"Places","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smile_cat":{"name":"Grinning Cat Face with Smiling Eyes","unified":"1F638","variations":[],"docomo":"E753","au":"EB7F","softbank":"E404","google":"FE349","image":"1f638.png","sheet_x":27,"sheet_y":30,"short_name":"smile_cat","short_names":["smile_cat"],"category":"People","sort_order":80,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pill":{"name":"Pill","unified":"1F48A","variations":[],"docomo":null,"au":"EA9A","softbank":"E30F","google":"FE50A","image":"1f48a.png","sheet_x":19,"sheet_y":26,"short_name":"pill","short_names":["pill"],"category":"Objects","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shamrock":{"name":"Shamrock","unified":"2618","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2618.png","sheet_x":1,"sheet_y":9,"short_name":"shamrock","short_names":["shamrock"],"category":"Nature","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ga":{"name":"Regional Indicator Symbol Letters GA","unified":"1F1EC-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e6.png","sheet_x":34,"sheet_y":31,"short_name":"flag-ga","short_names":["flag-ga"],"category":"Flags","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"city_sunrise":{"name":"Sunset over Buildings","unified":"1F307","variations":[],"docomo":"E63E","au":"E5DA","softbank":"E44A","google":"FE00C","image":"1f307.png","sheet_x":5,"sheet_y":28,"short_name":"city_sunrise","short_names":["city_sunrise"],"category":"Places","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"joy_cat":{"name":"Cat Face with Tears of Joy","unified":"1F639","variations":[],"docomo":"E72A","au":"EB63","softbank":"E412","google":"FE34A","image":"1f639.png","sheet_x":27,"sheet_y":31,"short_name":"joy_cat","short_names":["joy_cat"],"category":"People","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_mobile_phones":{"name":"No Mobile Phones","unified":"1F4F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4f5.png","sheet_x":22,"sheet_y":15,"short_name":"no_mobile_phones","short_names":["no_mobile_phones"],"category":"Symbols","sort_order":81,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heart_eyes_cat":{"name":"Smiling Cat Face with Heart-Shaped Eyes","unified":"1F63B","variations":[],"docomo":"E726","au":"EB65","softbank":"E106","google":"FE34C","image":"1f63b.png","sheet_x":27,"sheet_y":33,"short_name":"heart_eyes_cat","short_names":["heart_eyes_cat"],"category":"People","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"syringe":{"name":"Syringe","unified":"1F489","variations":[],"docomo":null,"au":"E510","softbank":"E13B","google":"FE509","image":"1f489.png","sheet_x":19,"sheet_y":25,"short_name":"syringe","short_names":["syringe"],"category":"Objects","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"exclamation":{"name":"Heavy Exclamation Mark Symbol","unified":"2757","variations":["2757-FE0F"],"docomo":"E702","au":"E482","softbank":"E021","google":"FEB04","image":"2757.png","sheet_x":4,"sheet_y":8,"short_name":"exclamation","short_names":["exclamation","heavy_exclamation_mark"],"category":"Symbols","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"city_sunset":{"name":"Cityscape at Dusk","unified":"1F306","variations":[],"docomo":null,"au":"E5DA","softbank":"E146","google":"FE00B","image":"1f306.png","sheet_x":5,"sheet_y":27,"short_name":"city_sunset","short_names":["city_sunset"],"category":"Places","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gm":{"name":"Regional Indicator Symbol Letters GM","unified":"1F1EC-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f2.png","sheet_x":34,"sheet_y":40,"short_name":"flag-gm","short_names":["flag-gm"],"category":"Flags","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"four_leaf_clover":{"name":"Four Leaf Clover","unified":"1F340","variations":[],"docomo":"E741","au":"E513","softbank":"E110","google":"FE03C","image":"1f340.png","sheet_x":7,"sheet_y":1,"short_name":"four_leaf_clover","short_names":["four_leaf_clover"],"category":"Nature","sort_order":82,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"grey_exclamation":{"name":"White Exclamation Mark Ornament","unified":"2755","variations":[],"docomo":"E702","au":"E482","softbank":"E337","google":"FEB0B","image":"2755.png","sheet_x":4,"sheet_y":7,"short_name":"grey_exclamation","short_names":["grey_exclamation"],"category":"Symbols","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"smirk_cat":{"name":"Cat Face with Wry Smile","unified":"1F63C","variations":[],"docomo":"E753","au":"EB6A","softbank":"E404","google":"FE34F","image":"1f63c.png","sheet_x":27,"sheet_y":34,"short_name":"smirk_cat","short_names":["smirk_cat"],"category":"People","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"thermometer":{"name":"Thermometer","unified":"1F321","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f321.png","sheet_x":6,"sheet_y":13,"short_name":"thermometer","short_names":["thermometer"],"category":"Objects","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cityscape":{"name":"Cityscape","unified":"1F3D9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d9.png","sheet_x":11,"sheet_y":10,"short_name":"cityscape","short_names":["cityscape"],"category":"Places","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ge":{"name":"Regional Indicator Symbol Letters GE","unified":"1F1EC-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ea.png","sheet_x":34,"sheet_y":34,"short_name":"flag-ge","short_names":["flag-ge"],"category":"Flags","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bamboo":{"name":"Pine Decoration","unified":"1F38D","variations":[],"docomo":null,"au":"EAE3","softbank":"E436","google":"FE518","image":"1f38d.png","sheet_x":9,"sheet_y":1,"short_name":"bamboo","short_names":["bamboo"],"category":"Nature","sort_order":83,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-de":{"name":"Regional Indicator Symbol Letters DE","unified":"1F1E9-1F1EA","variations":[],"docomo":null,"au":"EB0E","softbank":"E50E","google":"FE4E8","image":"1f1e9-1f1ea.png","sheet_x":34,"sheet_y":9,"short_name":"flag-de","short_names":["flag-de","de"],"category":"Flags","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"night_with_stars":{"name":"Night with Stars","unified":"1F303","variations":[],"docomo":"E6B3","au":"EAF1","softbank":"E44B","google":"FE008","image":"1f303.png","sheet_x":5,"sheet_y":24,"short_name":"night_with_stars","short_names":["night_with_stars"],"category":"Places","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kissing_cat":{"name":"Kissing Cat Face with Closed Eyes","unified":"1F63D","variations":[],"docomo":"E726","au":"EB60","softbank":"E418","google":"FE34B","image":"1f63d.png","sheet_x":27,"sheet_y":35,"short_name":"kissing_cat","short_names":["kissing_cat"],"category":"People","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tanabata_tree":{"name":"Tanabata Tree","unified":"1F38B","variations":[],"docomo":null,"au":"EB3D","softbank":null,"google":"FE521","image":"1f38b.png","sheet_x":8,"sheet_y":40,"short_name":"tanabata_tree","short_names":["tanabata_tree"],"category":"Nature","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"label":{"name":"Label","unified":"1F3F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f7.png","sheet_x":11,"sheet_y":37,"short_name":"label","short_names":["label"],"category":"Objects","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"question":{"name":"Black Question Mark Ornament","unified":"2753","variations":[],"docomo":null,"au":"E483","softbank":"E020","google":"FEB09","image":"2753.png","sheet_x":4,"sheet_y":5,"short_name":"question","short_names":["question"],"category":"Symbols","sort_order":84,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"leaves":{"name":"Leaf Fluttering in Wind","unified":"1F343","variations":[],"docomo":null,"au":"E5CD","softbank":"E447","google":"FE043","image":"1f343.png","sheet_x":7,"sheet_y":4,"short_name":"leaves","short_names":["leaves"],"category":"Nature","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"grey_question":{"name":"White Question Mark Ornament","unified":"2754","variations":[],"docomo":null,"au":"E483","softbank":"E336","google":"FEB0A","image":"2754.png","sheet_x":4,"sheet_y":6,"short_name":"grey_question","short_names":["grey_question"],"category":"Symbols","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scream_cat":{"name":"Weary Cat Face","unified":"1F640","variations":[],"docomo":"E6F3","au":"EB66","softbank":"E403","google":"FE350","image":"1f640.png","sheet_x":27,"sheet_y":38,"short_name":"scream_cat","short_names":["scream_cat"],"category":"People","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bookmark":{"name":"Bookmark","unified":"1F516","variations":[],"docomo":null,"au":"EB07","softbank":null,"google":"FEB8F","image":"1f516.png","sheet_x":23,"sheet_y":6,"short_name":"bookmark","short_names":["bookmark"],"category":"Objects","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bridge_at_night":{"name":"Bridge at Night","unified":"1F309","variations":[],"docomo":"E6B3","au":"E4BF","softbank":"E44B","google":"FE010","image":"1f309.png","sheet_x":5,"sheet_y":30,"short_name":"bridge_at_night","short_names":["bridge_at_night"],"category":"Places","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gh":{"name":"Regional Indicator Symbol Letters GH","unified":"1F1EC-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ed.png","sheet_x":34,"sheet_y":37,"short_name":"flag-gh","short_names":["flag-gh"],"category":"Flags","sort_order":85,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"milky_way":{"name":"Milky Way","unified":"1F30C","variations":[],"docomo":"E6B3","au":"EB5F","softbank":"E44B","google":"FE03B","image":"1f30c.png","sheet_x":5,"sheet_y":33,"short_name":"milky_way","short_names":["milky_way"],"category":"Places","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"toilet":{"name":"Toilet","unified":"1F6BD","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E140","google":"FE507","image":"1f6bd.png","sheet_x":31,"sheet_y":11,"short_name":"toilet","short_names":["toilet"],"category":"Objects","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crying_cat_face":{"name":"Crying Cat Face","unified":"1F63F","variations":[],"docomo":"E72E","au":"EB68","softbank":"E413","google":"FE34D","image":"1f63f.png","sheet_x":27,"sheet_y":37,"short_name":"crying_cat_face","short_names":["crying_cat_face"],"category":"People","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bangbang":{"name":"Double Exclamation Mark","unified":"203C","variations":["203C-FE0F"],"docomo":"E704","au":"EB30","softbank":null,"google":"FEB06","image":"203c.png","sheet_x":0,"sheet_y":2,"short_name":"bangbang","short_names":["bangbang"],"category":"Symbols","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fallen_leaf":{"name":"Fallen Leaf","unified":"1F342","variations":[],"docomo":"E747","au":"E5CD","softbank":"E119","google":"FE042","image":"1f342.png","sheet_x":7,"sheet_y":3,"short_name":"fallen_leaf","short_names":["fallen_leaf"],"category":"Nature","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gi":{"name":"Regional Indicator Symbol Letters GI","unified":"1F1EC-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ee.png","sheet_x":34,"sheet_y":38,"short_name":"flag-gi","short_names":["flag-gi"],"category":"Flags","sort_order":86,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pouting_cat":{"name":"Pouting Cat Face","unified":"1F63E","variations":[],"docomo":"E724","au":"EB5E","softbank":"E416","google":"FE34E","image":"1f63e.png","sheet_x":27,"sheet_y":36,"short_name":"pouting_cat","short_names":["pouting_cat"],"category":"People","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"maple_leaf":{"name":"Maple Leaf","unified":"1F341","variations":[],"docomo":"E747","au":"E4CE","softbank":"E118","google":"FE03F","image":"1f341.png","sheet_x":7,"sheet_y":2,"short_name":"maple_leaf","short_names":["maple_leaf"],"category":"Nature","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gr":{"name":"Regional Indicator Symbol Letters GR","unified":"1F1EC-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f7.png","sheet_x":35,"sheet_y":3,"short_name":"flag-gr","short_names":["flag-gr"],"category":"Flags","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"interrobang":{"name":"Exclamation Question Mark","unified":"2049","variations":["2049-FE0F"],"docomo":"E703","au":"EB2F","softbank":null,"google":"FEB05","image":"2049.png","sheet_x":0,"sheet_y":3,"short_name":"interrobang","short_names":["interrobang"],"category":"Symbols","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"stars":{"name":"Shooting Star","unified":"1F320","variations":[],"docomo":null,"au":"E468","softbank":null,"google":"FEB6A","image":"1f320.png","sheet_x":6,"sheet_y":12,"short_name":"stars","short_names":["stars"],"category":"Places","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shower":{"name":"Shower","unified":"1F6BF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6bf.png","sheet_x":31,"sheet_y":13,"short_name":"shower","short_names":["shower"],"category":"Objects","sort_order":87,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"raised_hands":{"name":"Person Raising Both Hands in Celebration","unified":"1F64C","variations":[],"docomo":null,"au":"EB86","softbank":"E427","google":"FE358","image":"1f64c.png","sheet_x":28,"sheet_y":29,"short_name":"raised_hands","short_names":["raised_hands"],"category":"People","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64C-1F3FB":{"unified":"1F64C-1F3FB","image":"1f64c-1f3fb.png","sheet_x":28,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FC":{"unified":"1F64C-1F3FC","image":"1f64c-1f3fc.png","sheet_x":28,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FD":{"unified":"1F64C-1F3FD","image":"1f64c-1f3fd.png","sheet_x":28,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FE":{"unified":"1F64C-1F3FE","image":"1f64c-1f3fe.png","sheet_x":28,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64C-1F3FF":{"unified":"1F64C-1F3FF","image":"1f64c-1f3ff.png","sheet_x":28,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-gl":{"name":"Regional Indicator Symbol Letters GL","unified":"1F1EC-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f1.png","sheet_x":34,"sheet_y":39,"short_name":"flag-gl","short_names":["flag-gl"],"category":"Flags","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ear_of_rice":{"name":"Ear of Rice","unified":"1F33E","variations":[],"docomo":null,"au":null,"softbank":"E444","google":"FE049","image":"1f33e.png","sheet_x":6,"sheet_y":40,"short_name":"ear_of_rice","short_names":["ear_of_rice"],"category":"Nature","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sparkler":{"name":"Firework Sparkler","unified":"1F387","variations":[],"docomo":null,"au":"EAEB","softbank":"E440","google":"FE51D","image":"1f387.png","sheet_x":8,"sheet_y":36,"short_name":"sparkler","short_names":["sparkler"],"category":"Places","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bathtub":{"name":"Bathtub","unified":"1F6C1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c1.png","sheet_x":31,"sheet_y":20,"short_name":"bathtub","short_names":["bathtub"],"category":"Objects","sort_order":88,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hibiscus":{"name":"Hibiscus","unified":"1F33A","variations":[],"docomo":null,"au":"EA94","softbank":"E303","google":"FE045","image":"1f33a.png","sheet_x":6,"sheet_y":36,"short_name":"hibiscus","short_names":["hibiscus"],"category":"Nature","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gd":{"name":"Regional Indicator Symbol Letters GD","unified":"1F1EC-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1e9.png","sheet_x":34,"sheet_y":33,"short_name":"flag-gd","short_names":["flag-gd"],"category":"Flags","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"key":{"name":"Key","unified":"1F511","variations":[],"docomo":"E6D9","au":"E519","softbank":"E03F","google":"FEB82","image":"1f511.png","sheet_x":23,"sheet_y":1,"short_name":"key","short_names":["key"],"category":"Objects","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"low_brightness":{"name":"Low Brightness Symbol","unified":"1F505","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f505.png","sheet_x":22,"sheet_y":30,"short_name":"low_brightness","short_names":["low_brightness"],"category":"Symbols","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fireworks":{"name":"Fireworks","unified":"1F386","variations":[],"docomo":null,"au":"E5CC","softbank":"E117","google":"FE515","image":"1f386.png","sheet_x":8,"sheet_y":35,"short_name":"fireworks","short_names":["fireworks"],"category":"Places","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clap":{"name":"Clapping Hands Sign","unified":"1F44F","variations":[],"docomo":null,"au":"EAD3","softbank":"E41F","google":"FEB9E","image":"1f44f.png","sheet_x":15,"sheet_y":16,"short_name":"clap","short_names":["clap"],"category":"People","sort_order":89,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44F-1F3FB":{"unified":"1F44F-1F3FB","image":"1f44f-1f3fb.png","sheet_x":15,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FC":{"unified":"1F44F-1F3FC","image":"1f44f-1f3fc.png","sheet_x":15,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FD":{"unified":"1F44F-1F3FD","image":"1f44f-1f3fd.png","sheet_x":15,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FE":{"unified":"1F44F-1F3FE","image":"1f44f-1f3fe.png","sheet_x":15,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44F-1F3FF":{"unified":"1F44F-1F3FF","image":"1f44f-1f3ff.png","sheet_x":15,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-gp":{"name":"Regional Indicator Symbol Letters GP","unified":"1F1EC-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f5.png","sheet_x":35,"sheet_y":1,"short_name":"flag-gp","short_names":["flag-gp"],"category":"Flags","sort_order":90,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"old_key":{"name":"Old Key","unified":"1F5DD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5dd.png","sheet_x":26,"sheet_y":2,"short_name":"old_key","short_names":["old_key"],"category":"Objects","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"high_brightness":{"name":"High Brightness Symbol","unified":"1F506","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f506.png","sheet_x":22,"sheet_y":31,"short_name":"high_brightness","short_names":["high_brightness"],"category":"Symbols","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rainbow":{"name":"Rainbow","unified":"1F308","variations":[],"docomo":null,"au":"EAF2","softbank":"E44C","google":"FE00D","image":"1f308.png","sheet_x":5,"sheet_y":29,"short_name":"rainbow","short_names":["rainbow"],"category":"Places","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wave":{"name":"Waving Hand Sign","unified":"1F44B","variations":[],"docomo":"E695","au":"EAD6","softbank":"E41E","google":"FEB9D","image":"1f44b.png","sheet_x":14,"sheet_y":33,"short_name":"wave","short_names":["wave"],"category":"People","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44B-1F3FB":{"unified":"1F44B-1F3FB","image":"1f44b-1f3fb.png","sheet_x":14,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FC":{"unified":"1F44B-1F3FC","image":"1f44b-1f3fc.png","sheet_x":14,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FD":{"unified":"1F44B-1F3FD","image":"1f44b-1f3fd.png","sheet_x":14,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FE":{"unified":"1F44B-1F3FE","image":"1f44b-1f3fe.png","sheet_x":14,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44B-1F3FF":{"unified":"1F44B-1F3FF","image":"1f44b-1f3ff.png","sheet_x":14,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"sunflower":{"name":"Sunflower","unified":"1F33B","variations":[],"docomo":null,"au":"E4E3","softbank":"E305","google":"FE046","image":"1f33b.png","sheet_x":6,"sheet_y":37,"short_name":"sunflower","short_names":["sunflower"],"category":"Nature","sort_order":90,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"+1":{"name":"Thumbs Up Sign","unified":"1F44D","variations":[],"docomo":"E727","au":"E4F9","softbank":"E00E","google":"FEB97","image":"1f44d.png","sheet_x":15,"sheet_y":4,"short_name":"+1","short_names":["+1","thumbsup"],"category":"People","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44D-1F3FB":{"unified":"1F44D-1F3FB","image":"1f44d-1f3fb.png","sheet_x":15,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FC":{"unified":"1F44D-1F3FC","image":"1f44d-1f3fc.png","sheet_x":15,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FD":{"unified":"1F44D-1F3FD","image":"1f44d-1f3fd.png","sheet_x":15,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FE":{"unified":"1F44D-1F3FE","image":"1f44d-1f3fe.png","sheet_x":15,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44D-1F3FF":{"unified":"1F44D-1F3FF","image":"1f44d-1f3ff.png","sheet_x":15,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"couch_and_lamp":{"name":"Couch and Lamp","unified":"1F6CB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cb.png","sheet_x":31,"sheet_y":25,"short_name":"couch_and_lamp","short_names":["couch_and_lamp"],"category":"Objects","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"house_buildings":{"name":"House Buildings","unified":"1F3D8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3d8.png","sheet_x":11,"sheet_y":9,"short_name":"house_buildings","short_names":["house_buildings"],"category":"Places","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rose":{"name":"Rose","unified":"1F339","variations":[],"docomo":null,"au":"E5BA","softbank":"E032","google":"FE041","image":"1f339.png","sheet_x":6,"sheet_y":35,"short_name":"rose","short_names":["rose"],"category":"Nature","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"trident":{"name":"Trident Emblem","unified":"1F531","variations":[],"docomo":"E71A","au":"E5C9","softbank":"E031","google":"FE4D2","image":"1f531.png","sheet_x":23,"sheet_y":33,"short_name":"trident","short_names":["trident"],"category":"Symbols","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gu":{"name":"Regional Indicator Symbol Letters GU","unified":"1F1EC-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fa.png","sheet_x":35,"sheet_y":6,"short_name":"flag-gu","short_names":["flag-gu"],"category":"Flags","sort_order":91,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"european_castle":{"name":"European Castle","unified":"1F3F0","variations":[],"docomo":null,"au":"EAF8","softbank":"E506","google":"FE4BF","image":"1f3f0.png","sheet_x":11,"sheet_y":33,"short_name":"european_castle","short_names":["european_castle"],"category":"Places","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"-1":{"name":"Thumbs Down Sign","unified":"1F44E","variations":[],"docomo":"E700","au":"EAD5","softbank":"E421","google":"FEBA0","image":"1f44e.png","sheet_x":15,"sheet_y":10,"short_name":"-1","short_names":["-1","thumbsdown"],"category":"People","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44E-1F3FB":{"unified":"1F44E-1F3FB","image":"1f44e-1f3fb.png","sheet_x":15,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FC":{"unified":"1F44E-1F3FC","image":"1f44e-1f3fc.png","sheet_x":15,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FD":{"unified":"1F44E-1F3FD","image":"1f44e-1f3fd.png","sheet_x":15,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FE":{"unified":"1F44E-1F3FE","image":"1f44e-1f3fe.png","sheet_x":15,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44E-1F3FF":{"unified":"1F44E-1F3FF","image":"1f44e-1f3ff.png","sheet_x":15,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"fleur_de_lis":{"name":"Fleur-De-Lis","unified":"269C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"269c.png","sheet_x":2,"sheet_y":11,"short_name":"fleur_de_lis","short_names":["fleur_de_lis"],"category":"Symbols","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tulip":{"name":"Tulip","unified":"1F337","variations":[],"docomo":"E743","au":"E4E4","softbank":"E304","google":"FE03D","image":"1f337.png","sheet_x":6,"sheet_y":33,"short_name":"tulip","short_names":["tulip"],"category":"Nature","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sleeping_accommodation":{"name":"Sleeping Accommodation","unified":"1F6CC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cc.png","sheet_x":31,"sheet_y":26,"short_name":"sleeping_accommodation","short_names":["sleeping_accommodation"],"category":"Objects","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gt":{"name":"Regional Indicator Symbol Letters GT","unified":"1F1EC-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f9.png","sheet_x":35,"sheet_y":5,"short_name":"flag-gt","short_names":["flag-gt"],"category":"Flags","sort_order":92,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"part_alternation_mark":{"name":"Part Alternation Mark","unified":"303D","variations":["303D-FE0F"],"docomo":null,"au":null,"softbank":"E12C","google":"FE81B","image":"303d.png","sheet_x":4,"sheet_y":27,"short_name":"part_alternation_mark","short_names":["part_alternation_mark"],"category":"Symbols","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"blossom":{"name":"Blossom","unified":"1F33C","variations":[],"docomo":null,"au":"EB49","softbank":"E305","google":"FE04D","image":"1f33c.png","sheet_x":6,"sheet_y":38,"short_name":"blossom","short_names":["blossom"],"category":"Nature","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bed":{"name":"Bed","unified":"1F6CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cf.png","sheet_x":31,"sheet_y":29,"short_name":"bed","short_names":["bed"],"category":"Objects","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gg":{"name":"Regional Indicator Symbol Letters GG","unified":"1F1EC-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1ec.png","sheet_x":34,"sheet_y":36,"short_name":"flag-gg","short_names":["flag-gg"],"category":"Flags","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"japanese_castle":{"name":"Japanese Castle","unified":"1F3EF","variations":[],"docomo":null,"au":"EAF7","softbank":"E505","google":"FE4BE","image":"1f3ef.png","sheet_x":11,"sheet_y":32,"short_name":"japanese_castle","short_names":["japanese_castle"],"category":"Places","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"facepunch":{"name":"Fisted Hand Sign","unified":"1F44A","variations":[],"docomo":"E6FD","au":"E4F3","softbank":"E00D","google":"FEB96","image":"1f44a.png","sheet_x":14,"sheet_y":27,"short_name":"facepunch","short_names":["facepunch","punch"],"category":"People","sort_order":93,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44A-1F3FB":{"unified":"1F44A-1F3FB","image":"1f44a-1f3fb.png","sheet_x":14,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FC":{"unified":"1F44A-1F3FC","image":"1f44a-1f3fc.png","sheet_x":14,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FD":{"unified":"1F44A-1F3FD","image":"1f44a-1f3fd.png","sheet_x":14,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FE":{"unified":"1F44A-1F3FE","image":"1f44a-1f3fe.png","sheet_x":14,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44A-1F3FF":{"unified":"1F44A-1F3FF","image":"1f44a-1f3ff.png","sheet_x":14,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"stadium":{"name":"Stadium","unified":"1F3DF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3df.png","sheet_x":11,"sheet_y":16,"short_name":"stadium","short_names":["stadium"],"category":"Places","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gn":{"name":"Regional Indicator Symbol Letters GN","unified":"1F1EC-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f3.png","sheet_x":35,"sheet_y":0,"short_name":"flag-gn","short_names":["flag-gn"],"category":"Flags","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"warning":{"name":"Warning Sign","unified":"26A0","variations":["26A0-FE0F"],"docomo":"E737","au":"E481","softbank":"E252","google":"FEB23","image":"26a0.png","sheet_x":2,"sheet_y":12,"short_name":"warning","short_names":["warning"],"category":"Symbols","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"door":{"name":"Door","unified":"1F6AA","variations":[],"docomo":"E714","au":null,"softbank":null,"google":"FE4F3","image":"1f6aa.png","sheet_x":30,"sheet_y":18,"short_name":"door","short_names":["door"],"category":"Objects","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cherry_blossom":{"name":"Cherry Blossom","unified":"1F338","variations":[],"docomo":"E748","au":"E4CA","softbank":"E030","google":"FE040","image":"1f338.png","sheet_x":6,"sheet_y":34,"short_name":"cherry_blossom","short_names":["cherry_blossom"],"category":"Nature","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fist":{"name":"Raised Fist","unified":"270A","variations":[],"docomo":"E693","au":"EB83","softbank":"E010","google":"FEB93","image":"270a.png","sheet_x":3,"sheet_y":9,"short_name":"fist","short_names":["fist"],"category":"People","sort_order":94,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270A-1F3FB":{"unified":"270A-1F3FB","image":"270a-1f3fb.png","sheet_x":3,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FC":{"unified":"270A-1F3FC","image":"270a-1f3fc.png","sheet_x":3,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FD":{"unified":"270A-1F3FD","image":"270a-1f3fd.png","sheet_x":3,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FE":{"unified":"270A-1F3FE","image":"270a-1f3fe.png","sheet_x":3,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270A-1F3FF":{"unified":"270A-1F3FF","image":"270a-1f3ff.png","sheet_x":3,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"statue_of_liberty":{"name":"Statue of Liberty","unified":"1F5FD","variations":[],"docomo":null,"au":null,"softbank":"E51D","google":"FE4C6","image":"1f5fd.png","sheet_x":26,"sheet_y":12,"short_name":"statue_of_liberty","short_names":["statue_of_liberty"],"category":"Places","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"v":{"name":"Victory Hand","unified":"270C","variations":["270C-FE0F"],"docomo":"E694","au":"E5A6","softbank":"E011","google":"FEB94","image":"270c.png","sheet_x":3,"sheet_y":21,"short_name":"v","short_names":["v"],"category":"People","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270C-1F3FB":{"unified":"270C-1F3FB","image":"270c-1f3fb.png","sheet_x":3,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FC":{"unified":"270C-1F3FC","image":"270c-1f3fc.png","sheet_x":3,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FD":{"unified":"270C-1F3FD","image":"270c-1f3fd.png","sheet_x":3,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FE":{"unified":"270C-1F3FE","image":"270c-1f3fe.png","sheet_x":3,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270C-1F3FF":{"unified":"270C-1F3FF","image":"270c-1f3ff.png","sheet_x":3,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"children_crossing":{"name":"Children Crossing","unified":"1F6B8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b8.png","sheet_x":31,"sheet_y":6,"short_name":"children_crossing","short_names":["children_crossing"],"category":"Symbols","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bouquet":{"name":"Bouquet","unified":"1F490","variations":[],"docomo":null,"au":"EA95","softbank":"E306","google":"FE828","image":"1f490.png","sheet_x":19,"sheet_y":32,"short_name":"bouquet","short_names":["bouquet"],"category":"Nature","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bellhop_bell":{"name":"Bellhop Bell","unified":"1F6CE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ce.png","sheet_x":31,"sheet_y":28,"short_name":"bellhop_bell","short_names":["bellhop_bell"],"category":"Objects","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gw":{"name":"Regional Indicator Symbol Letters GW","unified":"1F1EC-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fc.png","sheet_x":35,"sheet_y":7,"short_name":"flag-gw","short_names":["flag-gw"],"category":"Flags","sort_order":95,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"beginner":{"name":"Japanese Symbol for Beginner","unified":"1F530","variations":[],"docomo":null,"au":"E480","softbank":"E209","google":"FE044","image":"1f530.png","sheet_x":23,"sheet_y":32,"short_name":"beginner","short_names":["beginner"],"category":"Symbols","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"house":{"name":"House Building","unified":"1F3E0","variations":[],"docomo":"E663","au":"E4AB","softbank":"E036","google":"FE4B0","image":"1f3e0.png","sheet_x":11,"sheet_y":17,"short_name":"house","short_names":["house"],"category":"Places","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mushroom":{"name":"Mushroom","unified":"1F344","variations":[],"docomo":null,"au":"EB37","softbank":null,"google":"FE04B","image":"1f344.png","sheet_x":7,"sheet_y":5,"short_name":"mushroom","short_names":["mushroom"],"category":"Nature","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"frame_with_picture":{"name":"Frame with Picture","unified":"1F5BC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5bc.png","sheet_x":25,"sheet_y":35,"short_name":"frame_with_picture","short_names":["frame_with_picture"],"category":"Objects","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ok_hand":{"name":"Ok Hand Sign","unified":"1F44C","variations":[],"docomo":"E70B","au":"EAD4","softbank":"E420","google":"FEB9F","image":"1f44c.png","sheet_x":14,"sheet_y":39,"short_name":"ok_hand","short_names":["ok_hand"],"category":"People","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F44C-1F3FB":{"unified":"1F44C-1F3FB","image":"1f44c-1f3fb.png","sheet_x":14,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FC":{"unified":"1F44C-1F3FC","image":"1f44c-1f3fc.png","sheet_x":15,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FD":{"unified":"1F44C-1F3FD","image":"1f44c-1f3fd.png","sheet_x":15,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FE":{"unified":"1F44C-1F3FE","image":"1f44c-1f3fe.png","sheet_x":15,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F44C-1F3FF":{"unified":"1F44C-1F3FF","image":"1f44c-1f3ff.png","sheet_x":15,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-gy":{"name":"Regional Indicator Symbol Letters GY","unified":"1F1EC-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1fe.png","sheet_x":35,"sheet_y":8,"short_name":"flag-gy","short_names":["flag-gy"],"category":"Flags","sort_order":96,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ht":{"name":"Regional Indicator Symbol Letters HT","unified":"1F1ED-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f9.png","sheet_x":35,"sheet_y":13,"short_name":"flag-ht","short_names":["flag-ht"],"category":"Flags","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"house_with_garden":{"name":"House with Garden","unified":"1F3E1","variations":[],"docomo":"E663","au":"EB09","softbank":"E036","google":"FE4B1","image":"1f3e1.png","sheet_x":11,"sheet_y":18,"short_name":"house_with_garden","short_names":["house_with_garden"],"category":"Places","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"world_map":{"name":"World Map","unified":"1F5FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5fa.png","sheet_x":26,"sheet_y":9,"short_name":"world_map","short_names":["world_map"],"category":"Objects","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chestnut":{"name":"Chestnut","unified":"1F330","variations":[],"docomo":null,"au":"EB38","softbank":null,"google":"FE04C","image":"1f330.png","sheet_x":6,"sheet_y":26,"short_name":"chestnut","short_names":["chestnut"],"category":"Nature","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hand":{"name":"Raised Hand","unified":"270B","variations":[],"docomo":"E695","au":"E5A7","softbank":"E012","google":"FEB95","image":"270b.png","sheet_x":3,"sheet_y":15,"short_name":"hand","short_names":["hand","raised_hand"],"category":"People","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270B-1F3FB":{"unified":"270B-1F3FB","image":"270b-1f3fb.png","sheet_x":3,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FC":{"unified":"270B-1F3FC","image":"270b-1f3fc.png","sheet_x":3,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FD":{"unified":"270B-1F3FD","image":"270b-1f3fd.png","sheet_x":3,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FE":{"unified":"270B-1F3FE","image":"270b-1f3fe.png","sheet_x":3,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270B-1F3FF":{"unified":"270B-1F3FF","image":"270b-1f3ff.png","sheet_x":3,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"recycle":{"name":"Black Universal Recycling Symbol","unified":"267B","variations":["267B-FE0F"],"docomo":"E735","au":"EB79","softbank":null,"google":"FEB2C","image":"267b.png","sheet_x":2,"sheet_y":2,"short_name":"recycle","short_names":["recycle"],"category":"Symbols","sort_order":97,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"umbrella_on_ground":{"name":"Umbrella on Ground","unified":"26F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26f1.png","sheet_x":2,"sheet_y":31,"short_name":"umbrella_on_ground","short_names":["umbrella_on_ground"],"category":"Objects","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"jack_o_lantern":{"name":"Jack-O-Lantern","unified":"1F383","variations":[],"docomo":null,"au":"EAEE","softbank":"E445","google":"FE51F","image":"1f383.png","sheet_x":8,"sheet_y":27,"short_name":"jack_o_lantern","short_names":["jack_o_lantern"],"category":"Nature","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"open_hands":{"name":"Open Hands Sign","unified":"1F450","variations":[],"docomo":"E695","au":"EAD6","softbank":"E422","google":"FEBA1","image":"1f450.png","sheet_x":15,"sheet_y":22,"short_name":"open_hands","short_names":["open_hands"],"category":"People","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F450-1F3FB":{"unified":"1F450-1F3FB","image":"1f450-1f3fb.png","sheet_x":15,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FC":{"unified":"1F450-1F3FC","image":"1f450-1f3fc.png","sheet_x":15,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FD":{"unified":"1F450-1F3FD","image":"1f450-1f3fd.png","sheet_x":15,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FE":{"unified":"1F450-1F3FE","image":"1f450-1f3fe.png","sheet_x":15,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F450-1F3FF":{"unified":"1F450-1F3FF","image":"1f450-1f3ff.png","sheet_x":15,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"derelict_house_building":{"name":"Derelict House Building","unified":"1F3DA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3da.png","sheet_x":11,"sheet_y":11,"short_name":"derelict_house_building","short_names":["derelict_house_building"],"category":"Places","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"u6307":{"name":"Squared Cjk Unified Ideograph-6307","unified":"1F22F","variations":["1F22F-FE0F"],"docomo":null,"au":"EA8B","softbank":"E22C","google":"FEB40","image":"1f22f.png","sheet_x":5,"sheet_y":9,"short_name":"u6307","short_names":["u6307"],"category":"Symbols","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-hn":{"name":"Regional Indicator Symbol Letters HN","unified":"1F1ED-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f3.png","sheet_x":35,"sheet_y":11,"short_name":"flag-hn","short_names":["flag-hn"],"category":"Flags","sort_order":98,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shell":{"name":"Spiral Shell","unified":"1F41A","variations":[],"docomo":null,"au":"EAEC","softbank":"E441","google":"FE1C6","image":"1f41a.png","sheet_x":12,"sheet_y":31,"short_name":"shell","short_names":["shell"],"category":"Nature","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-hk":{"name":"Regional Indicator Symbol Letters HK","unified":"1F1ED-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f0.png","sheet_x":35,"sheet_y":9,"short_name":"flag-hk","short_names":["flag-hk"],"category":"Flags","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"moyai":{"name":"Moyai","unified":"1F5FF","variations":[],"docomo":null,"au":"EB6C","softbank":null,"google":"FE4C8","image":"1f5ff.png","sheet_x":26,"sheet_y":14,"short_name":"moyai","short_names":["moyai"],"category":"Objects","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"muscle":{"name":"Flexed Biceps","unified":"1F4AA","variations":[],"docomo":null,"au":"E4E9","softbank":"E14C","google":"FEB5E","image":"1f4aa.png","sheet_x":20,"sheet_y":17,"short_name":"muscle","short_names":["muscle"],"category":"People","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F4AA-1F3FB":{"unified":"1F4AA-1F3FB","image":"1f4aa-1f3fb.png","sheet_x":20,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FC":{"unified":"1F4AA-1F3FC","image":"1f4aa-1f3fc.png","sheet_x":20,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FD":{"unified":"1F4AA-1F3FD","image":"1f4aa-1f3fd.png","sheet_x":20,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FE":{"unified":"1F4AA-1F3FE","image":"1f4aa-1f3fe.png","sheet_x":20,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F4AA-1F3FF":{"unified":"1F4AA-1F3FF","image":"1f4aa-1f3ff.png","sheet_x":20,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"chart":{"name":"Chart with Upwards Trend and Yen Sign","unified":"1F4B9","variations":[],"docomo":null,"au":"E5DC","softbank":"E14A","google":"FE4DF","image":"1f4b9.png","sheet_x":20,"sheet_y":37,"short_name":"chart","short_names":["chart"],"category":"Symbols","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"office":{"name":"Office Building","unified":"1F3E2","variations":[],"docomo":"E664","au":"E4AD","softbank":"E038","google":"FE4B2","image":"1f3e2.png","sheet_x":11,"sheet_y":19,"short_name":"office","short_names":["office"],"category":"Places","sort_order":99,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shopping_bags":{"name":"Shopping Bags","unified":"1F6CD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6cd.png","sheet_x":31,"sheet_y":27,"short_name":"shopping_bags","short_names":["shopping_bags"],"category":"Objects","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"department_store":{"name":"Department Store","unified":"1F3EC","variations":[],"docomo":null,"au":"EAF6","softbank":"E504","google":"FE4BD","image":"1f3ec.png","sheet_x":11,"sheet_y":29,"short_name":"department_store","short_names":["department_store"],"category":"Places","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pray":{"name":"Person with Folded Hands","unified":"1F64F","variations":[],"docomo":null,"au":"EAD2","softbank":"E41D","google":"FE35B","image":"1f64f.png","sheet_x":29,"sheet_y":6,"short_name":"pray","short_names":["pray"],"category":"People","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64F-1F3FB":{"unified":"1F64F-1F3FB","image":"1f64f-1f3fb.png","sheet_x":29,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FC":{"unified":"1F64F-1F3FC","image":"1f64f-1f3fc.png","sheet_x":29,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FD":{"unified":"1F64F-1F3FD","image":"1f64f-1f3fd.png","sheet_x":29,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FE":{"unified":"1F64F-1F3FE","image":"1f64f-1f3fe.png","sheet_x":29,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64F-1F3FF":{"unified":"1F64F-1F3FF","image":"1f64f-1f3ff.png","sheet_x":29,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-hu":{"name":"Regional Indicator Symbol Letters HU","unified":"1F1ED-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1fa.png","sheet_x":35,"sheet_y":14,"short_name":"flag-hu","short_names":["flag-hu"],"category":"Flags","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sparkle":{"name":"Sparkle","unified":"2747","variations":["2747-FE0F"],"docomo":"E6FA","au":"E46C","softbank":"E32E","google":"FEB77","image":"2747.png","sheet_x":4,"sheet_y":2,"short_name":"sparkle","short_names":["sparkle"],"category":"Symbols","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spider_web":{"name":"Spider Web","unified":"1F578","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f578.png","sheet_x":25,"sheet_y":6,"short_name":"spider_web","short_names":["spider_web"],"category":"Nature","sort_order":100,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"point_up":{"name":"White Up Pointing Index","unified":"261D","variations":["261D-FE0F"],"docomo":null,"au":"E4F6","softbank":"E00F","google":"FEB98","image":"261d.png","sheet_x":1,"sheet_y":10,"short_name":"point_up","short_names":["point_up"],"category":"People","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"261D-1F3FB":{"unified":"261D-1F3FB","image":"261d-1f3fb.png","sheet_x":1,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FC":{"unified":"261D-1F3FC","image":"261d-1f3fc.png","sheet_x":1,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FD":{"unified":"261D-1F3FD","image":"261d-1f3fd.png","sheet_x":1,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FE":{"unified":"261D-1F3FE","image":"261d-1f3fe.png","sheet_x":1,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"261D-1F3FF":{"unified":"261D-1F3FF","image":"261d-1f3ff.png","sheet_x":1,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"eight_spoked_asterisk":{"name":"Eight Spoked Asterisk","unified":"2733","variations":["2733-FE0F"],"docomo":"E6F8","au":"E53E","softbank":"E206","google":"FEB62","image":"2733.png","sheet_x":3,"sheet_y":40,"short_name":"eight_spoked_asterisk","short_names":["eight_spoked_asterisk"],"category":"Symbols","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-is":{"name":"Regional Indicator Symbol Letters IS","unified":"1F1EE-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f8.png","sheet_x":35,"sheet_y":24,"short_name":"flag-is","short_names":["flag-is"],"category":"Flags","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"post_office":{"name":"Japanese Post Office","unified":"1F3E3","variations":[],"docomo":"E665","au":"E5DE","softbank":"E153","google":"FE4B3","image":"1f3e3.png","sheet_x":11,"sheet_y":20,"short_name":"post_office","short_names":["post_office"],"category":"Places","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"earth_americas":{"name":"Earth Globe Americas","unified":"1F30E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30e.png","sheet_x":5,"sheet_y":35,"short_name":"earth_americas","short_names":["earth_americas"],"category":"Nature","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"balloon":{"name":"Balloon","unified":"1F388","variations":[],"docomo":null,"au":"EA9B","softbank":"E310","google":"FE516","image":"1f388.png","sheet_x":8,"sheet_y":37,"short_name":"balloon","short_names":["balloon"],"category":"Objects","sort_order":101,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"european_post_office":{"name":"European Post Office","unified":"1F3E4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3e4.png","sheet_x":11,"sheet_y":21,"short_name":"european_post_office","short_names":["european_post_office"],"category":"Places","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"point_up_2":{"name":"White Up Pointing Backhand Index","unified":"1F446","variations":[],"docomo":null,"au":"EA8D","softbank":"E22E","google":"FEB99","image":"1f446.png","sheet_x":14,"sheet_y":3,"short_name":"point_up_2","short_names":["point_up_2"],"category":"People","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F446-1F3FB":{"unified":"1F446-1F3FB","image":"1f446-1f3fb.png","sheet_x":14,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FC":{"unified":"1F446-1F3FC","image":"1f446-1f3fc.png","sheet_x":14,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FD":{"unified":"1F446-1F3FD","image":"1f446-1f3fd.png","sheet_x":14,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FE":{"unified":"1F446-1F3FE","image":"1f446-1f3fe.png","sheet_x":14,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F446-1F3FF":{"unified":"1F446-1F3FF","image":"1f446-1f3ff.png","sheet_x":14,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"earth_africa":{"name":"Earth Globe Europe-Africa","unified":"1F30D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f30d.png","sheet_x":5,"sheet_y":34,"short_name":"earth_africa","short_names":["earth_africa"],"category":"Nature","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"negative_squared_cross_mark":{"name":"Negative Squared Cross Mark","unified":"274E","variations":[],"docomo":null,"au":"E551","softbank":"E333","google":"FEB46","image":"274e.png","sheet_x":4,"sheet_y":4,"short_name":"negative_squared_cross_mark","short_names":["negative_squared_cross_mark"],"category":"Symbols","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flags":{"name":"Carp Streamer","unified":"1F38F","variations":[],"docomo":null,"au":"EAE7","softbank":"E43B","google":"FE51C","image":"1f38f.png","sheet_x":9,"sheet_y":3,"short_name":"flags","short_names":["flags"],"category":"Objects","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-in":{"name":"Regional Indicator Symbol Letters IN","unified":"1F1EE-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f3.png","sheet_x":35,"sheet_y":20,"short_name":"flag-in","short_names":["flag-in"],"category":"Flags","sort_order":102,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hospital":{"name":"Hospital","unified":"1F3E5","variations":[],"docomo":"E666","au":"E5DF","softbank":"E155","google":"FE4B4","image":"1f3e5.png","sheet_x":11,"sheet_y":22,"short_name":"hospital","short_names":["hospital"],"category":"Places","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"point_down":{"name":"White Down Pointing Backhand Index","unified":"1F447","variations":[],"docomo":null,"au":"EA8E","softbank":"E22F","google":"FEB9A","image":"1f447.png","sheet_x":14,"sheet_y":9,"short_name":"point_down","short_names":["point_down"],"category":"People","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F447-1F3FB":{"unified":"1F447-1F3FB","image":"1f447-1f3fb.png","sheet_x":14,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FC":{"unified":"1F447-1F3FC","image":"1f447-1f3fc.png","sheet_x":14,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FD":{"unified":"1F447-1F3FD","image":"1f447-1f3fd.png","sheet_x":14,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FE":{"unified":"1F447-1F3FE","image":"1f447-1f3fe.png","sheet_x":14,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F447-1F3FF":{"unified":"1F447-1F3FF","image":"1f447-1f3ff.png","sheet_x":14,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"white_check_mark":{"name":"White Heavy Check Mark","unified":"2705","variations":[],"docomo":null,"au":"E55E","softbank":null,"google":"FEB4A","image":"2705.png","sheet_x":3,"sheet_y":6,"short_name":"white_check_mark","short_names":["white_check_mark"],"category":"Symbols","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ribbon":{"name":"Ribbon","unified":"1F380","variations":[],"docomo":"E684","au":"E59F","softbank":"E314","google":"FE50F","image":"1f380.png","sheet_x":8,"sheet_y":24,"short_name":"ribbon","short_names":["ribbon"],"category":"Objects","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"earth_asia":{"name":"Earth Globe Asia-Australia","unified":"1F30F","variations":[],"docomo":null,"au":"E5B3","softbank":null,"google":"FE039","image":"1f30f.png","sheet_x":5,"sheet_y":36,"short_name":"earth_asia","short_names":["earth_asia"],"category":"Nature","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-id":{"name":"Regional Indicator Symbol Letters ID","unified":"1F1EE-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1e9.png","sheet_x":35,"sheet_y":16,"short_name":"flag-id","short_names":["flag-id"],"category":"Flags","sort_order":103,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"full_moon":{"name":"Full Moon Symbol","unified":"1F315","variations":[],"docomo":"E6A0","au":null,"softbank":null,"google":"FE015","image":"1f315.png","sheet_x":6,"sheet_y":1,"short_name":"full_moon","short_names":["full_moon"],"category":"Nature","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"point_left":{"name":"White Left Pointing Backhand Index","unified":"1F448","variations":[],"docomo":null,"au":"E4FF","softbank":"E230","google":"FEB9B","image":"1f448.png","sheet_x":14,"sheet_y":15,"short_name":"point_left","short_names":["point_left"],"category":"People","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F448-1F3FB":{"unified":"1F448-1F3FB","image":"1f448-1f3fb.png","sheet_x":14,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FC":{"unified":"1F448-1F3FC","image":"1f448-1f3fc.png","sheet_x":14,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FD":{"unified":"1F448-1F3FD","image":"1f448-1f3fd.png","sheet_x":14,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FE":{"unified":"1F448-1F3FE","image":"1f448-1f3fe.png","sheet_x":14,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F448-1F3FF":{"unified":"1F448-1F3FF","image":"1f448-1f3ff.png","sheet_x":14,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-ir":{"name":"Regional Indicator Symbol Letters IR","unified":"1F1EE-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f7.png","sheet_x":35,"sheet_y":23,"short_name":"flag-ir","short_names":["flag-ir"],"category":"Flags","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"gift":{"name":"Wrapped Present","unified":"1F381","variations":[],"docomo":"E685","au":"E4CF","softbank":"E112","google":"FE510","image":"1f381.png","sheet_x":8,"sheet_y":25,"short_name":"gift","short_names":["gift"],"category":"Objects","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bank":{"name":"Bank","unified":"1F3E6","variations":[],"docomo":"E667","au":"E4AA","softbank":"E14D","google":"FE4B5","image":"1f3e6.png","sheet_x":11,"sheet_y":23,"short_name":"bank","short_names":["bank"],"category":"Places","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"diamond_shape_with_a_dot_inside":{"name":"Diamond Shape with a Dot Inside","unified":"1F4A0","variations":[],"docomo":"E6F8","au":null,"softbank":null,"google":"FEB55","image":"1f4a0.png","sheet_x":20,"sheet_y":7,"short_name":"diamond_shape_with_a_dot_inside","short_names":["diamond_shape_with_a_dot_inside"],"category":"Symbols","sort_order":104,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-iq":{"name":"Regional Indicator Symbol Letters IQ","unified":"1F1EE-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f6.png","sheet_x":35,"sheet_y":22,"short_name":"flag-iq","short_names":["flag-iq"],"category":"Flags","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"confetti_ball":{"name":"Confetti Ball","unified":"1F38A","variations":[],"docomo":null,"au":"E46F","softbank":null,"google":"FE520","image":"1f38a.png","sheet_x":8,"sheet_y":39,"short_name":"confetti_ball","short_names":["confetti_ball"],"category":"Objects","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"point_right":{"name":"White Right Pointing Backhand Index","unified":"1F449","variations":[],"docomo":null,"au":"E500","softbank":"E231","google":"FEB9C","image":"1f449.png","sheet_x":14,"sheet_y":21,"short_name":"point_right","short_names":["point_right"],"category":"People","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F449-1F3FB":{"unified":"1F449-1F3FB","image":"1f449-1f3fb.png","sheet_x":14,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FC":{"unified":"1F449-1F3FC","image":"1f449-1f3fc.png","sheet_x":14,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FD":{"unified":"1F449-1F3FD","image":"1f449-1f3fd.png","sheet_x":14,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FE":{"unified":"1F449-1F3FE","image":"1f449-1f3fe.png","sheet_x":14,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F449-1F3FF":{"unified":"1F449-1F3FF","image":"1f449-1f3ff.png","sheet_x":14,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"cyclone":{"name":"Cyclone","unified":"1F300","variations":[],"docomo":"E643","au":"E469","softbank":"E443","google":"FE005","image":"1f300.png","sheet_x":5,"sheet_y":21,"short_name":"cyclone","short_names":["cyclone"],"category":"Symbols","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"waning_gibbous_moon":{"name":"Waning Gibbous Moon Symbol","unified":"1F316","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f316.png","sheet_x":6,"sheet_y":2,"short_name":"waning_gibbous_moon","short_names":["waning_gibbous_moon"],"category":"Nature","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hotel":{"name":"Hotel","unified":"1F3E8","variations":[],"docomo":"E669","au":"EA81","softbank":"E158","google":"FE4B7","image":"1f3e8.png","sheet_x":11,"sheet_y":25,"short_name":"hotel","short_names":["hotel"],"category":"Places","sort_order":105,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"loop":{"name":"Double Curly Loop","unified":"27BF","variations":[],"docomo":"E6DF","au":null,"softbank":"E211","google":"FE82B","image":"27bf.png","sheet_x":4,"sheet_y":16,"short_name":"loop","short_names":["loop"],"category":"Symbols","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"convenience_store":{"name":"Convenience Store","unified":"1F3EA","variations":[],"docomo":"E66A","au":"E4A4","softbank":"E156","google":"FE4B9","image":"1f3ea.png","sheet_x":11,"sheet_y":27,"short_name":"convenience_store","short_names":["convenience_store"],"category":"Places","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"last_quarter_moon":{"name":"Last Quarter Moon Symbol","unified":"1F317","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f317.png","sheet_x":6,"sheet_y":3,"short_name":"last_quarter_moon","short_names":["last_quarter_moon"],"category":"Nature","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tada":{"name":"Party Popper","unified":"1F389","variations":[],"docomo":null,"au":"EA9C","softbank":"E312","google":"FE517","image":"1f389.png","sheet_x":8,"sheet_y":38,"short_name":"tada","short_names":["tada"],"category":"Objects","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"middle_finger":{"name":"Reversed Hand with Middle Finger Extended","unified":"1F595","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f595.png","sheet_x":25,"sheet_y":19,"short_name":"middle_finger","short_names":["middle_finger","reversed_hand_with_middle_finger_extended"],"category":"People","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F595-1F3FB":{"unified":"1F595-1F3FB","image":"1f595-1f3fb.png","sheet_x":25,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FC":{"unified":"1F595-1F3FC","image":"1f595-1f3fc.png","sheet_x":25,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FD":{"unified":"1F595-1F3FD","image":"1f595-1f3fd.png","sheet_x":25,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FE":{"unified":"1F595-1F3FE","image":"1f595-1f3fe.png","sheet_x":25,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F595-1F3FF":{"unified":"1F595-1F3FF","image":"1f595-1f3ff.png","sheet_x":25,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-ie":{"name":"Regional Indicator Symbol Letters IE","unified":"1F1EE-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1ea.png","sheet_x":35,"sheet_y":17,"short_name":"flag-ie","short_names":["flag-ie"],"category":"Flags","sort_order":106,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dolls":{"name":"Japanese Dolls","unified":"1F38E","variations":[],"docomo":null,"au":"EAE4","softbank":"E438","google":"FE519","image":"1f38e.png","sheet_x":9,"sheet_y":2,"short_name":"dolls","short_names":["dolls"],"category":"Objects","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"globe_with_meridians":{"name":"Globe with Meridians","unified":"1F310","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f310.png","sheet_x":5,"sheet_y":37,"short_name":"globe_with_meridians","short_names":["globe_with_meridians"],"category":"Symbols","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-im":{"name":"Regional Indicator Symbol Letters IM","unified":"1F1EE-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f2.png","sheet_x":35,"sheet_y":19,"short_name":"flag-im","short_names":["flag-im"],"category":"Flags","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"waning_crescent_moon":{"name":"Waning Crescent Moon Symbol","unified":"1F318","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f318.png","sheet_x":6,"sheet_y":4,"short_name":"waning_crescent_moon","short_names":["waning_crescent_moon"],"category":"Nature","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"raised_hand_with_fingers_splayed":{"name":"Raised Hand with Fingers Splayed","unified":"1F590","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f590.png","sheet_x":25,"sheet_y":13,"short_name":"raised_hand_with_fingers_splayed","short_names":["raised_hand_with_fingers_splayed"],"category":"People","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F590-1F3FB":{"unified":"1F590-1F3FB","image":"1f590-1f3fb.png","sheet_x":25,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FC":{"unified":"1F590-1F3FC","image":"1f590-1f3fc.png","sheet_x":25,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FD":{"unified":"1F590-1F3FD","image":"1f590-1f3fd.png","sheet_x":25,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FE":{"unified":"1F590-1F3FE","image":"1f590-1f3fe.png","sheet_x":25,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F590-1F3FF":{"unified":"1F590-1F3FF","image":"1f590-1f3ff.png","sheet_x":25,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"school":{"name":"School","unified":"1F3EB","variations":[],"docomo":"E73E","au":"EA80","softbank":"E157","google":"FE4BA","image":"1f3eb.png","sheet_x":11,"sheet_y":28,"short_name":"school","short_names":["school"],"category":"Places","sort_order":107,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"new_moon":{"name":"New Moon Symbol","unified":"1F311","variations":[],"docomo":"E69C","au":"E5A8","softbank":null,"google":"FE011","image":"1f311.png","sheet_x":5,"sheet_y":38,"short_name":"new_moon","short_names":["new_moon"],"category":"Nature","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"the_horns":{"name":"Sign of the Horns","unified":"1F918","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f918.png","sheet_x":32,"sheet_y":9,"short_name":"the_horns","short_names":["the_horns","sign_of_the_horns"],"category":"People","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F918-1F3FB":{"unified":"1F918-1F3FB","image":"1f918-1f3fb.png","sheet_x":32,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FC":{"unified":"1F918-1F3FC","image":"1f918-1f3fc.png","sheet_x":32,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FD":{"unified":"1F918-1F3FD","image":"1f918-1f3fd.png","sheet_x":32,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FE":{"unified":"1F918-1F3FE","image":"1f918-1f3fe.png","sheet_x":32,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F918-1F3FF":{"unified":"1F918-1F3FF","image":"1f918-1f3ff.png","sheet_x":32,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"love_hotel":{"name":"Love Hotel","unified":"1F3E9","variations":[],"docomo":"E669-E6EF","au":"EAF3","softbank":"E501","google":"FE4B8","image":"1f3e9.png","sheet_x":11,"sheet_y":26,"short_name":"love_hotel","short_names":["love_hotel"],"category":"Places","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"m":{"name":"Circled Latin Capital Letter M","unified":"24C2","variations":["24C2-FE0F"],"docomo":"E65C","au":"E5BC","softbank":"E434","google":"FE7E1","image":"24c2.png","sheet_x":0,"sheet_y":32,"short_name":"m","short_names":["m"],"category":"Symbols","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-il":{"name":"Regional Indicator Symbol Letters IL","unified":"1F1EE-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ee-1f1f1.png","sheet_x":35,"sheet_y":18,"short_name":"flag-il","short_names":["flag-il"],"category":"Flags","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wind_chime":{"name":"Wind Chime","unified":"1F390","variations":[],"docomo":null,"au":"EAED","softbank":"E442","google":"FE51E","image":"1f390.png","sheet_x":9,"sheet_y":4,"short_name":"wind_chime","short_names":["wind_chime"],"category":"Objects","sort_order":108,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spock-hand":{"name":"Raised Hand with Part Between Middle and Ring Fingers","unified":"1F596","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f596.png","sheet_x":25,"sheet_y":25,"short_name":"spock-hand","short_names":["spock-hand"],"category":"People","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F596-1F3FB":{"unified":"1F596-1F3FB","image":"1f596-1f3fb.png","sheet_x":25,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FC":{"unified":"1F596-1F3FC","image":"1f596-1f3fc.png","sheet_x":25,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FD":{"unified":"1F596-1F3FD","image":"1f596-1f3fd.png","sheet_x":25,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FE":{"unified":"1F596-1F3FE","image":"1f596-1f3fe.png","sheet_x":25,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F596-1F3FF":{"unified":"1F596-1F3FF","image":"1f596-1f3ff.png","sheet_x":25,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"wedding":{"name":"Wedding","unified":"1F492","variations":[],"docomo":null,"au":"E5BB","softbank":"E43D","google":"FE82A","image":"1f492.png","sheet_x":19,"sheet_y":34,"short_name":"wedding","short_names":["wedding"],"category":"Places","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"atm":{"name":"Automated Teller Machine","unified":"1F3E7","variations":[],"docomo":"E668","au":"E4A3","softbank":"E154","google":"FE4B6","image":"1f3e7.png","sheet_x":11,"sheet_y":24,"short_name":"atm","short_names":["atm"],"category":"Symbols","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crossed_flags":{"name":"Crossed Flags","unified":"1F38C","variations":[],"docomo":null,"au":"E5D9","softbank":"E143","google":"FE514","image":"1f38c.png","sheet_x":9,"sheet_y":0,"short_name":"crossed_flags","short_names":["crossed_flags"],"category":"Objects","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-it":{"name":"Regional Indicator Symbol Letters IT","unified":"1F1EE-1F1F9","variations":[],"docomo":null,"au":"EB0F","softbank":"E50F","google":"FE4E9","image":"1f1ee-1f1f9.png","sheet_x":35,"sheet_y":25,"short_name":"flag-it","short_names":["flag-it","it"],"category":"Flags","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"waxing_crescent_moon":{"name":"Waxing Crescent Moon Symbol","unified":"1F312","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f312.png","sheet_x":5,"sheet_y":39,"short_name":"waxing_crescent_moon","short_names":["waxing_crescent_moon"],"category":"Nature","sort_order":109,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"izakaya_lantern":{"name":"Izakaya Lantern","unified":"1F3EE","variations":[],"docomo":"E74B","au":"E4BD","softbank":"E30B","google":"FE4C2","image":"1f3ee.png","sheet_x":11,"sheet_y":31,"short_name":"izakaya_lantern","short_names":["izakaya_lantern","lantern"],"category":"Objects","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"first_quarter_moon":{"name":"First Quarter Moon Symbol","unified":"1F313","variations":[],"docomo":"E69E","au":"E5AA","softbank":"E04C","google":"FE013","image":"1f313.png","sheet_x":5,"sheet_y":40,"short_name":"first_quarter_moon","short_names":["first_quarter_moon"],"category":"Nature","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sa":{"name":"Squared Katakana Sa","unified":"1F202","variations":["1F202-FE0F"],"docomo":null,"au":"EA87","softbank":"E228","google":"FEB3F","image":"1f202.png","sheet_x":5,"sheet_y":7,"short_name":"sa","short_names":["sa"],"category":"Symbols","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"classical_building":{"name":"Classical Building","unified":"1F3DB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3db.png","sheet_x":11,"sheet_y":12,"short_name":"classical_building","short_names":["classical_building"],"category":"Places","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"writing_hand":{"name":"Writing Hand","unified":"270D","variations":["270D-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"270d.png","sheet_x":3,"sheet_y":27,"short_name":"writing_hand","short_names":["writing_hand"],"category":"People","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"270D-1F3FB":{"unified":"270D-1F3FB","image":"270d-1f3fb.png","sheet_x":3,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FC":{"unified":"270D-1F3FC","image":"270d-1f3fc.png","sheet_x":3,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FD":{"unified":"270D-1F3FD","image":"270d-1f3fd.png","sheet_x":3,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FE":{"unified":"270D-1F3FE","image":"270d-1f3fe.png","sheet_x":3,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"270D-1F3FF":{"unified":"270D-1F3FF","image":"270d-1f3ff.png","sheet_x":3,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-ci":{"name":"Regional Indicator Symbol Letters CI","unified":"1F1E8-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ee.png","sheet_x":33,"sheet_y":36,"short_name":"flag-ci","short_names":["flag-ci"],"category":"Flags","sort_order":110,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"moon":{"name":"Waxing Gibbous Moon Symbol","unified":"1F314","variations":[],"docomo":"E69D","au":"E5A9","softbank":"E04C","google":"FE012","image":"1f314.png","sheet_x":6,"sheet_y":0,"short_name":"moon","short_names":["moon","waxing_gibbous_moon"],"category":"Nature","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"church":{"name":"Church","unified":"26EA","variations":["26EA-FE0F"],"docomo":null,"au":"E5BB","softbank":"E037","google":"FE4BB","image":"26ea.png","sheet_x":2,"sheet_y":29,"short_name":"church","short_names":["church"],"category":"Places","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"email":{"name":"Envelope","unified":"2709","variations":["2709-FE0F"],"docomo":"E6D3","au":"E521","softbank":"E103","google":"FE529","image":"2709.png","sheet_x":3,"sheet_y":8,"short_name":"email","short_names":["email","envelope"],"category":"Objects","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"passport_control":{"name":"Passport Control","unified":"1F6C2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c2.png","sheet_x":31,"sheet_y":21,"short_name":"passport_control","short_names":["passport_control"],"category":"Symbols","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"nail_care":{"name":"Nail Polish","unified":"1F485","variations":[],"docomo":null,"au":"EAA0","softbank":"E31D","google":"FE196","image":"1f485.png","sheet_x":19,"sheet_y":6,"short_name":"nail_care","short_names":["nail_care"],"category":"People","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F485-1F3FB":{"unified":"1F485-1F3FB","image":"1f485-1f3fb.png","sheet_x":19,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FC":{"unified":"1F485-1F3FC","image":"1f485-1f3fc.png","sheet_x":19,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FD":{"unified":"1F485-1F3FD","image":"1f485-1f3fd.png","sheet_x":19,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FE":{"unified":"1F485-1F3FE","image":"1f485-1f3fe.png","sheet_x":19,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F485-1F3FF":{"unified":"1F485-1F3FF","image":"1f485-1f3ff.png","sheet_x":19,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-jm":{"name":"Regional Indicator Symbol Letters JM","unified":"1F1EF-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f2.png","sheet_x":35,"sheet_y":27,"short_name":"flag-jm","short_names":["flag-jm"],"category":"Flags","sort_order":111,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lips":{"name":"Mouth","unified":"1F444","variations":[],"docomo":"E6F9","au":"EAD1","softbank":"E41C","google":"FE193","image":"1f444.png","sheet_x":14,"sheet_y":1,"short_name":"lips","short_names":["lips"],"category":"People","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mosque":{"name":"Mosque","unified":"1F54C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54c.png","sheet_x":24,"sheet_y":8,"short_name":"mosque","short_names":["mosque"],"category":"Places","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-jp":{"name":"Regional Indicator Symbol Letters JP","unified":"1F1EF-1F1F5","variations":[],"docomo":null,"au":"E4CC","softbank":"E50B","google":"FE4E5","image":"1f1ef-1f1f5.png","sheet_x":35,"sheet_y":29,"short_name":"flag-jp","short_names":["flag-jp","jp"],"category":"Flags","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"new_moon_with_face":{"name":"New Moon with Face","unified":"1F31A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31a.png","sheet_x":6,"sheet_y":6,"short_name":"new_moon_with_face","short_names":["new_moon_with_face"],"category":"Nature","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"customs":{"name":"Customs","unified":"1F6C3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c3.png","sheet_x":31,"sheet_y":22,"short_name":"customs","short_names":["customs"],"category":"Symbols","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"envelope_with_arrow":{"name":"Envelope with Downwards Arrow Above","unified":"1F4E9","variations":[],"docomo":"E6CF","au":"EB62","softbank":"E103","google":"FE52B","image":"1f4e9.png","sheet_x":22,"sheet_y":3,"short_name":"envelope_with_arrow","short_names":["envelope_with_arrow"],"category":"Objects","sort_order":112,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"full_moon_with_face":{"name":"Full Moon with Face","unified":"1F31D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31d.png","sheet_x":6,"sheet_y":9,"short_name":"full_moon_with_face","short_names":["full_moon_with_face"],"category":"Nature","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-je":{"name":"Regional Indicator Symbol Letters JE","unified":"1F1EF-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1ea.png","sheet_x":35,"sheet_y":26,"short_name":"flag-je","short_names":["flag-je"],"category":"Flags","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"synagogue":{"name":"Synagogue","unified":"1F54D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54d.png","sheet_x":24,"sheet_y":9,"short_name":"synagogue","short_names":["synagogue"],"category":"Places","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"baggage_claim":{"name":"Baggage Claim","unified":"1F6C4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c4.png","sheet_x":31,"sheet_y":23,"short_name":"baggage_claim","short_names":["baggage_claim"],"category":"Symbols","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tongue":{"name":"Tongue","unified":"1F445","variations":[],"docomo":"E728","au":"EB47","softbank":"E409","google":"FE194","image":"1f445.png","sheet_x":14,"sheet_y":2,"short_name":"tongue","short_names":["tongue"],"category":"People","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"incoming_envelope":{"name":"Incoming Envelope","unified":"1F4E8","variations":[],"docomo":"E6CF","au":"E591","softbank":"E103","google":"FE52A","image":"1f4e8.png","sheet_x":22,"sheet_y":2,"short_name":"incoming_envelope","short_names":["incoming_envelope"],"category":"Objects","sort_order":113,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"e-mail":{"name":"E-Mail Symbol","unified":"1F4E7","variations":[],"docomo":"E6D3","au":"EB71","softbank":"E103","google":"FEB92","image":"1f4e7.png","sheet_x":22,"sheet_y":1,"short_name":"e-mail","short_names":["e-mail"],"category":"Objects","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ear":{"name":"Ear","unified":"1F442","variations":[],"docomo":"E692","au":"E5A5","softbank":"E41B","google":"FE191","image":"1f442.png","sheet_x":13,"sheet_y":30,"short_name":"ear","short_names":["ear"],"category":"People","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F442-1F3FB":{"unified":"1F442-1F3FB","image":"1f442-1f3fb.png","sheet_x":13,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FC":{"unified":"1F442-1F3FC","image":"1f442-1f3fc.png","sheet_x":13,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FD":{"unified":"1F442-1F3FD","image":"1f442-1f3fd.png","sheet_x":13,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FE":{"unified":"1F442-1F3FE","image":"1f442-1f3fe.png","sheet_x":13,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F442-1F3FF":{"unified":"1F442-1F3FF","image":"1f442-1f3ff.png","sheet_x":13,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"first_quarter_moon_with_face":{"name":"First Quarter Moon with Face","unified":"1F31B","variations":[],"docomo":"E69E","au":"E489","softbank":"E04C","google":"FE016","image":"1f31b.png","sheet_x":6,"sheet_y":7,"short_name":"first_quarter_moon_with_face","short_names":["first_quarter_moon_with_face"],"category":"Nature","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"left_luggage":{"name":"Left Luggage","unified":"1F6C5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6c5.png","sheet_x":31,"sheet_y":24,"short_name":"left_luggage","short_names":["left_luggage"],"category":"Symbols","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kaaba":{"name":"Kaaba","unified":"1F54B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f54b.png","sheet_x":24,"sheet_y":7,"short_name":"kaaba","short_names":["kaaba"],"category":"Places","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-jo":{"name":"Regional Indicator Symbol Letters JO","unified":"1F1EF-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ef-1f1f4.png","sheet_x":35,"sheet_y":28,"short_name":"flag-jo","short_names":["flag-jo"],"category":"Flags","sort_order":114,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kz":{"name":"Regional Indicator Symbol Letters KZ","unified":"1F1F0-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ff.png","sheet_x":35,"sheet_y":40,"short_name":"flag-kz","short_names":["flag-kz"],"category":"Flags","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wheelchair":{"name":"Wheelchair Symbol","unified":"267F","variations":["267F-FE0F"],"docomo":"E69B","au":"E47F","softbank":"E20A","google":"FEB20","image":"267f.png","sheet_x":2,"sheet_y":3,"short_name":"wheelchair","short_names":["wheelchair"],"category":"Symbols","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"last_quarter_moon_with_face":{"name":"Last Quarter Moon with Face","unified":"1F31C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31c.png","sheet_x":6,"sheet_y":8,"short_name":"last_quarter_moon_with_face","short_names":["last_quarter_moon_with_face"],"category":"Nature","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"nose":{"name":"Nose","unified":"1F443","variations":[],"docomo":null,"au":"EAD0","softbank":"E41A","google":"FE192","image":"1f443.png","sheet_x":13,"sheet_y":36,"short_name":"nose","short_names":["nose"],"category":"People","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F443-1F3FB":{"unified":"1F443-1F3FB","image":"1f443-1f3fb.png","sheet_x":13,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FC":{"unified":"1F443-1F3FC","image":"1f443-1f3fc.png","sheet_x":13,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FD":{"unified":"1F443-1F3FD","image":"1f443-1f3fd.png","sheet_x":13,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FE":{"unified":"1F443-1F3FE","image":"1f443-1f3fe.png","sheet_x":13,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F443-1F3FF":{"unified":"1F443-1F3FF","image":"1f443-1f3ff.png","sheet_x":14,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"love_letter":{"name":"Love Letter","unified":"1F48C","variations":[],"docomo":"E717","au":"EB78","softbank":"E103-E328","google":"FE824","image":"1f48c.png","sheet_x":19,"sheet_y":28,"short_name":"love_letter","short_names":["love_letter"],"category":"Objects","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shinto_shrine":{"name":"Shinto Shrine","unified":"26E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26e9.png","sheet_x":2,"sheet_y":28,"short_name":"shinto_shrine","short_names":["shinto_shrine"],"category":"Places","sort_order":115,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_smoking":{"name":"No Smoking Symbol","unified":"1F6AD","variations":[],"docomo":"E680","au":"E47E","softbank":"E208","google":"FEB1F","image":"1f6ad.png","sheet_x":30,"sheet_y":21,"short_name":"no_smoking","short_names":["no_smoking"],"category":"Symbols","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"postbox":{"name":"Postbox","unified":"1F4EE","variations":[],"docomo":"E665","au":"E51B","softbank":"E102","google":"FE52E","image":"1f4ee.png","sheet_x":22,"sheet_y":8,"short_name":"postbox","short_names":["postbox"],"category":"Objects","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eye":{"name":"Eye","unified":"1F441","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f441.png","sheet_x":13,"sheet_y":29,"short_name":"eye","short_names":["eye"],"category":"People","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sun_with_face":{"name":"Sun with Face","unified":"1F31E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f31e.png","sheet_x":6,"sheet_y":10,"short_name":"sun_with_face","short_names":["sun_with_face"],"category":"Nature","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ke":{"name":"Regional Indicator Symbol Letters KE","unified":"1F1F0-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ea.png","sheet_x":35,"sheet_y":30,"short_name":"flag-ke","short_names":["flag-ke"],"category":"Flags","sort_order":116,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mailbox_closed":{"name":"Closed Mailbox with Lowered Flag","unified":"1F4EA","variations":[],"docomo":"E665","au":"E51B","softbank":"E101","google":"FE52C","image":"1f4ea.png","sheet_x":22,"sheet_y":4,"short_name":"mailbox_closed","short_names":["mailbox_closed"],"category":"Objects","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ki":{"name":"Regional Indicator Symbol Letters KI","unified":"1F1F0-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ee.png","sheet_x":35,"sheet_y":33,"short_name":"flag-ki","short_names":["flag-ki"],"category":"Flags","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eyes":{"name":"Eyes","unified":"1F440","variations":[],"docomo":"E691","au":"E5A4","softbank":"E419","google":"FE190","image":"1f440.png","sheet_x":13,"sheet_y":28,"short_name":"eyes","short_names":["eyes"],"category":"People","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wc":{"name":"Water Closet","unified":"1F6BE","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E309","google":"FE508","image":"1f6be.png","sheet_x":31,"sheet_y":12,"short_name":"wc","short_names":["wc"],"category":"Symbols","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crescent_moon":{"name":"Crescent Moon","unified":"1F319","variations":[],"docomo":"E69F","au":"E486","softbank":"E04C","google":"FE014","image":"1f319.png","sheet_x":6,"sheet_y":5,"short_name":"crescent_moon","short_names":["crescent_moon"],"category":"Nature","sort_order":117,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mailbox":{"name":"Closed Mailbox with Raised Flag","unified":"1F4EB","variations":[],"docomo":"E665","au":"EB0A","softbank":"E101","google":"FE52D","image":"1f4eb.png","sheet_x":22,"sheet_y":5,"short_name":"mailbox","short_names":["mailbox"],"category":"Objects","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-xk":{"name":"Regional Indicator Symbol Letters XK","unified":"1F1FD-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fd-1f1f0.png","sheet_x":38,"sheet_y":38,"short_name":"flag-xk","short_names":["flag-xk"],"category":"Flags","sort_order":118,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"parking":{"name":"Negative Squared Latin Capital Letter P","unified":"1F17F","variations":["1F17F-FE0F"],"docomo":"E66C","au":"E4A6","softbank":"E14F","google":"FE7F6","image":"1f17f.png","sheet_x":4,"sheet_y":35,"short_name":"parking","short_names":["parking"],"category":"Symbols","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bust_in_silhouette":{"name":"Bust in Silhouette","unified":"1F464","variations":[],"docomo":"E6B1","au":null,"softbank":null,"google":"FE19A","image":"1f464.png","sheet_x":16,"sheet_y":6,"short_name":"bust_in_silhouette","short_names":["bust_in_silhouette"],"category":"People","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"star":{"name":"White Medium Star","unified":"2B50","variations":["2B50-FE0F"],"docomo":null,"au":"E48B","softbank":"E32F","google":"FEB68","image":"2b50.png","sheet_x":4,"sheet_y":24,"short_name":"star","short_names":["star"],"category":"Nature","sort_order":118,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"star2":{"name":"Glowing Star","unified":"1F31F","variations":[],"docomo":null,"au":"E48B","softbank":"E335","google":"FEB69","image":"1f31f.png","sheet_x":6,"sheet_y":11,"short_name":"star2","short_names":["star2"],"category":"Nature","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mailbox_with_mail":{"name":"Open Mailbox with Raised Flag","unified":"1F4EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ec.png","sheet_x":22,"sheet_y":6,"short_name":"mailbox_with_mail","short_names":["mailbox_with_mail"],"category":"Objects","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"potable_water":{"name":"Potable Water Symbol","unified":"1F6B0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6b0.png","sheet_x":30,"sheet_y":24,"short_name":"potable_water","short_names":["potable_water"],"category":"Symbols","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"busts_in_silhouette":{"name":"Busts in Silhouette","unified":"1F465","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f465.png","sheet_x":16,"sheet_y":7,"short_name":"busts_in_silhouette","short_names":["busts_in_silhouette"],"category":"People","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kw":{"name":"Regional Indicator Symbol Letters KW","unified":"1F1F0-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1fc.png","sheet_x":35,"sheet_y":38,"short_name":"flag-kw","short_names":["flag-kw"],"category":"Flags","sort_order":119,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mens":{"name":"Mens Symbol","unified":"1F6B9","variations":[],"docomo":null,"au":null,"softbank":"E138","google":"FEB33","image":"1f6b9.png","sheet_x":31,"sheet_y":7,"short_name":"mens","short_names":["mens"],"category":"Symbols","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dizzy":{"name":"Dizzy Symbol","unified":"1F4AB","variations":[],"docomo":null,"au":"EB5C","softbank":"E407","google":"FEB5F","image":"1f4ab.png","sheet_x":20,"sheet_y":23,"short_name":"dizzy","short_names":["dizzy"],"category":"Nature","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"speaking_head_in_silhouette":{"name":"Speaking Head in Silhouette","unified":"1F5E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e3.png","sheet_x":26,"sheet_y":5,"short_name":"speaking_head_in_silhouette","short_names":["speaking_head_in_silhouette"],"category":"People","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kg":{"name":"Regional Indicator Symbol Letters KG","unified":"1F1F0-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1ec.png","sheet_x":35,"sheet_y":31,"short_name":"flag-kg","short_names":["flag-kg"],"category":"Flags","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mailbox_with_no_mail":{"name":"Open Mailbox with Lowered Flag","unified":"1F4ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ed.png","sheet_x":22,"sheet_y":7,"short_name":"mailbox_with_no_mail","short_names":["mailbox_with_no_mail"],"category":"Objects","sort_order":120,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sparkles":{"name":"Sparkles","unified":"2728","variations":[],"docomo":"E6FA","au":"EAAB","softbank":"E32E","google":"FEB60","image":"2728.png","sheet_x":3,"sheet_y":39,"short_name":"sparkles","short_names":["sparkles"],"category":"Nature","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"baby":{"name":"Baby","unified":"1F476","variations":[],"docomo":null,"au":"EB18","softbank":"E51A","google":"FE1A9","image":"1f476.png","sheet_x":17,"sheet_y":38,"short_name":"baby","short_names":["baby"],"category":"People","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F476-1F3FB":{"unified":"1F476-1F3FB","image":"1f476-1f3fb.png","sheet_x":17,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FC":{"unified":"1F476-1F3FC","image":"1f476-1f3fc.png","sheet_x":17,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FD":{"unified":"1F476-1F3FD","image":"1f476-1f3fd.png","sheet_x":18,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FE":{"unified":"1F476-1F3FE","image":"1f476-1f3fe.png","sheet_x":18,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F476-1F3FF":{"unified":"1F476-1F3FF","image":"1f476-1f3ff.png","sheet_x":18,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"package":{"name":"Package","unified":"1F4E6","variations":[],"docomo":"E685","au":"E51F","softbank":"E112","google":"FE535","image":"1f4e6.png","sheet_x":22,"sheet_y":0,"short_name":"package","short_names":["package"],"category":"Objects","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"womens":{"name":"Womens Symbol","unified":"1F6BA","variations":[],"docomo":null,"au":null,"softbank":"E139","google":"FEB34","image":"1f6ba.png","sheet_x":31,"sheet_y":8,"short_name":"womens","short_names":["womens"],"category":"Symbols","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-la":{"name":"Regional Indicator Symbol Letters LA","unified":"1F1F1-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e6.png","sheet_x":36,"sheet_y":0,"short_name":"flag-la","short_names":["flag-la"],"category":"Flags","sort_order":121,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"baby_symbol":{"name":"Baby Symbol","unified":"1F6BC","variations":[],"docomo":null,"au":"EB18","softbank":"E13A","google":"FEB35","image":"1f6bc.png","sheet_x":31,"sheet_y":10,"short_name":"baby_symbol","short_names":["baby_symbol"],"category":"Symbols","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lv":{"name":"Regional Indicator Symbol Letters LV","unified":"1F1F1-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fb.png","sheet_x":36,"sheet_y":9,"short_name":"flag-lv","short_names":["flag-lv"],"category":"Flags","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"postal_horn":{"name":"Postal Horn","unified":"1F4EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ef.png","sheet_x":22,"sheet_y":9,"short_name":"postal_horn","short_names":["postal_horn"],"category":"Objects","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"comet":{"name":"Comet","unified":"2604","variations":["2604-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2604.png","sheet_x":1,"sheet_y":4,"short_name":"comet","short_names":["comet"],"category":"Nature","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"boy":{"name":"Boy","unified":"1F466","variations":[],"docomo":"E6F0","au":"E4FC","softbank":"E001","google":"FE19B","image":"1f466.png","sheet_x":16,"sheet_y":8,"short_name":"boy","short_names":["boy"],"category":"People","sort_order":122,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F466-1F3FB":{"unified":"1F466-1F3FB","image":"1f466-1f3fb.png","sheet_x":16,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FC":{"unified":"1F466-1F3FC","image":"1f466-1f3fc.png","sheet_x":16,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FD":{"unified":"1F466-1F3FD","image":"1f466-1f3fd.png","sheet_x":16,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FE":{"unified":"1F466-1F3FE","image":"1f466-1f3fe.png","sheet_x":16,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F466-1F3FF":{"unified":"1F466-1F3FF","image":"1f466-1f3ff.png","sheet_x":16,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"restroom":{"name":"Restroom","unified":"1F6BB","variations":[],"docomo":"E66E","au":"E4A5","softbank":"E151","google":"FE506","image":"1f6bb.png","sheet_x":31,"sheet_y":9,"short_name":"restroom","short_names":["restroom"],"category":"Symbols","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lb":{"name":"Regional Indicator Symbol Letters LB","unified":"1F1F1-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e7.png","sheet_x":36,"sheet_y":1,"short_name":"flag-lb","short_names":["flag-lb"],"category":"Flags","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"inbox_tray":{"name":"Inbox Tray","unified":"1F4E5","variations":[],"docomo":null,"au":"E593","softbank":null,"google":"FE534","image":"1f4e5.png","sheet_x":21,"sheet_y":40,"short_name":"inbox_tray","short_names":["inbox_tray"],"category":"Objects","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sunny":{"name":"Black Sun with Rays","unified":"2600","variations":["2600-FE0F"],"docomo":"E63E","au":"E488","softbank":"E04A","google":"FE000","image":"2600.png","sheet_x":1,"sheet_y":0,"short_name":"sunny","short_names":["sunny"],"category":"Nature","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"girl":{"name":"Girl","unified":"1F467","variations":[],"docomo":"E6F0","au":"E4FA","softbank":"E002","google":"FE19C","image":"1f467.png","sheet_x":16,"sheet_y":14,"short_name":"girl","short_names":["girl"],"category":"People","sort_order":123,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F467-1F3FB":{"unified":"1F467-1F3FB","image":"1f467-1f3fb.png","sheet_x":16,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FC":{"unified":"1F467-1F3FC","image":"1f467-1f3fc.png","sheet_x":16,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FD":{"unified":"1F467-1F3FD","image":"1f467-1f3fd.png","sheet_x":16,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FE":{"unified":"1F467-1F3FE","image":"1f467-1f3fe.png","sheet_x":16,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F467-1F3FF":{"unified":"1F467-1F3FF","image":"1f467-1f3ff.png","sheet_x":16,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"man":{"name":"Man","unified":"1F468","variations":[],"docomo":"E6F0","au":"E4FC","softbank":"E004","google":"FE19D","image":"1f468.png","sheet_x":16,"sheet_y":20,"short_name":"man","short_names":["man"],"category":"People","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F468-1F3FB":{"unified":"1F468-1F3FB","image":"1f468-1f3fb.png","sheet_x":16,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FC":{"unified":"1F468-1F3FC","image":"1f468-1f3fc.png","sheet_x":16,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FD":{"unified":"1F468-1F3FD","image":"1f468-1f3fd.png","sheet_x":16,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FE":{"unified":"1F468-1F3FE","image":"1f468-1f3fe.png","sheet_x":16,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F468-1F3FF":{"unified":"1F468-1F3FF","image":"1f468-1f3ff.png","sheet_x":16,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"put_litter_in_its_place":{"name":"Put Litter in Its Place Symbol","unified":"1F6AE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f6ae.png","sheet_x":30,"sheet_y":22,"short_name":"put_litter_in_its_place","short_names":["put_litter_in_its_place"],"category":"Symbols","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mostly_sunny":{"name":"White Sun with Small Cloud","unified":"1F324","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f324.png","sheet_x":6,"sheet_y":14,"short_name":"mostly_sunny","short_names":["mostly_sunny","sun_small_cloud"],"category":"Nature","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ls":{"name":"Regional Indicator Symbol Letters LS","unified":"1F1F1-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f8.png","sheet_x":36,"sheet_y":6,"short_name":"flag-ls","short_names":["flag-ls"],"category":"Flags","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"outbox_tray":{"name":"Outbox Tray","unified":"1F4E4","variations":[],"docomo":null,"au":"E592","softbank":null,"google":"FE533","image":"1f4e4.png","sheet_x":21,"sheet_y":39,"short_name":"outbox_tray","short_names":["outbox_tray"],"category":"Objects","sort_order":124,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cinema":{"name":"Cinema","unified":"1F3A6","variations":[],"docomo":"E677","au":"E517","softbank":"E507","google":"FE802","image":"1f3a6.png","sheet_x":9,"sheet_y":21,"short_name":"cinema","short_names":["cinema"],"category":"Symbols","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lr":{"name":"Regional Indicator Symbol Letters LR","unified":"1F1F1-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f7.png","sheet_x":36,"sheet_y":5,"short_name":"flag-lr","short_names":["flag-lr"],"category":"Flags","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scroll":{"name":"Scroll","unified":"1F4DC","variations":[],"docomo":"E70A","au":"E55F","softbank":null,"google":"FE4FD","image":"1f4dc.png","sheet_x":21,"sheet_y":31,"short_name":"scroll","short_names":["scroll"],"category":"Objects","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"partly_sunny":{"name":"Sun Behind Cloud","unified":"26C5","variations":["26C5-FE0F"],"docomo":"E63E-E63F","au":"E48E","softbank":"E04A-E049","google":"FE00F","image":"26c5.png","sheet_x":2,"sheet_y":21,"short_name":"partly_sunny","short_names":["partly_sunny"],"category":"Nature","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman":{"name":"Woman","unified":"1F469","variations":[],"docomo":"E6F0","au":"E4FA","softbank":"E005","google":"FE19E","image":"1f469.png","sheet_x":16,"sheet_y":26,"short_name":"woman","short_names":["woman"],"category":"People","sort_order":125,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F469-1F3FB":{"unified":"1F469-1F3FB","image":"1f469-1f3fb.png","sheet_x":16,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FC":{"unified":"1F469-1F3FC","image":"1f469-1f3fc.png","sheet_x":16,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FD":{"unified":"1F469-1F3FD","image":"1f469-1f3fd.png","sheet_x":16,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FE":{"unified":"1F469-1F3FE","image":"1f469-1f3fe.png","sheet_x":16,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F469-1F3FF":{"unified":"1F469-1F3FF","image":"1f469-1f3ff.png","sheet_x":16,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"signal_strength":{"name":"Antenna with Bars","unified":"1F4F6","variations":[],"docomo":null,"au":"EA84","softbank":"E20B","google":"FE838","image":"1f4f6.png","sheet_x":22,"sheet_y":16,"short_name":"signal_strength","short_names":["signal_strength"],"category":"Symbols","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"person_with_blond_hair":{"name":"Person with Blond Hair","unified":"1F471","variations":[],"docomo":null,"au":"EB13","softbank":"E515","google":"FE1A4","image":"1f471.png","sheet_x":17,"sheet_y":8,"short_name":"person_with_blond_hair","short_names":["person_with_blond_hair"],"category":"People","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F471-1F3FB":{"unified":"1F471-1F3FB","image":"1f471-1f3fb.png","sheet_x":17,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FC":{"unified":"1F471-1F3FC","image":"1f471-1f3fc.png","sheet_x":17,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FD":{"unified":"1F471-1F3FD","image":"1f471-1f3fd.png","sheet_x":17,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FE":{"unified":"1F471-1F3FE","image":"1f471-1f3fe.png","sheet_x":17,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F471-1F3FF":{"unified":"1F471-1F3FF","image":"1f471-1f3ff.png","sheet_x":17,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"barely_sunny":{"name":"White Sun Behind Cloud","unified":"1F325","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f325.png","sheet_x":6,"sheet_y":15,"short_name":"barely_sunny","short_names":["barely_sunny","sun_behind_cloud"],"category":"Nature","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"page_with_curl":{"name":"Page with Curl","unified":"1F4C3","variations":[],"docomo":"E689","au":"E561","softbank":"E301","google":"FE540","image":"1f4c3.png","sheet_x":21,"sheet_y":6,"short_name":"page_with_curl","short_names":["page_with_curl"],"category":"Objects","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ly":{"name":"Regional Indicator Symbol Letters LY","unified":"1F1F1-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fe.png","sheet_x":36,"sheet_y":10,"short_name":"flag-ly","short_names":["flag-ly"],"category":"Flags","sort_order":126,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bookmark_tabs":{"name":"Bookmark Tabs","unified":"1F4D1","variations":[],"docomo":"E689","au":"EB0B","softbank":"E301","google":"FE552","image":"1f4d1.png","sheet_x":21,"sheet_y":20,"short_name":"bookmark_tabs","short_names":["bookmark_tabs"],"category":"Objects","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-li":{"name":"Regional Indicator Symbol Letters LI","unified":"1F1F1-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1ee.png","sheet_x":36,"sheet_y":3,"short_name":"flag-li","short_names":["flag-li"],"category":"Flags","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"older_man":{"name":"Older Man","unified":"1F474","variations":[],"docomo":null,"au":"EB16","softbank":"E518","google":"FE1A7","image":"1f474.png","sheet_x":17,"sheet_y":26,"short_name":"older_man","short_names":["older_man"],"category":"People","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F474-1F3FB":{"unified":"1F474-1F3FB","image":"1f474-1f3fb.png","sheet_x":17,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FC":{"unified":"1F474-1F3FC","image":"1f474-1f3fc.png","sheet_x":17,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FD":{"unified":"1F474-1F3FD","image":"1f474-1f3fd.png","sheet_x":17,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FE":{"unified":"1F474-1F3FE","image":"1f474-1f3fe.png","sheet_x":17,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F474-1F3FF":{"unified":"1F474-1F3FF","image":"1f474-1f3ff.png","sheet_x":17,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"partly_sunny_rain":{"name":"White Sun Behind Cloud with Rain","unified":"1F326","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f326.png","sheet_x":6,"sheet_y":16,"short_name":"partly_sunny_rain","short_names":["partly_sunny_rain","sun_behind_rain_cloud"],"category":"Nature","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"koko":{"name":"Squared Katakana Koko","unified":"1F201","variations":[],"docomo":null,"au":null,"softbank":"E203","google":"FEB24","image":"1f201.png","sheet_x":5,"sheet_y":6,"short_name":"koko","short_names":["koko"],"category":"Symbols","sort_order":127,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bar_chart":{"name":"Bar Chart","unified":"1F4CA","variations":[],"docomo":null,"au":"E574","softbank":"E14A","google":"FE54A","image":"1f4ca.png","sheet_x":21,"sheet_y":13,"short_name":"bar_chart","short_names":["bar_chart"],"category":"Objects","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cloud":{"name":"Cloud","unified":"2601","variations":["2601-FE0F"],"docomo":"E63F","au":"E48D","softbank":"E049","google":"FE001","image":"2601.png","sheet_x":1,"sheet_y":1,"short_name":"cloud","short_names":["cloud"],"category":"Nature","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ng":{"name":"Squared Ng","unified":"1F196","variations":[],"docomo":"E72F","au":null,"softbank":null,"google":"FEB28","image":"1f196.png","sheet_x":5,"sheet_y":1,"short_name":"ng","short_names":["ng"],"category":"Symbols","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lt":{"name":"Regional Indicator Symbol Letters LT","unified":"1F1F1-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f9.png","sheet_x":36,"sheet_y":7,"short_name":"flag-lt","short_names":["flag-lt"],"category":"Flags","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"older_woman":{"name":"Older Woman","unified":"1F475","variations":[],"docomo":null,"au":"EB17","softbank":"E519","google":"FE1A8","image":"1f475.png","sheet_x":17,"sheet_y":32,"short_name":"older_woman","short_names":["older_woman"],"category":"People","sort_order":128,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F475-1F3FB":{"unified":"1F475-1F3FB","image":"1f475-1f3fb.png","sheet_x":17,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FC":{"unified":"1F475-1F3FC","image":"1f475-1f3fc.png","sheet_x":17,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FD":{"unified":"1F475-1F3FD","image":"1f475-1f3fd.png","sheet_x":17,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FE":{"unified":"1F475-1F3FE","image":"1f475-1f3fe.png","sheet_x":17,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F475-1F3FF":{"unified":"1F475-1F3FF","image":"1f475-1f3ff.png","sheet_x":17,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"rain_cloud":{"name":"Cloud with Rain","unified":"1F327","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f327.png","sheet_x":6,"sheet_y":17,"short_name":"rain_cloud","short_names":["rain_cloud"],"category":"Nature","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lu":{"name":"Regional Indicator Symbol Letters LU","unified":"1F1F1-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1fa.png","sheet_x":36,"sheet_y":8,"short_name":"flag-lu","short_names":["flag-lu"],"category":"Flags","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"chart_with_upwards_trend":{"name":"Chart with Upwards Trend","unified":"1F4C8","variations":[],"docomo":null,"au":"E575","softbank":"E14A","google":"FE54B","image":"1f4c8.png","sheet_x":21,"sheet_y":11,"short_name":"chart_with_upwards_trend","short_names":["chart_with_upwards_trend"],"category":"Objects","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ok":{"name":"Squared Ok","unified":"1F197","variations":[],"docomo":"E70B","au":"E5AD","softbank":"E24D","google":"FEB27","image":"1f197.png","sheet_x":5,"sheet_y":2,"short_name":"ok","short_names":["ok"],"category":"Symbols","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man_with_gua_pi_mao":{"name":"Man with Gua Pi Mao","unified":"1F472","variations":[],"docomo":null,"au":"EB14","softbank":"E516","google":"FE1A5","image":"1f472.png","sheet_x":17,"sheet_y":14,"short_name":"man_with_gua_pi_mao","short_names":["man_with_gua_pi_mao"],"category":"People","sort_order":129,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F472-1F3FB":{"unified":"1F472-1F3FB","image":"1f472-1f3fb.png","sheet_x":17,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FC":{"unified":"1F472-1F3FC","image":"1f472-1f3fc.png","sheet_x":17,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FD":{"unified":"1F472-1F3FD","image":"1f472-1f3fd.png","sheet_x":17,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FE":{"unified":"1F472-1F3FE","image":"1f472-1f3fe.png","sheet_x":17,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F472-1F3FF":{"unified":"1F472-1F3FF","image":"1f472-1f3ff.png","sheet_x":17,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"thunder_cloud_and_rain":{"name":"Thunder Cloud and Rain","unified":"26C8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26c8.png","sheet_x":2,"sheet_y":22,"short_name":"thunder_cloud_and_rain","short_names":["thunder_cloud_and_rain"],"category":"Nature","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"up":{"name":"Squared Up with Exclamation Mark","unified":"1F199","variations":[],"docomo":null,"au":"E50F","softbank":"E213","google":"FEB37","image":"1f199.png","sheet_x":5,"sheet_y":4,"short_name":"up","short_names":["up"],"category":"Symbols","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man_with_turban":{"name":"Man with Turban","unified":"1F473","variations":[],"docomo":null,"au":"EB15","softbank":"E517","google":"FE1A6","image":"1f473.png","sheet_x":17,"sheet_y":20,"short_name":"man_with_turban","short_names":["man_with_turban"],"category":"People","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F473-1F3FB":{"unified":"1F473-1F3FB","image":"1f473-1f3fb.png","sheet_x":17,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FC":{"unified":"1F473-1F3FC","image":"1f473-1f3fc.png","sheet_x":17,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FD":{"unified":"1F473-1F3FD","image":"1f473-1f3fd.png","sheet_x":17,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FE":{"unified":"1F473-1F3FE","image":"1f473-1f3fe.png","sheet_x":17,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F473-1F3FF":{"unified":"1F473-1F3FF","image":"1f473-1f3ff.png","sheet_x":17,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"chart_with_downwards_trend":{"name":"Chart with Downwards Trend","unified":"1F4C9","variations":[],"docomo":null,"au":"E576","softbank":null,"google":"FE54C","image":"1f4c9.png","sheet_x":21,"sheet_y":12,"short_name":"chart_with_downwards_trend","short_names":["chart_with_downwards_trend"],"category":"Objects","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mo":{"name":"Regional Indicator Symbol Letters MO","unified":"1F1F2-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f4.png","sheet_x":36,"sheet_y":22,"short_name":"flag-mo","short_names":["flag-mo"],"category":"Flags","sort_order":130,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"page_facing_up":{"name":"Page Facing Up","unified":"1F4C4","variations":[],"docomo":"E689","au":"E569","softbank":"E301","google":"FE541","image":"1f4c4.png","sheet_x":21,"sheet_y":7,"short_name":"page_facing_up","short_names":["page_facing_up"],"category":"Objects","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cool":{"name":"Squared Cool","unified":"1F192","variations":[],"docomo":null,"au":"EA85","softbank":"E214","google":"FEB38","image":"1f192.png","sheet_x":4,"sheet_y":38,"short_name":"cool","short_names":["cool"],"category":"Symbols","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lightning":{"name":"Cloud with Lightning","unified":"1F329","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f329.png","sheet_x":6,"sheet_y":19,"short_name":"lightning","short_names":["lightning","lightning_cloud"],"category":"Nature","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mk":{"name":"Regional Indicator Symbol Letters MK","unified":"1F1F2-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f0.png","sheet_x":36,"sheet_y":18,"short_name":"flag-mk","short_names":["flag-mk"],"category":"Flags","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"cop":{"name":"Police Officer","unified":"1F46E","variations":[],"docomo":null,"au":"E5DD","softbank":"E152","google":"FE1A1","image":"1f46e.png","sheet_x":16,"sheet_y":36,"short_name":"cop","short_names":["cop"],"category":"People","sort_order":131,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F46E-1F3FB":{"unified":"1F46E-1F3FB","image":"1f46e-1f3fb.png","sheet_x":16,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FC":{"unified":"1F46E-1F3FC","image":"1f46e-1f3fc.png","sheet_x":16,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FD":{"unified":"1F46E-1F3FD","image":"1f46e-1f3fd.png","sheet_x":16,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FE":{"unified":"1F46E-1F3FE","image":"1f46e-1f3fe.png","sheet_x":16,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F46E-1F3FF":{"unified":"1F46E-1F3FF","image":"1f46e-1f3ff.png","sheet_x":17,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-mg":{"name":"Regional Indicator Symbol Letters MG","unified":"1F1F2-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ec.png","sheet_x":36,"sheet_y":16,"short_name":"flag-mg","short_names":["flag-mg"],"category":"Flags","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"date":{"name":"Calendar","unified":"1F4C5","variations":[],"docomo":null,"au":"E563","softbank":null,"google":"FE542","image":"1f4c5.png","sheet_x":21,"sheet_y":8,"short_name":"date","short_names":["date"],"category":"Objects","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"new":{"name":"Squared New","unified":"1F195","variations":[],"docomo":"E6DD","au":"E5B5","softbank":"E212","google":"FEB36","image":"1f195.png","sheet_x":5,"sheet_y":0,"short_name":"new","short_names":["new"],"category":"Symbols","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"zap":{"name":"High Voltage Sign","unified":"26A1","variations":["26A1-FE0F"],"docomo":"E642","au":"E487","softbank":"E13D","google":"FE004","image":"26a1.png","sheet_x":2,"sheet_y":13,"short_name":"zap","short_names":["zap"],"category":"Nature","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"construction_worker":{"name":"Construction Worker","unified":"1F477","variations":[],"docomo":null,"au":"EB19","softbank":"E51B","google":"FE1AA","image":"1f477.png","sheet_x":18,"sheet_y":3,"short_name":"construction_worker","short_names":["construction_worker"],"category":"People","sort_order":132,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F477-1F3FB":{"unified":"1F477-1F3FB","image":"1f477-1f3fb.png","sheet_x":18,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FC":{"unified":"1F477-1F3FC","image":"1f477-1f3fc.png","sheet_x":18,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FD":{"unified":"1F477-1F3FD","image":"1f477-1f3fd.png","sheet_x":18,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FE":{"unified":"1F477-1F3FE","image":"1f477-1f3fe.png","sheet_x":18,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F477-1F3FF":{"unified":"1F477-1F3FF","image":"1f477-1f3ff.png","sheet_x":18,"sheet_y":8,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"guardsman":{"name":"Guardsman","unified":"1F482","variations":[],"docomo":null,"au":null,"softbank":"E51E","google":"FE1B5","image":"1f482.png","sheet_x":18,"sheet_y":34,"short_name":"guardsman","short_names":["guardsman"],"category":"People","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F482-1F3FB":{"unified":"1F482-1F3FB","image":"1f482-1f3fb.png","sheet_x":18,"sheet_y":35,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FC":{"unified":"1F482-1F3FC","image":"1f482-1f3fc.png","sheet_x":18,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FD":{"unified":"1F482-1F3FD","image":"1f482-1f3fd.png","sheet_x":18,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FE":{"unified":"1F482-1F3FE","image":"1f482-1f3fe.png","sheet_x":18,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F482-1F3FF":{"unified":"1F482-1F3FF","image":"1f482-1f3ff.png","sheet_x":18,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"fire":{"name":"Fire","unified":"1F525","variations":[],"docomo":null,"au":"E47B","softbank":"E11D","google":"FE4F6","image":"1f525.png","sheet_x":23,"sheet_y":21,"short_name":"fire","short_names":["fire"],"category":"Nature","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"free":{"name":"Squared Free","unified":"1F193","variations":[],"docomo":"E6D7","au":"E578","softbank":null,"google":"FEB21","image":"1f193.png","sheet_x":4,"sheet_y":39,"short_name":"free","short_names":["free"],"category":"Symbols","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mw":{"name":"Regional Indicator Symbol Letters MW","unified":"1F1F2-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fc.png","sheet_x":36,"sheet_y":30,"short_name":"flag-mw","short_names":["flag-mw"],"category":"Flags","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"calendar":{"name":"Tear-off Calendar","unified":"1F4C6","variations":[],"docomo":null,"au":"E56A","softbank":null,"google":"FE549","image":"1f4c6.png","sheet_x":21,"sheet_y":9,"short_name":"calendar","short_names":["calendar"],"category":"Objects","sort_order":133,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spiral_calendar_pad":{"name":"Spiral Calendar Pad","unified":"1F5D3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d3.png","sheet_x":26,"sheet_y":0,"short_name":"spiral_calendar_pad","short_names":["spiral_calendar_pad"],"category":"Objects","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"boom":{"name":"Collision Symbol","unified":"1F4A5","variations":[],"docomo":"E705","au":"E5B0","softbank":null,"google":"FEB5A","image":"1f4a5.png","sheet_x":20,"sheet_y":12,"short_name":"boom","short_names":["boom","collision"],"category":"Nature","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-my":{"name":"Regional Indicator Symbol Letters MY","unified":"1F1F2-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fe.png","sheet_x":36,"sheet_y":32,"short_name":"flag-my","short_names":["flag-my"],"category":"Flags","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"zero":{"name":"Keycap 0","unified":"0030-20E3","variations":["0030-FE0F-20E3"],"docomo":"E6EB","au":"E5AC","softbank":"E225","google":"FE837","image":"0030-20e3.png","sheet_x":32,"sheet_y":23,"short_name":"zero","short_names":["zero"],"category":"Symbols","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sleuth_or_spy":{"name":"Sleuth or Spy","unified":"1F575","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f575.png","sheet_x":24,"sheet_y":39,"short_name":"sleuth_or_spy","short_names":["sleuth_or_spy"],"category":"People","sort_order":134,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F575-1F3FB":{"unified":"1F575-1F3FB","image":"1f575-1f3fb.png","sheet_x":24,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FC":{"unified":"1F575-1F3FC","image":"1f575-1f3fc.png","sheet_x":25,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FD":{"unified":"1F575-1F3FD","image":"1f575-1f3fd.png","sheet_x":25,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FE":{"unified":"1F575-1F3FE","image":"1f575-1f3fe.png","sheet_x":25,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true},"1F575-1F3FF":{"unified":"1F575-1F3FF","image":"1f575-1f3ff.png","sheet_x":25,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":false,"has_img_emojione":true}},"emoticons":[]},"one":{"name":"Keycap 1","unified":"0031-20E3","variations":["0031-FE0F-20E3"],"docomo":"E6E2","au":"E522","softbank":"E21C","google":"FE82E","image":"0031-20e3.png","sheet_x":32,"sheet_y":24,"short_name":"one","short_names":["one"],"category":"Symbols","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"santa":{"name":"Father Christmas","unified":"1F385","variations":[],"docomo":null,"au":"EAF0","softbank":"E448","google":"FE513","image":"1f385.png","sheet_x":8,"sheet_y":29,"short_name":"santa","short_names":["santa"],"category":"People","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F385-1F3FB":{"unified":"1F385-1F3FB","image":"1f385-1f3fb.png","sheet_x":8,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FC":{"unified":"1F385-1F3FC","image":"1f385-1f3fc.png","sheet_x":8,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FD":{"unified":"1F385-1F3FD","image":"1f385-1f3fd.png","sheet_x":8,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FE":{"unified":"1F385-1F3FE","image":"1f385-1f3fe.png","sheet_x":8,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F385-1F3FF":{"unified":"1F385-1F3FF","image":"1f385-1f3ff.png","sheet_x":8,"sheet_y":34,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"card_index":{"name":"Card Index","unified":"1F4C7","variations":[],"docomo":"E683","au":"E56C","softbank":"E148","google":"FE54D","image":"1f4c7.png","sheet_x":21,"sheet_y":10,"short_name":"card_index","short_names":["card_index"],"category":"Objects","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snowflake":{"name":"Snowflake","unified":"2744","variations":["2744-FE0F"],"docomo":null,"au":"E48A","softbank":null,"google":"FE00E","image":"2744.png","sheet_x":4,"sheet_y":1,"short_name":"snowflake","short_names":["snowflake"],"category":"Nature","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mv":{"name":"Regional Indicator Symbol Letters MV","unified":"1F1F2-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fb.png","sheet_x":36,"sheet_y":29,"short_name":"flag-mv","short_names":["flag-mv"],"category":"Flags","sort_order":135,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snow_cloud":{"name":"Cloud with Snow","unified":"1F328","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f328.png","sheet_x":6,"sheet_y":18,"short_name":"snow_cloud","short_names":["snow_cloud"],"category":"Nature","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"angel":{"name":"Baby Angel","unified":"1F47C","variations":[],"docomo":null,"au":"E5BF","softbank":"E04E","google":"FE1AF","image":"1f47c.png","sheet_x":18,"sheet_y":18,"short_name":"angel","short_names":["angel"],"category":"People","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F47C-1F3FB":{"unified":"1F47C-1F3FB","image":"1f47c-1f3fb.png","sheet_x":18,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FC":{"unified":"1F47C-1F3FC","image":"1f47c-1f3fc.png","sheet_x":18,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FD":{"unified":"1F47C-1F3FD","image":"1f47c-1f3fd.png","sheet_x":18,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FE":{"unified":"1F47C-1F3FE","image":"1f47c-1f3fe.png","sheet_x":18,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F47C-1F3FF":{"unified":"1F47C-1F3FF","image":"1f47c-1f3ff.png","sheet_x":18,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"two":{"name":"Keycap 2","unified":"0032-20E3","variations":["0032-FE0F-20E3"],"docomo":"E6E3","au":"E523","softbank":"E21D","google":"FE82F","image":"0032-20e3.png","sheet_x":32,"sheet_y":25,"short_name":"two","short_names":["two"],"category":"Symbols","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"card_file_box":{"name":"Card File Box","unified":"1F5C3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c3.png","sheet_x":25,"sheet_y":37,"short_name":"card_file_box","short_names":["card_file_box"],"category":"Objects","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ml":{"name":"Regional Indicator Symbol Letters ML","unified":"1F1F2-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f1.png","sheet_x":36,"sheet_y":19,"short_name":"flag-ml","short_names":["flag-ml"],"category":"Flags","sort_order":136,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"three":{"name":"Keycap 3","unified":"0033-20E3","variations":["0033-FE0F-20E3"],"docomo":"E6E4","au":"E524","softbank":"E21E","google":"FE830","image":"0033-20e3.png","sheet_x":32,"sheet_y":26,"short_name":"three","short_names":["three"],"category":"Symbols","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"princess":{"name":"Princess","unified":"1F478","variations":[],"docomo":null,"au":"EB1A","softbank":"E51C","google":"FE1AB","image":"1f478.png","sheet_x":18,"sheet_y":9,"short_name":"princess","short_names":["princess"],"category":"People","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F478-1F3FB":{"unified":"1F478-1F3FB","image":"1f478-1f3fb.png","sheet_x":18,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FC":{"unified":"1F478-1F3FC","image":"1f478-1f3fc.png","sheet_x":18,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FD":{"unified":"1F478-1F3FD","image":"1f478-1f3fd.png","sheet_x":18,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FE":{"unified":"1F478-1F3FE","image":"1f478-1f3fe.png","sheet_x":18,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F478-1F3FF":{"unified":"1F478-1F3FF","image":"1f478-1f3ff.png","sheet_x":18,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"snowman":{"name":"Snowman","unified":"2603","variations":["2603-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2603.png","sheet_x":1,"sheet_y":3,"short_name":"snowman","short_names":["snowman"],"category":"Nature","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ballot_box_with_ballot":{"name":"Ballot Box with Ballot","unified":"1F5F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5f3.png","sheet_x":26,"sheet_y":8,"short_name":"ballot_box_with_ballot","short_names":["ballot_box_with_ballot"],"category":"Objects","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mt":{"name":"Regional Indicator Symbol Letters MT","unified":"1F1F2-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f9.png","sheet_x":36,"sheet_y":27,"short_name":"flag-mt","short_names":["flag-mt"],"category":"Flags","sort_order":137,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"file_cabinet":{"name":"File Cabinet","unified":"1F5C4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c4.png","sheet_x":25,"sheet_y":38,"short_name":"file_cabinet","short_names":["file_cabinet"],"category":"Objects","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bride_with_veil":{"name":"Bride with Veil","unified":"1F470","variations":[],"docomo":null,"au":"EAE9","softbank":null,"google":"FE1A3","image":"1f470.png","sheet_x":17,"sheet_y":2,"short_name":"bride_with_veil","short_names":["bride_with_veil"],"category":"People","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F470-1F3FB":{"unified":"1F470-1F3FB","image":"1f470-1f3fb.png","sheet_x":17,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FC":{"unified":"1F470-1F3FC","image":"1f470-1f3fc.png","sheet_x":17,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FD":{"unified":"1F470-1F3FD","image":"1f470-1f3fd.png","sheet_x":17,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FE":{"unified":"1F470-1F3FE","image":"1f470-1f3fe.png","sheet_x":17,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F470-1F3FF":{"unified":"1F470-1F3FF","image":"1f470-1f3ff.png","sheet_x":17,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-mh":{"name":"Regional Indicator Symbol Letters MH","unified":"1F1F2-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ed.png","sheet_x":36,"sheet_y":17,"short_name":"flag-mh","short_names":["flag-mh"],"category":"Flags","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"snowman_without_snow":{"name":"Snowman Without Snow","unified":"26C4","variations":["26C4-FE0F"],"docomo":"E641","au":"E485","softbank":"E048","google":"FE003","image":"26c4.png","sheet_x":2,"sheet_y":20,"short_name":"snowman_without_snow","short_names":["snowman_without_snow"],"category":"Nature","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"four":{"name":"Keycap 4","unified":"0034-20E3","variations":["0034-FE0F-20E3"],"docomo":"E6E5","au":"E525","softbank":"E21F","google":"FE831","image":"0034-20e3.png","sheet_x":32,"sheet_y":27,"short_name":"four","short_names":["four"],"category":"Symbols","sort_order":138,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clipboard":{"name":"Clipboard","unified":"1F4CB","variations":[],"docomo":"E689","au":"E564","softbank":"E301","google":"FE548","image":"1f4cb.png","sheet_x":21,"sheet_y":14,"short_name":"clipboard","short_names":["clipboard"],"category":"Objects","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wind_blowing_face":{"name":"Wind Blowing Face","unified":"1F32C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32c.png","sheet_x":6,"sheet_y":22,"short_name":"wind_blowing_face","short_names":["wind_blowing_face"],"category":"Nature","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"five":{"name":"Keycap 5","unified":"0035-20E3","variations":["0035-FE0F-20E3"],"docomo":"E6E6","au":"E526","softbank":"E220","google":"FE832","image":"0035-20e3.png","sheet_x":32,"sheet_y":28,"short_name":"five","short_names":["five"],"category":"Symbols","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"walking":{"name":"Pedestrian","unified":"1F6B6","variations":[],"docomo":"E733","au":"EB72","softbank":"E201","google":"FE7F0","image":"1f6b6.png","sheet_x":30,"sheet_y":40,"short_name":"walking","short_names":["walking"],"category":"People","sort_order":139,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F6B6-1F3FB":{"unified":"1F6B6-1F3FB","image":"1f6b6-1f3fb.png","sheet_x":31,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FC":{"unified":"1F6B6-1F3FC","image":"1f6b6-1f3fc.png","sheet_x":31,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FD":{"unified":"1F6B6-1F3FD","image":"1f6b6-1f3fd.png","sheet_x":31,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FE":{"unified":"1F6B6-1F3FE","image":"1f6b6-1f3fe.png","sheet_x":31,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F6B6-1F3FF":{"unified":"1F6B6-1F3FF","image":"1f6b6-1f3ff.png","sheet_x":31,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-mq":{"name":"Regional Indicator Symbol Letters MQ","unified":"1F1F2-1F1F6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f6.png","sheet_x":36,"sheet_y":24,"short_name":"flag-mq","short_names":["flag-mq"],"category":"Flags","sort_order":139,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"six":{"name":"Keycap 6","unified":"0036-20E3","variations":["0036-FE0F-20E3"],"docomo":"E6E7","au":"E527","softbank":"E221","google":"FE833","image":"0036-20e3.png","sheet_x":32,"sheet_y":29,"short_name":"six","short_names":["six"],"category":"Symbols","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dash":{"name":"Dash Symbol","unified":"1F4A8","variations":[],"docomo":"E708","au":"E4F4","softbank":"E330","google":"FEB5D","image":"1f4a8.png","sheet_x":20,"sheet_y":15,"short_name":"dash","short_names":["dash"],"category":"Nature","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mr":{"name":"Regional Indicator Symbol Letters MR","unified":"1F1F2-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f7.png","sheet_x":36,"sheet_y":25,"short_name":"flag-mr","short_names":["flag-mr"],"category":"Flags","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"runner":{"name":"Runner","unified":"1F3C3","variations":[],"docomo":"E733","au":"E46B","softbank":"E115","google":"FE7D9","image":"1f3c3.png","sheet_x":10,"sheet_y":9,"short_name":"runner","short_names":["runner","running"],"category":"People","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F3C3-1F3FB":{"unified":"1F3C3-1F3FB","image":"1f3c3-1f3fb.png","sheet_x":10,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FC":{"unified":"1F3C3-1F3FC","image":"1f3c3-1f3fc.png","sheet_x":10,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FD":{"unified":"1F3C3-1F3FD","image":"1f3c3-1f3fd.png","sheet_x":10,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FE":{"unified":"1F3C3-1F3FE","image":"1f3c3-1f3fe.png","sheet_x":10,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F3C3-1F3FF":{"unified":"1F3C3-1F3FF","image":"1f3c3-1f3ff.png","sheet_x":10,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"spiral_note_pad":{"name":"Spiral Note Pad","unified":"1F5D2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5d2.png","sheet_x":25,"sheet_y":40,"short_name":"spiral_note_pad","short_names":["spiral_note_pad"],"category":"Objects","sort_order":140,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"seven":{"name":"Keycap 7","unified":"0037-20E3","variations":["0037-FE0F-20E3"],"docomo":"E6E8","au":"E528","softbank":"E222","google":"FE834","image":"0037-20e3.png","sheet_x":32,"sheet_y":30,"short_name":"seven","short_names":["seven"],"category":"Symbols","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tornado":{"name":"Cloud with Tornado","unified":"1F32A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32a.png","sheet_x":6,"sheet_y":20,"short_name":"tornado","short_names":["tornado","tornado_cloud"],"category":"Nature","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"file_folder":{"name":"File Folder","unified":"1F4C1","variations":[],"docomo":null,"au":"E58F","softbank":null,"google":"FE543","image":"1f4c1.png","sheet_x":21,"sheet_y":4,"short_name":"file_folder","short_names":["file_folder"],"category":"Objects","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mu":{"name":"Regional Indicator Symbol Letters MU","unified":"1F1F2-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fa.png","sheet_x":36,"sheet_y":28,"short_name":"flag-mu","short_names":["flag-mu"],"category":"Flags","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dancer":{"name":"Dancer","unified":"1F483","variations":[],"docomo":null,"au":"EB1C","softbank":"E51F","google":"FE1B6","image":"1f483.png","sheet_x":18,"sheet_y":40,"short_name":"dancer","short_names":["dancer"],"category":"People","sort_order":141,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F483-1F3FB":{"unified":"1F483-1F3FB","image":"1f483-1f3fb.png","sheet_x":19,"sheet_y":0,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FC":{"unified":"1F483-1F3FC","image":"1f483-1f3fc.png","sheet_x":19,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FD":{"unified":"1F483-1F3FD","image":"1f483-1f3fd.png","sheet_x":19,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FE":{"unified":"1F483-1F3FE","image":"1f483-1f3fe.png","sheet_x":19,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F483-1F3FF":{"unified":"1F483-1F3FF","image":"1f483-1f3ff.png","sheet_x":19,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"open_file_folder":{"name":"Open File Folder","unified":"1F4C2","variations":[],"docomo":null,"au":"E590","softbank":null,"google":"FE544","image":"1f4c2.png","sheet_x":21,"sheet_y":5,"short_name":"open_file_folder","short_names":["open_file_folder"],"category":"Objects","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eight":{"name":"Keycap 8","unified":"0038-20E3","variations":["0038-FE0F-20E3"],"docomo":"E6E9","au":"E529","softbank":"E223","google":"FE835","image":"0038-20e3.png","sheet_x":32,"sheet_y":31,"short_name":"eight","short_names":["eight"],"category":"Symbols","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fog":{"name":"Fog","unified":"1F32B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f32b.png","sheet_x":6,"sheet_y":21,"short_name":"fog","short_names":["fog"],"category":"Nature","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dancers":{"name":"Woman with Bunny Ears","unified":"1F46F","variations":[],"docomo":null,"au":"EADB","softbank":"E429","google":"FE1A2","image":"1f46f.png","sheet_x":17,"sheet_y":1,"short_name":"dancers","short_names":["dancers"],"category":"People","sort_order":142,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-yt":{"name":"Regional Indicator Symbol Letters YT","unified":"1F1FE-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1f9.png","sheet_x":38,"sheet_y":40,"short_name":"flag-yt","short_names":["flag-yt"],"category":"Flags","sort_order":142,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mx":{"name":"Regional Indicator Symbol Letters MX","unified":"1F1F2-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1fd.png","sheet_x":36,"sheet_y":31,"short_name":"flag-mx","short_names":["flag-mx"],"category":"Flags","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"card_index_dividers":{"name":"Card Index Dividers","unified":"1F5C2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5c2.png","sheet_x":25,"sheet_y":36,"short_name":"card_index_dividers","short_names":["card_index_dividers"],"category":"Objects","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"couple":{"name":"Man and Woman Holding Hands","unified":"1F46B","variations":[],"docomo":null,"au":null,"softbank":"E428","google":"FE1A0","image":"1f46b.png","sheet_x":16,"sheet_y":33,"short_name":"couple","short_names":["couple","man_and_woman_holding_hands"],"category":"People","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"umbrella":{"name":"Umbrella","unified":"2602","variations":["2602-FE0F"],"docomo":null,"au":null,"softbank":null,"google":null,"image":"2602.png","sheet_x":1,"sheet_y":2,"short_name":"umbrella","short_names":["umbrella"],"category":"Nature","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"nine":{"name":"Keycap 9","unified":"0039-20E3","variations":["0039-FE0F-20E3"],"docomo":"E6EA","au":"E52A","softbank":"E224","google":"FE836","image":"0039-20e3.png","sheet_x":32,"sheet_y":32,"short_name":"nine","short_names":["nine"],"category":"Symbols","sort_order":143,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rolled_up_newspaper":{"name":"Rolled-Up Newspaper","unified":"1F5DE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5de.png","sheet_x":26,"sheet_y":3,"short_name":"rolled_up_newspaper","short_names":["rolled_up_newspaper"],"category":"Objects","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-fm":{"name":"Regional Indicator Symbol Letters FM","unified":"1F1EB-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1eb-1f1f2.png","sheet_x":34,"sheet_y":28,"short_name":"flag-fm","short_names":["flag-fm"],"category":"Flags","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"umbrella_with_rain_drops":{"name":"Umbrella with Rain Drops","unified":"2614","variations":["2614-FE0F"],"docomo":"E640","au":"E48C","softbank":"E04B","google":"FE002","image":"2614.png","sheet_x":1,"sheet_y":7,"short_name":"umbrella_with_rain_drops","short_names":["umbrella_with_rain_drops"],"category":"Nature","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"two_men_holding_hands":{"name":"Two Men Holding Hands","unified":"1F46C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46c.png","sheet_x":16,"sheet_y":34,"short_name":"two_men_holding_hands","short_names":["two_men_holding_hands"],"category":"People","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"keycap_ten":{"name":"Keycap Ten","unified":"1F51F","variations":[],"docomo":null,"au":"E52B","softbank":null,"google":"FE83B","image":"1f51f.png","sheet_x":23,"sheet_y":15,"short_name":"keycap_ten","short_names":["keycap_ten"],"category":"Symbols","sort_order":144,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"newspaper":{"name":"Newspaper","unified":"1F4F0","variations":[],"docomo":null,"au":"E58B","softbank":null,"google":"FE822","image":"1f4f0.png","sheet_x":22,"sheet_y":10,"short_name":"newspaper","short_names":["newspaper"],"category":"Objects","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"keycap_star":{"name":"Keycap Star","unified":"002A-20E3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"002a-20e3.png","sheet_x":32,"sheet_y":22,"short_name":"keycap_star","short_names":["keycap_star"],"category":"Symbols","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-md":{"name":"Regional Indicator Symbol Letters MD","unified":"1F1F2-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e9.png","sheet_x":36,"sheet_y":13,"short_name":"flag-md","short_names":["flag-md"],"category":"Flags","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"two_women_holding_hands":{"name":"Two Women Holding Hands","unified":"1F46D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f46d.png","sheet_x":16,"sheet_y":35,"short_name":"two_women_holding_hands","short_names":["two_women_holding_hands"],"category":"People","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"droplet":{"name":"Droplet","unified":"1F4A7","variations":[],"docomo":"E707","au":"E4E6","softbank":"E331","google":"FEB5C","image":"1f4a7.png","sheet_x":20,"sheet_y":14,"short_name":"droplet","short_names":["droplet"],"category":"Nature","sort_order":145,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bow":{"name":"Person Bowing Deeply","unified":"1F647","variations":[],"docomo":null,"au":"EAD9","softbank":"E426","google":"FE353","image":"1f647.png","sheet_x":28,"sheet_y":14,"short_name":"bow","short_names":["bow"],"category":"People","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F647-1F3FB":{"unified":"1F647-1F3FB","image":"1f647-1f3fb.png","sheet_x":28,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FC":{"unified":"1F647-1F3FC","image":"1f647-1f3fc.png","sheet_x":28,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FD":{"unified":"1F647-1F3FD","image":"1f647-1f3fd.png","sheet_x":28,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FE":{"unified":"1F647-1F3FE","image":"1f647-1f3fe.png","sheet_x":28,"sheet_y":18,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F647-1F3FF":{"unified":"1F647-1F3FF","image":"1f647-1f3ff.png","sheet_x":28,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"notebook":{"name":"Notebook","unified":"1F4D3","variations":[],"docomo":"E683","au":"E56B","softbank":"E148","google":"FE545","image":"1f4d3.png","sheet_x":21,"sheet_y":22,"short_name":"notebook","short_names":["notebook"],"category":"Objects","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sweat_drops":{"name":"Splashing Sweat Symbol","unified":"1F4A6","variations":[],"docomo":"E706","au":"E5B1","softbank":"E331","google":"FEB5B","image":"1f4a6.png","sheet_x":20,"sheet_y":13,"short_name":"sweat_drops","short_names":["sweat_drops"],"category":"Nature","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mc":{"name":"Regional Indicator Symbol Letters MC","unified":"1F1F2-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e8.png","sheet_x":36,"sheet_y":12,"short_name":"flag-mc","short_names":["flag-mc"],"category":"Flags","sort_order":146,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"closed_book":{"name":"Closed Book","unified":"1F4D5","variations":[],"docomo":"E683","au":"E568","softbank":"E148","google":"FE502","image":"1f4d5.png","sheet_x":21,"sheet_y":24,"short_name":"closed_book","short_names":["closed_book"],"category":"Objects","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mn":{"name":"Regional Indicator Symbol Letters MN","unified":"1F1F2-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f3.png","sheet_x":36,"sheet_y":21,"short_name":"flag-mn","short_names":["flag-mn"],"category":"Flags","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_forward":{"name":"Black Right-Pointing Triangle","unified":"25B6","variations":["25B6-FE0F"],"docomo":null,"au":"E52E","softbank":"E23A","google":"FEAFC","image":"25b6.png","sheet_x":0,"sheet_y":35,"short_name":"arrow_forward","short_names":["arrow_forward"],"category":"Symbols","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"information_desk_person":{"name":"Information Desk Person","unified":"1F481","variations":[],"docomo":null,"au":null,"softbank":"E253","google":"FE1B4","image":"1f481.png","sheet_x":18,"sheet_y":28,"short_name":"information_desk_person","short_names":["information_desk_person"],"category":"People","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F481-1F3FB":{"unified":"1F481-1F3FB","image":"1f481-1f3fb.png","sheet_x":18,"sheet_y":29,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FC":{"unified":"1F481-1F3FC","image":"1f481-1f3fc.png","sheet_x":18,"sheet_y":30,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FD":{"unified":"1F481-1F3FD","image":"1f481-1f3fd.png","sheet_x":18,"sheet_y":31,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FE":{"unified":"1F481-1F3FE","image":"1f481-1f3fe.png","sheet_x":18,"sheet_y":32,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F481-1F3FF":{"unified":"1F481-1F3FF","image":"1f481-1f3ff.png","sheet_x":18,"sheet_y":33,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"ocean":{"name":"Water Wave","unified":"1F30A","variations":[],"docomo":"E73F","au":"EB7C","softbank":"E43E","google":"FE038","image":"1f30a.png","sheet_x":5,"sheet_y":31,"short_name":"ocean","short_names":["ocean"],"category":"Nature","sort_order":147,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"double_vertical_bar":{"name":"Double Vertical Bar","unified":"23F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f8.png","sheet_x":0,"sheet_y":29,"short_name":"double_vertical_bar","short_names":["double_vertical_bar"],"category":"Symbols","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"green_book":{"name":"Green Book","unified":"1F4D7","variations":[],"docomo":"E683","au":"E565","softbank":"E148","google":"FE4FF","image":"1f4d7.png","sheet_x":21,"sheet_y":26,"short_name":"green_book","short_names":["green_book"],"category":"Objects","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_good":{"name":"Face with No Good Gesture","unified":"1F645","variations":[],"docomo":"E72F","au":"EAD7","softbank":"E423","google":"FE351","image":"1f645.png","sheet_x":28,"sheet_y":2,"short_name":"no_good","short_names":["no_good"],"category":"People","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F645-1F3FB":{"unified":"1F645-1F3FB","image":"1f645-1f3fb.png","sheet_x":28,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FC":{"unified":"1F645-1F3FC","image":"1f645-1f3fc.png","sheet_x":28,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FD":{"unified":"1F645-1F3FD","image":"1f645-1f3fd.png","sheet_x":28,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FE":{"unified":"1F645-1F3FE","image":"1f645-1f3fe.png","sheet_x":28,"sheet_y":6,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F645-1F3FF":{"unified":"1F645-1F3FF","image":"1f645-1f3ff.png","sheet_x":28,"sheet_y":7,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"flag-me":{"name":"Regional Indicator Symbol Letters ME","unified":"1F1F2-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ea.png","sheet_x":36,"sheet_y":14,"short_name":"flag-me","short_names":["flag-me"],"category":"Flags","sort_order":148,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ms":{"name":"Regional Indicator Symbol Letters MS","unified":"1F1F2-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f8.png","sheet_x":36,"sheet_y":26,"short_name":"flag-ms","short_names":["flag-ms"],"category":"Flags","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ok_woman":{"name":"Face with Ok Gesture","unified":"1F646","variations":[],"docomo":"E70B","au":"EAD8","softbank":"E424","google":"FE352","image":"1f646.png","sheet_x":28,"sheet_y":8,"short_name":"ok_woman","short_names":["ok_woman"],"category":"People","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F646-1F3FB":{"unified":"1F646-1F3FB","image":"1f646-1f3fb.png","sheet_x":28,"sheet_y":9,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FC":{"unified":"1F646-1F3FC","image":"1f646-1f3fc.png","sheet_x":28,"sheet_y":10,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FD":{"unified":"1F646-1F3FD","image":"1f646-1f3fd.png","sheet_x":28,"sheet_y":11,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FE":{"unified":"1F646-1F3FE","image":"1f646-1f3fe.png","sheet_x":28,"sheet_y":12,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F646-1F3FF":{"unified":"1F646-1F3FF","image":"1f646-1f3ff.png","sheet_x":28,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"blue_book":{"name":"Blue Book","unified":"1F4D8","variations":[],"docomo":"E683","au":"E566","softbank":"E148","google":"FE500","image":"1f4d8.png","sheet_x":21,"sheet_y":27,"short_name":"blue_book","short_names":["blue_book"],"category":"Objects","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_right_pointing_triangle_with_double_vertical_bar":{"name":"Black Right-Pointing Triangle with Double Vertical Bar","unified":"23EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ef.png","sheet_x":0,"sheet_y":24,"short_name":"black_right_pointing_triangle_with_double_vertical_bar","short_names":["black_right_pointing_triangle_with_double_vertical_bar"],"category":"Symbols","sort_order":149,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"raising_hand":{"name":"Happy Person Raising One Hand","unified":"1F64B","variations":[],"docomo":null,"au":"EB85","softbank":"E012","google":"FE357","image":"1f64b.png","sheet_x":28,"sheet_y":23,"short_name":"raising_hand","short_names":["raising_hand"],"category":"People","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64B-1F3FB":{"unified":"1F64B-1F3FB","image":"1f64b-1f3fb.png","sheet_x":28,"sheet_y":24,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FC":{"unified":"1F64B-1F3FC","image":"1f64b-1f3fc.png","sheet_x":28,"sheet_y":25,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FD":{"unified":"1F64B-1F3FD","image":"1f64b-1f3fd.png","sheet_x":28,"sheet_y":26,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FE":{"unified":"1F64B-1F3FE","image":"1f64b-1f3fe.png","sheet_x":28,"sheet_y":27,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64B-1F3FF":{"unified":"1F64B-1F3FF","image":"1f64b-1f3ff.png","sheet_x":28,"sheet_y":28,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"black_square_for_stop":{"name":"Black Square for Stop","unified":"23F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23f9.png","sheet_x":0,"sheet_y":30,"short_name":"black_square_for_stop","short_names":["black_square_for_stop"],"category":"Symbols","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"orange_book":{"name":"Orange Book","unified":"1F4D9","variations":[],"docomo":"E683","au":"E567","softbank":"E148","google":"FE501","image":"1f4d9.png","sheet_x":21,"sheet_y":28,"short_name":"orange_book","short_names":["orange_book"],"category":"Objects","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ma":{"name":"Regional Indicator Symbol Letters MA","unified":"1F1F2-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1e6.png","sheet_x":36,"sheet_y":11,"short_name":"flag-ma","short_names":["flag-ma"],"category":"Flags","sort_order":150,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mz":{"name":"Regional Indicator Symbol Letters MZ","unified":"1F1F2-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1ff.png","sheet_x":36,"sheet_y":33,"short_name":"flag-mz","short_names":["flag-mz"],"category":"Flags","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"notebook_with_decorative_cover":{"name":"Notebook with Decorative Cover","unified":"1F4D4","variations":[],"docomo":"E683","au":"E49D","softbank":"E148","google":"FE547","image":"1f4d4.png","sheet_x":21,"sheet_y":23,"short_name":"notebook_with_decorative_cover","short_names":["notebook_with_decorative_cover"],"category":"Objects","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"person_with_pouting_face":{"name":"Person with Pouting Face","unified":"1F64E","variations":[],"docomo":"E6F1","au":"EB88","softbank":"E416","google":"FE35A","image":"1f64e.png","sheet_x":29,"sheet_y":0,"short_name":"person_with_pouting_face","short_names":["person_with_pouting_face"],"category":"People","sort_order":151,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64E-1F3FB":{"unified":"1F64E-1F3FB","image":"1f64e-1f3fb.png","sheet_x":29,"sheet_y":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FC":{"unified":"1F64E-1F3FC","image":"1f64e-1f3fc.png","sheet_x":29,"sheet_y":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FD":{"unified":"1F64E-1F3FD","image":"1f64e-1f3fd.png","sheet_x":29,"sheet_y":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FE":{"unified":"1F64E-1F3FE","image":"1f64e-1f3fe.png","sheet_x":29,"sheet_y":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64E-1F3FF":{"unified":"1F64E-1F3FF","image":"1f64e-1f3ff.png","sheet_x":29,"sheet_y":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"eject":{"name":"Eject Symbol","unified":"23CF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23cf.png","sheet_x":0,"sheet_y":17,"short_name":"eject","short_names":["eject"],"category":"Symbols","sort_order":151,"has_img_apple":false,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":false,"emoticons":[]},"black_circle_for_record":{"name":"Black Circle for Record","unified":"23FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23fa.png","sheet_x":0,"sheet_y":31,"short_name":"black_circle_for_record","short_names":["black_circle_for_record"],"category":"Symbols","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mm":{"name":"Regional Indicator Symbol Letters MM","unified":"1F1F2-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f2.png","sheet_x":36,"sheet_y":20,"short_name":"flag-mm","short_names":["flag-mm"],"category":"Flags","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"person_frowning":{"name":"Person Frowning","unified":"1F64D","variations":[],"docomo":"E6F3","au":"EB87","softbank":"E403","google":"FE359","image":"1f64d.png","sheet_x":28,"sheet_y":35,"short_name":"person_frowning","short_names":["person_frowning"],"category":"People","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F64D-1F3FB":{"unified":"1F64D-1F3FB","image":"1f64d-1f3fb.png","sheet_x":28,"sheet_y":36,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FC":{"unified":"1F64D-1F3FC","image":"1f64d-1f3fc.png","sheet_x":28,"sheet_y":37,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FD":{"unified":"1F64D-1F3FD","image":"1f64d-1f3fd.png","sheet_x":28,"sheet_y":38,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FE":{"unified":"1F64D-1F3FE","image":"1f64d-1f3fe.png","sheet_x":28,"sheet_y":39,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F64D-1F3FF":{"unified":"1F64D-1F3FF","image":"1f64d-1f3ff.png","sheet_x":28,"sheet_y":40,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"ledger":{"name":"Ledger","unified":"1F4D2","variations":[],"docomo":"E683","au":"E56E","softbank":"E148","google":"FE54F","image":"1f4d2.png","sheet_x":21,"sheet_y":21,"short_name":"ledger","short_names":["ledger"],"category":"Objects","sort_order":152,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-na":{"name":"Regional Indicator Symbol Letters NA","unified":"1F1F3-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e6.png","sheet_x":36,"sheet_y":34,"short_name":"flag-na","short_names":["flag-na"],"category":"Flags","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"haircut":{"name":"Haircut","unified":"1F487","variations":[],"docomo":"E675","au":"EAA1","softbank":"E31F","google":"FE198","image":"1f487.png","sheet_x":19,"sheet_y":18,"short_name":"haircut","short_names":["haircut"],"category":"People","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F487-1F3FB":{"unified":"1F487-1F3FB","image":"1f487-1f3fb.png","sheet_x":19,"sheet_y":19,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FC":{"unified":"1F487-1F3FC","image":"1f487-1f3fc.png","sheet_x":19,"sheet_y":20,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FD":{"unified":"1F487-1F3FD","image":"1f487-1f3fd.png","sheet_x":19,"sheet_y":21,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FE":{"unified":"1F487-1F3FE","image":"1f487-1f3fe.png","sheet_x":19,"sheet_y":22,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F487-1F3FF":{"unified":"1F487-1F3FF","image":"1f487-1f3ff.png","sheet_x":19,"sheet_y":23,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"books":{"name":"Books","unified":"1F4DA","variations":[],"docomo":"E683","au":"E56F","softbank":"E148","google":"FE503","image":"1f4da.png","sheet_x":21,"sheet_y":29,"short_name":"books","short_names":["books"],"category":"Objects","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_right_pointing_double_triangle_with_vertical_bar":{"name":"Black Right-Pointing Double Triangle with Vertical Bar","unified":"23ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ed.png","sheet_x":0,"sheet_y":22,"short_name":"black_right_pointing_double_triangle_with_vertical_bar","short_names":["black_right_pointing_double_triangle_with_vertical_bar"],"category":"Symbols","sort_order":153,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"book":{"name":"Open Book","unified":"1F4D6","variations":[],"docomo":"E683","au":"E49F","softbank":"E148","google":"FE546","image":"1f4d6.png","sheet_x":21,"sheet_y":25,"short_name":"book","short_names":["book","open_book"],"category":"Objects","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-nr":{"name":"Regional Indicator Symbol Letters NR","unified":"1F1F3-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f7.png","sheet_x":37,"sheet_y":2,"short_name":"flag-nr","short_names":["flag-nr"],"category":"Flags","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_left_pointing_double_triangle_with_vertical_bar":{"name":"Black Left-Pointing Double Triangle with Vertical Bar","unified":"23EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"23ee.png","sheet_x":0,"sheet_y":23,"short_name":"black_left_pointing_double_triangle_with_vertical_bar","short_names":["black_left_pointing_double_triangle_with_vertical_bar"],"category":"Symbols","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"massage":{"name":"Face Massage","unified":"1F486","variations":[],"docomo":null,"au":"E50B","softbank":"E31E","google":"FE197","image":"1f486.png","sheet_x":19,"sheet_y":12,"short_name":"massage","short_names":["massage"],"category":"People","sort_order":154,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"skin_variations":{"1F486-1F3FB":{"unified":"1F486-1F3FB","image":"1f486-1f3fb.png","sheet_x":19,"sheet_y":13,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FC":{"unified":"1F486-1F3FC","image":"1f486-1f3fc.png","sheet_x":19,"sheet_y":14,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FD":{"unified":"1F486-1F3FD","image":"1f486-1f3fd.png","sheet_x":19,"sheet_y":15,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FE":{"unified":"1F486-1F3FE","image":"1f486-1f3fe.png","sheet_x":19,"sheet_y":16,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true},"1F486-1F3FF":{"unified":"1F486-1F3FF","image":"1f486-1f3ff.png","sheet_x":19,"sheet_y":17,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true}},"emoticons":[]},"couple_with_heart":{"name":"Couple with Heart","unified":"1F491","variations":[],"docomo":"E6ED","au":"EADA","softbank":"E425","google":"FE829","image":"1f491.png","sheet_x":19,"sheet_y":33,"short_name":"couple_with_heart","short_names":["couple_with_heart"],"category":"People","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"fast_forward":{"name":"Black Right-Pointing Double Triangle","unified":"23E9","variations":[],"docomo":null,"au":"E530","softbank":"E23C","google":"FEAFE","image":"23e9.png","sheet_x":0,"sheet_y":18,"short_name":"fast_forward","short_names":["fast_forward"],"category":"Symbols","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-np":{"name":"Regional Indicator Symbol Letters NP","unified":"1F1F3-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f5.png","sheet_x":37,"sheet_y":1,"short_name":"flag-np","short_names":["flag-np"],"category":"Flags","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"link":{"name":"Link Symbol","unified":"1F517","variations":[],"docomo":null,"au":"E58A","softbank":null,"google":"FEB4B","image":"1f517.png","sheet_x":23,"sheet_y":7,"short_name":"link","short_names":["link"],"category":"Objects","sort_order":155,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"paperclip":{"name":"Paperclip","unified":"1F4CE","variations":[],"docomo":"E730","au":"E4A0","softbank":null,"google":"FE53A","image":"1f4ce.png","sheet_x":21,"sheet_y":17,"short_name":"paperclip","short_names":["paperclip"],"category":"Objects","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"rewind":{"name":"Black Left-Pointing Double Triangle","unified":"23EA","variations":[],"docomo":null,"au":"E52F","softbank":"E23D","google":"FEAFF","image":"23ea.png","sheet_x":0,"sheet_y":19,"short_name":"rewind","short_names":["rewind"],"category":"Symbols","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-heart-woman":{"name":"Woman Heart Woman","unified":"1F469-200D-2764-FE0F-200D-1F469","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f469.png","sheet_x":39,"sheet_y":19,"short_name":"woman-heart-woman","short_names":["woman-heart-woman"],"category":"People","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false,"emoticons":[]},"flag-nl":{"name":"Regional Indicator Symbol Letters NL","unified":"1F1F3-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f1.png","sheet_x":36,"sheet_y":40,"short_name":"flag-nl","short_names":["flag-nl"],"category":"Flags","sort_order":156,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"linked_paperclips":{"name":"Linked Paperclips","unified":"1F587","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f587.png","sheet_x":25,"sheet_y":8,"short_name":"linked_paperclips","short_names":["linked_paperclips"],"category":"Objects","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-heart-man":{"name":"Man Heart Man","unified":"1F468-200D-2764-FE0F-200D-1F468","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f468.png","sheet_x":39,"sheet_y":12,"short_name":"man-heart-man","short_names":["man-heart-man"],"category":"People","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false,"emoticons":[]},"flag-nc":{"name":"Regional Indicator Symbol Letters NC","unified":"1F1F3-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1e8.png","sheet_x":36,"sheet_y":35,"short_name":"flag-nc","short_names":["flag-nc"],"category":"Flags","sort_order":157,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"twisted_rightwards_arrows":{"name":"Twisted Rightwards Arrows","unified":"1F500","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f500.png","sheet_x":22,"sheet_y":25,"short_name":"twisted_rightwards_arrows","short_names":["twisted_rightwards_arrows"],"category":"Symbols","sort_order":157,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"couplekiss":{"name":"Kiss","unified":"1F48F","variations":[],"docomo":"E6F9","au":"E5CA","softbank":"E111","google":"FE827","image":"1f48f.png","sheet_x":19,"sheet_y":31,"short_name":"couplekiss","short_names":["couplekiss"],"category":"People","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-nz":{"name":"Regional Indicator Symbol Letters NZ","unified":"1F1F3-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ff.png","sheet_x":37,"sheet_y":4,"short_name":"flag-nz","short_names":["flag-nz"],"category":"Flags","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"scissors":{"name":"Black Scissors","unified":"2702","variations":["2702-FE0F"],"docomo":"E675","au":"E516","softbank":"E313","google":"FE53E","image":"2702.png","sheet_x":3,"sheet_y":5,"short_name":"scissors","short_names":["scissors"],"category":"Objects","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"repeat":{"name":"Clockwise Rightwards and Leftwards Open Circle Arrows","unified":"1F501","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f501.png","sheet_x":22,"sheet_y":26,"short_name":"repeat","short_names":["repeat"],"category":"Symbols","sort_order":158,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"repeat_one":{"name":"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay","unified":"1F502","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f502.png","sheet_x":22,"sheet_y":27,"short_name":"repeat_one","short_names":["repeat_one"],"category":"Symbols","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ni":{"name":"Regional Indicator Symbol Letters NI","unified":"1F1F3-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ee.png","sheet_x":36,"sheet_y":39,"short_name":"flag-ni","short_names":["flag-ni"],"category":"Flags","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-kiss-woman":{"name":"Woman Kiss Woman","unified":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png","sheet_x":39,"sheet_y":20,"short_name":"woman-kiss-woman","short_names":["woman-kiss-woman"],"category":"People","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false,"emoticons":[]},"triangular_ruler":{"name":"Triangular Ruler","unified":"1F4D0","variations":[],"docomo":null,"au":"E4A2","softbank":null,"google":"FE551","image":"1f4d0.png","sheet_x":21,"sheet_y":19,"short_name":"triangular_ruler","short_names":["triangular_ruler"],"category":"Objects","sort_order":159,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"straight_ruler":{"name":"Straight Ruler","unified":"1F4CF","variations":[],"docomo":null,"au":"E570","softbank":null,"google":"FE550","image":"1f4cf.png","sheet_x":21,"sheet_y":18,"short_name":"straight_ruler","short_names":["straight_ruler"],"category":"Objects","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ne":{"name":"Regional Indicator Symbol Letters NE","unified":"1F1F3-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ea.png","sheet_x":36,"sheet_y":36,"short_name":"flag-ne","short_names":["flag-ne"],"category":"Flags","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-kiss-man":{"name":"Man Kiss Man","unified":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png","sheet_x":39,"sheet_y":13,"short_name":"man-kiss-man","short_names":["man-kiss-man"],"category":"People","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false,"emoticons":[]},"arrow_backward":{"name":"Black Left-Pointing Triangle","unified":"25C0","variations":["25C0-FE0F"],"docomo":null,"au":"E52D","softbank":"E23B","google":"FEAFD","image":"25c0.png","sheet_x":0,"sheet_y":36,"short_name":"arrow_backward","short_names":["arrow_backward"],"category":"Symbols","sort_order":160,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_up_small":{"name":"Up-Pointing Small Red Triangle","unified":"1F53C","variations":[],"docomo":null,"au":"E543","softbank":null,"google":"FEB01","image":"1f53c.png","sheet_x":24,"sheet_y":3,"short_name":"arrow_up_small","short_names":["arrow_up_small"],"category":"Symbols","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ng":{"name":"Regional Indicator Symbol Letters NG","unified":"1F1F3-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1ec.png","sheet_x":36,"sheet_y":38,"short_name":"flag-ng","short_names":["flag-ng"],"category":"Flags","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"family":{"name":"Family","unified":"1F46A","variations":["1F468-200D-1F469-200D-1F466"],"docomo":null,"au":"E501","softbank":null,"google":"FE19F","image":"1f46a.png","sheet_x":16,"sheet_y":32,"short_name":"family","short_names":["family","man-woman-boy"],"category":"People","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pushpin":{"name":"Pushpin","unified":"1F4CC","variations":[],"docomo":null,"au":"E56D","softbank":null,"google":"FE54E","image":"1f4cc.png","sheet_x":21,"sheet_y":15,"short_name":"pushpin","short_names":["pushpin"],"category":"Objects","sort_order":161,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-woman-girl":{"name":"Man Woman Girl","unified":"1F468-200D-1F469-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467.png","sheet_x":39,"sheet_y":9,"short_name":"man-woman-girl","short_names":["man-woman-girl"],"category":"People","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"round_pushpin":{"name":"Round Pushpin","unified":"1F4CD","variations":[],"docomo":null,"au":"E560","softbank":null,"google":"FE53F","image":"1f4cd.png","sheet_x":21,"sheet_y":16,"short_name":"round_pushpin","short_names":["round_pushpin"],"category":"Objects","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_down_small":{"name":"Down-Pointing Small Red Triangle","unified":"1F53D","variations":[],"docomo":null,"au":"E542","softbank":null,"google":"FEB00","image":"1f53d.png","sheet_x":24,"sheet_y":4,"short_name":"arrow_down_small","short_names":["arrow_down_small"],"category":"Symbols","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-nu":{"name":"Regional Indicator Symbol Letters NU","unified":"1F1F3-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1fa.png","sheet_x":37,"sheet_y":3,"short_name":"flag-nu","short_names":["flag-nu"],"category":"Flags","sort_order":162,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-nf":{"name":"Regional Indicator Symbol Letters NF","unified":"1F1F3-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1eb.png","sheet_x":36,"sheet_y":37,"short_name":"flag-nf","short_names":["flag-nf"],"category":"Flags","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"triangular_flag_on_post":{"name":"Triangular Flag on Post","unified":"1F6A9","variations":[],"docomo":"E6DE","au":"EB2C","softbank":null,"google":"FEB22","image":"1f6a9.png","sheet_x":30,"sheet_y":17,"short_name":"triangular_flag_on_post","short_names":["triangular_flag_on_post"],"category":"Objects","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-woman-girl-boy":{"name":"Man Woman Girl Boy","unified":"1F468-200D-1F469-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":10,"short_name":"man-woman-girl-boy","short_names":["man-woman-girl-boy"],"category":"People","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_double_up":{"name":"Black Up-Pointing Double Triangle","unified":"23EB","variations":[],"docomo":null,"au":"E545","softbank":null,"google":"FEB03","image":"23eb.png","sheet_x":0,"sheet_y":20,"short_name":"arrow_double_up","short_names":["arrow_double_up"],"category":"Symbols","sort_order":163,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-woman-boy-boy":{"name":"Man Woman Boy Boy","unified":"1F468-200D-1F469-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":8,"short_name":"man-woman-boy-boy","short_names":["man-woman-boy-boy"],"category":"People","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mp":{"name":"Regional Indicator Symbol Letters MP","unified":"1F1F2-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1f5.png","sheet_x":36,"sheet_y":23,"short_name":"flag-mp","short_names":["flag-mp"],"category":"Flags","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"waving_white_flag":{"name":"Waving White Flag","unified":"1F3F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f3.png","sheet_x":11,"sheet_y":34,"short_name":"waving_white_flag","short_names":["waving_white_flag"],"category":"Objects","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_double_down":{"name":"Black Down-Pointing Double Triangle","unified":"23EC","variations":[],"docomo":null,"au":"E544","softbank":null,"google":"FEB02","image":"23ec.png","sheet_x":0,"sheet_y":21,"short_name":"arrow_double_down","short_names":["arrow_double_down"],"category":"Symbols","sort_order":164,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-woman-girl-girl":{"name":"Man Woman Girl Girl","unified":"1F468-200D-1F469-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":11,"short_name":"man-woman-girl-girl","short_names":["man-woman-girl-girl"],"category":"People","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kp":{"name":"Regional Indicator Symbol Letters KP","unified":"1F1F0-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f5.png","sheet_x":35,"sheet_y":36,"short_name":"flag-kp","short_names":["flag-kp"],"category":"Flags","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"waving_black_flag":{"name":"Waving Black Flag","unified":"1F3F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3f4.png","sheet_x":11,"sheet_y":35,"short_name":"waving_black_flag","short_names":["waving_black_flag"],"category":"Objects","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_right":{"name":"Black Rightwards Arrow","unified":"27A1","variations":["27A1-FE0F"],"docomo":null,"au":"E552","softbank":"E234","google":"FEAFA","image":"27a1.png","sheet_x":4,"sheet_y":14,"short_name":"arrow_right","short_names":["arrow_right"],"category":"Symbols","sort_order":165,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-no":{"name":"Regional Indicator Symbol Letters NO","unified":"1F1F3-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f3-1f1f4.png","sheet_x":37,"sheet_y":0,"short_name":"flag-no","short_names":["flag-no"],"category":"Flags","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-woman-boy":{"name":"Woman Woman Boy","unified":"1F469-200D-1F469-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466.png","sheet_x":39,"sheet_y":14,"short_name":"woman-woman-boy","short_names":["woman-woman-boy"],"category":"People","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_left":{"name":"Leftwards Black Arrow","unified":"2B05","variations":["2B05-FE0F"],"docomo":null,"au":"E553","softbank":"E235","google":"FEAFB","image":"2b05.png","sheet_x":4,"sheet_y":19,"short_name":"arrow_left","short_names":["arrow_left"],"category":"Symbols","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"closed_lock_with_key":{"name":"Closed Lock with Key","unified":"1F510","variations":[],"docomo":"E6D9","au":"EAFC","softbank":"E144","google":"FEB8A","image":"1f510.png","sheet_x":23,"sheet_y":0,"short_name":"closed_lock_with_key","short_names":["closed_lock_with_key"],"category":"Objects","sort_order":166,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-om":{"name":"Regional Indicator Symbol Letters OM","unified":"1F1F4-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f4-1f1f2.png","sheet_x":37,"sheet_y":5,"short_name":"flag-om","short_names":["flag-om"],"category":"Flags","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lock":{"name":"Lock","unified":"1F512","variations":[],"docomo":"E6D9","au":"E51C","softbank":"E144","google":"FEB86","image":"1f512.png","sheet_x":23,"sheet_y":2,"short_name":"lock","short_names":["lock"],"category":"Objects","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_up":{"name":"Upwards Black Arrow","unified":"2B06","variations":["2B06-FE0F"],"docomo":null,"au":"E53F","softbank":"E232","google":"FEAF8","image":"2b06.png","sheet_x":4,"sheet_y":20,"short_name":"arrow_up","short_names":["arrow_up"],"category":"Symbols","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-woman-girl":{"name":"Woman Woman Girl","unified":"1F469-200D-1F469-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467.png","sheet_x":39,"sheet_y":16,"short_name":"woman-woman-girl","short_names":["woman-woman-girl"],"category":"People","sort_order":167,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_down":{"name":"Downwards Black Arrow","unified":"2B07","variations":["2B07-FE0F"],"docomo":null,"au":"E540","softbank":"E233","google":"FEAF9","image":"2b07.png","sheet_x":4,"sheet_y":21,"short_name":"arrow_down","short_names":["arrow_down"],"category":"Symbols","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pk":{"name":"Regional Indicator Symbol Letters PK","unified":"1F1F5-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f0.png","sheet_x":37,"sheet_y":11,"short_name":"flag-pk","short_names":["flag-pk"],"category":"Flags","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-woman-girl-boy":{"name":"Woman Woman Girl Boy","unified":"1F469-200D-1F469-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":17,"short_name":"woman-woman-girl-boy","short_names":["woman-woman-girl-boy"],"category":"People","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"unlock":{"name":"Open Lock","unified":"1F513","variations":[],"docomo":"E6D9","au":"E51C","softbank":"E145","google":"FEB87","image":"1f513.png","sheet_x":23,"sheet_y":3,"short_name":"unlock","short_names":["unlock"],"category":"Objects","sort_order":168,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-woman-boy-boy":{"name":"Woman Woman Boy Boy","unified":"1F469-200D-1F469-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":15,"short_name":"woman-woman-boy-boy","short_names":["woman-woman-boy-boy"],"category":"People","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lock_with_ink_pen":{"name":"Lock with Ink Pen","unified":"1F50F","variations":[],"docomo":"E6D9","au":"EB0C","softbank":"E144","google":"FEB90","image":"1f50f.png","sheet_x":22,"sheet_y":40,"short_name":"lock_with_ink_pen","short_names":["lock_with_ink_pen"],"category":"Objects","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pw":{"name":"Regional Indicator Symbol Letters PW","unified":"1F1F5-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fc.png","sheet_x":37,"sheet_y":18,"short_name":"flag-pw","short_names":["flag-pw"],"category":"Flags","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_upper_right":{"name":"North East Arrow","unified":"2197","variations":["2197-FE0F"],"docomo":"E678","au":"E555","softbank":"E236","google":"FEAF0","image":"2197.png","sheet_x":0,"sheet_y":9,"short_name":"arrow_upper_right","short_names":["arrow_upper_right"],"category":"Symbols","sort_order":169,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"woman-woman-girl-girl":{"name":"Woman Woman Girl Girl","unified":"1F469-200D-1F469-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f469-200d-1f469-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":18,"short_name":"woman-woman-girl-girl","short_names":["woman-woman-girl-girl"],"category":"People","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_lower_right":{"name":"South East Arrow","unified":"2198","variations":["2198-FE0F"],"docomo":"E696","au":"E54D","softbank":"E238","google":"FEAF1","image":"2198.png","sheet_x":0,"sheet_y":10,"short_name":"arrow_lower_right","short_names":["arrow_lower_right"],"category":"Symbols","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lower_left_ballpoint_pen":{"name":"Lower Left Ballpoint Pen","unified":"1F58A","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58a.png","sheet_x":25,"sheet_y":9,"short_name":"lower_left_ballpoint_pen","short_names":["lower_left_ballpoint_pen"],"category":"Objects","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ps":{"name":"Regional Indicator Symbol Letters PS","unified":"1F1F5-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f8.png","sheet_x":37,"sheet_y":16,"short_name":"flag-ps","short_names":["flag-ps"],"category":"Flags","sort_order":170,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pa":{"name":"Regional Indicator Symbol Letters PA","unified":"1F1F5-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1e6.png","sheet_x":37,"sheet_y":6,"short_name":"flag-pa","short_names":["flag-pa"],"category":"Flags","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lower_left_fountain_pen":{"name":"Lower Left Fountain Pen","unified":"1F58B","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58b.png","sheet_x":25,"sheet_y":10,"short_name":"lower_left_fountain_pen","short_names":["lower_left_fountain_pen"],"category":"Objects","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_lower_left":{"name":"South West Arrow","unified":"2199","variations":["2199-FE0F"],"docomo":"E6A5","au":"E556","softbank":"E239","google":"FEAF3","image":"2199.png","sheet_x":0,"sheet_y":11,"short_name":"arrow_lower_left","short_names":["arrow_lower_left"],"category":"Symbols","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-man-boy":{"name":"Man Man Boy","unified":"1F468-200D-1F468-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466.png","sheet_x":39,"sheet_y":3,"short_name":"man-man-boy","short_names":["man-man-boy"],"category":"People","sort_order":171,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_nib":{"name":"Black Nib","unified":"2712","variations":["2712-FE0F"],"docomo":"E6AE","au":"EB03","softbank":null,"google":"FE536","image":"2712.png","sheet_x":3,"sheet_y":34,"short_name":"black_nib","short_names":["black_nib"],"category":"Objects","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pg":{"name":"Regional Indicator Symbol Letters PG","unified":"1F1F5-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ec.png","sheet_x":37,"sheet_y":9,"short_name":"flag-pg","short_names":["flag-pg"],"category":"Flags","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_upper_left":{"name":"North West Arrow","unified":"2196","variations":["2196-FE0F"],"docomo":"E697","au":"E54C","softbank":"E237","google":"FEAF2","image":"2196.png","sheet_x":0,"sheet_y":8,"short_name":"arrow_upper_left","short_names":["arrow_upper_left"],"category":"Symbols","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-man-girl":{"name":"Man Man Girl","unified":"1F468-200D-1F468-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467.png","sheet_x":39,"sheet_y":5,"short_name":"man-man-girl","short_names":["man-man-girl"],"category":"People","sort_order":172,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-man-girl-boy":{"name":"Man Man Girl Boy","unified":"1F468-200D-1F468-200D-1F467-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f466.png","sheet_x":39,"sheet_y":6,"short_name":"man-man-girl-boy","short_names":["man-man-girl-boy"],"category":"People","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_up_down":{"name":"Up Down Arrow","unified":"2195","variations":["2195-FE0F"],"docomo":"E73D","au":"EB7B","softbank":null,"google":"FEAF7","image":"2195.png","sheet_x":0,"sheet_y":7,"short_name":"arrow_up_down","short_names":["arrow_up_down"],"category":"Symbols","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"memo":{"name":"Memo","unified":"1F4DD","variations":[],"docomo":"E689","au":"EA92","softbank":"E301","google":"FE527","image":"1f4dd.png","sheet_x":21,"sheet_y":32,"short_name":"memo","short_names":["memo","pencil"],"category":"Objects","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-py":{"name":"Regional Indicator Symbol Letters PY","unified":"1F1F5-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1fe.png","sheet_x":37,"sheet_y":19,"short_name":"flag-py","short_names":["flag-py"],"category":"Flags","sort_order":173,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pe":{"name":"Regional Indicator Symbol Letters PE","unified":"1F1F5-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ea.png","sheet_x":37,"sheet_y":7,"short_name":"flag-pe","short_names":["flag-pe"],"category":"Flags","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pencil2":{"name":"Pencil","unified":"270F","variations":["270F-FE0F"],"docomo":"E719","au":"E4A1","softbank":"E301","google":"FE539","image":"270f.png","sheet_x":3,"sheet_y":33,"short_name":"pencil2","short_names":["pencil2"],"category":"Objects","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-man-boy-boy":{"name":"Man Man Boy Boy","unified":"1F468-200D-1F468-200D-1F466-200D-1F466","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f466-200d-1f466.png","sheet_x":39,"sheet_y":4,"short_name":"man-man-boy-boy","short_names":["man-man-boy-boy"],"category":"People","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"left_right_arrow":{"name":"Left Right Arrow","unified":"2194","variations":["2194-FE0F"],"docomo":"E73C","au":"EB7A","softbank":null,"google":"FEAF6","image":"2194.png","sheet_x":0,"sheet_y":6,"short_name":"left_right_arrow","short_names":["left_right_arrow"],"category":"Symbols","sort_order":174,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"man-man-girl-girl":{"name":"Man Man Girl Girl","unified":"1F468-200D-1F468-200D-1F467-200D-1F467","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f468-200d-1f468-200d-1f467-200d-1f467.png","sheet_x":39,"sheet_y":7,"short_name":"man-man-girl-girl","short_names":["man-man-girl-girl"],"category":"People","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrows_counterclockwise":{"name":"Anticlockwise Downwards and Upwards Open Circle Arrows","unified":"1F504","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f504.png","sheet_x":22,"sheet_y":29,"short_name":"arrows_counterclockwise","short_names":["arrows_counterclockwise"],"category":"Symbols","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ph":{"name":"Regional Indicator Symbol Letters PH","unified":"1F1F5-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1ed.png","sheet_x":37,"sheet_y":10,"short_name":"flag-ph","short_names":["flag-ph"],"category":"Flags","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lower_left_crayon":{"name":"Lower Left Crayon","unified":"1F58D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58d.png","sheet_x":25,"sheet_y":12,"short_name":"lower_left_crayon","short_names":["lower_left_crayon"],"category":"Objects","sort_order":175,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"womans_clothes":{"name":"Womans Clothes","unified":"1F45A","variations":[],"docomo":"E70E","au":"E50D","softbank":"E006","google":"FE4DB","image":"1f45a.png","sheet_x":15,"sheet_y":37,"short_name":"womans_clothes","short_names":["womans_clothes"],"category":"People","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lower_left_paintbrush":{"name":"Lower Left Paintbrush","unified":"1F58C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f58c.png","sheet_x":25,"sheet_y":11,"short_name":"lower_left_paintbrush","short_names":["lower_left_paintbrush"],"category":"Objects","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pn":{"name":"Regional Indicator Symbol Letters PN","unified":"1F1F5-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f3.png","sheet_x":37,"sheet_y":14,"short_name":"flag-pn","short_names":["flag-pn"],"category":"Flags","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_right_hook":{"name":"Rightwards Arrow with Hook","unified":"21AA","variations":["21AA-FE0F"],"docomo":null,"au":"E55C","softbank":null,"google":"FEB88","image":"21aa.png","sheet_x":0,"sheet_y":13,"short_name":"arrow_right_hook","short_names":["arrow_right_hook"],"category":"Symbols","sort_order":176,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"leftwards_arrow_with_hook":{"name":"Leftwards Arrow with Hook","unified":"21A9","variations":["21A9-FE0F"],"docomo":"E6DA","au":"E55D","softbank":null,"google":"FEB83","image":"21a9.png","sheet_x":0,"sheet_y":12,"short_name":"leftwards_arrow_with_hook","short_names":["leftwards_arrow_with_hook"],"category":"Symbols","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mag":{"name":"Left-Pointing Magnifying Glass","unified":"1F50D","variations":[],"docomo":"E6DC","au":"E518","softbank":"E114","google":"FEB85","image":"1f50d.png","sheet_x":22,"sheet_y":38,"short_name":"mag","short_names":["mag"],"category":"Objects","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pl":{"name":"Regional Indicator Symbol Letters PL","unified":"1F1F5-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f1.png","sheet_x":37,"sheet_y":12,"short_name":"flag-pl","short_names":["flag-pl"],"category":"Flags","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"shirt":{"name":"T-Shirt","unified":"1F455","variations":[],"docomo":"E70E","au":"E5B6","softbank":"E006","google":"FE4CF","image":"1f455.png","sheet_x":15,"sheet_y":32,"short_name":"shirt","short_names":["shirt","tshirt"],"category":"People","sort_order":177,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pt":{"name":"Regional Indicator Symbol Letters PT","unified":"1F1F5-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f9.png","sheet_x":37,"sheet_y":17,"short_name":"flag-pt","short_names":["flag-pt"],"category":"Flags","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"jeans":{"name":"Jeans","unified":"1F456","variations":[],"docomo":"E711","au":"EB77","softbank":null,"google":"FE4D0","image":"1f456.png","sheet_x":15,"sheet_y":33,"short_name":"jeans","short_names":["jeans"],"category":"People","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mag_right":{"name":"Right-Pointing Magnifying Glass","unified":"1F50E","variations":[],"docomo":"E6DC","au":"EB05","softbank":"E114","google":"FEB8D","image":"1f50e.png","sheet_x":22,"sheet_y":39,"short_name":"mag_right","short_names":["mag_right"],"category":"Objects","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_heading_up":{"name":"Arrow Pointing Rightwards Then Curving Upwards","unified":"2934","variations":["2934-FE0F"],"docomo":"E6F5","au":"EB2D","softbank":"E236","google":"FEAF4","image":"2934.png","sheet_x":4,"sheet_y":17,"short_name":"arrow_heading_up","short_names":["arrow_heading_up"],"category":"Symbols","sort_order":178,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"necktie":{"name":"Necktie","unified":"1F454","variations":[],"docomo":null,"au":"EA93","softbank":"E302","google":"FE4D3","image":"1f454.png","sheet_x":15,"sheet_y":31,"short_name":"necktie","short_names":["necktie"],"category":"People","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pr":{"name":"Regional Indicator Symbol Letters PR","unified":"1F1F5-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f7.png","sheet_x":37,"sheet_y":15,"short_name":"flag-pr","short_names":["flag-pr"],"category":"Flags","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrow_heading_down":{"name":"Arrow Pointing Rightwards Then Curving Downwards","unified":"2935","variations":["2935-FE0F"],"docomo":"E700","au":"EB2E","softbank":"E238","google":"FEAF5","image":"2935.png","sheet_x":4,"sheet_y":18,"short_name":"arrow_heading_down","short_names":["arrow_heading_down"],"category":"Symbols","sort_order":179,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dress":{"name":"Dress","unified":"1F457","variations":[],"docomo":null,"au":"EB6B","softbank":"E319","google":"FE4D5","image":"1f457.png","sheet_x":15,"sheet_y":34,"short_name":"dress","short_names":["dress"],"category":"People","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-qa":{"name":"Regional Indicator Symbol Letters QA","unified":"1F1F6-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f6-1f1e6.png","sheet_x":37,"sheet_y":20,"short_name":"flag-qa","short_names":["flag-qa"],"category":"Flags","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hash":{"name":"Hash Key","unified":"0023-20E3","variations":["0023-FE0F-20E3"],"docomo":"E6E0","au":"EB84","softbank":"E210","google":"FE82C","image":"0023-20e3.png","sheet_x":32,"sheet_y":21,"short_name":"hash","short_names":["hash"],"category":"Symbols","sort_order":180,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-re":{"name":"Regional Indicator Symbol Letters RE","unified":"1F1F7-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1ea.png","sheet_x":37,"sheet_y":21,"short_name":"flag-re","short_names":["flag-re"],"category":"Flags","sort_order":181,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bikini":{"name":"Bikini","unified":"1F459","variations":[],"docomo":null,"au":"EAA4","softbank":"E322","google":"FE4DA","image":"1f459.png","sheet_x":15,"sheet_y":36,"short_name":"bikini","short_names":["bikini"],"category":"People","sort_order":181,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"information_source":{"name":"Information Source","unified":"2139","variations":["2139-FE0F"],"docomo":null,"au":"E533","softbank":null,"google":"FEB47","image":"2139.png","sheet_x":0,"sheet_y":5,"short_name":"information_source","short_names":["information_source"],"category":"Symbols","sort_order":181,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kimono":{"name":"Kimono","unified":"1F458","variations":[],"docomo":null,"au":"EAA3","softbank":"E321","google":"FE4D9","image":"1f458.png","sheet_x":15,"sheet_y":35,"short_name":"kimono","short_names":["kimono"],"category":"People","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"abc":{"name":"Input Symbol for Latin Letters","unified":"1F524","variations":[],"docomo":null,"au":"EB55","softbank":null,"google":"FEB80","image":"1f524.png","sheet_x":23,"sheet_y":20,"short_name":"abc","short_names":["abc"],"category":"Symbols","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ro":{"name":"Regional Indicator Symbol Letters RO","unified":"1F1F7-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f4.png","sheet_x":37,"sheet_y":22,"short_name":"flag-ro","short_names":["flag-ro"],"category":"Flags","sort_order":182,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"lipstick":{"name":"Lipstick","unified":"1F484","variations":[],"docomo":"E710","au":"E509","softbank":"E31C","google":"FE195","image":"1f484.png","sheet_x":19,"sheet_y":5,"short_name":"lipstick","short_names":["lipstick"],"category":"People","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ru":{"name":"Regional Indicator Symbol Letters RU","unified":"1F1F7-1F1FA","variations":[],"docomo":null,"au":"E5D6","softbank":"E512","google":"FE4EC","image":"1f1f7-1f1fa.png","sheet_x":37,"sheet_y":24,"short_name":"flag-ru","short_names":["flag-ru","ru"],"category":"Flags","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"abcd":{"name":"Input Symbol for Latin Small Letters","unified":"1F521","variations":[],"docomo":null,"au":"EAFE","softbank":null,"google":"FEB7D","image":"1f521.png","sheet_x":23,"sheet_y":17,"short_name":"abcd","short_names":["abcd"],"category":"Symbols","sort_order":183,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"kiss":{"name":"Kiss Mark","unified":"1F48B","variations":[],"docomo":"E6F9","au":"E4EB","softbank":"E003","google":"FE823","image":"1f48b.png","sheet_x":19,"sheet_y":27,"short_name":"kiss","short_names":["kiss"],"category":"People","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[":*",":-*"]},"capital_abcd":{"name":"Input Symbol for Latin Capital Letters","unified":"1F520","variations":[],"docomo":null,"au":"EAFD","softbank":null,"google":"FEB7C","image":"1f520.png","sheet_x":23,"sheet_y":16,"short_name":"capital_abcd","short_names":["capital_abcd"],"category":"Symbols","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-rw":{"name":"Regional Indicator Symbol Letters RW","unified":"1F1F7-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1fc.png","sheet_x":37,"sheet_y":25,"short_name":"flag-rw","short_names":["flag-rw"],"category":"Flags","sort_order":184,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"footprints":{"name":"Footprints","unified":"1F463","variations":[],"docomo":"E698","au":"EB2A","softbank":"E536","google":"FE553","image":"1f463.png","sheet_x":16,"sheet_y":5,"short_name":"footprints","short_names":["footprints"],"category":"People","sort_order":185,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bl":{"name":"Regional Indicator Symbol Letters BL","unified":"1F1E7-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1f1.png","sheet_x":33,"sheet_y":18,"short_name":"flag-bl","short_names":["flag-bl"],"category":"Flags","sort_order":185,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"symbols":{"name":"Input Symbol for Symbols","unified":"1F523","variations":[],"docomo":null,"au":"EB00","softbank":null,"google":"FEB7F","image":"1f523.png","sheet_x":23,"sheet_y":19,"short_name":"symbols","short_names":["symbols"],"category":"Symbols","sort_order":185,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"high_heel":{"name":"High-Heeled Shoe","unified":"1F460","variations":[],"docomo":"E674","au":"E51A","softbank":"E13E","google":"FE4D6","image":"1f460.png","sheet_x":16,"sheet_y":2,"short_name":"high_heel","short_names":["high_heel"],"category":"People","sort_order":186,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"musical_note":{"name":"Musical Note","unified":"1F3B5","variations":[],"docomo":"E6F6","au":"E5BE","softbank":"E03E","google":"FE813","image":"1f3b5.png","sheet_x":9,"sheet_y":36,"short_name":"musical_note","short_names":["musical_note"],"category":"Symbols","sort_order":186,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sh":{"name":"Regional Indicator Symbol Letters SH","unified":"1F1F8-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ed.png","sheet_x":37,"sheet_y":32,"short_name":"flag-sh","short_names":["flag-sh"],"category":"Flags","sort_order":186,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kn":{"name":"Regional Indicator Symbol Letters KN","unified":"1F1F0-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f0-1f1f3.png","sheet_x":35,"sheet_y":35,"short_name":"flag-kn","short_names":["flag-kn"],"category":"Flags","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"notes":{"name":"Multiple Musical Notes","unified":"1F3B6","variations":[],"docomo":"E6FF","au":"E505","softbank":"E326","google":"FE814","image":"1f3b6.png","sheet_x":9,"sheet_y":37,"short_name":"notes","short_names":["notes"],"category":"Symbols","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sandal":{"name":"Womans Sandal","unified":"1F461","variations":[],"docomo":"E674","au":"E51A","softbank":"E31A","google":"FE4D7","image":"1f461.png","sheet_x":16,"sheet_y":3,"short_name":"sandal","short_names":["sandal"],"category":"People","sort_order":187,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"boot":{"name":"Womans Boots","unified":"1F462","variations":[],"docomo":null,"au":"EA9F","softbank":"E31B","google":"FE4D8","image":"1f462.png","sheet_x":16,"sheet_y":4,"short_name":"boot","short_names":["boot"],"category":"People","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"wavy_dash":{"name":"Wavy Dash","unified":"3030","variations":["3030-FE0F"],"docomo":"E709","au":null,"softbank":null,"google":"FEB07","image":"3030.png","sheet_x":4,"sheet_y":26,"short_name":"wavy_dash","short_names":["wavy_dash"],"category":"Symbols","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lc":{"name":"Regional Indicator Symbol Letters LC","unified":"1F1F1-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1e8.png","sheet_x":36,"sheet_y":2,"short_name":"flag-lc","short_names":["flag-lc"],"category":"Flags","sort_order":188,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-pm":{"name":"Regional Indicator Symbol Letters PM","unified":"1F1F5-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f5-1f1f2.png","sheet_x":37,"sheet_y":13,"short_name":"flag-pm","short_names":["flag-pm"],"category":"Flags","sort_order":189,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mans_shoe":{"name":"Mans Shoe","unified":"1F45E","variations":[],"docomo":"E699","au":"E5B7","softbank":"E007","google":"FE4CC","image":"1f45e.png","sheet_x":16,"sheet_y":0,"short_name":"mans_shoe","short_names":["mans_shoe","shoe"],"category":"People","sort_order":189,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"curly_loop":{"name":"Curly Loop","unified":"27B0","variations":[],"docomo":"E70A","au":"EB31","softbank":null,"google":"FEB08","image":"27b0.png","sheet_x":4,"sheet_y":15,"short_name":"curly_loop","short_names":["curly_loop"],"category":"Symbols","sort_order":189,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-vc":{"name":"Regional Indicator Symbol Letters VC","unified":"1F1FB-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e8.png","sheet_x":38,"sheet_y":30,"short_name":"flag-vc","short_names":["flag-vc"],"category":"Flags","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_check_mark":{"name":"Heavy Check Mark","unified":"2714","variations":["2714-FE0F"],"docomo":null,"au":"E557","softbank":null,"google":"FEB49","image":"2714.png","sheet_x":3,"sheet_y":35,"short_name":"heavy_check_mark","short_names":["heavy_check_mark"],"category":"Symbols","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"athletic_shoe":{"name":"Athletic Shoe","unified":"1F45F","variations":[],"docomo":"E699","au":"EB2B","softbank":"E007","google":"FE4CD","image":"1f45f.png","sheet_x":16,"sheet_y":1,"short_name":"athletic_shoe","short_names":["athletic_shoe"],"category":"People","sort_order":190,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"womans_hat":{"name":"Womans Hat","unified":"1F452","variations":[],"docomo":null,"au":"EA9E","softbank":"E318","google":"FE4D4","image":"1f452.png","sheet_x":15,"sheet_y":29,"short_name":"womans_hat","short_names":["womans_hat"],"category":"People","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ws":{"name":"Regional Indicator Symbol Letters WS","unified":"1F1FC-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1f8.png","sheet_x":38,"sheet_y":37,"short_name":"flag-ws","short_names":["flag-ws"],"category":"Flags","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"arrows_clockwise":{"name":"Clockwise Downwards and Upwards Open Circle Arrows","unified":"1F503","variations":[],"docomo":"E735","au":"EB0D","softbank":null,"google":"FEB91","image":"1f503.png","sheet_x":22,"sheet_y":28,"short_name":"arrows_clockwise","short_names":["arrows_clockwise"],"category":"Symbols","sort_order":191,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_plus_sign":{"name":"Heavy Plus Sign","unified":"2795","variations":[],"docomo":null,"au":"E53C","softbank":null,"google":"FEB51","image":"2795.png","sheet_x":4,"sheet_y":11,"short_name":"heavy_plus_sign","short_names":["heavy_plus_sign"],"category":"Symbols","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tophat":{"name":"Top Hat","unified":"1F3A9","variations":[],"docomo":"E67C","au":"EAF5","softbank":"E503","google":"FE805","image":"1f3a9.png","sheet_x":9,"sheet_y":24,"short_name":"tophat","short_names":["tophat"],"category":"People","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sm":{"name":"Regional Indicator Symbol Letters SM","unified":"1F1F8-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f2.png","sheet_x":37,"sheet_y":37,"short_name":"flag-sm","short_names":["flag-sm"],"category":"Flags","sort_order":192,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"helmet_with_white_cross":{"name":"Helmet with White Cross","unified":"26D1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"26d1.png","sheet_x":2,"sheet_y":25,"short_name":"helmet_with_white_cross","short_names":["helmet_with_white_cross"],"category":"People","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_minus_sign":{"name":"Heavy Minus Sign","unified":"2796","variations":[],"docomo":null,"au":"E53D","softbank":null,"google":"FEB52","image":"2796.png","sheet_x":4,"sheet_y":12,"short_name":"heavy_minus_sign","short_names":["heavy_minus_sign"],"category":"Symbols","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-st":{"name":"Regional Indicator Symbol Letters ST","unified":"1F1F8-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f9.png","sheet_x":38,"sheet_y":1,"short_name":"flag-st","short_names":["flag-st"],"category":"Flags","sort_order":193,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sa":{"name":"Regional Indicator Symbol Letters SA","unified":"1F1F8-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e6.png","sheet_x":37,"sheet_y":26,"short_name":"flag-sa","short_names":["flag-sa"],"category":"Flags","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_division_sign":{"name":"Heavy Division Sign","unified":"2797","variations":[],"docomo":null,"au":"E554","softbank":null,"google":"FEB54","image":"2797.png","sheet_x":4,"sheet_y":13,"short_name":"heavy_division_sign","short_names":["heavy_division_sign"],"category":"Symbols","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mortar_board":{"name":"Graduation Cap","unified":"1F393","variations":[],"docomo":null,"au":"EAE5","softbank":"E439","google":"FE51A","image":"1f393.png","sheet_x":9,"sheet_y":7,"short_name":"mortar_board","short_names":["mortar_board"],"category":"People","sort_order":194,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sn":{"name":"Regional Indicator Symbol Letters SN","unified":"1F1F8-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f3.png","sheet_x":37,"sheet_y":38,"short_name":"flag-sn","short_names":["flag-sn"],"category":"Flags","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_multiplication_x":{"name":"Heavy Multiplication X","unified":"2716","variations":["2716-FE0F"],"docomo":null,"au":"E54F","softbank":"E333","google":"FEB53","image":"2716.png","sheet_x":3,"sheet_y":36,"short_name":"heavy_multiplication_x","short_names":["heavy_multiplication_x"],"category":"Symbols","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"crown":{"name":"Crown","unified":"1F451","variations":[],"docomo":"E71A","au":"E5C9","softbank":"E10E","google":"FE4D1","image":"1f451.png","sheet_x":15,"sheet_y":28,"short_name":"crown","short_names":["crown"],"category":"People","sort_order":195,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"school_satchel":{"name":"School Satchel","unified":"1F392","variations":[],"docomo":null,"au":"EAE6","softbank":"E43A","google":"FE51B","image":"1f392.png","sheet_x":9,"sheet_y":6,"short_name":"school_satchel","short_names":["school_satchel"],"category":"People","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-rs":{"name":"Regional Indicator Symbol Letters RS","unified":"1F1F7-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f7-1f1f8.png","sheet_x":37,"sheet_y":23,"short_name":"flag-rs","short_names":["flag-rs"],"category":"Flags","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"heavy_dollar_sign":{"name":"Heavy Dollar Sign","unified":"1F4B2","variations":[],"docomo":"E715","au":"E579","softbank":"E12F","google":"FE4E0","image":"1f4b2.png","sheet_x":20,"sheet_y":30,"short_name":"heavy_dollar_sign","short_names":["heavy_dollar_sign"],"category":"Symbols","sort_order":196,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sc":{"name":"Regional Indicator Symbol Letters SC","unified":"1F1F8-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e8.png","sheet_x":37,"sheet_y":28,"short_name":"flag-sc","short_names":["flag-sc"],"category":"Flags","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"currency_exchange":{"name":"Currency Exchange","unified":"1F4B1","variations":[],"docomo":null,"au":null,"softbank":"E149","google":"FE4DE","image":"1f4b1.png","sheet_x":20,"sheet_y":29,"short_name":"currency_exchange","short_names":["currency_exchange"],"category":"Symbols","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"pouch":{"name":"Pouch","unified":"1F45D","variations":[],"docomo":"E6AD","au":null,"softbank":null,"google":"FE4F1","image":"1f45d.png","sheet_x":15,"sheet_y":40,"short_name":"pouch","short_names":["pouch"],"category":"People","sort_order":197,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"purse":{"name":"Purse","unified":"1F45B","variations":[],"docomo":"E70F","au":"E504","softbank":null,"google":"FE4DC","image":"1f45b.png","sheet_x":15,"sheet_y":38,"short_name":"purse","short_names":["purse"],"category":"People","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sl":{"name":"Regional Indicator Symbol Letters SL","unified":"1F1F8-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f1.png","sheet_x":37,"sheet_y":36,"short_name":"flag-sl","short_names":["flag-sl"],"category":"Flags","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"copyright":{"name":"Copyright Sign","unified":"00A9","variations":["00A9-FE0F"],"docomo":"E731","au":"E558","softbank":"E24E","google":"FEB29","image":"00a9.png","sheet_x":0,"sheet_y":0,"short_name":"copyright","short_names":["copyright"],"category":"Symbols","sort_order":198,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true,"emoticons":[]},"handbag":{"name":"Handbag","unified":"1F45C","variations":[],"docomo":"E682","au":"E49C","softbank":"E323","google":"FE4F0","image":"1f45c.png","sheet_x":15,"sheet_y":39,"short_name":"handbag","short_names":["handbag"],"category":"People","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sg":{"name":"Regional Indicator Symbol Letters SG","unified":"1F1F8-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ec.png","sheet_x":37,"sheet_y":31,"short_name":"flag-sg","short_names":["flag-sg"],"category":"Flags","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"registered":{"name":"Registered Sign","unified":"00AE","variations":["00AE-FE0F"],"docomo":"E736","au":"E559","softbank":"E24F","google":"FEB2D","image":"00ae.png","sheet_x":0,"sheet_y":1,"short_name":"registered","short_names":["registered"],"category":"Symbols","sort_order":199,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true,"emoticons":[]},"briefcase":{"name":"Briefcase","unified":"1F4BC","variations":[],"docomo":"E682","au":"E5CE","softbank":"E11E","google":"FE53B","image":"1f4bc.png","sheet_x":20,"sheet_y":40,"short_name":"briefcase","short_names":["briefcase"],"category":"People","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sx":{"name":"Regional Indicator Symbol Letters SX","unified":"1F1F8-1F1FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fd.png","sheet_x":38,"sheet_y":3,"short_name":"flag-sx","short_names":["flag-sx"],"category":"Flags","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"tm":{"name":"Trade Mark Sign","unified":"2122","variations":["2122-FE0F"],"docomo":"E732","au":"E54E","softbank":"E537","google":"FEB2A","image":"2122.png","sheet_x":0,"sheet_y":4,"short_name":"tm","short_names":["tm"],"category":"Symbols","sort_order":200,"has_img_apple":true,"has_img_google":true,"has_img_twitter":false,"has_img_emojione":true,"emoticons":[]},"flag-sk":{"name":"Regional Indicator Symbol Letters SK","unified":"1F1F8-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f0.png","sheet_x":37,"sheet_y":35,"short_name":"flag-sk","short_names":["flag-sk"],"category":"Flags","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"eyeglasses":{"name":"Eyeglasses","unified":"1F453","variations":[],"docomo":"E69A","au":"E4FE","softbank":null,"google":"FE4CE","image":"1f453.png","sheet_x":15,"sheet_y":30,"short_name":"eyeglasses","short_names":["eyeglasses"],"category":"People","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"end":{"name":"End with Leftwards Arrow Above","unified":"1F51A","variations":[],"docomo":"E6B9","au":null,"softbank":null,"google":"FE01A","image":"1f51a.png","sheet_x":23,"sheet_y":10,"short_name":"end","short_names":["end"],"category":"Symbols","sort_order":201,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"dark_sunglasses":{"name":"Dark Sunglasses","unified":"1F576","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f576.png","sheet_x":25,"sheet_y":4,"short_name":"dark_sunglasses","short_names":["dark_sunglasses"],"category":"People","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-si":{"name":"Regional Indicator Symbol Letters SI","unified":"1F1F8-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ee.png","sheet_x":37,"sheet_y":33,"short_name":"flag-si","short_names":["flag-si"],"category":"Flags","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"back":{"name":"Back with Leftwards Arrow Above","unified":"1F519","variations":[],"docomo":null,"au":"EB06","softbank":"E235","google":"FEB8E","image":"1f519.png","sheet_x":23,"sheet_y":9,"short_name":"back","short_names":["back"],"category":"Symbols","sort_order":202,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ring":{"name":"Ring","unified":"1F48D","variations":[],"docomo":"E71B","au":"E514","softbank":"E034","google":"FE825","image":"1f48d.png","sheet_x":19,"sheet_y":29,"short_name":"ring","short_names":["ring"],"category":"People","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sb":{"name":"Regional Indicator Symbol Letters SB","unified":"1F1F8-1F1E7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e7.png","sheet_x":37,"sheet_y":27,"short_name":"flag-sb","short_names":["flag-sb"],"category":"Flags","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"on":{"name":"On with Exclamation Mark with Left Right Arrow Above","unified":"1F51B","variations":[],"docomo":"E6B8","au":null,"softbank":null,"google":"FE019","image":"1f51b.png","sheet_x":23,"sheet_y":11,"short_name":"on","short_names":["on"],"category":"Symbols","sort_order":203,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"top":{"name":"Top with Upwards Arrow Above","unified":"1F51D","variations":[],"docomo":null,"au":null,"softbank":"E24C","google":"FEB42","image":"1f51d.png","sheet_x":23,"sheet_y":13,"short_name":"top","short_names":["top"],"category":"Symbols","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-so":{"name":"Regional Indicator Symbol Letters SO","unified":"1F1F8-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f4.png","sheet_x":37,"sheet_y":39,"short_name":"flag-so","short_names":["flag-so"],"category":"Flags","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"closed_umbrella":{"name":"Closed Umbrella","unified":"1F302","variations":[],"docomo":"E645","au":"EAE8","softbank":"E43C","google":"FE007","image":"1f302.png","sheet_x":5,"sheet_y":23,"short_name":"closed_umbrella","short_names":["closed_umbrella"],"category":"People","sort_order":204,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-za":{"name":"Regional Indicator Symbol Letters ZA","unified":"1F1FF-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1e6.png","sheet_x":39,"sheet_y":0,"short_name":"flag-za","short_names":["flag-za"],"category":"Flags","sort_order":205,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"soon":{"name":"Soon with Rightwards Arrow Above","unified":"1F51C","variations":[],"docomo":"E6B7","au":null,"softbank":null,"google":"FE018","image":"1f51c.png","sheet_x":23,"sheet_y":12,"short_name":"soon","short_names":["soon"],"category":"Symbols","sort_order":205,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gs":{"name":"Regional Indicator Symbol Letters GS","unified":"1F1EC-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ec-1f1f8.png","sheet_x":35,"sheet_y":4,"short_name":"flag-gs","short_names":["flag-gs"],"category":"Flags","sort_order":206,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"ballot_box_with_check":{"name":"Ballot Box with Check","unified":"2611","variations":["2611-FE0F"],"docomo":null,"au":"EB02","softbank":null,"google":"FEB8B","image":"2611.png","sheet_x":1,"sheet_y":6,"short_name":"ballot_box_with_check","short_names":["ballot_box_with_check"],"category":"Symbols","sort_order":206,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"radio_button":{"name":"Radio Button","unified":"1F518","variations":[],"docomo":null,"au":"EB04","softbank":null,"google":"FEB8C","image":"1f518.png","sheet_x":23,"sheet_y":8,"short_name":"radio_button","short_names":["radio_button"],"category":"Symbols","sort_order":207,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-kr":{"name":"Regional Indicator Symbol Letters KR","unified":"1F1F0-1F1F7","variations":[],"docomo":null,"au":"EB12","softbank":"E514","google":"FE4EE","image":"1f1f0-1f1f7.png","sheet_x":35,"sheet_y":37,"short_name":"flag-kr","short_names":["flag-kr","kr"],"category":"Flags","sort_order":207,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ss":{"name":"Regional Indicator Symbol Letters SS","unified":"1F1F8-1F1F8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f8.png","sheet_x":38,"sheet_y":0,"short_name":"flag-ss","short_names":["flag-ss"],"category":"Flags","sort_order":208,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_circle":{"name":"Medium White Circle","unified":"26AA","variations":["26AA-FE0F"],"docomo":"E69C","au":"E53A","softbank":"E219","google":"FEB65","image":"26aa.png","sheet_x":2,"sheet_y":14,"short_name":"white_circle","short_names":["white_circle"],"category":"Symbols","sort_order":208,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-es":{"name":"Regional Indicator Symbol Letters ES","unified":"1F1EA-1F1F8","variations":[],"docomo":null,"au":"E5D5","softbank":"E511","google":"FE4EB","image":"1f1ea-1f1f8.png","sheet_x":34,"sheet_y":22,"short_name":"flag-es","short_names":["flag-es","es"],"category":"Flags","sort_order":209,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_circle":{"name":"Medium Black Circle","unified":"26AB","variations":["26AB-FE0F"],"docomo":"E69C","au":"E53B","softbank":"E219","google":"FEB66","image":"26ab.png","sheet_x":2,"sheet_y":15,"short_name":"black_circle","short_names":["black_circle"],"category":"Symbols","sort_order":209,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-lk":{"name":"Regional Indicator Symbol Letters LK","unified":"1F1F1-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f1-1f1f0.png","sheet_x":36,"sheet_y":4,"short_name":"flag-lk","short_names":["flag-lk"],"category":"Flags","sort_order":210,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"red_circle":{"name":"Large Red Circle","unified":"1F534","variations":[],"docomo":"E69C","au":"E54A","softbank":"E219","google":"FEB63","image":"1f534.png","sheet_x":23,"sheet_y":36,"short_name":"red_circle","short_names":["red_circle"],"category":"Symbols","sort_order":210,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sd":{"name":"Regional Indicator Symbol Letters SD","unified":"1F1F8-1F1E9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1e9.png","sheet_x":37,"sheet_y":29,"short_name":"flag-sd","short_names":["flag-sd"],"category":"Flags","sort_order":211,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"large_blue_circle":{"name":"Large Blue Circle","unified":"1F535","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21A","google":"FEB64","image":"1f535.png","sheet_x":23,"sheet_y":37,"short_name":"large_blue_circle","short_names":["large_blue_circle"],"category":"Symbols","sort_order":211,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"small_orange_diamond":{"name":"Small Orange Diamond","unified":"1F538","variations":[],"docomo":null,"au":"E536","softbank":"E21B","google":"FEB75","image":"1f538.png","sheet_x":23,"sheet_y":40,"short_name":"small_orange_diamond","short_names":["small_orange_diamond"],"category":"Symbols","sort_order":212,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sr":{"name":"Regional Indicator Symbol Letters SR","unified":"1F1F8-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1f7.png","sheet_x":37,"sheet_y":40,"short_name":"flag-sr","short_names":["flag-sr"],"category":"Flags","sort_order":212,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"small_blue_diamond":{"name":"Small Blue Diamond","unified":"1F539","variations":[],"docomo":null,"au":"E537","softbank":"E21B","google":"FEB76","image":"1f539.png","sheet_x":24,"sheet_y":0,"short_name":"small_blue_diamond","short_names":["small_blue_diamond"],"category":"Symbols","sort_order":213,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sz":{"name":"Regional Indicator Symbol Letters SZ","unified":"1F1F8-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ff.png","sheet_x":38,"sheet_y":5,"short_name":"flag-sz","short_names":["flag-sz"],"category":"Flags","sort_order":213,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"large_orange_diamond":{"name":"Large Orange Diamond","unified":"1F536","variations":[],"docomo":null,"au":"E546","softbank":"E21B","google":"FEB73","image":"1f536.png","sheet_x":23,"sheet_y":38,"short_name":"large_orange_diamond","short_names":["large_orange_diamond"],"category":"Symbols","sort_order":214,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-se":{"name":"Regional Indicator Symbol Letters SE","unified":"1F1F8-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ea.png","sheet_x":37,"sheet_y":30,"short_name":"flag-se","short_names":["flag-se"],"category":"Flags","sort_order":214,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ch":{"name":"Regional Indicator Symbol Letters CH","unified":"1F1E8-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1ed.png","sheet_x":33,"sheet_y":35,"short_name":"flag-ch","short_names":["flag-ch"],"category":"Flags","sort_order":215,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"large_blue_diamond":{"name":"Large Blue Diamond","unified":"1F537","variations":[],"docomo":null,"au":"E547","softbank":"E21B","google":"FEB74","image":"1f537.png","sheet_x":23,"sheet_y":39,"short_name":"large_blue_diamond","short_names":["large_blue_diamond"],"category":"Symbols","sort_order":215,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sy":{"name":"Regional Indicator Symbol Letters SY","unified":"1F1F8-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1fe.png","sheet_x":38,"sheet_y":4,"short_name":"flag-sy","short_names":["flag-sy"],"category":"Flags","sort_order":216,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"small_red_triangle":{"name":"Up-Pointing Red Triangle","unified":"1F53A","variations":[],"docomo":null,"au":"E55A","softbank":null,"google":"FEB78","image":"1f53a.png","sheet_x":24,"sheet_y":1,"short_name":"small_red_triangle","short_names":["small_red_triangle"],"category":"Symbols","sort_order":216,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tw":{"name":"Regional Indicator Symbol Letters TW","unified":"1F1F9-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fc.png","sheet_x":38,"sheet_y":21,"short_name":"flag-tw","short_names":["flag-tw"],"category":"Flags","sort_order":217,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_small_square":{"name":"Black Small Square","unified":"25AA","variations":["25AA-FE0F"],"docomo":null,"au":"E532","softbank":"E21A","google":"FEB6E","image":"25aa.png","sheet_x":0,"sheet_y":33,"short_name":"black_small_square","short_names":["black_small_square"],"category":"Symbols","sort_order":217,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_small_square":{"name":"White Small Square","unified":"25AB","variations":["25AB-FE0F"],"docomo":null,"au":"E531","softbank":"E21B","google":"FEB6D","image":"25ab.png","sheet_x":0,"sheet_y":34,"short_name":"white_small_square","short_names":["white_small_square"],"category":"Symbols","sort_order":218,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tj":{"name":"Regional Indicator Symbol Letters TJ","unified":"1F1F9-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ef.png","sheet_x":38,"sheet_y":12,"short_name":"flag-tj","short_names":["flag-tj"],"category":"Flags","sort_order":218,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_large_square":{"name":"Black Large Square","unified":"2B1B","variations":["2B1B-FE0F"],"docomo":null,"au":"E549","softbank":"E21A","google":"FEB6C","image":"2b1b.png","sheet_x":4,"sheet_y":22,"short_name":"black_large_square","short_names":["black_large_square"],"category":"Symbols","sort_order":219,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tz":{"name":"Regional Indicator Symbol Letters TZ","unified":"1F1F9-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ff.png","sheet_x":38,"sheet_y":22,"short_name":"flag-tz","short_names":["flag-tz"],"category":"Flags","sort_order":219,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_large_square":{"name":"White Large Square","unified":"2B1C","variations":["2B1C-FE0F"],"docomo":null,"au":"E548","softbank":"E21B","google":"FEB6B","image":"2b1c.png","sheet_x":4,"sheet_y":23,"short_name":"white_large_square","short_names":["white_large_square"],"category":"Symbols","sort_order":220,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-th":{"name":"Regional Indicator Symbol Letters TH","unified":"1F1F9-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ed.png","sheet_x":38,"sheet_y":11,"short_name":"flag-th","short_names":["flag-th"],"category":"Flags","sort_order":220,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tl":{"name":"Regional Indicator Symbol Letters TL","unified":"1F1F9-1F1F1","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f1.png","sheet_x":38,"sheet_y":14,"short_name":"flag-tl","short_names":["flag-tl"],"category":"Flags","sort_order":221,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"small_red_triangle_down":{"name":"Down-Pointing Red Triangle","unified":"1F53B","variations":[],"docomo":null,"au":"E55B","softbank":null,"google":"FEB79","image":"1f53b.png","sheet_x":24,"sheet_y":2,"short_name":"small_red_triangle_down","short_names":["small_red_triangle_down"],"category":"Symbols","sort_order":221,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tg":{"name":"Regional Indicator Symbol Letters TG","unified":"1F1F9-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1ec.png","sheet_x":38,"sheet_y":10,"short_name":"flag-tg","short_names":["flag-tg"],"category":"Flags","sort_order":222,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_medium_square":{"name":"Black Medium Square","unified":"25FC","variations":["25FC-FE0F"],"docomo":null,"au":"E539","softbank":"E21A","google":"FEB72","image":"25fc.png","sheet_x":0,"sheet_y":38,"short_name":"black_medium_square","short_names":["black_medium_square"],"category":"Symbols","sort_order":222,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tk":{"name":"Regional Indicator Symbol Letters TK","unified":"1F1F9-1F1F0","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f0.png","sheet_x":38,"sheet_y":13,"short_name":"flag-tk","short_names":["flag-tk"],"category":"Flags","sort_order":223,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_medium_square":{"name":"White Medium Square","unified":"25FB","variations":["25FB-FE0F"],"docomo":null,"au":"E538","softbank":"E21B","google":"FEB71","image":"25fb.png","sheet_x":0,"sheet_y":37,"short_name":"white_medium_square","short_names":["white_medium_square"],"category":"Symbols","sort_order":223,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-to":{"name":"Regional Indicator Symbol Letters TO","unified":"1F1F9-1F1F4","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f4.png","sheet_x":38,"sheet_y":17,"short_name":"flag-to","short_names":["flag-to"],"category":"Flags","sort_order":224,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_medium_small_square":{"name":"Black Medium Small Square","unified":"25FE","variations":["25FE-FE0F"],"docomo":null,"au":"E535","softbank":"E21A","google":"FEB70","image":"25fe.png","sheet_x":0,"sheet_y":40,"short_name":"black_medium_small_square","short_names":["black_medium_small_square"],"category":"Symbols","sort_order":224,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_medium_small_square":{"name":"White Medium Small Square","unified":"25FD","variations":["25FD-FE0F"],"docomo":null,"au":"E534","softbank":"E21B","google":"FEB6F","image":"25fd.png","sheet_x":0,"sheet_y":39,"short_name":"white_medium_small_square","short_names":["white_medium_small_square"],"category":"Symbols","sort_order":225,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tt":{"name":"Regional Indicator Symbol Letters TT","unified":"1F1F9-1F1F9","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f9.png","sheet_x":38,"sheet_y":19,"short_name":"flag-tt","short_names":["flag-tt"],"category":"Flags","sort_order":225,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_square_button":{"name":"Black Square Button","unified":"1F532","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21A","google":"FEB64","image":"1f532.png","sheet_x":23,"sheet_y":34,"short_name":"black_square_button","short_names":["black_square_button"],"category":"Symbols","sort_order":226,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tn":{"name":"Regional Indicator Symbol Letters TN","unified":"1F1F9-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f3.png","sheet_x":38,"sheet_y":16,"short_name":"flag-tn","short_names":["flag-tn"],"category":"Flags","sort_order":226,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tr":{"name":"Regional Indicator Symbol Letters TR","unified":"1F1F9-1F1F7","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f7.png","sheet_x":38,"sheet_y":18,"short_name":"flag-tr","short_names":["flag-tr"],"category":"Flags","sort_order":227,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"white_square_button":{"name":"White Square Button","unified":"1F533","variations":[],"docomo":"E69C","au":"E54B","softbank":"E21B","google":"FEB67","image":"1f533.png","sheet_x":23,"sheet_y":35,"short_name":"white_square_button","short_names":["white_square_button"],"category":"Symbols","sort_order":227,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tm":{"name":"Regional Indicator Symbol Letters TM","unified":"1F1F9-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1f2.png","sheet_x":38,"sheet_y":15,"short_name":"flag-tm","short_names":["flag-tm"],"category":"Flags","sort_order":228,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"speaker":{"name":"Speaker","unified":"1F508","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f508.png","sheet_x":22,"sheet_y":33,"short_name":"speaker","short_names":["speaker"],"category":"Symbols","sort_order":228,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tc":{"name":"Regional Indicator Symbol Letters TC","unified":"1F1F9-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e8.png","sheet_x":38,"sheet_y":7,"short_name":"flag-tc","short_names":["flag-tc"],"category":"Flags","sort_order":229,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"sound":{"name":"Speaker with One Sound Wave","unified":"1F509","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f509.png","sheet_x":22,"sheet_y":34,"short_name":"sound","short_names":["sound"],"category":"Symbols","sort_order":229,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-tv":{"name":"Regional Indicator Symbol Letters TV","unified":"1F1F9-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1fb.png","sheet_x":38,"sheet_y":20,"short_name":"flag-tv","short_names":["flag-tv"],"category":"Flags","sort_order":230,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"loud_sound":{"name":"Speaker with Three Sound Waves","unified":"1F50A","variations":[],"docomo":null,"au":"E511","softbank":"E141","google":"FE821","image":"1f50a.png","sheet_x":22,"sheet_y":35,"short_name":"loud_sound","short_names":["loud_sound"],"category":"Symbols","sort_order":230,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mute":{"name":"Speaker with Cancellation Stroke","unified":"1F507","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f507.png","sheet_x":22,"sheet_y":32,"short_name":"mute","short_names":["mute"],"category":"Symbols","sort_order":231,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ug":{"name":"Regional Indicator Symbol Letters UG","unified":"1F1FA-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ec.png","sheet_x":38,"sheet_y":24,"short_name":"flag-ug","short_names":["flag-ug"],"category":"Flags","sort_order":231,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ua":{"name":"Regional Indicator Symbol Letters UA","unified":"1F1FA-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1e6.png","sheet_x":38,"sheet_y":23,"short_name":"flag-ua","short_names":["flag-ua"],"category":"Flags","sort_order":232,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mega":{"name":"Cheering Megaphone","unified":"1F4E3","variations":[],"docomo":null,"au":"E511","softbank":"E317","google":"FE530","image":"1f4e3.png","sheet_x":21,"sheet_y":38,"short_name":"mega","short_names":["mega"],"category":"Symbols","sort_order":232,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ae":{"name":"Regional Indicator Symbol Letters AE","unified":"1F1E6-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1ea.png","sheet_x":32,"sheet_y":35,"short_name":"flag-ae","short_names":["flag-ae"],"category":"Flags","sort_order":233,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"loudspeaker":{"name":"Public Address Loudspeaker","unified":"1F4E2","variations":[],"docomo":null,"au":"E511","softbank":"E142","google":"FE52F","image":"1f4e2.png","sheet_x":21,"sheet_y":37,"short_name":"loudspeaker","short_names":["loudspeaker"],"category":"Symbols","sort_order":233,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"bell":{"name":"Bell","unified":"1F514","variations":[],"docomo":"E713","au":"E512","softbank":"E325","google":"FE4F2","image":"1f514.png","sheet_x":23,"sheet_y":4,"short_name":"bell","short_names":["bell"],"category":"Symbols","sort_order":234,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-gb":{"name":"Regional Indicator Symbol Letters GB","unified":"1F1EC-1F1E7","variations":[],"docomo":null,"au":"EB10","softbank":"E510","google":"FE4EA","image":"1f1ec-1f1e7.png","sheet_x":34,"sheet_y":32,"short_name":"flag-gb","short_names":["flag-gb","gb","uk"],"category":"Flags","sort_order":234,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-us":{"name":"Regional Indicator Symbol Letters US","unified":"1F1FA-1F1F8","variations":[],"docomo":null,"au":"E573","softbank":"E50C","google":"FE4E6","image":"1f1fa-1f1f8.png","sheet_x":38,"sheet_y":26,"short_name":"flag-us","short_names":["flag-us","us"],"category":"Flags","sort_order":235,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"no_bell":{"name":"Bell with Cancellation Stroke","unified":"1F515","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f515.png","sheet_x":23,"sheet_y":5,"short_name":"no_bell","short_names":["no_bell"],"category":"Symbols","sort_order":235,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-vi":{"name":"Regional Indicator Symbol Letters VI","unified":"1F1FB-1F1EE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ee.png","sheet_x":38,"sheet_y":33,"short_name":"flag-vi","short_names":["flag-vi"],"category":"Flags","sort_order":236,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"black_joker":{"name":"Playing Card Black Joker","unified":"1F0CF","variations":[],"docomo":null,"au":"EB6F","softbank":null,"google":"FE812","image":"1f0cf.png","sheet_x":4,"sheet_y":31,"short_name":"black_joker","short_names":["black_joker"],"category":"Symbols","sort_order":236,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"mahjong":{"name":"Mahjong Tile Red Dragon","unified":"1F004","variations":["1F004-FE0F"],"docomo":null,"au":"E5D1","softbank":"E12D","google":"FE80B","image":"1f004.png","sheet_x":4,"sheet_y":30,"short_name":"mahjong","short_names":["mahjong"],"category":"Symbols","sort_order":237,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-uy":{"name":"Regional Indicator Symbol Letters UY","unified":"1F1FA-1F1FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1fe.png","sheet_x":38,"sheet_y":27,"short_name":"flag-uy","short_names":["flag-uy"],"category":"Flags","sort_order":237,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"spades":{"name":"Black Spade Suit","unified":"2660","variations":["2660-FE0F"],"docomo":"E68E","au":"E5A1","softbank":"E20E","google":"FEB1B","image":"2660.png","sheet_x":1,"sheet_y":38,"short_name":"spades","short_names":["spades"],"category":"Symbols","sort_order":238,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-uz":{"name":"Regional Indicator Symbol Letters UZ","unified":"1F1FA-1F1FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1ff.png","sheet_x":38,"sheet_y":28,"short_name":"flag-uz","short_names":["flag-uz"],"category":"Flags","sort_order":238,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clubs":{"name":"Black Club Suit","unified":"2663","variations":["2663-FE0F"],"docomo":"E690","au":"E5A3","softbank":"E20F","google":"FEB1D","image":"2663.png","sheet_x":1,"sheet_y":39,"short_name":"clubs","short_names":["clubs"],"category":"Symbols","sort_order":239,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-vu":{"name":"Regional Indicator Symbol Letters VU","unified":"1F1FB-1F1FA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1fa.png","sheet_x":38,"sheet_y":35,"short_name":"flag-vu","short_names":["flag-vu"],"category":"Flags","sort_order":239,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"hearts":{"name":"Black Heart Suit","unified":"2665","variations":["2665-FE0F"],"docomo":"E68D","au":"EAA5","softbank":"E20C","google":"FEB1A","image":"2665.png","sheet_x":1,"sheet_y":40,"short_name":"hearts","short_names":["hearts"],"category":"Symbols","sort_order":240,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-va":{"name":"Regional Indicator Symbol Letters VA","unified":"1F1FB-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1e6.png","sheet_x":38,"sheet_y":29,"short_name":"flag-va","short_names":["flag-va"],"category":"Flags","sort_order":240,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"diamonds":{"name":"Black Diamond Suit","unified":"2666","variations":["2666-FE0F"],"docomo":"E68F","au":"E5A2","softbank":"E20D","google":"FEB1C","image":"2666.png","sheet_x":2,"sheet_y":0,"short_name":"diamonds","short_names":["diamonds"],"category":"Symbols","sort_order":241,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ve":{"name":"Regional Indicator Symbol Letters VE","unified":"1F1FB-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1ea.png","sheet_x":38,"sheet_y":31,"short_name":"flag-ve","short_names":["flag-ve"],"category":"Flags","sort_order":241,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-vn":{"name":"Regional Indicator Symbol Letters VN","unified":"1F1FB-1F1F3","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fb-1f1f3.png","sheet_x":38,"sheet_y":34,"short_name":"flag-vn","short_names":["flag-vn"],"category":"Flags","sort_order":242,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flower_playing_cards":{"name":"Flower Playing Cards","unified":"1F3B4","variations":[],"docomo":null,"au":"EB6E","softbank":null,"google":"FE811","image":"1f3b4.png","sheet_x":9,"sheet_y":35,"short_name":"flower_playing_cards","short_names":["flower_playing_cards"],"category":"Symbols","sort_order":242,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"thought_balloon":{"name":"Thought Balloon","unified":"1F4AD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f4ad.png","sheet_x":20,"sheet_y":25,"short_name":"thought_balloon","short_names":["thought_balloon"],"category":"Symbols","sort_order":243,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-wf":{"name":"Regional Indicator Symbol Letters WF","unified":"1F1FC-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fc-1f1eb.png","sheet_x":38,"sheet_y":36,"short_name":"flag-wf","short_names":["flag-wf"],"category":"Flags","sort_order":243,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-eh":{"name":"Regional Indicator Symbol Letters EH","unified":"1F1EA-1F1ED","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1ed.png","sheet_x":34,"sheet_y":20,"short_name":"flag-eh","short_names":["flag-eh"],"category":"Flags","sort_order":244,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"right_anger_bubble":{"name":"Right Anger Bubble","unified":"1F5EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5ef.png","sheet_x":26,"sheet_y":7,"short_name":"right_anger_bubble","short_names":["right_anger_bubble"],"category":"Symbols","sort_order":244,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"speech_balloon":{"name":"Speech Balloon","unified":"1F4AC","variations":[],"docomo":null,"au":"E4FD","softbank":null,"google":"FE532","image":"1f4ac.png","sheet_x":20,"sheet_y":24,"short_name":"speech_balloon","short_names":["speech_balloon"],"category":"Symbols","sort_order":245,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ye":{"name":"Regional Indicator Symbol Letters YE","unified":"1F1FE-1F1EA","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fe-1f1ea.png","sheet_x":38,"sheet_y":39,"short_name":"flag-ye","short_names":["flag-ye"],"category":"Flags","sort_order":245,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"left_speech_bubble":{"name":"Left Speech Bubble","unified":"1F5E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f5e8.png","sheet_x":26,"sheet_y":6,"short_name":"left_speech_bubble","short_names":["left_speech_bubble"],"category":"Symbols","sort_order":246,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":false,"emoticons":[]},"flag-zm":{"name":"Regional Indicator Symbol Letters ZM","unified":"1F1FF-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1f2.png","sheet_x":39,"sheet_y":1,"short_name":"flag-zm","short_names":["flag-zm"],"category":"Flags","sort_order":246,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock1":{"name":"Clock Face One Oclock","unified":"1F550","variations":[],"docomo":"E6BA","au":"E594","softbank":"E024","google":"FE01E","image":"1f550.png","sheet_x":24,"sheet_y":11,"short_name":"clock1","short_names":["clock1"],"category":"Symbols","sort_order":247,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-zw":{"name":"Regional Indicator Symbol Letters ZW","unified":"1F1FF-1F1FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ff-1f1fc.png","sheet_x":39,"sheet_y":2,"short_name":"flag-zw","short_names":["flag-zw"],"category":"Flags","sort_order":247,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ac":{"name":"Regional Indicator Symbol Letters AC","unified":"1F1E6-1F1E8","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e6-1f1e8.png","sheet_x":32,"sheet_y":33,"short_name":"flag-ac","short_names":["flag-ac"],"category":"Flags","sort_order":248,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock2":{"name":"Clock Face Two Oclock","unified":"1F551","variations":[],"docomo":"E6BA","au":"E594","softbank":"E025","google":"FE01F","image":"1f551.png","sheet_x":24,"sheet_y":12,"short_name":"clock2","short_names":["clock2"],"category":"Symbols","sort_order":248,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-bv":{"name":"Regional Indicator Symbol Letters BV","unified":"1F1E7-1F1FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e7-1f1fb.png","sheet_x":33,"sheet_y":26,"short_name":"flag-bv","short_names":["flag-bv"],"category":"Flags","sort_order":249,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock3":{"name":"Clock Face Three Oclock","unified":"1F552","variations":[],"docomo":"E6BA","au":"E594","softbank":"E026","google":"FE020","image":"1f552.png","sheet_x":24,"sheet_y":13,"short_name":"clock3","short_names":["clock3"],"category":"Symbols","sort_order":249,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-cp":{"name":"Regional Indicator Symbol Letters CP","unified":"1F1E8-1F1F5","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e8-1f1f5.png","sheet_x":34,"sheet_y":1,"short_name":"flag-cp","short_names":["flag-cp"],"category":"Flags","sort_order":250,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock4":{"name":"Clock Face Four Oclock","unified":"1F553","variations":[],"docomo":"E6BA","au":"E594","softbank":"E027","google":"FE021","image":"1f553.png","sheet_x":24,"sheet_y":14,"short_name":"clock4","short_names":["clock4"],"category":"Symbols","sort_order":250,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock5":{"name":"Clock Face Five Oclock","unified":"1F554","variations":[],"docomo":"E6BA","au":"E594","softbank":"E028","google":"FE022","image":"1f554.png","sheet_x":24,"sheet_y":15,"short_name":"clock5","short_names":["clock5"],"category":"Symbols","sort_order":251,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-dg":{"name":"Regional Indicator Symbol Letters DG","unified":"1F1E9-1F1EC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1e9-1f1ec.png","sheet_x":34,"sheet_y":10,"short_name":"flag-dg","short_names":["flag-dg"],"category":"Flags","sort_order":251,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock6":{"name":"Clock Face Six Oclock","unified":"1F555","variations":[],"docomo":"E6BA","au":"E594","softbank":"E029","google":"FE023","image":"1f555.png","sheet_x":24,"sheet_y":16,"short_name":"clock6","short_names":["clock6"],"category":"Symbols","sort_order":252,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ea":{"name":"Regional Indicator Symbol Letters EA","unified":"1F1EA-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ea-1f1e6.png","sheet_x":34,"sheet_y":16,"short_name":"flag-ea","short_names":["flag-ea"],"category":"Flags","sort_order":252,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-hm":{"name":"Regional Indicator Symbol Letters HM","unified":"1F1ED-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1ed-1f1f2.png","sheet_x":35,"sheet_y":10,"short_name":"flag-hm","short_names":["flag-hm"],"category":"Flags","sort_order":253,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock7":{"name":"Clock Face Seven Oclock","unified":"1F556","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02A","google":"FE024","image":"1f556.png","sheet_x":24,"sheet_y":17,"short_name":"clock7","short_names":["clock7"],"category":"Symbols","sort_order":253,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-mf":{"name":"Regional Indicator Symbol Letters MF","unified":"1F1F2-1F1EB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f2-1f1eb.png","sheet_x":36,"sheet_y":15,"short_name":"flag-mf","short_names":["flag-mf"],"category":"Flags","sort_order":254,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock8":{"name":"Clock Face Eight Oclock","unified":"1F557","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02B","google":"FE025","image":"1f557.png","sheet_x":24,"sheet_y":18,"short_name":"clock8","short_names":["clock8"],"category":"Symbols","sort_order":254,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock9":{"name":"Clock Face Nine Oclock","unified":"1F558","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02C","google":"FE026","image":"1f558.png","sheet_x":24,"sheet_y":19,"short_name":"clock9","short_names":["clock9"],"category":"Symbols","sort_order":255,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-sj":{"name":"Regional Indicator Symbol Letters SJ","unified":"1F1F8-1F1EF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f8-1f1ef.png","sheet_x":37,"sheet_y":34,"short_name":"flag-sj","short_names":["flag-sj"],"category":"Flags","sort_order":255,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-ta":{"name":"Regional Indicator Symbol Letters TA","unified":"1F1F9-1F1E6","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1f9-1f1e6.png","sheet_x":38,"sheet_y":6,"short_name":"flag-ta","short_names":["flag-ta"],"category":"Flags","sort_order":256,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock10":{"name":"Clock Face Ten Oclock","unified":"1F559","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02D","google":"FE027","image":"1f559.png","sheet_x":24,"sheet_y":20,"short_name":"clock10","short_names":["clock10"],"category":"Symbols","sort_order":256,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"flag-um":{"name":"Regional Indicator Symbol Letters UM","unified":"1F1FA-1F1F2","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f1fa-1f1f2.png","sheet_x":38,"sheet_y":25,"short_name":"flag-um","short_names":["flag-um"],"category":"Flags","sort_order":257,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock11":{"name":"Clock Face Eleven Oclock","unified":"1F55A","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02E","google":"FE028","image":"1f55a.png","sheet_x":24,"sheet_y":21,"short_name":"clock11","short_names":["clock11"],"category":"Symbols","sort_order":257,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock12":{"name":"Clock Face Twelve Oclock","unified":"1F55B","variations":[],"docomo":"E6BA","au":"E594","softbank":"E02F","google":"FE029","image":"1f55b.png","sheet_x":24,"sheet_y":22,"short_name":"clock12","short_names":["clock12"],"category":"Symbols","sort_order":258,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock130":{"name":"Clock Face One-Thirty","unified":"1F55C","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55c.png","sheet_x":24,"sheet_y":23,"short_name":"clock130","short_names":["clock130"],"category":"Symbols","sort_order":259,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock230":{"name":"Clock Face Two-Thirty","unified":"1F55D","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55d.png","sheet_x":24,"sheet_y":24,"short_name":"clock230","short_names":["clock230"],"category":"Symbols","sort_order":260,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock330":{"name":"Clock Face Three-Thirty","unified":"1F55E","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55e.png","sheet_x":24,"sheet_y":25,"short_name":"clock330","short_names":["clock330"],"category":"Symbols","sort_order":261,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock430":{"name":"Clock Face Four-Thirty","unified":"1F55F","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f55f.png","sheet_x":24,"sheet_y":26,"short_name":"clock430","short_names":["clock430"],"category":"Symbols","sort_order":262,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock530":{"name":"Clock Face Five-Thirty","unified":"1F560","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f560.png","sheet_x":24,"sheet_y":27,"short_name":"clock530","short_names":["clock530"],"category":"Symbols","sort_order":263,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock630":{"name":"Clock Face Six-Thirty","unified":"1F561","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f561.png","sheet_x":24,"sheet_y":28,"short_name":"clock630","short_names":["clock630"],"category":"Symbols","sort_order":264,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock730":{"name":"Clock Face Seven-Thirty","unified":"1F562","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f562.png","sheet_x":24,"sheet_y":29,"short_name":"clock730","short_names":["clock730"],"category":"Symbols","sort_order":265,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock830":{"name":"Clock Face Eight-Thirty","unified":"1F563","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f563.png","sheet_x":24,"sheet_y":30,"short_name":"clock830","short_names":["clock830"],"category":"Symbols","sort_order":266,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock930":{"name":"Clock Face Nine-Thirty","unified":"1F564","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f564.png","sheet_x":24,"sheet_y":31,"short_name":"clock930","short_names":["clock930"],"category":"Symbols","sort_order":267,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock1030":{"name":"Clock Face Ten-Thirty","unified":"1F565","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f565.png","sheet_x":24,"sheet_y":32,"short_name":"clock1030","short_names":["clock1030"],"category":"Symbols","sort_order":268,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock1130":{"name":"Clock Face Eleven-Thirty","unified":"1F566","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f566.png","sheet_x":24,"sheet_y":33,"short_name":"clock1130","short_names":["clock1130"],"category":"Symbols","sort_order":269,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"clock1230":{"name":"Clock Face Twelve-Thirty","unified":"1F567","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f567.png","sheet_x":24,"sheet_y":34,"short_name":"clock1230","short_names":["clock1230"],"category":"Symbols","sort_order":270,"has_img_apple":true,"has_img_google":true,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]}},"skins":{"skin-tone-2":{"name":"Emoji Modifier Fitzpatrick Type-1-2","unified":"1F3FB","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fb.png","sheet_x":12,"sheet_y":0,"short_name":"skin-tone-2","short_names":["skin-tone-2"],"category":"Skin Tones","sort_order":1,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skin-tone-3":{"name":"Emoji Modifier Fitzpatrick Type-3","unified":"1F3FC","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fc.png","sheet_x":12,"sheet_y":1,"short_name":"skin-tone-3","short_names":["skin-tone-3"],"category":"Skin Tones","sort_order":2,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skin-tone-4":{"name":"Emoji Modifier Fitzpatrick Type-4","unified":"1F3FD","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fd.png","sheet_x":12,"sheet_y":2,"short_name":"skin-tone-4","short_names":["skin-tone-4"],"category":"Skin Tones","sort_order":3,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skin-tone-5":{"name":"Emoji Modifier Fitzpatrick Type-5","unified":"1F3FE","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3fe.png","sheet_x":12,"sheet_y":3,"short_name":"skin-tone-5","short_names":["skin-tone-5"],"category":"Skin Tones","sort_order":4,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]},"skin-tone-6":{"name":"Emoji Modifier Fitzpatrick Type-6","unified":"1F3FF","variations":[],"docomo":null,"au":null,"softbank":null,"google":null,"image":"1f3ff.png","sheet_x":12,"sheet_y":4,"short_name":"skin-tone-6","short_names":["skin-tone-6"],"category":"Skin Tones","sort_order":5,"has_img_apple":true,"has_img_google":false,"has_img_twitter":true,"has_img_emojione":true,"emoticons":[]}}}; + +/***/ }, +/* 21 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _ = __webpack_require__(16); + + var frequently = _.store.get('frequently') || {}; + + function add(emoji) { + var id = emoji.id; + + + frequently[id] || (frequently[id] = 0); + frequently[id] += 1; + + _.store.set('last', id); + _.store.set('frequently', frequently); + } + + function get(quantity) { + var sorted = Object.keys(frequently).sort(function (a, b) { + return frequently[a] - frequently[b]; + }).reverse(), + sliced = sorted.slice(0, quantity), + last = _.store.get('last'); + + if (last && sliced.indexOf(last) == -1) { + sliced.pop(); + sliced.push(last); + } + + return sliced; + } + + exports.default = { add: add, get: get }; + +/***/ }, +/* 22 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + + var _react = __webpack_require__(3); + + var _react2 = _interopRequireDefault(_react); + + var _data = __webpack_require__(20); + + var _data2 = _interopRequireDefault(_data); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + + function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var SHEET_COLUMNS = 41; + var SKINS = ['1F3FA', '1F3FB', '1F3FC', '1F3FD', '1F3FE', '1F3FF']; + + var Emoji = function (_React$Component) { + _inherits(Emoji, _React$Component); + + function Emoji(props) { + _classCallCheck(this, Emoji); + + var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Emoji).call(this, props)); + + var emojiData = _this.getEmojiData(); + _this.hasSkinVariations = !!emojiData.skin_variations; + return _this; + } + + _createClass(Emoji, [{ + key: 'shouldComponentUpdate', + value: function shouldComponentUpdate(nextProps) { + return this.hasSkinVariations && nextProps.skin != this.props.skin || nextProps.size != this.props.size || nextProps.sheetURL != this.props.sheetURL; + } + }, { + key: 'getEmojiData', + value: function getEmojiData() { + var _props = this.props; + var emoji = _props.emoji; + var skin = _props.skin; + var sheetURL = _props.sheetURL; + var emojiData = emoji; + + if (typeof emoji == 'string') { + emojiData = _data2.default.emojis[emoji]; + } + + if (this.hasSkinVariations && skin > 1) { + emojiData = JSON.parse(JSON.stringify(_data2.default.emojis[emoji])); + + var skinKey = SKINS[skin - 1], + variationKey = emojiData.unified + '-' + skinKey, + variationData = emojiData.skin_variations[variationKey], + kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/), + kit = kitMatches[0]; + + if (variationData['has_img_' + kit]) { + emojiData.skin_tone = skin; + + for (var k in variationData) { + var v = variationData[k]; + emojiData[k] = v; + } + } + } + + return emojiData; + } + }, { + key: 'getPosition', + value: function getPosition(emojiData) { + var sheet_x = emojiData.sheet_x; + var sheet_y = emojiData.sheet_y; + var multiply = 100 / (SHEET_COLUMNS - 1); + + return multiply * sheet_x + '% ' + multiply * sheet_y + '%'; + } + }, { + key: 'getNative', + value: function getNative(emojiData) { + var unified = emojiData.unified; + var unicodes = unified.split('-'); + var codePoints = unicodes.map(function (u) { + return '0x' + u; + }); + + return String.fromCodePoint.apply(String, _toConsumableArray(codePoints)); + } + }, { + key: 'handleClick', + value: function handleClick(emojiData) { + var onClick = this.props.onClick; + var name = emojiData.name; + var short_names = emojiData.short_names; + var skin_tone = emojiData.skin_tone; + var emoticons = emojiData.emoticons; + var unified = emojiData.unified; + var id = short_names[0]; + var colons = ':' + id + ':'; + + if (skin_tone) { + colons += ':skin-tone-' + skin_tone + ':'; + } + + onClick({ + id: id, + name: name, + colons: colons, + emoticons: emoticons, + skin: skin_tone || 1, + native: this.getNative(emojiData) + }); + } + }, { + key: 'render', + value: function render() { + var _this2 = this; + + var _props2 = this.props; + var sheetURL = _props2.sheetURL; + var size = _props2.size; + var onOver = _props2.onOver; + var onLeave = _props2.onLeave; + var emojiData = this.getEmojiData(); + + return _react2.default.createElement( + 'span', + { + onClick: function onClick() { + return _this2.handleClick(emojiData); + }, + onMouseEnter: function onMouseEnter() { + return onOver(emojiData); + }, + onMouseLeave: function onMouseLeave() { + return onLeave(emojiData); + }, + className: 'emoji-picker-emoji' }, + _react2.default.createElement('span', { style: { + width: size, + height: size, + display: 'inline-block', + backgroundImage: 'url(' + sheetURL + ')', + backgroundSize: 100 * SHEET_COLUMNS + '%', + backgroundPosition: this.getPosition(emojiData) + } }) + ); + } + }]); + + return Emoji; + }(_react2.default.Component); + + exports.default = Emoji; + + + Emoji.propTypes = { + skin: _react2.default.PropTypes.number, + onOver: _react2.default.PropTypes.func, + onLeave: _react2.default.PropTypes.func, + onClick: _react2.default.PropTypes.func, + size: _react2.default.PropTypes.number.isRequired, + sheetURL: _react2.default.PropTypes.string.isRequired, + emoji: _react2.default.PropTypes.oneOfType([_react2.default.PropTypes.string, _react2.default.PropTypes.object]).isRequired + }; + + Emoji.defaultProps = { + skin: 1, + onOver: function onOver() {}, + onLeave: function onLeave() {}, + onClick: function onClick() {} + }; + /***/ }, /* 23 */ /***/ function(module, exports, __webpack_require__) { @@ -3546,6 +3284,624 @@ return /******/ (function(modules) { // webpackBootstrap value: true }); + var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; + + var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + + __webpack_require__(24); + + var _react = __webpack_require__(3); + + var _react2 = _interopRequireDefault(_react); + + var _data = __webpack_require__(20); + + var _data2 = _interopRequireDefault(_data); + + var _utils = __webpack_require__(16); + + var _ = __webpack_require__(1); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var RECENT_CATEGORY = { name: 'Recent', emojis: null }; + var SEARCH_CATEGORY = { name: 'Search', emojis: null, anchor: RECENT_CATEGORY }; + + var CATEGORIES = [SEARCH_CATEGORY, RECENT_CATEGORY].concat(_data2.default.categories); + + var Picker = function (_React$Component) { + _inherits(Picker, _React$Component); + + function Picker(props) { + _classCallCheck(this, Picker); + + var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Picker).call(this, props)); + + _this.testStickyPosition(); + + _this.state = { + skin: _utils.store.get('skin') || props.skin + }; + return _this; + } + + _createClass(Picker, [{ + key: 'componentWillReceiveProps', + value: function componentWillReceiveProps(props) { + if (props.skin && !_utils.store.get('skin')) { + this.setState({ skin: props.skin }); + } + } + }, { + key: 'componentDidUpdate', + value: function componentDidUpdate() { + this.updateCategoriesSize(); + this.handleScroll(); + } + }, { + key: 'testStickyPosition', + value: function testStickyPosition() { + var stickyTestElement = document.createElement('div'); + var _arr = ['', '-webkit-', '-ms-', '-moz-', '-o-']; + for (var _i = 0; _i < _arr.length; _i++) { + var prefix = _arr[_i]; + stickyTestElement.style.position = prefix + 'sticky'; + } + + this.hasStickyPosition = !!stickyTestElement.style.position.length; + } + }, { + key: 'handleEmojiOver', + value: function handleEmojiOver(emoji) { + var preview = this.refs.preview; + + preview.setState({ emoji: emoji }); + clearTimeout(this.leaveTimeout); + } + }, { + key: 'handleEmojiLeave', + value: function handleEmojiLeave(emoji) { + var _this2 = this; + + this.leaveTimeout = setTimeout(function () { + var preview = _this2.refs.preview; + + preview.setState({ emoji: null }); + }, 16); + } + }, { + key: 'handleEmojiClick', + value: function handleEmojiClick(emoji) { + var _this3 = this; + + this.props.onClick(emoji); + _utils.frequently.add(emoji); + + var component = this.refs['category-1']; + if (component) { + (function () { + var maxMargin = component.maxMargin; + component.forceUpdate(); + + window.requestAnimationFrame(function () { + component.memoizeSize(); + if (maxMargin == component.maxMargin) return; + + _this3.updateCategoriesSize(); + _this3.handleScrollPaint(); + }); + })(); + } + } + }, { + key: 'handleScroll', + value: function handleScroll() { + if (!this.waitingForPaint) { + this.waitingForPaint = true; + window.requestAnimationFrame(this.handleScrollPaint.bind(this)); + } + } + }, { + key: 'handleScrollPaint', + value: function handleScrollPaint() { + this.waitingForPaint = false; + + var target = this.refs.scroll, + scrollTop = target.scrollTop, + scrollingDown = scrollTop > (this.scrollTop || 0), + activeCategory = null, + minTop = 0; + + for (var i = 0, l = CATEGORIES.length; i < l; i++) { + var ii = scrollingDown ? CATEGORIES.length - 1 - i : i, + category = CATEGORIES[ii], + component = this.refs['category-' + ii]; + + if (!minTop || component.top < minTop) { + if (component.top > 0) { + minTop = component.top; + } + } + + if (component) { + var active = component.handleScroll(scrollTop); + if (active && !activeCategory) { + if (category.anchor) category = category.anchor; + activeCategory = category; + } + } + } + + if (scrollTop < minTop) { + activeCategory = RECENT_CATEGORY; + } + + if (activeCategory) { + var anchors = this.refs.anchors; + var _activeCategory = activeCategory; + var categoryName = _activeCategory.name; + + + if (anchors.state.selected != categoryName) { + anchors.setState({ selected: categoryName }); + } + } + + this.scrollTop = scrollTop; + } + }, { + key: 'handleSearch', + value: function handleSearch(emojis) { + SEARCH_CATEGORY.emojis = emojis; + + for (var i = 0, l = CATEGORIES.length; i < l; i++) { + var component = this.refs['category-' + i]; + + if (component && component.props.name != 'Search') { + var display = emojis ? 'none' : null; + component.updateDisplay(display); + } + } + + this.forceUpdate(); + } + }, { + key: 'handleAnchorClick', + value: function handleAnchorClick(category, i) { + var component = this.refs['category-' + i]; + var _refs = this.refs; + var scroll = _refs.scroll; + var anchors = _refs.anchors; + var scrollToComponent = null; + + scrollToComponent = function scrollToComponent() { + if (component) { + var top = component.top; + + + if (category.name == 'Recent') { + top = 0; + } else { + top += 1; + } + + scroll.scrollTop = top; + } + }; + + if (SEARCH_CATEGORY.emojis) { + this.handleSearch(null); + this.refs.search.clear(); + + window.requestAnimationFrame(scrollToComponent); + } else { + scrollToComponent(); + } + } + }, { + key: 'handleSkinChange', + value: function handleSkinChange(skin) { + var newState = { skin: skin }; + + this.setState(newState); + _utils.store.update(newState); + } + }, { + key: 'updateCategoriesSize', + value: function updateCategoriesSize() { + for (var i = 0, l = CATEGORIES.length; i < l; i++) { + var component = this.refs['category-' + i]; + if (component) component.memoizeSize(); + } + } + }, { + key: 'render', + value: function render() { + var _this4 = this; + + var _props = this.props; + var perLine = _props.perLine; + var emojiSize = _props.emojiSize; + var sheetURL = _props.sheetURL; + var style = _props.style; + var skin = this.state.skin; + var width = perLine * (emojiSize + 12) + 12 + 2; + + return _react2.default.createElement( + 'div', + { style: _extends({}, style, { width: width }), className: 'emoji-picker' }, + _react2.default.createElement( + 'div', + { className: 'emoji-picker-bar' }, + _react2.default.createElement(_.Anchors, { + ref: 'anchors', + categories: CATEGORIES, + onAnchorClick: this.handleAnchorClick.bind(this) + }) + ), + _react2.default.createElement( + 'div', + { ref: 'scroll', className: 'emoji-picker-scroll', onScroll: this.handleScroll.bind(this) }, + _react2.default.createElement(_.Search, { + ref: 'search', + onSearch: this.handleSearch.bind(this) + }), + CATEGORIES.map(function (category, i) { + return _react2.default.createElement(_.Category, { + ref: 'category-' + i, + key: category.name, + name: category.name, + emojis: category.emojis, + perLine: perLine, + hasStickyPosition: _this4.hasStickyPosition, + emojiProps: { + skin: skin, + size: emojiSize, + sheetURL: sheetURL, + onOver: _this4.handleEmojiOver.bind(_this4), + onLeave: _this4.handleEmojiLeave.bind(_this4), + onClick: _this4.handleEmojiClick.bind(_this4) + } + }); + }) + ), + _react2.default.createElement( + 'div', + { className: 'emoji-picker-bar' }, + _react2.default.createElement(_.Preview, { + ref: 'preview', + emojiProps: { + size: 38, + sheetURL: sheetURL + }, + skinsProps: { + skin: skin, + onChange: this.handleSkinChange.bind(this) + } + }) + ) + ); + } + }]); + + return Picker; + }(_react2.default.Component); + + exports.default = Picker; + + + Picker.propTypes = { + onClick: _react2.default.PropTypes.func, + skin: _react2.default.PropTypes.number, + perLine: _react2.default.PropTypes.number, + emojiSize: _react2.default.PropTypes.number, + style: _react2.default.PropTypes.object, + sheetURL: _react2.default.PropTypes.string.isRequired + }; + + Picker.defaultProps = { + onClick: function onClick() {}, + emojiSize: 24, + perLine: 9, + style: {}, + skin: 1 + }; + +/***/ }, +/* 24 */ +/***/ function(module, exports) { + + 'use strict'; + + // http://paulirish.com/2011/requestanimationframe-for-smart-animating/ + // http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating + + // requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel + + // MIT license + + (function () { + var lastTime = 0; + var vendors = ['ms', 'moz', 'webkit', 'o']; + for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; + window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame']; + } + + if (!window.requestAnimationFrame) window.requestAnimationFrame = function (callback, element) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = window.setTimeout(function () { + callback(currTime + timeToCall); + }, timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + + if (!window.cancelAnimationFrame) window.cancelAnimationFrame = function (id) { + clearTimeout(id); + }; + })(); + +/***/ }, +/* 25 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; + + var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + + var _react = __webpack_require__(3); + + var _react2 = _interopRequireDefault(_react); + + var _ = __webpack_require__(1); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var Preview = function (_React$Component) { + _inherits(Preview, _React$Component); + + function Preview(props) { + _classCallCheck(this, Preview); + + var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Preview).call(this, props)); + + _this.state = { emoji: null }; + return _this; + } + + _createClass(Preview, [{ + key: 'render', + value: function render() { + var emoji = this.state.emoji; + var _props = this.props; + var emojiProps = _props.emojiProps; + var skinsProps = _props.skinsProps; + + + if (emoji) { + var emoticons = emoji.emoticons; + var knownEmoticons = []; + var listedEmoticons = []; + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = emoticons[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var emoticon = _step.value; + + if (knownEmoticons.indexOf(emoticon.toLowerCase()) == -1) { + knownEmoticons.push(emoticon.toLowerCase()); + listedEmoticons.push(emoticon); + } + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + return _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview' }, + _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview-emoji' }, + _react2.default.createElement(_.Emoji, _extends({ + key: emoji.short_name || emoji, + emoji: emoji + }, emojiProps)) + ), + _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview-data' }, + _react2.default.createElement( + 'span', + { className: 'emoji-picker-preview-name' }, + emoji.name + ), + _react2.default.createElement('br', null), + _react2.default.createElement( + 'span', + { className: 'emoji-picker-preview-shortnames' }, + emoji.short_names.map(function (short_name) { + return _react2.default.createElement( + 'span', + { key: short_name, className: 'emoji-picker-preview-shortname' }, + ':', + short_name, + ':' + ); + }), + _react2.default.createElement('br', null), + listedEmoticons.map(function (emoticon) { + return _react2.default.createElement( + 'span', + { key: emoticon, className: 'emoji-picker-preview-emoticon' }, + emoticon + ); + }) + ) + ) + ); + } else { + return _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview' }, + _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview-emoji' }, + _react2.default.createElement(_.Emoji, _extends({ + emoji: 'tophat' + }, emojiProps)) + ), + _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview-data' }, + _react2.default.createElement( + 'span', + { className: 'emoji-picker-title-label' }, + 'EmojiPicker' + ) + ), + _react2.default.createElement( + 'div', + { className: 'emoji-picker-preview-skins' }, + _react2.default.createElement(_.Skins, skinsProps) + ) + ); + } + } + }]); + + return Preview; + }(_react2.default.Component); + + exports.default = Preview; + + + Preview.propTypes = { + emojiProps: _react2.default.PropTypes.object.isRequired, + skinsProps: _react2.default.PropTypes.object.isRequired + }; + +/***/ }, +/* 26 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + + var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); + + var _react = __webpack_require__(3); + + var _react2 = _interopRequireDefault(_react); + + var _utils = __webpack_require__(16); + + function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } + + function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } + + function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; } + + function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; } + + var Search = function (_React$Component) { + _inherits(Search, _React$Component); + + function Search() { + _classCallCheck(this, Search); + + return _possibleConstructorReturn(this, Object.getPrototypeOf(Search).apply(this, arguments)); + } + + _createClass(Search, [{ + key: 'handleChange', + value: function handleChange() { + var input = this.refs.input; + var value = input.value; + + this.props.onSearch(_utils.emojiIndex.search(value)); + } + }, { + key: 'clear', + value: function clear() { + this.refs.input.value = ''; + } + }, { + key: 'render', + value: function render() { + return _react2.default.createElement('input', { + ref: 'input', + type: 'text', + onChange: this.handleChange.bind(this), + placeholder: 'Search', + className: 'emoji-picker-search' + }); + } + }]); + + return Search; + }(_react2.default.Component); + + exports.default = Search; + + + Search.propTypes = { + onSearch: _react2.default.PropTypes.func, + maxResults: _react2.default.PropTypes.number + }; + + Search.defaultProps = { + onSearch: function onSearch() {}, + maxResults: 75 + }; + +/***/ }, +/* 27 */ +/***/ function(module, exports, __webpack_require__) { + + 'use strict'; + + Object.defineProperty(exports, "__esModule", { + value: true + }); + var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _react = __webpack_require__(3); diff --git a/dist/emoji-picker.js.map b/dist/emoji-picker.js.map index bb9c0bb..6693242 100644 --- a/dist/emoji-picker.js.map +++ b/dist/emoji-picker.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///webpack/bootstrap fe40060dbb1ebba7d9bb","webpack:///./src/index.js","webpack:///./src/components/index.js","webpack:///./src/components/anchors.js","webpack:///external \"react\"","webpack:///./~/svg-inline-react/dist/index.js","webpack:///./src/svgs/index.js","webpack:///./src/svgs/activity.svg","webpack:///./src/svgs/flags.svg","webpack:///./src/svgs/foods.svg","webpack:///./src/svgs/nature.svg","webpack:///./src/svgs/objects.svg","webpack:///./src/svgs/people.svg","webpack:///./src/svgs/places.svg","webpack:///./src/svgs/recent.svg","webpack:///./src/svgs/symbols.svg","webpack:///./src/components/category.js","webpack:///./src/components/emoji.js","webpack:///./data/index.js","webpack:///./src/components/picker.js","webpack:///./src/utils/raf-polyfill.js","webpack:///./src/components/preview.js","webpack:///./src/components/search.js","webpack:///./~/lunr/lunr.js","webpack:///./src/components/skins.js"],"names":[],"mappings":"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CA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,WAAU;AACV;AACA,SAAQ;AACR;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,IAAI;AACf,aAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA,wDAAuD,8CAA8C;;AAErG;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,MAAK;AACL;AACA;AACA,IAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,iBAAiB;AAClC;;AAEA,oBAAmB,iBAAiB;AACpC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,iBAAiB;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,YAAY;AACvB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,MAAK;AACL;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,YAAY;AACvB;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA,cAAa,sBAAsB;AACnC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,eAAe;AAC1B,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,eAAe;AAC1B,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA,IAAG;AACH;AACA;;AAEA;;AAEA,wDAAuD,6BAA6B;AACpF;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA,wBAAuB;AACvB,gBAAe;;AAEf;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,YAAW,QAAQ;AACnB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA,qBAAoB;AACpB;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA,oBAAmB,wBAAwB;AAC3C;AACA;AACA;AACA;AACA,IAAG;;AAEH;;AAEA,kBAAiB,8BAA8B;AAC/C;AACA;;AAEA,oBAAmB,yBAAyB;AAC5C;AACA;AACA;;AAEA;;AAEA;AACA,sBAAqB,iBAAiB;AACtC;AACA;AACA;AACA;;AAEA;AACA;;AAEA,iCAAgC,sBAAsB;AACtD;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA,IAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA4D,wBAAwB;;AAEpF;AACA;AACA,IAAG;;AAEH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,wBAAuB,aAAa;AACpC;AACA;;AAEA;AACA,QAAO;;AAEP;AACA,MAAK;;AAEL;AACA;AACA,IAAG;;AAEH;AACA;AACA,eAAc;AACd,MAAK;AACL;AACA;AACA,MAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,0BAA0B;AAC3C;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAQ;AACR;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAG,IAAI;;AAEP;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,+BAA8B;;AAE9B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,wBAAuB,UAAU;;AAEjC;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,sBAAqB,0BAA0B;AAC/C,4BAA2B,2BAA2B;;AAEtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA0B,cAAc;AACxC,gCAA+B,cAAc,sBAAsB;AACnE,gCAA+B,aAAa;AAC5C;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,EAAC;;AAED;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAG,IAAI;;AAEP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAe,SAAS;AACxB;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oCAAmC;;AAEnC;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA,kBAAiB,kBAAkB;AACnC;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;;AAEA,kBAAiB,kBAAkB;AACnC;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,kBAAkB;AACnC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA,6BAA4B;AAC5B;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA,MAAK;;AAEL;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA,IAAG;AACH,EAAC;;;;;;;;;;;;;;;ACpgED;;;;;;;;;;;;KAEqB;;;AACnB,YADmB,KACnB,CAAY,KAAZ,EAAmB;2BADA,OACA;;wEADA,kBAEX,QADW;;AAGjB,WAAK,KAAL,GAAa;AACX,eAAQ,KAAR;MADF,CAHiB;;IAAnB;;gBADmB;;iCASP,MAAM;WACV,WAAa,KAAK,KAAL,CAAb,SADU;;;AAGhB,WAAI,CAAC,KAAK,KAAL,CAAW,MAAX,EAAmB;AACtB,cAAK,QAAL,CAAc,EAAE,QAAQ,IAAR,EAAhB,EADsB;QAAxB,MAEO;AACL,kBAAS,IAAT,EADK;AAEL,cAAK,QAAL,CAAc,EAAE,QAAQ,KAAR,EAAhB,EAFK;QAFP;;;;8BAQO;;;AACH,WAAE,OAAS,KAAK,KAAL,CAAT,IAAF,CADG;WAED,SAAW,KAAK,KAAL,CAAX,OAFC;;;AAIP,cAAO;;;SACL;;aAAK,4CAAyC,SAAS,mCAAT,GAA+C,EAA/C,CAAzC,EAAL;WACG,MAAM,CAAN,EAAS,IAAT,GAAgB,GAAhB,CAAoB,UAAC,CAAD,EAAI,CAAJ,EAAU;AAC7B,iBAAI,WAAW,IAAI,CAAJ;iBACX,WAAW,YAAY,IAAZ,CAFc;;AAI7B,oBAAO;;iBAAM,oBAAkB,QAAlB,EAA8B,0CAAuC,WAAW,mCAAX,GAAiD,EAAjD,CAAvC,EAApC;eACL;AACE,0BAAS;0BAAM,OAAK,WAAL,CAAiB,QAAjB;kBAAN;AACT,0EAAuD,QAAvD,EAFF,CADK;cAAP,CAJ6B;YAAV,CADvB;UADK;QAAP,CAJO;;;;UApBU;GAAc,gBAAM,SAAN;;mBAAd;;;AA0CrB,OAAM,SAAN,GAAkB;AAChB,aAAU,gBAAM,SAAN,CAAgB,IAAhB;AACV,SAAM,gBAAM,SAAN,CAAgB,MAAhB,CAAuB,UAAvB;EAFR;;AAKA,OAAM,YAAN,GAAqB;AACnB,aAAW,oBAAM,EAAN;EADb,C","file":"emoji-picker.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"react\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"react\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EmojiPicker\"] = factory(require(\"react\"));\n\telse\n\t\troot[\"EmojiPicker\"] = factory(root[\"react\"]);\n})(this, function(__WEBPACK_EXTERNAL_MODULE_3__) {\nreturn \n\n\n/** WEBPACK FOOTER **\n ** webpack/universalModuleDefinition\n **/"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap fe40060dbb1ebba7d9bb\n **/","export {\n Picker,\n Emoji,\n} from './components'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/index.js\n **/","export {default as Anchors} from './anchors'\nexport {default as Category} from './category'\nexport {default as Emoji} from './emoji'\nexport {default as Picker} from './picker'\nexport {default as Preview} from './preview'\nexport {default as Search} from './search'\nexport {default as Skins} from './skins'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/index.js\n **/","import React from 'react'\nimport InlineSVG from 'svg-inline-react'\n\nimport * as SVGs from '../svgs'\n\nexport default class Anchors extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n selected: props.categories[0].name\n }\n }\n\n render() {\n var { categories, onAnchorClick } = this.props,\n { selected } = this.state\n\n return
\n {categories.map((category, i) => {\n var { name } = category\n\n return (\n onAnchorClick(category, i)}\n className={`emoji-picker-anchor ${name == selected ? 'emoji-picker-anchor-selected' : ''}`}\n >\n \n \n \n )\n })}\n
\n }\n}\n\nAnchors.propTypes = {\n categories: React.PropTypes.array,\n onAnchorClick: React.PropTypes.func,\n}\n\nAnchors.defaultProps = {\n categories: [],\n onAnchorClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/anchors.js\n **/","module.exports = __WEBPACK_EXTERNAL_MODULE_3__;\n\n\n/*****************\n ** WEBPACK FOOTER\n ** external \"react\"\n ** module id = 3\n ** module chunks = 0\n **/","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nvar _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar DOMParser = typeof window !== 'undefined' && window.DOMParser;\nvar process = process || {};\nprocess.env = process.env || {};\nvar parserAvailable = typeof DOMParser !== 'undefined' && DOMParser.prototype != null && DOMParser.prototype.parseFromString != null;\n\nif (\"production\" !== process.env.NODE_ENV && !parserAvailable) {\n console.info(': `raw` prop works only when `window.DOMParser` exists.');\n}\n\nfunction isParsable(src) {\n // kinda naive but meh, ain't gonna use full-blown parser for this\n return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\nfunction switchSVGAttrToReactProp(propName) {\n switch (propName) {\n case 'class':\n return 'className';\n default:\n return propName;\n }\n}\n\nvar InlineSVG = (function (_React$Component) {\n _inherits(InlineSVG, _React$Component);\n\n _createClass(InlineSVG, null, [{\n key: 'defaultProps',\n value: {\n element: 'i',\n raw: false,\n src: ''\n },\n enumerable: true\n }, {\n key: 'propTypes',\n value: {\n src: _react2['default'].PropTypes.string.isRequired,\n element: _react2['default'].PropTypes.string,\n raw: _react2['default'].PropTypes.bool\n },\n enumerable: true\n }]);\n\n function InlineSVG(props) {\n _classCallCheck(this, InlineSVG);\n\n _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n this._extractSVGProps = this._extractSVGProps.bind(this);\n }\n\n // Serialize `Attr` objects in `NamedNodeMap`\n\n _createClass(InlineSVG, [{\n key: '_serializeAttrs',\n value: function _serializeAttrs(map) {\n var ret = {};\n var prop = undefined;\n for (var i = 0; i < map.length; i++) {\n prop = switchSVGAttrToReactProp(map[i].name);\n ret[prop] = map[i].value;\n }\n return ret;\n }\n\n // get element props\n }, {\n key: '_extractSVGProps',\n value: function _extractSVGProps(src) {\n var map = parseFromSVGString(src).documentElement.attributes;\n return map.length > 0 ? this._serializeAttrs(map) : null;\n }\n\n // get content inside element.\n }, {\n key: '_stripSVG',\n value: function _stripSVG(src) {\n return parseFromSVGString(src).documentElement.innerHTML;\n }\n }, {\n key: 'componentWillReceiveProps',\n value: function componentWillReceiveProps(_ref) {\n var children = _ref.children;\n\n if (\"production\" !== process.env.NODE_ENV && children != null) {\n console.info(': `children` prop will be ignored.');\n }\n }\n }, {\n key: 'render',\n value: function render() {\n var Element = undefined,\n __html = undefined,\n svgProps = undefined;\n var _props = this.props;\n var element = _props.element;\n var raw = _props.raw;\n var src = _props.src;\n\n if (raw === true && isParsable(src)) {\n Element = 'svg';\n svgProps = this._extractSVGProps(src);\n __html = this._stripSVG(src);\n }\n __html = __html || src;\n Element = Element || element;\n svgProps = svgProps || {};\n\n return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n dangerouslySetInnerHTML: { __html: __html } }));\n }\n }]);\n\n return InlineSVG;\n})(_react2['default'].Component);\n\nexports['default'] = InlineSVG;\nmodule.exports = exports['default'];\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/svg-inline-react/dist/index.js\n ** module id = 4\n ** module chunks = 0\n **/","export {default as Activity} from './activity.svg'\nexport {default as Flags} from './flags.svg'\nexport {default as Foods} from './foods.svg'\nexport {default as Nature} from './nature.svg'\nexport {default as Objects} from './objects.svg'\nexport {default as People} from './people.svg'\nexport {default as Places} from './places.svg'\nexport {default as Recent} from './recent.svg'\nexport {default as Symbols} from './symbols.svg'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/svgs/index.js\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/activity.svg\n ** module id = 6\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/flags.svg\n ** module id = 7\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/foods.svg\n ** module id = 8\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/nature.svg\n ** module id = 9\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/objects.svg\n ** module id = 10\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/people.svg\n ** module id = 11\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/places.svg\n ** module id = 12\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/recent.svg\n ** module id = 13\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/symbols.svg\n ** module id = 14\n ** module chunks = 0\n **/","import React from 'react'\nimport {Emoji} from '.'\n\nexport default class Category extends React.Component {\n componentDidMount() {\n this.container = this.refs.container\n this.label = this.refs.label\n this.parent = this.container.parentNode\n\n this.margin = 0\n this.minMargin = 0\n\n this.memoizeSize()\n }\n\n componentDidUpdate() {\n this.memoizeSize()\n }\n\n memoizeSize() {\n var { top, height } = this.container.getBoundingClientRect()\n var { top: parentTop } = this.parent.getBoundingClientRect()\n var { height: labelHeight } = this.label.getBoundingClientRect()\n\n this.top = top - parentTop + this.parent.scrollTop\n if (height > labelHeight) {\n this.maxMargin = height - labelHeight\n } else {\n this.maxMargin = 1\n }\n }\n\n handleScroll(scrollTop) {\n var margin = scrollTop - this.top\n margin = margin < this.minMargin ? this.minMargin : margin\n margin = margin > this.maxMargin ? this.maxMargin : margin\n\n if (margin == this.margin) return\n var { name } = this.props\n\n if (!this.props.hasStickyPosition) {\n this.label.style.top = `${margin}px`\n }\n\n this.margin = margin\n return true\n }\n\n render() {\n var { name, emojis, hasStickyPosition, emojiProps } = this.props,\n emojis = emojis ? emojis.slice(0) : null,\n labelStyles = {},\n labelSpanStyles = {},\n containerStyles = {}\n\n if (!hasStickyPosition) {\n labelStyles = {\n height: 28,\n }\n\n labelSpanStyles = {\n position: 'absolute',\n }\n }\n\n if (!emojis) {\n containerStyles = {\n height: 1,\n overflow: 'hidden',\n }\n }\n\n return
\n
\n {name}\n
\n\n {emojis && emojis.map((emoji) =>\n \n )}\n\n {emojis && !emojis.length &&\n
\n \n\n \n No emoji found\n \n
\n }\n
\n }\n}\n\nCategory.propTypes = {\n emojis: React.PropTypes.array,\n hasStickyPosition: React.PropTypes.bool,\n name: React.PropTypes.string.isRequired,\n emojiProps: React.PropTypes.object.isRequired,\n}\n\nCategory.defaultProps = {\n emojis: [],\n hasStickyPosition: true,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/category.js\n **/","import React from 'react'\nimport data from '../../data'\n\nconst SHEET_SIZE = 2624\nconst EMOJI_SIZE = 64\nconst SKINS = [\n '1F3FA', '1F3FB', '1F3FC',\n '1F3FD', '1F3FE', '1F3FF',\n]\n\nexport default class Emoji extends React.Component {\n constructor(props) {\n super(props)\n\n var emojiData = this.getEmojiData()\n this.hasSkinVariations = !!emojiData.skin_variations\n }\n\n shouldComponentUpdate(nextProps) {\n return (\n this.hasSkinVariations && nextProps.skin != this.props.skin ||\n nextProps.size != this.props.size ||\n nextProps.sheetURL != this.props.sheetURL\n )\n }\n\n getEmojiData() {\n var { emoji, skin, sheetURL } = this.props,\n emojiData = emoji\n\n if (typeof emoji == 'string') {\n emojiData = data.emojis[emoji]\n }\n\n if (this.hasSkinVariations && skin > 1) {\n emojiData = JSON.parse(JSON.stringify(data.emojis[emoji]))\n\n var skinKey = SKINS[skin - 1],\n variationKey = `${emojiData.unified}-${skinKey}`,\n variationData = emojiData.skin_variations[variationKey],\n kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n kit = kitMatches[0]\n\n if (variationData[`has_img_${kit}`]) {\n emojiData.skin_tone = skin\n\n for (let k in variationData) {\n let v = variationData[k]\n emojiData[k] = v\n }\n }\n }\n\n return emojiData\n }\n\n getSheetSize() {\n var { size } = this.props,\n sheetSize = SHEET_SIZE * size / EMOJI_SIZE\n\n return `${sheetSize}px ${sheetSize}px`\n }\n\n getPosition(emojiData) {\n var { size } = this.props,\n { sheet_x, sheet_y } = emojiData,\n x = sheet_x * size,\n y = sheet_y * size\n\n return `-${x}px -${y}px`\n }\n\n getNative(emojiData) {\n var { unified } = emojiData,\n unicodes = unified.split('-'),\n codePoints = unicodes.map((u) => `0x${u}`)\n\n return String.fromCodePoint(...codePoints)\n }\n\n handleClick(emojiData) {\n var { onClick } = this.props,\n { name, short_names, skin_tone, text, texts, unified } = emojiData,\n id = short_names[0],\n colons = `:${id}:`\n\n texts || (texts = [])\n if (text && !texts.length) {\n texts = [text]\n }\n\n if (skin_tone) {\n colons += `:skin-tone-${skin_tone}:`\n }\n\n onClick({\n id,\n name,\n colons,\n skin: skin_tone || 1,\n emoticons: texts,\n native: this.getNative(emojiData),\n })\n }\n\n render() {\n var { sheetURL, size, onOver, onLeave } = this.props,\n emojiData = this.getEmojiData()\n\n return this.handleClick(emojiData)}\n onMouseEnter={() => onOver(emojiData)}\n onMouseLeave={() => onLeave(emojiData)}\n className='emoji-picker-emoji'>\n \n \n \n }\n}\n\nEmoji.propTypes = {\n skin: React.PropTypes.number,\n onOver: React.PropTypes.func,\n onLeave: React.PropTypes.func,\n onClick: React.PropTypes.func,\n size: React.PropTypes.number.isRequired,\n sheetURL: React.PropTypes.string.isRequired,\n emoji: React.PropTypes.oneOfType([\n React.PropTypes.string,\n React.PropTypes.object,\n ]).isRequired,\n}\n\nEmoji.defaultProps = {\n skin: 1,\n onOver: (() => {}),\n onLeave: (() => {}),\n onClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/emoji.js\n **/","export default {\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-af\",\"flag-ax\",\"flag-al\",\"flag-dz\",\"flag-as\",\"flag-ad\",\"flag-ao\",\"flag-ai\",\"flag-aq\",\"flag-ag\",\"flag-ar\",\"flag-am\",\"flag-aw\",\"flag-au\",\"flag-at\",\"flag-az\",\"flag-bs\",\"flag-bh\",\"flag-bd\",\"flag-bb\",\"flag-by\",\"flag-be\",\"flag-bz\",\"flag-bj\",\"flag-bm\",\"flag-bt\",\"flag-bo\",\"flag-bq\",\"flag-ba\",\"flag-bw\",\"flag-br\",\"flag-io\",\"flag-vg\",\"flag-bn\",\"flag-bg\",\"flag-bf\",\"flag-bi\",\"flag-cv\",\"flag-kh\",\"flag-cm\",\"flag-ca\",\"flag-ic\",\"flag-ky\",\"flag-cf\",\"flag-td\",\"flag-cl\",\"flag-cn\",\"flag-cx\",\"flag-cc\",\"flag-co\",\"flag-km\",\"flag-cg\",\"flag-cd\",\"flag-ck\",\"flag-cr\",\"flag-hr\",\"flag-cu\",\"flag-cw\",\"flag-cy\",\"flag-cz\",\"flag-dk\",\"flag-dj\",\"flag-dm\",\"flag-do\",\"flag-ec\",\"flag-eg\",\"flag-sv\",\"flag-gq\",\"flag-er\",\"flag-ee\",\"flag-et\",\"flag-eu\",\"flag-fk\",\"flag-fo\",\"flag-fj\",\"flag-fi\",\"flag-fr\",\"flag-gf\",\"flag-pf\",\"flag-tf\",\"flag-ga\",\"flag-gm\",\"flag-ge\",\"flag-de\",\"flag-gh\",\"flag-gi\",\"flag-gr\",\"flag-gl\",\"flag-gd\",\"flag-gp\",\"flag-gu\",\"flag-gt\",\"flag-gg\",\"flag-gn\",\"flag-gw\",\"flag-gy\",\"flag-ht\",\"flag-hn\",\"flag-hk\",\"flag-hu\",\"flag-is\",\"flag-in\",\"flag-id\",\"flag-ir\",\"flag-iq\",\"flag-ie\",\"flag-im\",\"flag-il\",\"flag-it\",\"flag-ci\",\"flag-jm\",\"flag-jp\",\"flag-je\",\"flag-jo\",\"flag-kz\",\"flag-ke\",\"flag-ki\",\"flag-xk\",\"flag-kw\",\"flag-kg\",\"flag-la\",\"flag-lv\",\"flag-lb\",\"flag-ls\",\"flag-lr\",\"flag-ly\",\"flag-li\",\"flag-lt\",\"flag-lu\",\"flag-mo\",\"flag-mk\",\"flag-mg\",\"flag-mw\",\"flag-my\",\"flag-mv\",\"flag-ml\",\"flag-mt\",\"flag-mh\",\"flag-mq\",\"flag-mr\",\"flag-mu\",\"flag-yt\",\"flag-mx\",\"flag-fm\",\"flag-md\",\"flag-mc\",\"flag-mn\",\"flag-me\",\"flag-ms\",\"flag-ma\",\"flag-mz\",\"flag-mm\",\"flag-na\",\"flag-nr\",\"flag-np\",\"flag-nl\",\"flag-nc\",\"flag-nz\",\"flag-ni\",\"flag-ne\",\"flag-ng\",\"flag-nu\",\"flag-nf\",\"flag-mp\",\"flag-kp\",\"flag-no\",\"flag-om\",\"flag-pk\",\"flag-pw\",\"flag-ps\",\"flag-pa\",\"flag-pg\",\"flag-py\",\"flag-pe\",\"flag-ph\",\"flag-pn\",\"flag-pl\",\"flag-pt\",\"flag-pr\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-ru\",\"flag-rw\",\"flag-bl\",\"flag-sh\",\"flag-kn\",\"flag-lc\",\"flag-pm\",\"flag-vc\",\"flag-ws\",\"flag-sm\",\"flag-st\",\"flag-sa\",\"flag-sn\",\"flag-rs\",\"flag-sc\",\"flag-sl\",\"flag-sg\",\"flag-sx\",\"flag-sk\",\"flag-si\",\"flag-sb\",\"flag-so\",\"flag-za\",\"flag-gs\",\"flag-kr\",\"flag-ss\",\"flag-es\",\"flag-lk\",\"flag-sd\",\"flag-sr\",\"flag-sz\",\"flag-se\",\"flag-ch\",\"flag-sy\",\"flag-tw\",\"flag-tj\",\"flag-tz\",\"flag-th\",\"flag-tl\",\"flag-tg\",\"flag-tk\",\"flag-to\",\"flag-tt\",\"flag-tn\",\"flag-tr\",\"flag-tm\",\"flag-tc\",\"flag-tv\",\"flag-ug\",\"flag-ua\",\"flag-ae\",\"flag-gb\",\"flag-us\",\"flag-vi\",\"flag-uy\",\"flag-uz\",\"flag-vu\",\"flag-va\",\"flag-ve\",\"flag-vn\",\"flag-wf\",\"flag-eh\",\"flag-ye\",\"flag-zm\",\"flag-zw\",\"flag-ac\",\"flag-bv\",\"flag-cp\",\"flag-dg\",\"flag-ea\",\"flag-hm\",\"flag-mf\",\"flag-sj\",\"flag-ta\",\"flag-um\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"text\":\":D\",\"texts\":null,\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"text\":\"<3\",\"texts\":[\"<3\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters Af\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters Ax\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters Al\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters Dz\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters As\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"text\":\":)\",\"texts\":[\"=)\",\"=-)\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"text\":\":)\",\"texts\":[\"C:\",\"c:\",\":D\",\":-D\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters Ad\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"text\":\"\",\":->\"],\"category\":\"People\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters Aq\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters Ag\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"text\":\";)\",\"texts\":[\";)\",\";-)\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters Ar\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"text\":\":)\",\"texts\":null,\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"text\":null,\"texts\":[\":)\",\"(:\",\":-)\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters Am\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters Aw\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters Au\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters at\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"text\":null,\"texts\":[\":o)\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters Az\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters Bs\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters Bh\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters Bd\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters Bb\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters by\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"text\":\";p\",\"texts\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters Be\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters Bz\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters Bj\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"text\":\":p\",\"texts\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters Bm\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters Bt\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"text\":null,\"texts\":[\"8)\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters Bo\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters Bq\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters Ba\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters Bw\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters Br\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"text\":null,\"texts\":[\":|\",\":-|\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters Io\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters Vg\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"text\":\":(\",\"texts\":null,\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters Bn\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters Bg\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters Bf\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters Bi\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"text\":\":(\",\"texts\":[\"):\",\":(\",\":-(\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters Cv\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters Kh\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"text\":null,\"texts\":[\">:(\",\">:-(\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters Cm\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters Ca\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"text\":null,\"texts\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters Ic\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters Ky\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters Cf\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters Td\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters Cl\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters Cn\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters Cx\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters Cc\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters Co\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"text\":null,\"texts\":[\":o\",\":-o\",\":O\",\":-O\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters Km\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters Cg\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters Cd\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters Ck\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters Cr\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters Hr\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"text\":null,\"texts\":[\"D:\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters Cu\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"text\":\":'(\",\"texts\":[\":'(\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters Cw\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters Cy\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters Cz\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"text\":\":'(\",\"texts\":null,\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters Dk\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters Dj\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters Dm\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters Do\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters Ec\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters Eg\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters Sv\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters Gq\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters Er\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters Ee\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters Et\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters Eu\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters Fk\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters Fo\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters Fj\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters Fi\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters Fr\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters Gf\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters Pf\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters Tf\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters Ga\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters Gm\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters Ge\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters De\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters Gh\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters Gi\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters Gr\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters Gl\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters Gd\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters Gp\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters Gu\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters Gt\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters Gg\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters Gn\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters Gw\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters Gy\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters Ht\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters Hn\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters Hk\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters Hu\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters Is\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters in\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters Id\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters Ir\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters Iq\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters Ie\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters Im\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters Il\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters It\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters Ci\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters Jm\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters Jp\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters Je\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters Jo\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters Kz\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters Ke\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters Ki\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters Xk\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters Kw\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters Kg\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters La\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters Lv\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters Lb\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters Ls\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters Lr\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters Ly\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters Li\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters Lt\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters Lu\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters Mo\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters Mk\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters Mg\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters Mw\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters My\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}}},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters Mv\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters Ml\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters Mt\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters Mh\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters Mq\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters Mr\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters Mu\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters Yt\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters Mx\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters Fm\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters Md\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters Mc\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters Mn\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters Me\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters Ms\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters Ma\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters Mz\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters Mm\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters Na\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters Nr\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters Np\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters Nl\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters Nc\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters Nz\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters Ni\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters Ne\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters Ng\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters Nu\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters Nf\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters Mp\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters Kp\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters No\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters Om\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters Pk\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters Pw\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters Ps\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters Pa\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters Pg\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters Py\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters Pe\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters Ph\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters Pn\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters Pl\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters Pt\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters Pr\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters Qa\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters Re\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters Ro\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters Ru\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"text\":null,\"texts\":[\":*\",\":-*\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters Rw\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters Bl\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters Sh\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters Kn\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters Lc\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters Pm\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters Vc\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters Ws\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters Sm\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters St\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters Sa\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters Sn\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters Rs\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters Sc\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters Sl\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters Sg\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters Sx\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters Sk\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters Si\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters Sb\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters so\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters Za\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters Gs\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters Kr\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters Ss\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters Es\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters Lk\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters Sd\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters Sr\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters Sz\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters Se\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters Ch\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters Sy\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters Tw\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters Tj\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters Tz\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters Th\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters Tl\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters Tg\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters Tk\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters to\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters Tt\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters Tn\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters Tr\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters Tm\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters Tc\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters Tv\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters Ug\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters Ua\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters Ae\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters Gb\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters Us\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters Vi\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters Uy\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters Uz\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters Vu\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters Va\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters Ve\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters Vn\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters Wf\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters Eh\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters Ye\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters Zm\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters Zw\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters Ac\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters Bv\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters Cp\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters Dg\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters Ea\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters Hm\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters Mf\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters Sj\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters Ta\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters Um\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}}\n\n\n/** WEBPACK FOOTER **\n ** ./data/index.js\n **/","import '../utils/raf-polyfill'\n\nimport React from 'react'\nimport data from '../../data'\n\nimport {Anchors, Category, Preview, Search} from '.'\n\nconst DEFAULT_CATEGORIES = [\n { name: 'Recent', emojis: null }\n].concat(data.categories)\n\nexport default class Picker extends React.Component {\n constructor(props) {\n super(props)\n this.testStickyPosition()\n\n this.state = {\n categories: DEFAULT_CATEGORIES,\n skin: props.skin,\n }\n }\n\n componentWillReceiveProps(props) {\n this.setState({ skin: props.skin })\n }\n\n componentDidUpdate() {\n this.handleScroll()\n }\n\n testStickyPosition() {\n var stickyTestElement = document.createElement('div')\n for (let prefix of ['', '-webkit-', '-ms-', '-moz-', '-o-']) {\n stickyTestElement.style.position = `${prefix}sticky`\n }\n\n this.hasStickyPosition = !!stickyTestElement.style.position.length\n }\n\n handleEmojiOver(emoji) {\n var { preview } = this.refs\n preview.setState({ emoji: emoji })\n clearTimeout(this.leaveTimeout)\n }\n\n handleEmojiLeave(emoji) {\n this.leaveTimeout = setTimeout(() => {\n var { preview } = this.refs\n preview.setState({ emoji: null })\n }, 16)\n }\n\n handleScroll() {\n if (!this.waitingForPaint) {\n this.waitingForPaint = true\n window.requestAnimationFrame(this.handleScrollPaint.bind(this))\n }\n }\n\n handleScrollPaint() {\n this.waitingForPaint = false\n\n var target = this.refs.scroll,\n scrollTop = target.scrollTop,\n scrollingDown = scrollTop > (this.scrollTop || 0),\n activeCategory = null,\n { categories } = this.state\n\n for (let i = 0, l = categories.length; i < l; i++) {\n let ii = scrollingDown ? (categories.length - 1 - i) : i,\n category = categories[ii],\n component = this.refs[`category-${ii}`]\n\n if (component) {\n let active = component.handleScroll(scrollTop)\n if (active && !activeCategory) {\n activeCategory = category\n }\n }\n }\n\n if (activeCategory) {\n let { anchors } = this.refs,\n { name: categoryName } = activeCategory\n\n if (anchors.state.selected != categoryName) {\n anchors.setState({ selected: categoryName })\n }\n }\n\n this.scrollTop = scrollTop\n }\n\n handleSearch(emojis) {\n if (emojis == null) {\n this.setState({ categories: DEFAULT_CATEGORIES })\n } else {\n this.setState({ categories: [{\n name: 'Search Results',\n emojis: emojis,\n }]})\n }\n }\n\n handleAnchorClick(category, i) {\n var component = this.refs[`category-${i}`],\n { scroll, anchors } = this.refs\n\n if (component) {\n let { top } = component\n\n if (i == 0) {\n top = 0\n } else {\n top += 1\n }\n\n scroll.scrollTop = top\n }\n }\n\n handleSkinChange(skin) {\n this.setState({ skin: skin })\n }\n\n render() {\n var { perLine, emojiSize, sheetURL } = this.props,\n { skin } = this.state,\n width = (perLine * (emojiSize + 12)) + 12 + 2\n\n return
\n
\n \n
\n\n
\n \n\n {this.state.categories.map((category, i) => {\n return \n })}\n
\n\n
\n \n
\n
\n }\n}\n\nPicker.propTypes = {\n onClick: React.PropTypes.func,\n skin: React.PropTypes.number,\n perLine: React.PropTypes.number,\n emojiSize: React.PropTypes.number,\n sheetURL: React.PropTypes.string.isRequired,\n}\n\nPicker.defaultProps = {\n onClick: (() => {}),\n emojiSize: 24,\n perLine: 9,\n skin: 1,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/picker.js\n **/","// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\n// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\n// MIT license\n\n(function() {\n var lastTime = 0;\n var vendors = ['ms', 'moz', 'webkit', 'o'];\n for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']\n || window[vendors[x]+'CancelRequestAnimationFrame'];\n }\n\n if (!window.requestAnimationFrame)\n window.requestAnimationFrame = function(callback, element) {\n var currTime = new Date().getTime();\n var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n timeToCall);\n lastTime = currTime + timeToCall;\n return id;\n };\n\n if (!window.cancelAnimationFrame)\n window.cancelAnimationFrame = function(id) {\n clearTimeout(id);\n };\n}());\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/raf-polyfill.js\n **/","import React from 'react'\nimport {Emoji, Skins} from '.'\n\nexport default class Preview extends React.Component {\n constructor(props) {\n super(props)\n this.state = { emoji: null }\n }\n\n render() {\n var { emoji } = this.state,\n { emojiProps, skinsProps } = this.props\n\n if (emoji) {\n return
\n
\n \n
\n\n
\n {emoji.name}
\n \n {emoji.short_names.map((short_name) =>\n :{short_name}:\n )}\n \n
\n
\n } else {\n return
\n
\n \n
\n\n
\n \n EmojiPicker\n \n
\n\n
\n \n
\n
\n }\n }\n}\n\nPreview.propTypes = {\n emojiProps: React.PropTypes.object.isRequired,\n skinsProps: React.PropTypes.object.isRequired,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/preview.js\n **/","import React from 'react'\nimport lunr from 'lunr'\n\nimport data from '../../data'\n\nexport default class Search extends React.Component {\n constructor(props) {\n super(props)\n this.buildIndex()\n }\n\n buildIndex() {\n this.index = lunr(function() {\n this.field('short_name', { boost: 2 })\n this.field('name')\n\n this.ref('short_name')\n })\n\n for (let emoji in data.emojis) {\n let emojiData = data.emojis[emoji],\n { short_name, name } = emojiData\n\n this.index.add({ short_name, name })\n }\n }\n\n handleChange() {\n var { input } = this.refs,\n value = input.value,\n results = null\n\n if (value.length) {\n results = this.index.search(value).map((result) =>\n result.ref\n )\n }\n\n this.props.onSearch(results)\n }\n\n render() {\n return \n }\n}\n\nSearch.propTypes = {\n onSearch: React.PropTypes.func,\n}\n\nSearch.defaultProps = {\n onSearch: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/search.js\n **/","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n * Copyright (C) 2016 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * Convenience function for instantiating a new lunr index and configuring it\n * with the default pipeline functions and the passed config function.\n *\n * When using this convenience function a new index will be created with the\n * following functions already in the pipeline:\n *\n * lunr.StopWordFilter - filters out any stop words before they enter the\n * index\n *\n * lunr.stemmer - stems the tokens before entering the index.\n *\n * Example:\n *\n * var idx = lunr(function () {\n * this.field('title', 10)\n * this.field('tags', 100)\n * this.field('body')\n * \n * this.ref('cid')\n * \n * this.pipeline.add(function () {\n * // some custom pipeline function\n * })\n * \n * })\n *\n * @param {Function} config A function that will be called with the new instance\n * of the lunr.Index as both its context and first parameter. It can be used to\n * customize the instance of new lunr.Index.\n * @namespace\n * @module\n * @returns {lunr.Index}\n *\n */\nvar lunr = function (config) {\n var idx = new lunr.Index\n\n idx.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n if (config) config.call(idx, idx)\n\n return idx\n}\n\nlunr.version = \"0.7.1\"\n/*!\n * lunr.utils\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf Utils\n */\nlunr.utils.warn = (function (global) {\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf Utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n/*!\n * lunr.EventEmitter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n *\n * @constructor\n */\nlunr.EventEmitter = function () {\n this.events = {}\n}\n\n/**\n * Binds a handler function to a specific event(s).\n *\n * Can bind a single function to many different events in one call.\n *\n * @param {String} [eventName] The name(s) of events to bind this function to.\n * @param {Function} fn The function to call when an event is fired.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.addListener = function () {\n var args = Array.prototype.slice.call(arguments),\n fn = args.pop(),\n names = args\n\n if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\n names.forEach(function (name) {\n if (!this.hasHandler(name)) this.events[name] = []\n this.events[name].push(fn)\n }, this)\n}\n\n/**\n * Removes a handler function from a specific event.\n *\n * @param {String} eventName The name of the event to remove this function from.\n * @param {Function} fn The function to remove from an event.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n if (!this.hasHandler(name)) return\n\n var fnIndex = this.events[name].indexOf(fn)\n this.events[name].splice(fnIndex, 1)\n\n if (!this.events[name].length) delete this.events[name]\n}\n\n/**\n * Calls all functions bound to the given event.\n *\n * Additional data can be passed to the event handler as arguments to `emit`\n * after the event name.\n *\n * @param {String} eventName The name of the event to emit.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.emit = function (name) {\n if (!this.hasHandler(name)) return\n\n var args = Array.prototype.slice.call(arguments, 1)\n\n this.events[name].forEach(function (fn) {\n fn.apply(undefined, args)\n })\n}\n\n/**\n * Checks whether a handler has ever been stored against an event.\n *\n * @param {String} eventName The name of the event to check.\n * @private\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.hasHandler = function (name) {\n return name in this.events\n}\n\n/*!\n * lunr.tokenizer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * @module\n * @param {String} obj The string to convert into tokens\n * @see lunr.tokenizer.seperator\n * @returns {Array}\n */\nlunr.tokenizer = function (obj) {\n if (!arguments.length || obj == null || obj == undefined) return []\n if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\n return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n}\n\n/**\n * The sperator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.seperator = /[\\s\\-]+/\n\n/**\n * Loads a previously serialised tokenizer.\n *\n * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n * If the serialised tokenizer has not been registered then an error will be thrown.\n *\n * @param {String} label The label of the serialised tokenizer.\n * @returns {Function}\n * @memberOf tokenizer\n */\nlunr.tokenizer.load = function (label) {\n var fn = this.registeredFunctions[label]\n\n if (!fn) {\n throw new Error('Cannot load un-registered function: ' + label)\n }\n\n return fn\n}\n\nlunr.tokenizer.label = 'default'\n\nlunr.tokenizer.registeredFunctions = {\n 'default': lunr.tokenizer\n}\n\n/**\n * Register a tokenizer function.\n *\n * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n *\n * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n *\n * @param {Function} fn The function to register.\n * @param {String} label The label to register this function with\n * @memberOf tokenizer\n */\nlunr.tokenizer.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n }\n\n fn.label = label\n this.registeredFunctions[label] = fn\n}\n/*!\n * lunr.Pipeline\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = {}\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {Function} fn The function to check for.\n * @param {String} label The label to register this function with\n * @memberOf Pipeline\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {Function} fn The function to check for.\n * @private\n * @memberOf Pipeline\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n * @memberOf Pipeline\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load un-registered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} functions Any number of functions to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {Function} fn The function to remove from the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var out = [],\n tokenLength = tokens.length,\n stackLength = this._stack.length\n\n for (var i = 0; i < tokenLength; i++) {\n var token = tokens[i]\n\n for (var j = 0; j < stackLength; j++) {\n token = this._stack[j](token, i, tokens)\n if (token === void 0 || token === '') break\n };\n\n if (token !== void 0 && token !== '') out.push(token)\n };\n\n return out\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Vectors implement vector related operations for\n * a series of elements.\n *\n * @constructor\n */\nlunr.Vector = function () {\n this._magnitude = null\n this.list = undefined\n this.length = 0\n}\n\n/**\n * lunr.Vector.Node is a simple struct for each node\n * in a lunr.Vector.\n *\n * @private\n * @param {Number} The index of the node in the vector.\n * @param {Object} The data at this node in the vector.\n * @param {lunr.Vector.Node} The node directly after this node in the vector.\n * @constructor\n * @memberOf Vector\n */\nlunr.Vector.Node = function (idx, val, next) {\n this.idx = idx\n this.val = val\n this.next = next\n}\n\n/**\n * Inserts a new value at a position in a vector.\n *\n * @param {Number} The index at which to insert a value.\n * @param {Object} The object to insert in the vector.\n * @memberOf Vector.\n */\nlunr.Vector.prototype.insert = function (idx, val) {\n this._magnitude = undefined;\n var list = this.list\n\n if (!list) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n if (idx < list.idx) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n var prev = list,\n next = list.next\n\n while (next != undefined) {\n if (idx < next.idx) {\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n }\n\n prev = next, next = next.next\n }\n\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n var node = this.list,\n sumOfSquares = 0,\n val\n\n while (node) {\n val = node.val\n sumOfSquares += val * val\n node = node.next\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var node = this.list,\n otherNode = otherVector.list,\n dotProduct = 0\n\n while (node && otherNode) {\n if (node.idx < otherNode.idx) {\n node = node.next\n } else if (node.idx > otherNode.idx) {\n otherNode = otherNode.next\n } else {\n dotProduct += node.val * otherNode.val\n node = node.next\n otherNode = otherNode.next\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the cosine similarity between this vector and another\n * vector.\n *\n * @param {lunr.Vector} otherVector The other vector to calculate the\n * similarity with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n}\n/*!\n * lunr.SortedSet\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n * order.\n *\n * @constructor\n */\nlunr.SortedSet = function () {\n this.length = 0\n this.elements = []\n}\n\n/**\n * Loads a previously serialised sorted set.\n *\n * @param {Array} serialisedData The serialised set to load.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.load = function (serialisedData) {\n var set = new this\n\n set.elements = serialisedData\n set.length = serialisedData.length\n\n return set\n}\n\n/**\n * Inserts new items into the set in the correct position to maintain the\n * order.\n *\n * @param {Object} The objects to add to this set.\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.add = function () {\n var i, element\n\n for (i = 0; i < arguments.length; i++) {\n element = arguments[i]\n if (~this.indexOf(element)) continue\n this.elements.splice(this.locationFor(element), 0, element)\n }\n\n this.length = this.elements.length\n}\n\n/**\n * Converts this sorted set into an array.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toArray = function () {\n return this.elements.slice()\n}\n\n/**\n * Creates a new array with the results of calling a provided function on every\n * element in this sorted set.\n *\n * Delegates to Array.prototype.map and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * for the function fn.\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.map = function (fn, ctx) {\n return this.elements.map(fn, ctx)\n}\n\n/**\n * Executes a provided function once per sorted set element.\n *\n * Delegates to Array.prototype.forEach and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * @memberOf SortedSet\n * for the function fn.\n */\nlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n return this.elements.forEach(fn, ctx)\n}\n\n/**\n * Returns the index at which a given element can be found in the\n * sorted set, or -1 if it is not present.\n *\n * @param {Object} elem The object to locate in the sorted set.\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.indexOf = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem === elem) return pivot\n\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem === elem) return pivot\n\n return -1\n}\n\n/**\n * Returns the position within the sorted set that an element should be\n * inserted at to maintain the current order of the set.\n *\n * This function assumes that the element to search for does not already exist\n * in the sorted set.\n *\n * @param {Object} elem The elem to find the position for in the set\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.locationFor = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem > elem) return pivot\n if (pivotElem < elem) return pivot + 1\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the intersection\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.intersect = function (otherSet) {\n var intersectSet = new lunr.SortedSet,\n i = 0, j = 0,\n a_len = this.length, b_len = otherSet.length,\n a = this.elements, b = otherSet.elements\n\n while (true) {\n if (i > a_len - 1 || j > b_len - 1) break\n\n if (a[i] === b[j]) {\n intersectSet.add(a[i])\n i++, j++\n continue\n }\n\n if (a[i] < b[j]) {\n i++\n continue\n }\n\n if (a[i] > b[j]) {\n j++\n continue\n }\n };\n\n return intersectSet\n}\n\n/**\n * Makes a copy of this set\n *\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.clone = function () {\n var clone = new lunr.SortedSet\n\n clone.elements = this.toArray()\n clone.length = clone.elements.length\n\n return clone\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the union\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to union with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.union = function (otherSet) {\n var longSet, shortSet, unionSet\n\n if (this.length >= otherSet.length) {\n longSet = this, shortSet = otherSet\n } else {\n longSet = otherSet, shortSet = this\n }\n\n unionSet = longSet.clone()\n\n for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n unionSet.add(shortSetElements[i])\n }\n\n return unionSet\n}\n\n/**\n * Returns a representation of the sorted set ready for serialisation.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toJSON = function () {\n return this.toArray()\n}\n/*!\n * lunr.Index\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Index is object that manages a search index. It contains the indexes\n * and stores all the tokens and document lookups. It also provides the main\n * user facing API for the library.\n *\n * @constructor\n */\nlunr.Index = function () {\n this._fields = []\n this._ref = 'id'\n this.pipeline = new lunr.Pipeline\n this.documentStore = new lunr.Store\n this.tokenStore = new lunr.TokenStore\n this.corpusTokens = new lunr.SortedSet\n this.eventEmitter = new lunr.EventEmitter\n this.tokenizerFn = lunr.tokenizer\n\n this._idfCache = {}\n\n this.on('add', 'remove', 'update', (function () {\n this._idfCache = {}\n }).bind(this))\n}\n\n/**\n * Bind a handler to events being emitted by the index.\n *\n * The handler can be bound to many events at the same time.\n *\n * @param {String} [eventName] The name(s) of events to bind the function to.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.on = function () {\n var args = Array.prototype.slice.call(arguments)\n return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n}\n\n/**\n * Removes a handler from an event being emitted by the index.\n *\n * @param {String} eventName The name of events to remove the function from.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.off = function (name, fn) {\n return this.eventEmitter.removeListener(name, fn)\n}\n\n/**\n * Loads a previously serialised index.\n *\n * Issues a warning if the index being imported was serialised\n * by a different version of lunr.\n *\n * @param {Object} serialisedData The serialised set to load.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.load = function (serialisedData) {\n if (serialisedData.version !== lunr.version) {\n lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n }\n\n var idx = new this\n\n idx._fields = serialisedData.fields\n idx._ref = serialisedData.ref\n\n idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\n return idx\n}\n\n/**\n * Adds a field to the list of fields that will be searchable within documents\n * in the index.\n *\n * An optional boost param can be passed to affect how much tokens in this field\n * rank in search results, by default the boost value is 1.\n *\n * Fields should be added before any documents are added to the index, fields\n * that are added after documents are added to the index will only apply to new\n * documents added to the index.\n *\n * @param {String} fieldName The name of the field within the document that\n * should be indexed\n * @param {Number} boost An optional boost that can be applied to terms in this\n * field.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.field = function (fieldName, opts) {\n var opts = opts || {},\n field = { name: fieldName, boost: opts.boost || 1 }\n\n this._fields.push(field)\n return this\n}\n\n/**\n * Sets the property used to uniquely identify documents added to the index,\n * by default this property is 'id'.\n *\n * This should only be changed before adding documents to the index, changing\n * the ref property without resetting the index can lead to unexpected results.\n *\n * The value of ref can be of any type but it _must_ be stably comparable and\n * orderable.\n *\n * @param {String} refName The property to use to uniquely identify the\n * documents in the index.\n * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.ref = function (refName) {\n this._ref = refName\n return this\n}\n\n/**\n * Sets the tokenizer used for this index.\n *\n * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n * should only be changed before adding documents to the index. Changing the tokenizer\n * without re-building the index can lead to unexpected results.\n *\n * @param {Function} fn The function to use as a tokenizer.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.tokenizer = function (fn) {\n var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n }\n\n this.tokenizerFn = fn\n return this\n}\n\n/**\n * Add a document to the index.\n *\n * This is the way new documents enter the index, this function will run the\n * fields from the document through the index's pipeline and then add it to\n * the index, it will then show up in search results.\n *\n * An 'add' event is emitted with the document that has been added and the index\n * the document has been added to. This event can be silenced by passing false\n * as the second argument to add.\n *\n * @param {Object} doc The document to add to the index.\n * @param {Boolean} emitEvent Whether or not to emit events, default true.\n * @memberOf Index\n */\nlunr.Index.prototype.add = function (doc, emitEvent) {\n var docTokens = {},\n allDocumentTokens = new lunr.SortedSet,\n docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n this._fields.forEach(function (field) {\n var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\n docTokens[field.name] = fieldTokens\n\n for (var i = 0; i < fieldTokens.length; i++) {\n var token = fieldTokens[i]\n allDocumentTokens.add(token)\n this.corpusTokens.add(token)\n }\n }, this)\n\n this.documentStore.set(docRef, allDocumentTokens)\n\n for (var i = 0; i < allDocumentTokens.length; i++) {\n var token = allDocumentTokens.elements[i]\n var tf = 0;\n\n for (var j = 0; j < this._fields.length; j++){\n var field = this._fields[j]\n var fieldTokens = docTokens[field.name]\n var fieldLength = fieldTokens.length\n\n if (!fieldLength) continue\n\n var tokenCount = 0\n for (var k = 0; k < fieldLength; k++){\n if (fieldTokens[k] === token){\n tokenCount++\n }\n }\n\n tf += (tokenCount / fieldLength * field.boost)\n }\n\n this.tokenStore.add(token, { ref: docRef, tf: tf })\n };\n\n if (emitEvent) this.eventEmitter.emit('add', doc, this)\n}\n\n/**\n * Removes a document from the index.\n *\n * To make sure documents no longer show up in search results they can be\n * removed from the index using this method.\n *\n * The document passed only needs to have the same ref property value as the\n * document that was added to the index, they could be completely different\n * objects.\n *\n * A 'remove' event is emitted with the document that has been removed and the index\n * the document has been removed from. This event can be silenced by passing false\n * as the second argument to remove.\n *\n * @param {Object} doc The document to remove from the index.\n * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n * @memberOf Index\n */\nlunr.Index.prototype.remove = function (doc, emitEvent) {\n var docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n if (!this.documentStore.has(docRef)) return\n\n var docTokens = this.documentStore.get(docRef)\n\n this.documentStore.remove(docRef)\n\n docTokens.forEach(function (token) {\n this.tokenStore.remove(token, docRef)\n }, this)\n\n if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n}\n\n/**\n * Updates a document in the index.\n *\n * When a document contained within the index gets updated, fields changed,\n * added or removed, to make sure it correctly matched against search queries,\n * it should be updated in the index.\n *\n * This method is just a wrapper around `remove` and `add`\n *\n * An 'update' event is emitted with the document that has been updated and the index.\n * This event can be silenced by passing false as the second argument to update. Only\n * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n * are silenced.\n *\n * @param {Object} doc The document to update in the index.\n * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n * @see Index.prototype.remove\n * @see Index.prototype.add\n * @memberOf Index\n */\nlunr.Index.prototype.update = function (doc, emitEvent) {\n var emitEvent = emitEvent === undefined ? true : emitEvent\n\n this.remove(doc, false)\n this.add(doc, false)\n\n if (emitEvent) this.eventEmitter.emit('update', doc, this)\n}\n\n/**\n * Calculates the inverse document frequency for a token within the index.\n *\n * @param {String} token The token to calculate the idf of.\n * @see Index.prototype.idf\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.idf = function (term) {\n var cacheKey = \"@\" + term\n if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\n var documentFrequency = this.tokenStore.count(term),\n idf = 1\n\n if (documentFrequency > 0) {\n idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n }\n\n return this._idfCache[cacheKey] = idf\n}\n\n/**\n * Searches the index using the passed query.\n *\n * Queries should be a string, multiple words are allowed and will lead to an\n * AND based query, e.g. `idx.search('foo bar')` will run a search for\n * documents containing both 'foo' and 'bar'.\n *\n * All query tokens are passed through the same pipeline that document tokens\n * are passed through, so any language processing involved will be run on every\n * query term.\n *\n * Each query term is expanded, so that the term 'he' might be expanded to\n * 'hello' and 'help' if those terms were already included in the index.\n *\n * Matching documents are returned as an array of objects, each object contains\n * the matching document ref, as set for this index, and the similarity score\n * for this document against the query.\n *\n * @param {String} query The query to search the index with.\n * @returns {Object}\n * @see Index.prototype.idf\n * @see Index.prototype.documentVector\n * @memberOf Index\n */\nlunr.Index.prototype.search = function (query) {\n var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n queryVector = new lunr.Vector,\n documentSets = [],\n fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\n var hasSomeToken = queryTokens.some(function (token) {\n return this.tokenStore.has(token)\n }, this)\n\n if (!hasSomeToken) return []\n\n queryTokens\n .forEach(function (token, i, tokens) {\n var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n self = this\n\n var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n var pos = self.corpusTokens.indexOf(key),\n idf = self.idf(key),\n similarityBoost = 1,\n set = new lunr.SortedSet\n\n // if the expanded key is not an exact match to the token then\n // penalise the score for this key by how different the key is\n // to the token.\n if (key !== token) {\n var diff = Math.max(3, key.length - token.length)\n similarityBoost = 1 / Math.log(diff)\n }\n\n // calculate the query tf-idf score for this token\n // applying an similarityBoost to ensure exact matches\n // these rank higher than expanded terms\n if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\n // add all the documents that have this key into a set\n // ensuring that the type of key is preserved\n var matchingDocuments = self.tokenStore.get(key),\n refs = Object.keys(matchingDocuments),\n refsLen = refs.length\n\n for (var i = 0; i < refsLen; i++) {\n set.add(matchingDocuments[refs[i]].ref)\n }\n\n return memo.union(set)\n }, new lunr.SortedSet)\n\n documentSets.push(set)\n }, this)\n\n var documentSet = documentSets.reduce(function (memo, set) {\n return memo.intersect(set)\n })\n\n return documentSet\n .map(function (ref) {\n return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n }, this)\n .sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Generates a vector containing all the tokens in the document matching the\n * passed documentRef.\n *\n * The vector contains the tf-idf score for each token contained in the\n * document with the passed documentRef. The vector will contain an element\n * for every token in the indexes corpus, if the document does not contain that\n * token the element will be 0.\n *\n * @param {Object} documentRef The ref to find the document with.\n * @returns {lunr.Vector}\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.documentVector = function (documentRef) {\n var documentTokens = this.documentStore.get(documentRef),\n documentTokensLength = documentTokens.length,\n documentVector = new lunr.Vector\n\n for (var i = 0; i < documentTokensLength; i++) {\n var token = documentTokens.elements[i],\n tf = this.tokenStore.get(token)[documentRef].tf,\n idf = this.idf(token)\n\n documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n };\n\n return documentVector\n}\n\n/**\n * Returns a representation of the index ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Index\n */\nlunr.Index.prototype.toJSON = function () {\n return {\n version: lunr.version,\n fields: this._fields,\n ref: this._ref,\n tokenizer: this.tokenizerFn.label,\n documentStore: this.documentStore.toJSON(),\n tokenStore: this.tokenStore.toJSON(),\n corpusTokens: this.corpusTokens.toJSON(),\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Applies a plugin to the current index.\n *\n * A plugin is a function that is called with the index as its context.\n * Plugins can be used to customise or extend the behaviour the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied to the index.\n *\n * The plugin function will be called with the index as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index as its context.\n *\n * Example:\n *\n * var myPlugin = function (idx, arg1, arg2) {\n * // `this` is the index to be extended\n * // apply any extensions etc here.\n * }\n *\n * var idx = lunr(function () {\n * this.use(myPlugin, 'arg1', 'arg2')\n * })\n *\n * @param {Function} plugin The plugin to apply.\n * @memberOf Index\n */\nlunr.Index.prototype.use = function (plugin) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n plugin.apply(this, args)\n}\n/*!\n * lunr.Store\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Store is a simple key-value store used for storing sets of tokens for\n * documents stored in index.\n *\n * @constructor\n * @module\n */\nlunr.Store = function () {\n this.store = {}\n this.length = 0\n}\n\n/**\n * Loads a previously serialised store\n *\n * @param {Object} serialisedData The serialised store to load.\n * @returns {lunr.Store}\n * @memberOf Store\n */\nlunr.Store.load = function (serialisedData) {\n var store = new this\n\n store.length = serialisedData.length\n store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n return memo\n }, {})\n\n return store\n}\n\n/**\n * Stores the given tokens in the store against the given id.\n *\n * @param {Object} id The key used to store the tokens against.\n * @param {Object} tokens The tokens to store against the key.\n * @memberOf Store\n */\nlunr.Store.prototype.set = function (id, tokens) {\n if (!this.has(id)) this.length++\n this.store[id] = tokens\n}\n\n/**\n * Retrieves the tokens from the store for a given key.\n *\n * @param {Object} id The key to lookup and retrieve from the store.\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.get = function (id) {\n return this.store[id]\n}\n\n/**\n * Checks whether the store contains a key.\n *\n * @param {Object} id The id to look up in the store.\n * @returns {Boolean}\n * @memberOf Store\n */\nlunr.Store.prototype.has = function (id) {\n return id in this.store\n}\n\n/**\n * Removes the value for a key in the store.\n *\n * @param {Object} id The id to remove from the store.\n * @memberOf Store\n */\nlunr.Store.prototype.remove = function (id) {\n if (!this.has(id)) return\n\n delete this.store[id]\n this.length--\n}\n\n/**\n * Returns a representation of the store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.toJSON = function () {\n return {\n store: this.store,\n length: this.length\n }\n}\n\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @module\n * @param {String} str The string to stem\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return porterStemmer;\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @module\n * @param {Array} token The token to pass through the filter\n * @returns {Function}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token] !== token) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the begining and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.TokenStore is used for efficient storing and lookup of the reverse\n * index of token to document ref.\n *\n * @constructor\n */\nlunr.TokenStore = function () {\n this.root = { docs: {} }\n this.length = 0\n}\n\n/**\n * Loads a previously serialised token store\n *\n * @param {Object} serialisedData The serialised token store to load.\n * @returns {lunr.TokenStore}\n * @memberOf TokenStore\n */\nlunr.TokenStore.load = function (serialisedData) {\n var store = new this\n\n store.root = serialisedData.root\n store.length = serialisedData.length\n\n return store\n}\n\n/**\n * Adds a new token doc pair to the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to store the doc under\n * @param {Object} doc The doc to store against the token\n * @param {Object} root An optional node at which to start looking for the\n * correct place to enter the doc, by default the root of this lunr.TokenStore\n * is used.\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.add = function (token, doc, root) {\n var root = root || this.root,\n key = token.charAt(0),\n rest = token.slice(1)\n\n if (!(key in root)) root[key] = {docs: {}}\n\n if (rest.length === 0) {\n root[key].docs[doc.ref] = doc\n this.length += 1\n return\n } else {\n return this.add(rest, doc, root[key])\n }\n}\n\n/**\n * Checks whether this key is contained within this lunr.TokenStore.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to check for\n * @param {Object} root An optional node at which to start\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.has = function (token) {\n if (!token) return false\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return false\n\n node = node[token.charAt(i)]\n }\n\n return true\n}\n\n/**\n * Retrieve a node from the token store for a given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the node for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @see TokenStore.prototype.get\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.getNode = function (token) {\n if (!token) return {}\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return {}\n\n node = node[token.charAt(i)]\n }\n\n return node\n}\n\n/**\n * Retrieve the documents for a node for the given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.get = function (token, root) {\n return this.getNode(token, root).docs || {}\n}\n\nlunr.TokenStore.prototype.count = function (token, root) {\n return Object.keys(this.get(token, root)).length\n}\n\n/**\n * Remove the document identified by ref from the token in the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {String} ref The ref of the document to remove from this token.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.remove = function (token, ref) {\n if (!token) return\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!(token.charAt(i) in node)) return\n node = node[token.charAt(i)]\n }\n\n delete node.docs[ref]\n}\n\n/**\n * Find all the possible suffixes of the passed token using tokens\n * currently in the store.\n *\n * @param {String} token The token to expand.\n * @returns {Array}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.expand = function (token, memo) {\n var root = this.getNode(token),\n docs = root.docs || {},\n memo = memo || []\n\n if (Object.keys(docs).length) memo.push(token)\n\n Object.keys(root)\n .forEach(function (key) {\n if (key === 'docs') return\n\n memo.concat(this.expand(token + key, memo))\n }, this)\n\n return memo\n}\n\n/**\n * Returns a representation of the token store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.toJSON = function () {\n return {\n root: this.root,\n length: this.length\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/lunr/lunr.js\n ** module id = 22\n ** module chunks = 0\n **/","import React from 'react'\n\nexport default class Skins extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n opened: false,\n }\n }\n\n handleClick(skin) {\n var { onChange } = this.props\n\n if (!this.state.opened) {\n this.setState({ opened: true })\n } else {\n onChange(skin)\n this.setState({ opened: false })\n }\n }\n\n render() {\n var { skin } = this.props,\n { opened } = this.state\n\n return
\n
\n {Array(6).fill().map((_, i) => {\n var skinTone = i + 1,\n selected = skinTone == skin\n\n return \n this.handleClick(skinTone)}\n className={`emoji-picker-skin emoji-picker-skin-tone-${skinTone}`}>\n \n \n })}\n
\n
\n }\n}\n\nSkins.propTypes = {\n onChange: React.PropTypes.func,\n skin: React.PropTypes.number.isRequired,\n}\n\nSkins.defaultProps = {\n onChange: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/skins.js\n **/"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///webpack/bootstrap 6fbd1408668c0a9699dc","webpack:///./src/index.js","webpack:///./src/components/index.js","webpack:///./src/components/anchors.js","webpack:///external \"react\"","webpack:///./~/svg-inline-react/dist/index.js","webpack:///./src/svgs/index.js","webpack:///./src/svgs/activity.svg","webpack:///./src/svgs/flags.svg","webpack:///./src/svgs/foods.svg","webpack:///./src/svgs/nature.svg","webpack:///./src/svgs/objects.svg","webpack:///./src/svgs/people.svg","webpack:///./src/svgs/places.svg","webpack:///./src/svgs/recent.svg","webpack:///./src/svgs/symbols.svg","webpack:///./src/components/category.js","webpack:///./src/utils/index.js","webpack:///./src/utils/store.js","webpack:///./src/utils/emoji-index.js","webpack:///./~/lunr/lunr.js","webpack:///./data/index.js","webpack:///./src/utils/frequently.js","webpack:///./src/components/emoji.js","webpack:///./src/components/picker.js","webpack:///./src/vendor/raf-polyfill.js","webpack:///./src/components/preview.js","webpack:///./src/components/search.js","webpack:///./src/components/skins.js"],"names":[],"mappings":"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;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,EAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,IAAI;AACf,aAAY,OAAO;AACnB;AACA;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA,wDAAuD,8CAA8C;;AAErG;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA,MAAK;AACL;AACA;AACA,IAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,YAAW,SAAS;AACpB;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,iBAAiB;AAClC;;AAEA,oBAAmB,iBAAiB;AACpC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,iBAAiB;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,YAAY;AACvB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,MAAK;AACL;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,YAAY;AACvB;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA,cAAa,sBAAsB;AACnC;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,eAAe;AAC1B,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,eAAe;AAC1B,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA,IAAG;AACH;AACA;;AAEA;;AAEA,wDAAuD,6BAA6B;AACpF;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA,IAAG;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,YAAW,OAAO;AAClB;AACA,cAAa;AACb;AACA;AACA;AACA,wBAAuB;AACvB,gBAAe;;AAEf;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA,YAAW,QAAQ;AACnB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,SAAS;AACpB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA,qBAAoB;AACpB;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA,oBAAmB,wBAAwB;AAC3C;AACA;AACA;AACA;AACA,IAAG;;AAEH;;AAEA,kBAAiB,8BAA8B;AAC/C;AACA;;AAEA,oBAAmB,yBAAyB;AAC5C;AACA;AACA;;AAEA;;AAEA;AACA,sBAAqB,iBAAiB;AACtC;AACA;AACA;AACA;;AAEA;AACA;;AAEA,iCAAgC,sBAAsB;AACtD;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;;AAEA;;AAEA;;AAEA;;AAEA;AACA;AACA,IAAG;;AAEH;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,QAAQ;AACnB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,6DAA4D,wBAAwB;;AAEpF;AACA;AACA,IAAG;;AAEH;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA,wBAAuB,aAAa;AACpC;AACA;;AAEA;AACA,QAAO;;AAEP;AACA,MAAK;;AAEL;AACA;AACA,IAAG;;AAEH;AACA;AACA,eAAc;AACd,MAAK;AACL;AACA;AACA,MAAK;AACL;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,0BAA0B;AAC3C;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAQ;AACR;AACA,YAAW,SAAS;AACpB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAG,IAAI;;AAEP;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;;AAEL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;;AAEL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA,+BAA8B;;AAE9B;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;;AAEA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,wBAAuB,UAAU;;AAEjC;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA,sBAAqB,0BAA0B;AAC/C,4BAA2B,2BAA2B;;AAEtD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,2BAA0B,cAAc;AACxC,gCAA+B,cAAc,sBAAsB;AACnE,gCAA+B,aAAa;AAC5C;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA;;AAEA;AACA,EAAC;;AAED;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,MAAM;AACjB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAG,IAAI;;AAEP;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,gBAAe,SAAS;AACxB;AACA;;AAEA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,oCAAmC;;AAEnC;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB;AACA;AACA;AACA;;AAEA;;AAEA,kBAAiB,kBAAkB;AACnC;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;;AAEA,kBAAiB,kBAAkB;AACnC;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA;;AAEA,kBAAiB,kBAAkB;AACnC;AACA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;AACA;AACA,YAAW,OAAO;AAClB,cAAa;AACb;AACA;AACA;AACA;AACA,6BAA4B;AAC5B;;AAEA;;AAEA;AACA;AACA;;AAEA;AACA,MAAK;;AAEL;AACA;;AAEA;AACA;AACA;AACA,cAAa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA;AACA;AACA;AACA,MAAK;AACL;AACA;AACA;AACA,IAAG;AACH;AACA;AACA;AACA;AACA;AACA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","file":"emoji-picker.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"react\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"react\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EmojiPicker\"] = factory(require(\"react\"));\n\telse\n\t\troot[\"EmojiPicker\"] = factory(root[\"react\"]);\n})(this, function(__WEBPACK_EXTERNAL_MODULE_3__) {\nreturn \n\n\n/** WEBPACK FOOTER **\n ** webpack/universalModuleDefinition\n **/"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap 6fbd1408668c0a9699dc\n **/","export {\n Picker,\n Emoji,\n} from './components'\n\nexport {\n emojiIndex,\n} from './utils'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/index.js\n **/","export {default as Anchors} from './anchors'\nexport {default as Category} from './category'\nexport {default as Emoji} from './emoji'\nexport {default as Picker} from './picker'\nexport {default as Preview} from './preview'\nexport {default as Search} from './search'\nexport {default as Skins} from './skins'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/index.js\n **/","import React from 'react'\nimport InlineSVG from 'svg-inline-react'\n\nimport * as SVGs from '../svgs'\n\nexport default class Anchors extends React.Component {\n constructor(props) {\n super(props)\n\n var defaultCategory = props.categories[0]\n if (defaultCategory.anchor) {\n defaultCategory = defaultCategory.anchor\n }\n\n this.state = {\n selected: defaultCategory.name\n }\n }\n\n render() {\n var { categories, onAnchorClick } = this.props,\n { selected } = this.state\n\n return
\n {categories.map((category, i) => {\n var { name, anchor } = category\n\n if (anchor) {\n return null\n }\n\n return (\n onAnchorClick(category, i)}\n className={`emoji-picker-anchor ${name == selected ? 'emoji-picker-anchor-selected' : ''}`}\n >\n \n \n \n )\n })}\n
\n }\n}\n\nAnchors.propTypes = {\n categories: React.PropTypes.array,\n onAnchorClick: React.PropTypes.func,\n}\n\nAnchors.defaultProps = {\n categories: [],\n onAnchorClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/anchors.js\n **/","module.exports = __WEBPACK_EXTERNAL_MODULE_3__;\n\n\n/*****************\n ** WEBPACK FOOTER\n ** external \"react\"\n ** module id = 3\n ** module chunks = 0\n **/","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nvar _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar DOMParser = typeof window !== 'undefined' && window.DOMParser;\nvar process = process || {};\nprocess.env = process.env || {};\nvar parserAvailable = typeof DOMParser !== 'undefined' && DOMParser.prototype != null && DOMParser.prototype.parseFromString != null;\n\nif (\"production\" !== process.env.NODE_ENV && !parserAvailable) {\n console.info(': `raw` prop works only when `window.DOMParser` exists.');\n}\n\nfunction isParsable(src) {\n // kinda naive but meh, ain't gonna use full-blown parser for this\n return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\nfunction switchSVGAttrToReactProp(propName) {\n switch (propName) {\n case 'class':\n return 'className';\n default:\n return propName;\n }\n}\n\nvar InlineSVG = (function (_React$Component) {\n _inherits(InlineSVG, _React$Component);\n\n _createClass(InlineSVG, null, [{\n key: 'defaultProps',\n value: {\n element: 'i',\n raw: false,\n src: ''\n },\n enumerable: true\n }, {\n key: 'propTypes',\n value: {\n src: _react2['default'].PropTypes.string.isRequired,\n element: _react2['default'].PropTypes.string,\n raw: _react2['default'].PropTypes.bool\n },\n enumerable: true\n }]);\n\n function InlineSVG(props) {\n _classCallCheck(this, InlineSVG);\n\n _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n this._extractSVGProps = this._extractSVGProps.bind(this);\n }\n\n // Serialize `Attr` objects in `NamedNodeMap`\n\n _createClass(InlineSVG, [{\n key: '_serializeAttrs',\n value: function _serializeAttrs(map) {\n var ret = {};\n var prop = undefined;\n for (var i = 0; i < map.length; i++) {\n prop = switchSVGAttrToReactProp(map[i].name);\n ret[prop] = map[i].value;\n }\n return ret;\n }\n\n // get element props\n }, {\n key: '_extractSVGProps',\n value: function _extractSVGProps(src) {\n var map = parseFromSVGString(src).documentElement.attributes;\n return map.length > 0 ? this._serializeAttrs(map) : null;\n }\n\n // get content inside element.\n }, {\n key: '_stripSVG',\n value: function _stripSVG(src) {\n return parseFromSVGString(src).documentElement.innerHTML;\n }\n }, {\n key: 'componentWillReceiveProps',\n value: function componentWillReceiveProps(_ref) {\n var children = _ref.children;\n\n if (\"production\" !== process.env.NODE_ENV && children != null) {\n console.info(': `children` prop will be ignored.');\n }\n }\n }, {\n key: 'render',\n value: function render() {\n var Element = undefined,\n __html = undefined,\n svgProps = undefined;\n var _props = this.props;\n var element = _props.element;\n var raw = _props.raw;\n var src = _props.src;\n\n if (raw === true && isParsable(src)) {\n Element = 'svg';\n svgProps = this._extractSVGProps(src);\n __html = this._stripSVG(src);\n }\n __html = __html || src;\n Element = Element || element;\n svgProps = svgProps || {};\n\n return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n dangerouslySetInnerHTML: { __html: __html } }));\n }\n }]);\n\n return InlineSVG;\n})(_react2['default'].Component);\n\nexports['default'] = InlineSVG;\nmodule.exports = exports['default'];\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/svg-inline-react/dist/index.js\n ** module id = 4\n ** module chunks = 0\n **/","export {default as Activity} from './activity.svg'\nexport {default as Flags} from './flags.svg'\nexport {default as Foods} from './foods.svg'\nexport {default as Nature} from './nature.svg'\nexport {default as Objects} from './objects.svg'\nexport {default as People} from './people.svg'\nexport {default as Places} from './places.svg'\nexport {default as Recent} from './recent.svg'\nexport {default as Symbols} from './symbols.svg'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/svgs/index.js\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/activity.svg\n ** module id = 6\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/flags.svg\n ** module id = 7\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/foods.svg\n ** module id = 8\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/nature.svg\n ** module id = 9\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/objects.svg\n ** module id = 10\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/people.svg\n ** module id = 11\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/places.svg\n ** module id = 12\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/recent.svg\n ** module id = 13\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/symbols.svg\n ** module id = 14\n ** module chunks = 0\n **/","import React from 'react'\n\nimport {frequently} from '../utils'\nimport {Emoji} from '.'\n\nconst LABELS = {\n 'Search': 'Search Results',\n 'Recent': 'Frequently Used',\n 'People': 'Smileys & People',\n 'Nature': 'Animals & Nature',\n 'Foods': 'Food & Drink',\n 'Activity': 'Activity',\n 'Places': 'Travel & Places',\n 'Objects': 'Objects',\n 'Symbols': 'Symbols',\n 'Flags': 'Flags',\n}\n\nexport default class Category extends React.Component {\n componentDidMount() {\n this.container = this.refs.container\n this.label = this.refs.label\n this.parent = this.container.parentNode\n\n this.margin = 0\n this.minMargin = 0\n\n this.memoizeSize()\n }\n\n shouldComponentUpdate(nextProps, nextState) {\n var { name, perLine, emojis, emojiProps } = this.props,\n { skin, size, sheetURL } = emojiProps,\n { perLine: nextPerLine, emojis: nextEmojis, emojiProps: nextEmojiProps } = nextProps,\n { skin: nextSkin, size: nextSize, sheetURL: nextSheetURL } = nextEmojiProps,\n shouldUpdate = false\n\n if (name == 'Recent' && perLine != nextPerLine) {\n shouldUpdate = true\n }\n\n if (name == 'Search') {\n shouldUpdate = !(emojis == nextEmojis)\n }\n\n if (skin != nextSkin || size != nextSize || sheetURL != nextSheetURL) {\n shouldUpdate = true\n }\n\n return shouldUpdate\n }\n\n memoizeSize() {\n var { top, height } = this.container.getBoundingClientRect()\n var { top: parentTop } = this.parent.getBoundingClientRect()\n var { height: labelHeight } = this.label.getBoundingClientRect()\n\n this.top = top - parentTop + this.parent.scrollTop\n\n if (height == 0) {\n this.maxMargin = 0\n } else {\n this.maxMargin = height - labelHeight\n }\n }\n\n handleScroll(scrollTop) {\n var margin = scrollTop - this.top\n margin = margin < this.minMargin ? this.minMargin : margin\n margin = margin > this.maxMargin ? this.maxMargin : margin\n\n if (margin == this.margin) return\n var { name } = this.props\n\n if (!this.props.hasStickyPosition) {\n this.label.style.top = `${margin}px`\n }\n\n this.margin = margin\n return true\n }\n\n getEmojis() {\n var { name, emojis, perLine } = this.props\n\n if (name == 'Recent') {\n let frequentlyUsed = frequently.get(perLine * 4)\n\n if (frequentlyUsed.length) {\n emojis = frequentlyUsed\n }\n }\n\n if (emojis) {\n emojis = emojis.slice(0)\n }\n\n return emojis\n }\n\n updateDisplay(display) {\n var emojis = this.getEmojis()\n\n if (!display && !emojis) {\n return\n }\n\n this.container.style.display = display\n }\n\n render() {\n var { name, hasStickyPosition, emojiProps } = this.props,\n emojis = this.getEmojis(),\n labelStyles = {},\n labelSpanStyles = {},\n containerStyles = {}\n\n if (!emojis) {\n containerStyles = {\n display: 'none',\n }\n }\n\n if (!hasStickyPosition) {\n labelStyles = {\n height: 28,\n }\n\n labelSpanStyles = {\n position: 'absolute',\n }\n }\n\n return
\n
\n {LABELS[name]}\n
\n\n {emojis && emojis.map((emoji) =>\n \n )}\n\n {emojis && !emojis.length &&\n
\n \n\n \n No emoji found\n \n
\n }\n
\n }\n}\n\nCategory.propTypes = {\n emojis: React.PropTypes.array,\n hasStickyPosition: React.PropTypes.bool,\n name: React.PropTypes.string.isRequired,\n perLine: React.PropTypes.number.isRequired,\n emojiProps: React.PropTypes.object.isRequired,\n}\n\nCategory.defaultProps = {\n emojis: [],\n hasStickyPosition: true,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/category.js\n **/","export {default as store} from './store'\nexport {default as emojiIndex} from './emoji-index'\nexport {default as frequently} from './frequently'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/index.js\n **/","const NAMESPACE = 'emoji-picker'\n\nfunction update(state) {\n for (let key in state) {\n let value = state[key]\n set(key, value)\n }\n}\n\nfunction set(key, value) {\n if (!('localStorage' in window)) return\n window.localStorage[`${NAMESPACE}.${key}`] = JSON.stringify(value)\n}\n\nfunction get(key) {\n if (!('localStorage' in window)) return\n\n var value = window.localStorage[`${NAMESPACE}.${key}`]\n\n if (value) {\n return JSON.parse(value)\n }\n}\n\nexport default { update, set, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/store.js\n **/","import lunr from 'lunr'\nimport data from '../../data'\n\nvar index = lunr(function() {\n this.pipeline.reset()\n\n this.field('short_name', { boost: 2 })\n this.field('emoticons')\n this.field('name')\n\n this.ref('id')\n})\n\nfor (let emoji in data.emojis) {\n let emojiData = data.emojis[emoji],\n { short_name, name, emoticons } = emojiData\n\n index.add({\n id: short_name,\n emoticons: emoticons,\n short_name: tokenize(short_name),\n name: tokenize(name),\n })\n}\n\nfunction search(value, maxResults = 75) {\n var results = null\n\n if (value.length) {\n results = index.search(tokenize(value)).map((result) =>\n result.ref\n )\n\n results = results.slice(0, maxResults)\n }\n\n return results\n}\n\nfunction tokenize (string) {\n if (['-', '-1', '+', '+1'].indexOf(string) == 0) {\n return string.split('')\n }\n\n if (/(:|;|=)-/.test(string)) {\n return [string]\n }\n\n return string.split(/[-|_|\\s]+/)\n}\n\nexport default { search }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/emoji-index.js\n **/","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n * Copyright (C) 2016 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * Convenience function for instantiating a new lunr index and configuring it\n * with the default pipeline functions and the passed config function.\n *\n * When using this convenience function a new index will be created with the\n * following functions already in the pipeline:\n *\n * lunr.StopWordFilter - filters out any stop words before they enter the\n * index\n *\n * lunr.stemmer - stems the tokens before entering the index.\n *\n * Example:\n *\n * var idx = lunr(function () {\n * this.field('title', 10)\n * this.field('tags', 100)\n * this.field('body')\n * \n * this.ref('cid')\n * \n * this.pipeline.add(function () {\n * // some custom pipeline function\n * })\n * \n * })\n *\n * @param {Function} config A function that will be called with the new instance\n * of the lunr.Index as both its context and first parameter. It can be used to\n * customize the instance of new lunr.Index.\n * @namespace\n * @module\n * @returns {lunr.Index}\n *\n */\nvar lunr = function (config) {\n var idx = new lunr.Index\n\n idx.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n if (config) config.call(idx, idx)\n\n return idx\n}\n\nlunr.version = \"0.7.1\"\n/*!\n * lunr.utils\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf Utils\n */\nlunr.utils.warn = (function (global) {\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf Utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n/*!\n * lunr.EventEmitter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n *\n * @constructor\n */\nlunr.EventEmitter = function () {\n this.events = {}\n}\n\n/**\n * Binds a handler function to a specific event(s).\n *\n * Can bind a single function to many different events in one call.\n *\n * @param {String} [eventName] The name(s) of events to bind this function to.\n * @param {Function} fn The function to call when an event is fired.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.addListener = function () {\n var args = Array.prototype.slice.call(arguments),\n fn = args.pop(),\n names = args\n\n if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\n names.forEach(function (name) {\n if (!this.hasHandler(name)) this.events[name] = []\n this.events[name].push(fn)\n }, this)\n}\n\n/**\n * Removes a handler function from a specific event.\n *\n * @param {String} eventName The name of the event to remove this function from.\n * @param {Function} fn The function to remove from an event.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n if (!this.hasHandler(name)) return\n\n var fnIndex = this.events[name].indexOf(fn)\n this.events[name].splice(fnIndex, 1)\n\n if (!this.events[name].length) delete this.events[name]\n}\n\n/**\n * Calls all functions bound to the given event.\n *\n * Additional data can be passed to the event handler as arguments to `emit`\n * after the event name.\n *\n * @param {String} eventName The name of the event to emit.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.emit = function (name) {\n if (!this.hasHandler(name)) return\n\n var args = Array.prototype.slice.call(arguments, 1)\n\n this.events[name].forEach(function (fn) {\n fn.apply(undefined, args)\n })\n}\n\n/**\n * Checks whether a handler has ever been stored against an event.\n *\n * @param {String} eventName The name of the event to check.\n * @private\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.hasHandler = function (name) {\n return name in this.events\n}\n\n/*!\n * lunr.tokenizer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * @module\n * @param {String} obj The string to convert into tokens\n * @see lunr.tokenizer.seperator\n * @returns {Array}\n */\nlunr.tokenizer = function (obj) {\n if (!arguments.length || obj == null || obj == undefined) return []\n if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\n return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n}\n\n/**\n * The sperator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.seperator = /[\\s\\-]+/\n\n/**\n * Loads a previously serialised tokenizer.\n *\n * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n * If the serialised tokenizer has not been registered then an error will be thrown.\n *\n * @param {String} label The label of the serialised tokenizer.\n * @returns {Function}\n * @memberOf tokenizer\n */\nlunr.tokenizer.load = function (label) {\n var fn = this.registeredFunctions[label]\n\n if (!fn) {\n throw new Error('Cannot load un-registered function: ' + label)\n }\n\n return fn\n}\n\nlunr.tokenizer.label = 'default'\n\nlunr.tokenizer.registeredFunctions = {\n 'default': lunr.tokenizer\n}\n\n/**\n * Register a tokenizer function.\n *\n * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n *\n * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n *\n * @param {Function} fn The function to register.\n * @param {String} label The label to register this function with\n * @memberOf tokenizer\n */\nlunr.tokenizer.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n }\n\n fn.label = label\n this.registeredFunctions[label] = fn\n}\n/*!\n * lunr.Pipeline\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = {}\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {Function} fn The function to check for.\n * @param {String} label The label to register this function with\n * @memberOf Pipeline\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {Function} fn The function to check for.\n * @private\n * @memberOf Pipeline\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n * @memberOf Pipeline\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load un-registered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} functions Any number of functions to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {Function} fn The function to remove from the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var out = [],\n tokenLength = tokens.length,\n stackLength = this._stack.length\n\n for (var i = 0; i < tokenLength; i++) {\n var token = tokens[i]\n\n for (var j = 0; j < stackLength; j++) {\n token = this._stack[j](token, i, tokens)\n if (token === void 0 || token === '') break\n };\n\n if (token !== void 0 && token !== '') out.push(token)\n };\n\n return out\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Vectors implement vector related operations for\n * a series of elements.\n *\n * @constructor\n */\nlunr.Vector = function () {\n this._magnitude = null\n this.list = undefined\n this.length = 0\n}\n\n/**\n * lunr.Vector.Node is a simple struct for each node\n * in a lunr.Vector.\n *\n * @private\n * @param {Number} The index of the node in the vector.\n * @param {Object} The data at this node in the vector.\n * @param {lunr.Vector.Node} The node directly after this node in the vector.\n * @constructor\n * @memberOf Vector\n */\nlunr.Vector.Node = function (idx, val, next) {\n this.idx = idx\n this.val = val\n this.next = next\n}\n\n/**\n * Inserts a new value at a position in a vector.\n *\n * @param {Number} The index at which to insert a value.\n * @param {Object} The object to insert in the vector.\n * @memberOf Vector.\n */\nlunr.Vector.prototype.insert = function (idx, val) {\n this._magnitude = undefined;\n var list = this.list\n\n if (!list) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n if (idx < list.idx) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n var prev = list,\n next = list.next\n\n while (next != undefined) {\n if (idx < next.idx) {\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n }\n\n prev = next, next = next.next\n }\n\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n var node = this.list,\n sumOfSquares = 0,\n val\n\n while (node) {\n val = node.val\n sumOfSquares += val * val\n node = node.next\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var node = this.list,\n otherNode = otherVector.list,\n dotProduct = 0\n\n while (node && otherNode) {\n if (node.idx < otherNode.idx) {\n node = node.next\n } else if (node.idx > otherNode.idx) {\n otherNode = otherNode.next\n } else {\n dotProduct += node.val * otherNode.val\n node = node.next\n otherNode = otherNode.next\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the cosine similarity between this vector and another\n * vector.\n *\n * @param {lunr.Vector} otherVector The other vector to calculate the\n * similarity with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n}\n/*!\n * lunr.SortedSet\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n * order.\n *\n * @constructor\n */\nlunr.SortedSet = function () {\n this.length = 0\n this.elements = []\n}\n\n/**\n * Loads a previously serialised sorted set.\n *\n * @param {Array} serialisedData The serialised set to load.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.load = function (serialisedData) {\n var set = new this\n\n set.elements = serialisedData\n set.length = serialisedData.length\n\n return set\n}\n\n/**\n * Inserts new items into the set in the correct position to maintain the\n * order.\n *\n * @param {Object} The objects to add to this set.\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.add = function () {\n var i, element\n\n for (i = 0; i < arguments.length; i++) {\n element = arguments[i]\n if (~this.indexOf(element)) continue\n this.elements.splice(this.locationFor(element), 0, element)\n }\n\n this.length = this.elements.length\n}\n\n/**\n * Converts this sorted set into an array.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toArray = function () {\n return this.elements.slice()\n}\n\n/**\n * Creates a new array with the results of calling a provided function on every\n * element in this sorted set.\n *\n * Delegates to Array.prototype.map and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * for the function fn.\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.map = function (fn, ctx) {\n return this.elements.map(fn, ctx)\n}\n\n/**\n * Executes a provided function once per sorted set element.\n *\n * Delegates to Array.prototype.forEach and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * @memberOf SortedSet\n * for the function fn.\n */\nlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n return this.elements.forEach(fn, ctx)\n}\n\n/**\n * Returns the index at which a given element can be found in the\n * sorted set, or -1 if it is not present.\n *\n * @param {Object} elem The object to locate in the sorted set.\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.indexOf = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem === elem) return pivot\n\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem === elem) return pivot\n\n return -1\n}\n\n/**\n * Returns the position within the sorted set that an element should be\n * inserted at to maintain the current order of the set.\n *\n * This function assumes that the element to search for does not already exist\n * in the sorted set.\n *\n * @param {Object} elem The elem to find the position for in the set\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.locationFor = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem > elem) return pivot\n if (pivotElem < elem) return pivot + 1\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the intersection\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.intersect = function (otherSet) {\n var intersectSet = new lunr.SortedSet,\n i = 0, j = 0,\n a_len = this.length, b_len = otherSet.length,\n a = this.elements, b = otherSet.elements\n\n while (true) {\n if (i > a_len - 1 || j > b_len - 1) break\n\n if (a[i] === b[j]) {\n intersectSet.add(a[i])\n i++, j++\n continue\n }\n\n if (a[i] < b[j]) {\n i++\n continue\n }\n\n if (a[i] > b[j]) {\n j++\n continue\n }\n };\n\n return intersectSet\n}\n\n/**\n * Makes a copy of this set\n *\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.clone = function () {\n var clone = new lunr.SortedSet\n\n clone.elements = this.toArray()\n clone.length = clone.elements.length\n\n return clone\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the union\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to union with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.union = function (otherSet) {\n var longSet, shortSet, unionSet\n\n if (this.length >= otherSet.length) {\n longSet = this, shortSet = otherSet\n } else {\n longSet = otherSet, shortSet = this\n }\n\n unionSet = longSet.clone()\n\n for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n unionSet.add(shortSetElements[i])\n }\n\n return unionSet\n}\n\n/**\n * Returns a representation of the sorted set ready for serialisation.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toJSON = function () {\n return this.toArray()\n}\n/*!\n * lunr.Index\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Index is object that manages a search index. It contains the indexes\n * and stores all the tokens and document lookups. It also provides the main\n * user facing API for the library.\n *\n * @constructor\n */\nlunr.Index = function () {\n this._fields = []\n this._ref = 'id'\n this.pipeline = new lunr.Pipeline\n this.documentStore = new lunr.Store\n this.tokenStore = new lunr.TokenStore\n this.corpusTokens = new lunr.SortedSet\n this.eventEmitter = new lunr.EventEmitter\n this.tokenizerFn = lunr.tokenizer\n\n this._idfCache = {}\n\n this.on('add', 'remove', 'update', (function () {\n this._idfCache = {}\n }).bind(this))\n}\n\n/**\n * Bind a handler to events being emitted by the index.\n *\n * The handler can be bound to many events at the same time.\n *\n * @param {String} [eventName] The name(s) of events to bind the function to.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.on = function () {\n var args = Array.prototype.slice.call(arguments)\n return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n}\n\n/**\n * Removes a handler from an event being emitted by the index.\n *\n * @param {String} eventName The name of events to remove the function from.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.off = function (name, fn) {\n return this.eventEmitter.removeListener(name, fn)\n}\n\n/**\n * Loads a previously serialised index.\n *\n * Issues a warning if the index being imported was serialised\n * by a different version of lunr.\n *\n * @param {Object} serialisedData The serialised set to load.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.load = function (serialisedData) {\n if (serialisedData.version !== lunr.version) {\n lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n }\n\n var idx = new this\n\n idx._fields = serialisedData.fields\n idx._ref = serialisedData.ref\n\n idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\n return idx\n}\n\n/**\n * Adds a field to the list of fields that will be searchable within documents\n * in the index.\n *\n * An optional boost param can be passed to affect how much tokens in this field\n * rank in search results, by default the boost value is 1.\n *\n * Fields should be added before any documents are added to the index, fields\n * that are added after documents are added to the index will only apply to new\n * documents added to the index.\n *\n * @param {String} fieldName The name of the field within the document that\n * should be indexed\n * @param {Number} boost An optional boost that can be applied to terms in this\n * field.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.field = function (fieldName, opts) {\n var opts = opts || {},\n field = { name: fieldName, boost: opts.boost || 1 }\n\n this._fields.push(field)\n return this\n}\n\n/**\n * Sets the property used to uniquely identify documents added to the index,\n * by default this property is 'id'.\n *\n * This should only be changed before adding documents to the index, changing\n * the ref property without resetting the index can lead to unexpected results.\n *\n * The value of ref can be of any type but it _must_ be stably comparable and\n * orderable.\n *\n * @param {String} refName The property to use to uniquely identify the\n * documents in the index.\n * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.ref = function (refName) {\n this._ref = refName\n return this\n}\n\n/**\n * Sets the tokenizer used for this index.\n *\n * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n * should only be changed before adding documents to the index. Changing the tokenizer\n * without re-building the index can lead to unexpected results.\n *\n * @param {Function} fn The function to use as a tokenizer.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.tokenizer = function (fn) {\n var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n }\n\n this.tokenizerFn = fn\n return this\n}\n\n/**\n * Add a document to the index.\n *\n * This is the way new documents enter the index, this function will run the\n * fields from the document through the index's pipeline and then add it to\n * the index, it will then show up in search results.\n *\n * An 'add' event is emitted with the document that has been added and the index\n * the document has been added to. This event can be silenced by passing false\n * as the second argument to add.\n *\n * @param {Object} doc The document to add to the index.\n * @param {Boolean} emitEvent Whether or not to emit events, default true.\n * @memberOf Index\n */\nlunr.Index.prototype.add = function (doc, emitEvent) {\n var docTokens = {},\n allDocumentTokens = new lunr.SortedSet,\n docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n this._fields.forEach(function (field) {\n var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\n docTokens[field.name] = fieldTokens\n\n for (var i = 0; i < fieldTokens.length; i++) {\n var token = fieldTokens[i]\n allDocumentTokens.add(token)\n this.corpusTokens.add(token)\n }\n }, this)\n\n this.documentStore.set(docRef, allDocumentTokens)\n\n for (var i = 0; i < allDocumentTokens.length; i++) {\n var token = allDocumentTokens.elements[i]\n var tf = 0;\n\n for (var j = 0; j < this._fields.length; j++){\n var field = this._fields[j]\n var fieldTokens = docTokens[field.name]\n var fieldLength = fieldTokens.length\n\n if (!fieldLength) continue\n\n var tokenCount = 0\n for (var k = 0; k < fieldLength; k++){\n if (fieldTokens[k] === token){\n tokenCount++\n }\n }\n\n tf += (tokenCount / fieldLength * field.boost)\n }\n\n this.tokenStore.add(token, { ref: docRef, tf: tf })\n };\n\n if (emitEvent) this.eventEmitter.emit('add', doc, this)\n}\n\n/**\n * Removes a document from the index.\n *\n * To make sure documents no longer show up in search results they can be\n * removed from the index using this method.\n *\n * The document passed only needs to have the same ref property value as the\n * document that was added to the index, they could be completely different\n * objects.\n *\n * A 'remove' event is emitted with the document that has been removed and the index\n * the document has been removed from. This event can be silenced by passing false\n * as the second argument to remove.\n *\n * @param {Object} doc The document to remove from the index.\n * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n * @memberOf Index\n */\nlunr.Index.prototype.remove = function (doc, emitEvent) {\n var docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n if (!this.documentStore.has(docRef)) return\n\n var docTokens = this.documentStore.get(docRef)\n\n this.documentStore.remove(docRef)\n\n docTokens.forEach(function (token) {\n this.tokenStore.remove(token, docRef)\n }, this)\n\n if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n}\n\n/**\n * Updates a document in the index.\n *\n * When a document contained within the index gets updated, fields changed,\n * added or removed, to make sure it correctly matched against search queries,\n * it should be updated in the index.\n *\n * This method is just a wrapper around `remove` and `add`\n *\n * An 'update' event is emitted with the document that has been updated and the index.\n * This event can be silenced by passing false as the second argument to update. Only\n * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n * are silenced.\n *\n * @param {Object} doc The document to update in the index.\n * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n * @see Index.prototype.remove\n * @see Index.prototype.add\n * @memberOf Index\n */\nlunr.Index.prototype.update = function (doc, emitEvent) {\n var emitEvent = emitEvent === undefined ? true : emitEvent\n\n this.remove(doc, false)\n this.add(doc, false)\n\n if (emitEvent) this.eventEmitter.emit('update', doc, this)\n}\n\n/**\n * Calculates the inverse document frequency for a token within the index.\n *\n * @param {String} token The token to calculate the idf of.\n * @see Index.prototype.idf\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.idf = function (term) {\n var cacheKey = \"@\" + term\n if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\n var documentFrequency = this.tokenStore.count(term),\n idf = 1\n\n if (documentFrequency > 0) {\n idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n }\n\n return this._idfCache[cacheKey] = idf\n}\n\n/**\n * Searches the index using the passed query.\n *\n * Queries should be a string, multiple words are allowed and will lead to an\n * AND based query, e.g. `idx.search('foo bar')` will run a search for\n * documents containing both 'foo' and 'bar'.\n *\n * All query tokens are passed through the same pipeline that document tokens\n * are passed through, so any language processing involved will be run on every\n * query term.\n *\n * Each query term is expanded, so that the term 'he' might be expanded to\n * 'hello' and 'help' if those terms were already included in the index.\n *\n * Matching documents are returned as an array of objects, each object contains\n * the matching document ref, as set for this index, and the similarity score\n * for this document against the query.\n *\n * @param {String} query The query to search the index with.\n * @returns {Object}\n * @see Index.prototype.idf\n * @see Index.prototype.documentVector\n * @memberOf Index\n */\nlunr.Index.prototype.search = function (query) {\n var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n queryVector = new lunr.Vector,\n documentSets = [],\n fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\n var hasSomeToken = queryTokens.some(function (token) {\n return this.tokenStore.has(token)\n }, this)\n\n if (!hasSomeToken) return []\n\n queryTokens\n .forEach(function (token, i, tokens) {\n var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n self = this\n\n var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n var pos = self.corpusTokens.indexOf(key),\n idf = self.idf(key),\n similarityBoost = 1,\n set = new lunr.SortedSet\n\n // if the expanded key is not an exact match to the token then\n // penalise the score for this key by how different the key is\n // to the token.\n if (key !== token) {\n var diff = Math.max(3, key.length - token.length)\n similarityBoost = 1 / Math.log(diff)\n }\n\n // calculate the query tf-idf score for this token\n // applying an similarityBoost to ensure exact matches\n // these rank higher than expanded terms\n if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\n // add all the documents that have this key into a set\n // ensuring that the type of key is preserved\n var matchingDocuments = self.tokenStore.get(key),\n refs = Object.keys(matchingDocuments),\n refsLen = refs.length\n\n for (var i = 0; i < refsLen; i++) {\n set.add(matchingDocuments[refs[i]].ref)\n }\n\n return memo.union(set)\n }, new lunr.SortedSet)\n\n documentSets.push(set)\n }, this)\n\n var documentSet = documentSets.reduce(function (memo, set) {\n return memo.intersect(set)\n })\n\n return documentSet\n .map(function (ref) {\n return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n }, this)\n .sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Generates a vector containing all the tokens in the document matching the\n * passed documentRef.\n *\n * The vector contains the tf-idf score for each token contained in the\n * document with the passed documentRef. The vector will contain an element\n * for every token in the indexes corpus, if the document does not contain that\n * token the element will be 0.\n *\n * @param {Object} documentRef The ref to find the document with.\n * @returns {lunr.Vector}\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.documentVector = function (documentRef) {\n var documentTokens = this.documentStore.get(documentRef),\n documentTokensLength = documentTokens.length,\n documentVector = new lunr.Vector\n\n for (var i = 0; i < documentTokensLength; i++) {\n var token = documentTokens.elements[i],\n tf = this.tokenStore.get(token)[documentRef].tf,\n idf = this.idf(token)\n\n documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n };\n\n return documentVector\n}\n\n/**\n * Returns a representation of the index ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Index\n */\nlunr.Index.prototype.toJSON = function () {\n return {\n version: lunr.version,\n fields: this._fields,\n ref: this._ref,\n tokenizer: this.tokenizerFn.label,\n documentStore: this.documentStore.toJSON(),\n tokenStore: this.tokenStore.toJSON(),\n corpusTokens: this.corpusTokens.toJSON(),\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Applies a plugin to the current index.\n *\n * A plugin is a function that is called with the index as its context.\n * Plugins can be used to customise or extend the behaviour the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied to the index.\n *\n * The plugin function will be called with the index as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index as its context.\n *\n * Example:\n *\n * var myPlugin = function (idx, arg1, arg2) {\n * // `this` is the index to be extended\n * // apply any extensions etc here.\n * }\n *\n * var idx = lunr(function () {\n * this.use(myPlugin, 'arg1', 'arg2')\n * })\n *\n * @param {Function} plugin The plugin to apply.\n * @memberOf Index\n */\nlunr.Index.prototype.use = function (plugin) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n plugin.apply(this, args)\n}\n/*!\n * lunr.Store\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Store is a simple key-value store used for storing sets of tokens for\n * documents stored in index.\n *\n * @constructor\n * @module\n */\nlunr.Store = function () {\n this.store = {}\n this.length = 0\n}\n\n/**\n * Loads a previously serialised store\n *\n * @param {Object} serialisedData The serialised store to load.\n * @returns {lunr.Store}\n * @memberOf Store\n */\nlunr.Store.load = function (serialisedData) {\n var store = new this\n\n store.length = serialisedData.length\n store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n return memo\n }, {})\n\n return store\n}\n\n/**\n * Stores the given tokens in the store against the given id.\n *\n * @param {Object} id The key used to store the tokens against.\n * @param {Object} tokens The tokens to store against the key.\n * @memberOf Store\n */\nlunr.Store.prototype.set = function (id, tokens) {\n if (!this.has(id)) this.length++\n this.store[id] = tokens\n}\n\n/**\n * Retrieves the tokens from the store for a given key.\n *\n * @param {Object} id The key to lookup and retrieve from the store.\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.get = function (id) {\n return this.store[id]\n}\n\n/**\n * Checks whether the store contains a key.\n *\n * @param {Object} id The id to look up in the store.\n * @returns {Boolean}\n * @memberOf Store\n */\nlunr.Store.prototype.has = function (id) {\n return id in this.store\n}\n\n/**\n * Removes the value for a key in the store.\n *\n * @param {Object} id The id to remove from the store.\n * @memberOf Store\n */\nlunr.Store.prototype.remove = function (id) {\n if (!this.has(id)) return\n\n delete this.store[id]\n this.length--\n}\n\n/**\n * Returns a representation of the store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.toJSON = function () {\n return {\n store: this.store,\n length: this.length\n }\n}\n\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @module\n * @param {String} str The string to stem\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return porterStemmer;\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @module\n * @param {Array} token The token to pass through the filter\n * @returns {Function}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token] !== token) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the begining and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.TokenStore is used for efficient storing and lookup of the reverse\n * index of token to document ref.\n *\n * @constructor\n */\nlunr.TokenStore = function () {\n this.root = { docs: {} }\n this.length = 0\n}\n\n/**\n * Loads a previously serialised token store\n *\n * @param {Object} serialisedData The serialised token store to load.\n * @returns {lunr.TokenStore}\n * @memberOf TokenStore\n */\nlunr.TokenStore.load = function (serialisedData) {\n var store = new this\n\n store.root = serialisedData.root\n store.length = serialisedData.length\n\n return store\n}\n\n/**\n * Adds a new token doc pair to the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to store the doc under\n * @param {Object} doc The doc to store against the token\n * @param {Object} root An optional node at which to start looking for the\n * correct place to enter the doc, by default the root of this lunr.TokenStore\n * is used.\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.add = function (token, doc, root) {\n var root = root || this.root,\n key = token.charAt(0),\n rest = token.slice(1)\n\n if (!(key in root)) root[key] = {docs: {}}\n\n if (rest.length === 0) {\n root[key].docs[doc.ref] = doc\n this.length += 1\n return\n } else {\n return this.add(rest, doc, root[key])\n }\n}\n\n/**\n * Checks whether this key is contained within this lunr.TokenStore.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to check for\n * @param {Object} root An optional node at which to start\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.has = function (token) {\n if (!token) return false\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return false\n\n node = node[token.charAt(i)]\n }\n\n return true\n}\n\n/**\n * Retrieve a node from the token store for a given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the node for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @see TokenStore.prototype.get\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.getNode = function (token) {\n if (!token) return {}\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return {}\n\n node = node[token.charAt(i)]\n }\n\n return node\n}\n\n/**\n * Retrieve the documents for a node for the given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.get = function (token, root) {\n return this.getNode(token, root).docs || {}\n}\n\nlunr.TokenStore.prototype.count = function (token, root) {\n return Object.keys(this.get(token, root)).length\n}\n\n/**\n * Remove the document identified by ref from the token in the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {String} ref The ref of the document to remove from this token.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.remove = function (token, ref) {\n if (!token) return\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!(token.charAt(i) in node)) return\n node = node[token.charAt(i)]\n }\n\n delete node.docs[ref]\n}\n\n/**\n * Find all the possible suffixes of the passed token using tokens\n * currently in the store.\n *\n * @param {String} token The token to expand.\n * @returns {Array}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.expand = function (token, memo) {\n var root = this.getNode(token),\n docs = root.docs || {},\n memo = memo || []\n\n if (Object.keys(docs).length) memo.push(token)\n\n Object.keys(root)\n .forEach(function (key) {\n if (key === 'docs') return\n\n memo.concat(this.expand(token + key, memo))\n }, this)\n\n return memo\n}\n\n/**\n * Returns a representation of the token store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.toJSON = function () {\n return {\n root: this.root,\n length: this.length\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/lunr/lunr.js\n ** module id = 19\n ** module chunks = 0\n **/","export default {\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-ac\",\"flag-ad\",\"flag-ae\",\"flag-af\",\"flag-ag\",\"flag-ai\",\"flag-al\",\"flag-am\",\"flag-ao\",\"flag-aq\",\"flag-ar\",\"flag-as\",\"flag-at\",\"flag-au\",\"flag-aw\",\"flag-ax\",\"flag-az\",\"flag-ba\",\"flag-bb\",\"flag-bd\",\"flag-be\",\"flag-bf\",\"flag-bg\",\"flag-bh\",\"flag-bi\",\"flag-bj\",\"flag-bl\",\"flag-bm\",\"flag-bn\",\"flag-bo\",\"flag-bq\",\"flag-br\",\"flag-bs\",\"flag-bt\",\"flag-bv\",\"flag-bw\",\"flag-by\",\"flag-bz\",\"flag-ca\",\"flag-cc\",\"flag-cd\",\"flag-cf\",\"flag-cg\",\"flag-ch\",\"flag-ci\",\"flag-ck\",\"flag-cl\",\"flag-cm\",\"flag-cn\",\"flag-co\",\"flag-cp\",\"flag-cr\",\"flag-cu\",\"flag-cv\",\"flag-cw\",\"flag-cx\",\"flag-cy\",\"flag-cz\",\"flag-de\",\"flag-dg\",\"flag-dj\",\"flag-dk\",\"flag-dm\",\"flag-do\",\"flag-dz\",\"flag-ea\",\"flag-ec\",\"flag-ee\",\"flag-eg\",\"flag-eh\",\"flag-er\",\"flag-es\",\"flag-et\",\"flag-eu\",\"flag-fi\",\"flag-fj\",\"flag-fk\",\"flag-fm\",\"flag-fo\",\"flag-fr\",\"flag-ga\",\"flag-gb\",\"flag-gd\",\"flag-ge\",\"flag-gf\",\"flag-gg\",\"flag-gh\",\"flag-gi\",\"flag-gl\",\"flag-gm\",\"flag-gn\",\"flag-gp\",\"flag-gq\",\"flag-gr\",\"flag-gs\",\"flag-gt\",\"flag-gu\",\"flag-gw\",\"flag-gy\",\"flag-hk\",\"flag-hm\",\"flag-hn\",\"flag-hr\",\"flag-ht\",\"flag-hu\",\"flag-ic\",\"flag-id\",\"flag-ie\",\"flag-il\",\"flag-im\",\"flag-in\",\"flag-io\",\"flag-iq\",\"flag-ir\",\"flag-is\",\"flag-it\",\"flag-je\",\"flag-jm\",\"flag-jo\",\"flag-jp\",\"flag-ke\",\"flag-kg\",\"flag-kh\",\"flag-ki\",\"flag-km\",\"flag-kn\",\"flag-kp\",\"flag-kr\",\"flag-kw\",\"flag-ky\",\"flag-kz\",\"flag-la\",\"flag-lb\",\"flag-lc\",\"flag-li\",\"flag-lk\",\"flag-lr\",\"flag-ls\",\"flag-lt\",\"flag-lu\",\"flag-lv\",\"flag-ly\",\"flag-ma\",\"flag-mc\",\"flag-md\",\"flag-me\",\"flag-mf\",\"flag-mg\",\"flag-mh\",\"flag-mk\",\"flag-ml\",\"flag-mm\",\"flag-mn\",\"flag-mo\",\"flag-mp\",\"flag-mq\",\"flag-mr\",\"flag-ms\",\"flag-mt\",\"flag-mu\",\"flag-mv\",\"flag-mw\",\"flag-mx\",\"flag-my\",\"flag-mz\",\"flag-na\",\"flag-nc\",\"flag-ne\",\"flag-nf\",\"flag-ng\",\"flag-ni\",\"flag-nl\",\"flag-no\",\"flag-np\",\"flag-nr\",\"flag-nu\",\"flag-nz\",\"flag-om\",\"flag-pa\",\"flag-pe\",\"flag-pf\",\"flag-pg\",\"flag-ph\",\"flag-pk\",\"flag-pl\",\"flag-pm\",\"flag-pn\",\"flag-pr\",\"flag-ps\",\"flag-pt\",\"flag-pw\",\"flag-py\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-rs\",\"flag-ru\",\"flag-rw\",\"flag-sa\",\"flag-sb\",\"flag-sc\",\"flag-sd\",\"flag-se\",\"flag-sg\",\"flag-sh\",\"flag-si\",\"flag-sj\",\"flag-sk\",\"flag-sl\",\"flag-sm\",\"flag-sn\",\"flag-so\",\"flag-sr\",\"flag-ss\",\"flag-st\",\"flag-sv\",\"flag-sx\",\"flag-sy\",\"flag-sz\",\"flag-ta\",\"flag-tc\",\"flag-td\",\"flag-tf\",\"flag-tg\",\"flag-th\",\"flag-tj\",\"flag-tk\",\"flag-tl\",\"flag-tm\",\"flag-tn\",\"flag-to\",\"flag-tr\",\"flag-tt\",\"flag-tv\",\"flag-tw\",\"flag-tz\",\"flag-ua\",\"flag-ug\",\"flag-um\",\"flag-us\",\"flag-uy\",\"flag-uz\",\"flag-va\",\"flag-vc\",\"flag-ve\",\"flag-vg\",\"flag-vi\",\"flag-vn\",\"flag-vu\",\"flag-wf\",\"flag-ws\",\"flag-xk\",\"flag-ye\",\"flag-yt\",\"flag-za\",\"flag-zm\",\"flag-zw\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":D\"]},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters AF\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters AX\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters AL\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters DZ\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters AS\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"=)\",\"=-)\"]},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"C:\",\"c:\",\":D\",\":-D\"]},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters AD\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"category\":\"Symbols\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"\",\":->\"]},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters AQ\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters AG\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";)\",\";-)\"]},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters AR\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\"]},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\",\"(:\",\":-)\"]},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters AM\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters AW\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters AU\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters AT\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o)\"]},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters AZ\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters BS\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters BH\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters BD\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters BB\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters BY\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"]},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters BE\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters BZ\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters BJ\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"]},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters BM\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters BT\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"8)\"]},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters BO\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters BQ\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters BA\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters BW\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters BR\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":|\",\":-|\"]},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters IO\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters VG\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":(\"]},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters BN\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters BG\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters BF\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters BI\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"):\",\":(\",\":-(\"]},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters CV\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters KH\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\">:(\",\">:-(\"]},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters CM\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters CA\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"]},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters IC\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters KY\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters CF\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters TD\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters CL\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters CN\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters CX\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters CC\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters CO\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o\",\":-o\",\":O\",\":-O\"]},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters KM\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters CG\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters CD\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters CK\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters CR\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters HR\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"D:\"]},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters CU\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters CW\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters CY\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters CZ\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters DK\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters DJ\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters DM\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters DO\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters EC\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters EG\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters SV\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters GQ\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters ER\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters EE\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters ET\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters EU\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters FK\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters FO\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters FJ\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters FI\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters FR\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters GF\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters PF\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters TF\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters GA\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters GM\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters GE\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters DE\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters GH\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters GI\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters GR\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters GL\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters GD\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters GP\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters GU\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters GT\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters GG\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters GN\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters GW\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters GY\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters HT\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters HN\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters HK\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters HU\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters IS\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters IN\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters ID\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters IR\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters IQ\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters IE\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters IM\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters IL\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters IT\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters CI\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters JM\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters JP\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters JE\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters JO\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters KZ\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters KE\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters KI\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters XK\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters KW\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters KG\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters LA\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters LV\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters LB\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters LS\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters LR\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters LY\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters LI\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters LT\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters LU\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters MO\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters MK\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters MG\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters MW\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters MY\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}},\"emoticons\":[]},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters MV\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters ML\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters MT\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters MH\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters MQ\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters MR\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters MU\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters YT\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters MX\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters FM\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters MD\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters MC\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters MN\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters ME\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters MS\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters MA\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters MZ\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false,\"emoticons\":[]},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters MM\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters NA\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters NR\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters NP\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters NL\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters NC\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters NZ\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters NI\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters NE\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters NG\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters NU\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters NF\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters MP\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters KP\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters NO\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters OM\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters PK\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters PW\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters PS\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters PA\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters PG\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters PY\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters PE\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters PH\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters PN\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters PL\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters PT\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters PR\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters QA\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters RE\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters RO\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters RU\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":*\",\":-*\"]},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters RW\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters BL\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters SH\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters KN\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters LC\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters PM\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters VC\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters WS\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters SM\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters ST\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters SA\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters SN\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters RS\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters SC\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters SL\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters SG\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters SX\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters SK\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters SI\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters SB\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters SO\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters ZA\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters GS\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters KR\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters SS\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters ES\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters LK\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters SD\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters SR\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters SZ\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters SE\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters CH\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters SY\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters TW\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters TJ\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters TZ\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters TH\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters TL\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters TG\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters TK\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters TO\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters TT\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters TN\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters TR\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters TM\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters TC\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters TV\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters UG\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters UA\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters AE\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters GB\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters US\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters VI\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters UY\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters UZ\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters VU\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters VA\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters VE\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters VN\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters WF\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters EH\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters YE\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters ZM\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters ZW\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters AC\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters BV\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters CP\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters DG\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters EA\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters HM\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters MF\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters SJ\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters TA\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters UM\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}}}\n\n\n/** WEBPACK FOOTER **\n ** ./data/index.js\n **/","import {store} from '.'\n\nlet frequently = store.get('frequently') || {}\n\nfunction add(emoji) {\n var { id } = emoji\n\n frequently[id] || (frequently[id] = 0)\n frequently[id] += 1\n\n store.set('last', id)\n store.set('frequently', frequently)\n}\n\nfunction get(quantity) {\n var sorted = Object.keys(frequently).sort((a, b) => frequently[a] - frequently[b]).reverse(),\n sliced = sorted.slice(0, quantity),\n last = store.get('last')\n\n if (last && sliced.indexOf(last) == -1) {\n sliced.pop()\n sliced.push(last)\n }\n\n return sliced\n}\n\nexport default { add, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/frequently.js\n **/","import React from 'react'\nimport data from '../../data'\n\nconst SHEET_COLUMNS = 41\nconst SKINS = [\n '1F3FA', '1F3FB', '1F3FC',\n '1F3FD', '1F3FE', '1F3FF',\n]\n\nexport default class Emoji extends React.Component {\n constructor(props) {\n super(props)\n\n var emojiData = this.getEmojiData()\n this.hasSkinVariations = !!emojiData.skin_variations\n }\n\n shouldComponentUpdate(nextProps) {\n return (\n this.hasSkinVariations && nextProps.skin != this.props.skin ||\n nextProps.size != this.props.size ||\n nextProps.sheetURL != this.props.sheetURL\n )\n }\n\n getEmojiData() {\n var { emoji, skin, sheetURL } = this.props,\n emojiData = emoji\n\n if (typeof emoji == 'string') {\n emojiData = data.emojis[emoji]\n }\n\n if (this.hasSkinVariations && skin > 1) {\n emojiData = JSON.parse(JSON.stringify(data.emojis[emoji]))\n\n var skinKey = SKINS[skin - 1],\n variationKey = `${emojiData.unified}-${skinKey}`,\n variationData = emojiData.skin_variations[variationKey],\n kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n kit = kitMatches[0]\n\n if (variationData[`has_img_${kit}`]) {\n emojiData.skin_tone = skin\n\n for (let k in variationData) {\n let v = variationData[k]\n emojiData[k] = v\n }\n }\n }\n\n return emojiData\n }\n\n getPosition(emojiData) {\n var { sheet_x, sheet_y } = emojiData,\n multiply = 100 / (SHEET_COLUMNS - 1)\n\n return `${multiply * sheet_x}% ${multiply * sheet_y}%`\n }\n\n getNative(emojiData) {\n var { unified } = emojiData,\n unicodes = unified.split('-'),\n codePoints = unicodes.map((u) => `0x${u}`)\n\n return String.fromCodePoint(...codePoints)\n }\n\n handleClick(emojiData) {\n var { onClick } = this.props,\n { name, short_names, skin_tone, emoticons, unified } = emojiData,\n id = short_names[0],\n colons = `:${id}:`\n\n if (skin_tone) {\n colons += `:skin-tone-${skin_tone}:`\n }\n\n onClick({\n id,\n name,\n colons,\n emoticons,\n skin: skin_tone || 1,\n native: this.getNative(emojiData),\n })\n }\n\n render() {\n var { sheetURL, size, onOver, onLeave } = this.props,\n emojiData = this.getEmojiData()\n\n return this.handleClick(emojiData)}\n onMouseEnter={() => onOver(emojiData)}\n onMouseLeave={() => onLeave(emojiData)}\n className='emoji-picker-emoji'>\n \n \n \n }\n}\n\nEmoji.propTypes = {\n skin: React.PropTypes.number,\n onOver: React.PropTypes.func,\n onLeave: React.PropTypes.func,\n onClick: React.PropTypes.func,\n size: React.PropTypes.number.isRequired,\n sheetURL: React.PropTypes.string.isRequired,\n emoji: React.PropTypes.oneOfType([\n React.PropTypes.string,\n React.PropTypes.object,\n ]).isRequired,\n}\n\nEmoji.defaultProps = {\n skin: 1,\n onOver: (() => {}),\n onLeave: (() => {}),\n onClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/emoji.js\n **/","import '../vendor/raf-polyfill'\n\nimport React from 'react'\nimport data from '../../data'\n\nimport {store, frequently} from '../utils'\nimport {Anchors, Category, Preview, Search} from '.'\n\nconst RECENT_CATEGORY = { name: 'Recent', emojis: null }\nconst SEARCH_CATEGORY = { name: 'Search', emojis: null, anchor: RECENT_CATEGORY }\n\nconst CATEGORIES = [\n SEARCH_CATEGORY,\n RECENT_CATEGORY,\n].concat(data.categories)\n\nexport default class Picker extends React.Component {\n constructor(props) {\n super(props)\n this.testStickyPosition()\n\n this.state = {\n skin: store.get('skin') || props.skin,\n }\n }\n\n componentWillReceiveProps(props) {\n if (props.skin && !store.get('skin')) {\n this.setState({ skin: props.skin })\n }\n }\n\n componentDidUpdate() {\n this.updateCategoriesSize()\n this.handleScroll()\n }\n\n testStickyPosition() {\n var stickyTestElement = document.createElement('div')\n for (let prefix of ['', '-webkit-', '-ms-', '-moz-', '-o-']) {\n stickyTestElement.style.position = `${prefix}sticky`\n }\n\n this.hasStickyPosition = !!stickyTestElement.style.position.length\n }\n\n handleEmojiOver(emoji) {\n var { preview } = this.refs\n preview.setState({ emoji: emoji })\n clearTimeout(this.leaveTimeout)\n }\n\n handleEmojiLeave(emoji) {\n this.leaveTimeout = setTimeout(() => {\n var { preview } = this.refs\n preview.setState({ emoji: null })\n }, 16)\n }\n\n handleEmojiClick(emoji) {\n this.props.onClick(emoji)\n frequently.add(emoji)\n\n var component = this.refs['category-1']\n if (component) {\n let maxMargin = component.maxMargin\n component.forceUpdate()\n\n window.requestAnimationFrame(() => {\n component.memoizeSize()\n if (maxMargin == component.maxMargin) return\n\n this.updateCategoriesSize()\n this.handleScrollPaint()\n })\n }\n }\n\n handleScroll() {\n if (!this.waitingForPaint) {\n this.waitingForPaint = true\n window.requestAnimationFrame(this.handleScrollPaint.bind(this))\n }\n }\n\n handleScrollPaint() {\n this.waitingForPaint = false\n\n var target = this.refs.scroll,\n scrollTop = target.scrollTop,\n scrollingDown = scrollTop > (this.scrollTop || 0),\n activeCategory = null,\n minTop = 0\n\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let ii = scrollingDown ? (CATEGORIES.length - 1 - i) : i,\n category = CATEGORIES[ii],\n component = this.refs[`category-${ii}`]\n\n if (!minTop || component.top < minTop) {\n if (component.top > 0) {\n minTop = component.top\n }\n }\n\n if (component) {\n let active = component.handleScroll(scrollTop)\n if (active && !activeCategory) {\n if (category.anchor) category = category.anchor\n activeCategory = category\n }\n }\n }\n\n if (scrollTop < minTop) {\n activeCategory = RECENT_CATEGORY\n }\n\n if (activeCategory) {\n let { anchors } = this.refs,\n { name: categoryName } = activeCategory\n\n if (anchors.state.selected != categoryName) {\n anchors.setState({ selected: categoryName })\n }\n }\n\n this.scrollTop = scrollTop\n }\n\n handleSearch(emojis) {\n SEARCH_CATEGORY.emojis = emojis\n\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let component = this.refs[`category-${i}`]\n\n if (component && component.props.name != 'Search') {\n let display = emojis ? 'none' : null\n component.updateDisplay(display)\n }\n }\n\n this.forceUpdate()\n }\n\n handleAnchorClick(category, i) {\n var component = this.refs[`category-${i}`],\n { scroll, anchors } = this.refs,\n scrollToComponent = null\n\n scrollToComponent = () => {\n if (component) {\n let { top } = component\n\n if (category.name == 'Recent') {\n top = 0\n } else {\n top += 1\n }\n\n scroll.scrollTop = top\n }\n }\n\n if (SEARCH_CATEGORY.emojis) {\n this.handleSearch(null)\n this.refs.search.clear()\n\n window.requestAnimationFrame(scrollToComponent)\n } else {\n scrollToComponent()\n }\n }\n\n handleSkinChange(skin) {\n var newState = { skin: skin }\n\n this.setState(newState)\n store.update(newState)\n }\n\n updateCategoriesSize() {\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let component = this.refs[`category-${i}`]\n if (component) component.memoizeSize()\n }\n }\n\n render() {\n var { perLine, emojiSize, sheetURL, style } = this.props,\n { skin } = this.state,\n width = (perLine * (emojiSize + 12)) + 12 + 2\n\n return
\n
\n \n
\n\n
\n \n\n {CATEGORIES.map((category, i) => {\n return \n })}\n
\n\n
\n \n
\n
\n }\n}\n\nPicker.propTypes = {\n onClick: React.PropTypes.func,\n skin: React.PropTypes.number,\n perLine: React.PropTypes.number,\n emojiSize: React.PropTypes.number,\n style: React.PropTypes.object,\n sheetURL: React.PropTypes.string.isRequired,\n}\n\nPicker.defaultProps = {\n onClick: (() => {}),\n emojiSize: 24,\n perLine: 9,\n style: {},\n skin: 1,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/picker.js\n **/","// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\n// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\n// MIT license\n\n(function() {\n var lastTime = 0;\n var vendors = ['ms', 'moz', 'webkit', 'o'];\n for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']\n || window[vendors[x]+'CancelRequestAnimationFrame'];\n }\n\n if (!window.requestAnimationFrame)\n window.requestAnimationFrame = function(callback, element) {\n var currTime = new Date().getTime();\n var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n timeToCall);\n lastTime = currTime + timeToCall;\n return id;\n };\n\n if (!window.cancelAnimationFrame)\n window.cancelAnimationFrame = function(id) {\n clearTimeout(id);\n };\n}());\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/vendor/raf-polyfill.js\n **/","import React from 'react'\nimport {Emoji, Skins} from '.'\n\nexport default class Preview extends React.Component {\n constructor(props) {\n super(props)\n this.state = { emoji: null }\n }\n\n render() {\n var { emoji } = this.state,\n { emojiProps, skinsProps } = this.props\n\n if (emoji) {\n var { emoticons } = emoji,\n knownEmoticons = [],\n listedEmoticons = []\n\n for (let emoticon of emoticons) {\n if (knownEmoticons.indexOf(emoticon.toLowerCase()) == -1) {\n knownEmoticons.push(emoticon.toLowerCase())\n listedEmoticons.push(emoticon)\n }\n }\n\n return
\n
\n \n
\n\n
\n {emoji.name}
\n \n {emoji.short_names.map((short_name) =>\n :{short_name}:\n )}
\n {listedEmoticons.map((emoticon) =>\n {emoticon}\n )}\n
\n
\n
\n } else {\n return
\n
\n \n
\n\n
\n \n EmojiPicker\n \n
\n\n
\n \n
\n
\n }\n }\n}\n\nPreview.propTypes = {\n emojiProps: React.PropTypes.object.isRequired,\n skinsProps: React.PropTypes.object.isRequired,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/preview.js\n **/","import React from 'react'\nimport {emojiIndex} from '../utils'\n\nexport default class Search extends React.Component {\n handleChange() {\n var { input } = this.refs,\n value = input.value\n\n this.props.onSearch(emojiIndex.search(value))\n }\n\n clear() {\n this.refs.input.value = ''\n }\n\n render() {\n return \n }\n}\n\nSearch.propTypes = {\n onSearch: React.PropTypes.func,\n maxResults: React.PropTypes.number,\n}\n\nSearch.defaultProps = {\n onSearch: (() => {}),\n maxResults: 75,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/search.js\n **/","import React from 'react'\n\nexport default class Skins extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n opened: false,\n }\n }\n\n handleClick(skin) {\n var { onChange } = this.props\n\n if (!this.state.opened) {\n this.setState({ opened: true })\n } else {\n onChange(skin)\n this.setState({ opened: false })\n }\n }\n\n render() {\n var { skin } = this.props,\n { opened } = this.state\n\n return
\n
\n {Array(6).fill().map((_, i) => {\n var skinTone = i + 1,\n selected = skinTone == skin\n\n return \n this.handleClick(skinTone)}\n className={`emoji-picker-skin emoji-picker-skin-tone-${skinTone}`}>\n \n \n })}\n
\n
\n }\n}\n\nSkins.propTypes = {\n onChange: React.PropTypes.func,\n skin: React.PropTypes.number.isRequired,\n}\n\nSkins.defaultProps = {\n onChange: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/skins.js\n **/"],"sourceRoot":""} \ No newline at end of file diff --git a/dist/emoji-picker.min.js b/dist/emoji-picker.min.js index 3b2e9bd..79d551e 100644 --- a/dist/emoji-picker.min.js +++ b/dist/emoji-picker.min.js @@ -1,69 +1,68 @@ -!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react")):"function"==typeof define&&define.amd?define(["react"],o):"object"==typeof exports?exports.EmojiPicker=o(require("react")):e.EmojiPicker=o(e.react)}(this,function(e){return function(e){function o(t){if(a[t])return a[t].exports;var s=a[t]={exports:{},id:t,loaded:!1};return e[t].call(s.exports,s,s.exports,o),s.loaded=!0,s.exports}var a={};return o.m=e,o.c=a,o.p="",o(0)}([function(e,o,a){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var t=a(1);Object.defineProperty(o,"Picker",{enumerable:!0,get:function(){return t.Picker}}),Object.defineProperty(o,"Emoji",{enumerable:!0,get:function(){return t.Emoji}})},function(e,o,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(o,"__esModule",{value:!0});var s=a(2);Object.defineProperty(o,"Anchors",{enumerable:!0,get:function(){return t(s)["default"]}});var i=a(15);Object.defineProperty(o,"Category",{enumerable:!0,get:function(){return t(i)["default"]}});var _=a(16);Object.defineProperty(o,"Emoji",{enumerable:!0,get:function(){return t(_)["default"]}});var n=a(18);Object.defineProperty(o,"Picker",{enumerable:!0,get:function(){return t(n)["default"]}});var l=a(20);Object.defineProperty(o,"Preview",{enumerable:!0,get:function(){return t(l)["default"]}});var g=a(21);Object.defineProperty(o,"Search",{enumerable:!0,get:function(){return t(g)["default"]}});var m=a(23);Object.defineProperty(o,"Skins",{enumerable:!0,get:function(){return t(m)["default"]}})},function(e,o,a){"use strict";function t(e){if(e&&e.__esModule)return e;var o={};if(null!=e)for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&(o[a]=e[a]);return o["default"]=e,o}function s(e){return e&&e.__esModule?e:{"default":e}}function i(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function _(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function n(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var l=function(){function e(e,o){for(var a=0;a: `raw` prop works only when `window.DOMParser` exists.");var d=function(e){function o(e){s(this,o),r(Object.getPrototypeOf(o.prototype),"constructor",this).call(this,e),this._extractSVGProps=this._extractSVGProps.bind(this)}return i(o,e),m(o,null,[{key:"defaultProps",value:{element:"i",raw:!1,src:""},enumerable:!0},{key:"propTypes",value:{src:u["default"].PropTypes.string.isRequired,element:u["default"].PropTypes.string,raw:u["default"].PropTypes.bool},enumerable:!0}]),m(o,[{key:"_serializeAttrs",value:function(e){for(var o={},a=void 0,t=0;t0?this._serializeAttrs(o):null}},{key:"_stripSVG",value:function(e){return n(e).documentElement.innerHTML}},{key:"componentWillReceiveProps",value:function(e){var o=e.children;"production"!==p.env.NODE_ENV&&null!=o&&console.info(": `children` prop will be ignored.")}},{key:"render",value:function(){var e=void 0,o=void 0,a=void 0,t=this.props,s=t.element,i=t.raw,n=t.src;return i===!0&&_(n)&&(e="svg",a=this._extractSVGProps(n),o=this._stripSVG(n)),o=o||n,e=e||s,a=a||{},u["default"].createElement(e,g({},a,this.props,{src:null,children:null,dangerouslySetInnerHTML:{__html:o}}))}}]),o}(u["default"].Component);o["default"]=d,e.exports=o["default"]},function(e,o,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(o,"__esModule",{value:!0});var s=a(6);Object.defineProperty(o,"Activity",{enumerable:!0,get:function(){return t(s)["default"]}});var i=a(7);Object.defineProperty(o,"Flags",{enumerable:!0,get:function(){return t(i)["default"]}});var _=a(8);Object.defineProperty(o,"Foods",{enumerable:!0,get:function(){return t(_)["default"]}});var n=a(9);Object.defineProperty(o,"Nature",{enumerable:!0,get:function(){return t(n)["default"]}});var l=a(10);Object.defineProperty(o,"Objects",{enumerable:!0,get:function(){return t(l)["default"]}});var g=a(11);Object.defineProperty(o,"People",{enumerable:!0,get:function(){return t(g)["default"]}});var m=a(12);Object.defineProperty(o,"Places",{enumerable:!0,get:function(){return t(m)["default"]}});var r=a(13);Object.defineProperty(o,"Recent",{enumerable:!0,get:function(){return t(r)["default"]}});var h=a(14);Object.defineProperty(o,"Symbols",{enumerable:!0,get:function(){return t(h)["default"]}})},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}function s(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function i(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function _(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var n=Object.assign||function(e){for(var o=1;o_?this.maxMargin=a-_:this.maxMargin=1}},{key:"handleScroll",value:function(e){var o=e-this.top;if(o=othis.maxMargin?this.maxMargin:o,o!=this.margin){this.props.name;return this.props.hasStickyPosition||(this.label.style.top=o+"px"),this.margin=o,!0}}},{key:"render",value:function(){var e=this.props,o=e.name,a=e.emojis,t=e.hasStickyPosition,s=e.emojiProps,a=a?a.slice(0):null,i={},_={},l={};return t||(i={height:28},_={position:"absolute"}),a||(l={height:1,overflow:"hidden"}),m["default"].createElement("div",{ref:"container",className:"emoji-picker-category",style:l},m["default"].createElement("div",{style:i,"data-name":o,className:"emoji-picker-category-label"},m["default"].createElement("span",{style:_,ref:"label"},o)),a&&a.map(function(e){return m["default"].createElement(r.Emoji,n({key:e,emoji:e},s))}),a&&!a.length&&m["default"].createElement("div",{className:"emoji-picker-no-results"},m["default"].createElement(r.Emoji,n({},s,{size:22,emoji:"sleuth_or_spy"})),m["default"].createElement("span",{className:"emoji-picker-no-results-label"},"No emoji found")))}}]),o}(m["default"].Component);o["default"]=h,h.propTypes={emojis:m["default"].PropTypes.array,hasStickyPosition:m["default"].PropTypes.bool,name:m["default"].PropTypes.string.isRequired,emojiProps:m["default"].PropTypes.object.isRequired},h.defaultProps={emojis:[],hasStickyPosition:!0}},function(e,o,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}function s(e){if(Array.isArray(e)){for(var o=0,a=Array(e.length);o1){s=JSON.parse(JSON.stringify(h["default"].emojis[o]));var i=p[a-1],_=s.unified+"-"+i,n=s.skin_variations[_],l=t.match(/(apple|google|twitter|emojione)/),g=l[0];if(n["has_img_"+g]){s.skin_tone=a;for(var m in n){var r=n[m];s[m]=r}}}return s}},{key:"getSheetSize",value:function(){var e=this.props.size,o=u*e/f;return o+"px "+o+"px"}},{key:"getPosition",value:function(e){var o=this.props.size,a=e.sheet_x,t=e.sheet_y,s=a*o,i=t*o;return"-"+s+"px -"+i+"px"}},{key:"getNative",value:function(e){var o=e.unified,a=o.split("-"),t=a.map(function(e){return"0x"+e});return String.fromCodePoint.apply(String,s(t))}},{key:"handleClick",value:function(e){var o=this.props.onClick,a=e.name,t=e.short_names,s=e.skin_tone,i=e.text,_=e.texts,n=(e.unified,t[0]),l=":"+n+":";_||(_=[]),i&&!_.length&&(_=[i]),s&&(l+=":skin-tone-"+s+":"),o({id:n,name:a,colons:l,skin:s||1,emoticons:_,"native":this.getNative(e)})}},{key:"render",value:function(){var e=this,o=this.props,a=o.sheetURL,t=o.size,s=o.onOver,i=o.onLeave,_=this.getEmojiData();return m["default"].createElement("span",{onClick:function(){return e.handleClick(_)},onMouseEnter:function(){return s(_)},onMouseLeave:function(){return i(_)},className:"emoji-picker-emoji"},m["default"].createElement("span",{style:{width:t,height:t,display:"inline-block",backgroundImage:"url("+a+")",backgroundSize:this.getSheetSize(),backgroundPosition:this.getPosition(_)}}))}}]),o}(m["default"].Component);o["default"]=c,c.propTypes={skin:m["default"].PropTypes.number,onOver:m["default"].PropTypes.func,onLeave:m["default"].PropTypes.func,onClick:m["default"].PropTypes.func,size:m["default"].PropTypes.number.isRequired,sheetURL:m["default"].PropTypes.string.isRequired,emoji:m["default"].PropTypes.oneOfType([m["default"].PropTypes.string,m["default"].PropTypes.object]).isRequired},c.defaultProps={skin:1,onOver:function(){},onLeave:function(){},onClick:function(){}}},function(e,o){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o["default"]={categories:[{name:"People",emojis:["grinning","grimacing","grin","joy","smiley","smile","sweat_smile","laughing","innocent","wink","blush","slightly_smiling_face","upside_down_face","relaxed","yum","relieved","heart_eyes","kissing_heart","kissing","kissing_smiling_eyes","kissing_closed_eyes","stuck_out_tongue_winking_eye","stuck_out_tongue_closed_eyes","stuck_out_tongue","money_mouth_face","nerd_face","sunglasses","hugging_face","smirk","no_mouth","neutral_face","expressionless","unamused","face_with_rolling_eyes","thinking_face","flushed","disappointed","worried","angry","rage","pensive","confused","slightly_frowning_face","white_frowning_face","persevere","confounded","tired_face","weary","triumph","open_mouth","scream","fearful","cold_sweat","hushed","frowning","anguished","cry","disappointed_relieved","sleepy","sweat","sob","dizzy_face","astonished","zipper_mouth_face","mask","face_with_thermometer","face_with_head_bandage","sleeping","zzz","hankey","smiling_imp","imp","japanese_ogre","japanese_goblin","skull","ghost","alien","robot_face","smiley_cat","smile_cat","joy_cat","heart_eyes_cat","smirk_cat","kissing_cat","scream_cat","crying_cat_face","pouting_cat","raised_hands","clap","wave","+1","-1","facepunch","fist","v","ok_hand","hand","open_hands","muscle","pray","point_up","point_up_2","point_down","point_left","point_right","middle_finger","raised_hand_with_fingers_splayed","the_horns","spock-hand","writing_hand","nail_care","lips","tongue","ear","nose","eye","eyes","bust_in_silhouette","busts_in_silhouette","speaking_head_in_silhouette","baby","boy","girl","man","woman","person_with_blond_hair","older_man","older_woman","man_with_gua_pi_mao","man_with_turban","cop","construction_worker","guardsman","sleuth_or_spy","santa","angel","princess","bride_with_veil","walking","runner","dancer","dancers","couple","two_men_holding_hands","two_women_holding_hands","bow","information_desk_person","no_good","ok_woman","raising_hand","person_with_pouting_face","person_frowning","haircut","massage","couple_with_heart","woman-heart-woman","man-heart-man","couplekiss","woman-kiss-woman","man-kiss-man","family","man-woman-girl","man-woman-girl-boy","man-woman-boy-boy","man-woman-girl-girl","woman-woman-boy","woman-woman-girl","woman-woman-girl-boy","woman-woman-boy-boy","woman-woman-girl-girl","man-man-boy","man-man-girl","man-man-girl-boy","man-man-boy-boy","man-man-girl-girl","womans_clothes","shirt","jeans","necktie","dress","bikini","kimono","lipstick","kiss","footprints","high_heel","sandal","boot","mans_shoe","athletic_shoe","womans_hat","tophat","helmet_with_white_cross","mortar_board","crown","school_satchel","pouch","purse","handbag","briefcase","eyeglasses","dark_sunglasses","ring","closed_umbrella"]},{name:"Nature",emojis:["dog","cat","mouse","hamster","rabbit","bear","panda_face","koala","tiger","lion_face","cow","pig","pig_nose","frog","octopus","monkey_face","see_no_evil","hear_no_evil","speak_no_evil","monkey","chicken","penguin","bird","baby_chick","hatching_chick","hatched_chick","wolf","boar","horse","unicorn_face","bee","bug","snail","beetle","ant","spider","scorpion","crab","snake","turtle","tropical_fish","fish","blowfish","dolphin","whale","whale2","crocodile","leopard","tiger2","water_buffalo","ox","cow2","dromedary_camel","camel","elephant","goat","ram","sheep","racehorse","pig2","rat","mouse2","rooster","turkey","dove_of_peace","dog2","poodle","cat2","rabbit2","chipmunk","feet","dragon","dragon_face","cactus","christmas_tree","evergreen_tree","deciduous_tree","palm_tree","seedling","herb","shamrock","four_leaf_clover","bamboo","tanabata_tree","leaves","fallen_leaf","maple_leaf","ear_of_rice","hibiscus","sunflower","rose","tulip","blossom","cherry_blossom","bouquet","mushroom","chestnut","jack_o_lantern","shell","spider_web","earth_americas","earth_africa","earth_asia","full_moon","waning_gibbous_moon","last_quarter_moon","waning_crescent_moon","new_moon","waxing_crescent_moon","first_quarter_moon","moon","new_moon_with_face","full_moon_with_face","first_quarter_moon_with_face","last_quarter_moon_with_face","sun_with_face","crescent_moon","star","star2","dizzy","sparkles","comet","sunny","mostly_sunny","partly_sunny","barely_sunny","partly_sunny_rain","cloud","rain_cloud","thunder_cloud_and_rain","lightning","zap","fire","boom","snowflake","snow_cloud","snowman","snowman_without_snow","wind_blowing_face","dash","tornado","fog","umbrella","umbrella_with_rain_drops","droplet","sweat_drops","ocean"]},{name:"Foods",emojis:["green_apple","apple","pear","tangerine","lemon","banana","watermelon","grapes","strawberry","melon","cherries","peach","pineapple","tomato","eggplant","hot_pepper","corn","sweet_potato","honey_pot","bread","cheese_wedge","poultry_leg","meat_on_bone","fried_shrimp","egg","hamburger","fries","hotdog","pizza","spaghetti","taco","burrito","ramen","stew","fish_cake","sushi","bento","curry","rice_ball","rice","rice_cracker","oden","dango","shaved_ice","ice_cream","icecream","cake","birthday","custard","candy","lollipop","chocolate_bar","popcorn","doughnut","cookie","beer","beers","wine_glass","cocktail","tropical_drink","champagne","sake","tea","coffee","baby_bottle","fork_and_knife","knife_fork_plate"]},{name:"Activity",emojis:["soccer","basketball","football","baseball","tennis","volleyball","rugby_football","8ball","golf","golfer","table_tennis_paddle_and_ball","badminton_racquet_and_shuttlecock","ice_hockey_stick_and_puck","field_hockey_stick_and_ball","cricket_bat_and_ball","ski","skier","snowboarder","ice_skate","bow_and_arrow","fishing_pole_and_fish","rowboat","swimmer","surfer","bath","person_with_ball","weight_lifter","bicyclist","mountain_bicyclist","horse_racing","man_in_business_suit_levitating","trophy","running_shirt_with_sash","sports_medal","medal","reminder_ribbon","rosette","ticket","admission_tickets","performing_arts","art","circus_tent","microphone","headphones","musical_score","musical_keyboard","saxophone","trumpet","guitar","violin","clapper","video_game","space_invader","dart","game_die","slot_machine","bowling"]},{name:"Places",emojis:["car","taxi","blue_car","bus","trolleybus","racing_car","police_car","ambulance","fire_engine","minibus","truck","articulated_lorry","tractor","racing_motorcycle","bike","rotating_light","oncoming_police_car","oncoming_bus","oncoming_automobile","oncoming_taxi","aerial_tramway","mountain_cableway","suspension_railway","railway_car","train","monorail","bullettrain_side","bullettrain_front","light_rail","mountain_railway","steam_locomotive","train2","metro","tram","station","helicopter","small_airplane","airplane","airplane_departure","airplane_arriving","boat","motor_boat","speedboat","ferry","passenger_ship","rocket","satellite","seat","anchor","construction","fuelpump","busstop","vertical_traffic_light","traffic_light","checkered_flag","ship","ferris_wheel","roller_coaster","carousel_horse","building_construction","foggy","tokyo_tower","factory","fountain","rice_scene","mountain","snow_capped_mountain","mount_fuji","volcano","japan","camping","tent","national_park","motorway","railway_track","sunrise","sunrise_over_mountains","desert","beach_with_umbrella","desert_island","city_sunrise","city_sunset","cityscape","night_with_stars","bridge_at_night","milky_way","stars","sparkler","fireworks","rainbow","house_buildings","european_castle","japanese_castle","stadium","statue_of_liberty","house","house_with_garden","derelict_house_building","office","department_store","post_office","european_post_office","hospital","bank","hotel","convenience_store","school","love_hotel","wedding","classical_building","church","mosque","synagogue","kaaba","shinto_shrine"]},{name:"Objects",emojis:["watch","iphone","calling","computer","keyboard","desktop_computer","printer","three_button_mouse","trackball","joystick","compression","minidisc","floppy_disk","cd","dvd","vhs","camera","camera_with_flash","video_camera","movie_camera","film_projector","film_frames","telephone_receiver","phone","pager","fax","tv","radio","studio_microphone","level_slider","control_knobs","stopwatch","timer_clock","alarm_clock","mantelpiece_clock","hourglass_flowing_sand","hourglass","satellite_antenna","battery","electric_plug","bulb","flashlight","candle","wastebasket","oil_drum","money_with_wings","dollar","yen","euro","pound","moneybag","credit_card","gem","scales","wrench","hammer","hammer_and_pick","hammer_and_wrench","pick","nut_and_bolt","gear","chains","gun","bomb","hocho","dagger_knife","crossed_swords","shield","smoking","skull_and_crossbones","coffin","funeral_urn","amphora","crystal_ball","prayer_beads","barber","alembic","telescope","microscope","hole","pill","syringe","thermometer","label","bookmark","toilet","shower","bathtub","key","old_key","couch_and_lamp","sleeping_accommodation","bed","door","bellhop_bell","frame_with_picture","world_map","umbrella_on_ground","moyai","shopping_bags","balloon","flags","ribbon","gift","confetti_ball","tada","dolls","wind_chime","crossed_flags","izakaya_lantern","email","envelope_with_arrow","incoming_envelope","e-mail","love_letter","postbox","mailbox_closed","mailbox","mailbox_with_mail","mailbox_with_no_mail","package","postal_horn","inbox_tray","outbox_tray","scroll","page_with_curl","bookmark_tabs","bar_chart","chart_with_upwards_trend","chart_with_downwards_trend","page_facing_up","date","calendar","spiral_calendar_pad","card_index","card_file_box","ballot_box_with_ballot","file_cabinet","clipboard","spiral_note_pad","file_folder","open_file_folder","card_index_dividers","rolled_up_newspaper","newspaper","notebook","closed_book","green_book","blue_book","orange_book","notebook_with_decorative_cover","ledger","books","book","link","paperclip","linked_paperclips","scissors","triangular_ruler","straight_ruler","pushpin","round_pushpin","triangular_flag_on_post","waving_white_flag","waving_black_flag","closed_lock_with_key","lock","unlock","lock_with_ink_pen","lower_left_ballpoint_pen","lower_left_fountain_pen","black_nib","memo","pencil2","lower_left_crayon","lower_left_paintbrush","mag","mag_right"] -},{name:"Symbols",emojis:["heart","yellow_heart","green_heart","blue_heart","purple_heart","broken_heart","heavy_heart_exclamation_mark_ornament","two_hearts","revolving_hearts","heartbeat","heartpulse","sparkling_heart","cupid","gift_heart","heart_decoration","peace_symbol","latin_cross","star_and_crescent","om_symbol","wheel_of_dharma","star_of_david","six_pointed_star","menorah_with_nine_branches","yin_yang","orthodox_cross","place_of_worship","ophiuchus","aries","taurus","gemini","cancer","leo","virgo","libra","scorpius","sagittarius","capricorn","aquarius","pisces","id","atom_symbol","u7a7a","u5272","radioactive_sign","biohazard_sign","mobile_phone_off","vibration_mode","u6709","u7121","u7533","u55b6","u6708","eight_pointed_black_star","vs","accept","white_flower","ideograph_advantage","secret","congratulations","u5408","u6e80","u7981","a","b","ab","cl","o2","sos","no_entry","name_badge","no_entry_sign","x","o","anger","hotsprings","no_pedestrians","do_not_litter","no_bicycles","non-potable_water","underage","no_mobile_phones","exclamation","grey_exclamation","question","grey_question","bangbang","interrobang","100","low_brightness","high_brightness","trident","fleur_de_lis","part_alternation_mark","warning","children_crossing","beginner","recycle","u6307","chart","sparkle","eight_spoked_asterisk","negative_squared_cross_mark","white_check_mark","diamond_shape_with_a_dot_inside","cyclone","loop","globe_with_meridians","m","atm","sa","passport_control","customs","baggage_claim","left_luggage","wheelchair","no_smoking","wc","parking","potable_water","mens","womens","baby_symbol","restroom","put_litter_in_its_place","cinema","signal_strength","koko","ng","ok","up","cool","new","free","zero","one","two","three","four","five","six","seven","eight","nine","keycap_ten","keycap_star","1234","arrow_forward","double_vertical_bar","black_right_pointing_triangle_with_double_vertical_bar","black_square_for_stop","eject","black_circle_for_record","black_right_pointing_double_triangle_with_vertical_bar","black_left_pointing_double_triangle_with_vertical_bar","fast_forward","rewind","twisted_rightwards_arrows","repeat","repeat_one","arrow_backward","arrow_up_small","arrow_down_small","arrow_double_up","arrow_double_down","arrow_right","arrow_left","arrow_up","arrow_down","arrow_upper_right","arrow_lower_right","arrow_lower_left","arrow_upper_left","arrow_up_down","left_right_arrow","arrows_counterclockwise","arrow_right_hook","leftwards_arrow_with_hook","arrow_heading_up","arrow_heading_down","hash","information_source","abc","abcd","capital_abcd","symbols","musical_note","notes","wavy_dash","curly_loop","heavy_check_mark","arrows_clockwise","heavy_plus_sign","heavy_minus_sign","heavy_division_sign","heavy_multiplication_x","heavy_dollar_sign","currency_exchange","copyright","registered","tm","end","back","on","top","soon","ballot_box_with_check","radio_button","white_circle","black_circle","red_circle","large_blue_circle","small_orange_diamond","small_blue_diamond","large_orange_diamond","large_blue_diamond","small_red_triangle","black_small_square","white_small_square","black_large_square","white_large_square","small_red_triangle_down","black_medium_square","white_medium_square","black_medium_small_square","white_medium_small_square","black_square_button","white_square_button","speaker","sound","loud_sound","mute","mega","loudspeaker","bell","no_bell","black_joker","mahjong","spades","clubs","hearts","diamonds","flower_playing_cards","thought_balloon","right_anger_bubble","speech_balloon","left_speech_bubble","clock1","clock2","clock3","clock4","clock5","clock6","clock7","clock8","clock9","clock10","clock11","clock12","clock130","clock230","clock330","clock430","clock530","clock630","clock730","clock830","clock930","clock1030","clock1130","clock1230"]},{name:"Flags",emojis:["flag-af","flag-ax","flag-al","flag-dz","flag-as","flag-ad","flag-ao","flag-ai","flag-aq","flag-ag","flag-ar","flag-am","flag-aw","flag-au","flag-at","flag-az","flag-bs","flag-bh","flag-bd","flag-bb","flag-by","flag-be","flag-bz","flag-bj","flag-bm","flag-bt","flag-bo","flag-bq","flag-ba","flag-bw","flag-br","flag-io","flag-vg","flag-bn","flag-bg","flag-bf","flag-bi","flag-cv","flag-kh","flag-cm","flag-ca","flag-ic","flag-ky","flag-cf","flag-td","flag-cl","flag-cn","flag-cx","flag-cc","flag-co","flag-km","flag-cg","flag-cd","flag-ck","flag-cr","flag-hr","flag-cu","flag-cw","flag-cy","flag-cz","flag-dk","flag-dj","flag-dm","flag-do","flag-ec","flag-eg","flag-sv","flag-gq","flag-er","flag-ee","flag-et","flag-eu","flag-fk","flag-fo","flag-fj","flag-fi","flag-fr","flag-gf","flag-pf","flag-tf","flag-ga","flag-gm","flag-ge","flag-de","flag-gh","flag-gi","flag-gr","flag-gl","flag-gd","flag-gp","flag-gu","flag-gt","flag-gg","flag-gn","flag-gw","flag-gy","flag-ht","flag-hn","flag-hk","flag-hu","flag-is","flag-in","flag-id","flag-ir","flag-iq","flag-ie","flag-im","flag-il","flag-it","flag-ci","flag-jm","flag-jp","flag-je","flag-jo","flag-kz","flag-ke","flag-ki","flag-xk","flag-kw","flag-kg","flag-la","flag-lv","flag-lb","flag-ls","flag-lr","flag-ly","flag-li","flag-lt","flag-lu","flag-mo","flag-mk","flag-mg","flag-mw","flag-my","flag-mv","flag-ml","flag-mt","flag-mh","flag-mq","flag-mr","flag-mu","flag-yt","flag-mx","flag-fm","flag-md","flag-mc","flag-mn","flag-me","flag-ms","flag-ma","flag-mz","flag-mm","flag-na","flag-nr","flag-np","flag-nl","flag-nc","flag-nz","flag-ni","flag-ne","flag-ng","flag-nu","flag-nf","flag-mp","flag-kp","flag-no","flag-om","flag-pk","flag-pw","flag-ps","flag-pa","flag-pg","flag-py","flag-pe","flag-ph","flag-pn","flag-pl","flag-pt","flag-pr","flag-qa","flag-re","flag-ro","flag-ru","flag-rw","flag-bl","flag-sh","flag-kn","flag-lc","flag-pm","flag-vc","flag-ws","flag-sm","flag-st","flag-sa","flag-sn","flag-rs","flag-sc","flag-sl","flag-sg","flag-sx","flag-sk","flag-si","flag-sb","flag-so","flag-za","flag-gs","flag-kr","flag-ss","flag-es","flag-lk","flag-sd","flag-sr","flag-sz","flag-se","flag-ch","flag-sy","flag-tw","flag-tj","flag-tz","flag-th","flag-tl","flag-tg","flag-tk","flag-to","flag-tt","flag-tn","flag-tr","flag-tm","flag-tc","flag-tv","flag-ug","flag-ua","flag-ae","flag-gb","flag-us","flag-vi","flag-uy","flag-uz","flag-vu","flag-va","flag-ve","flag-vn","flag-wf","flag-eh","flag-ye","flag-zm","flag-zw","flag-ac","flag-bv","flag-cp","flag-dg","flag-ea","flag-hm","flag-mf","flag-sj","flag-ta","flag-um"]}],emojis:{100:{name:"Hundred Points Symbol",unified:"1F4AF",variations:[],docomo:null,au:"E4F2",softbank:null,google:"FEB7B",image:"1f4af.png",sheet_x:20,sheet_y:27,short_name:"100",short_names:["100"],text:null,texts:null,category:"Symbols",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},1234:{name:"Input Symbol for Numbers",unified:"1F522",variations:[],docomo:null,au:"EAFF",softbank:null,google:"FEB7E",image:"1f522.png",sheet_x:23,sheet_y:18,short_name:"1234",short_names:["1234"],text:null,texts:null,category:"Symbols",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},grinning:{name:"Grinning Face",unified:"1F600",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f600.png",sheet_x:26,sheet_y:15,short_name:"grinning",short_names:["grinning"],text:":D",texts:null,category:"People",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heart:{name:"Heavy Black Heart",unified:"2764",variations:["2764-FE0F"],docomo:"E6EC",au:"E595",softbank:"E022",google:"FEB0C",image:"2764.png",sheet_x:4,sheet_y:10,short_name:"heart",short_names:["heart"],text:"<3",texts:["<3"],category:"Symbols",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dog:{name:"Dog Face",unified:"1F436",variations:[],docomo:"E6A1",au:"E4E1",softbank:"E052",google:"FE1B7",image:"1f436.png",sheet_x:13,sheet_y:18,short_name:"dog",short_names:["dog"],text:null,texts:null,category:"Nature",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},soccer:{name:"Soccer Ball",unified:"26BD",variations:["26BD-FE0F"],docomo:"E656",au:"E4B6",softbank:"E018",google:"FE7D4",image:"26bd.png",sheet_x:2,sheet_y:18,short_name:"soccer",short_names:["soccer"],text:null,texts:null,category:"Activity",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},watch:{name:"Watch",unified:"231A",variations:["231A-FE0F"],docomo:"E71F",au:"E57A",softbank:null,google:"FE01D",image:"231a.png",sheet_x:0,sheet_y:14,short_name:"watch",short_names:["watch"],text:null,texts:null,category:"Objects",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},green_apple:{name:"Green Apple",unified:"1F34F",variations:[],docomo:"E745",au:"EB5A",softbank:"E345",google:"FE05B",image:"1f34f.png",sheet_x:7,sheet_y:16,short_name:"green_apple",short_names:["green_apple"],text:null,texts:null,category:"Foods",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-af":{name:"Regional Indicator Symbol Letters Af",unified:"1F1E6-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1eb.png",sheet_x:32,sheet_y:36,short_name:"flag-af",short_names:["flag-af"],text:null,texts:null,category:"Flags",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},car:{name:"Automobile",unified:"1F697",variations:[],docomo:"E65E",au:"E4B1",softbank:"E01B",google:"FE7E4",image:"1f697.png",sheet_x:29,sheet_y:35,short_name:"car",short_names:["car","red_car"],text:null,texts:null,category:"Places",sort_order:1,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ax":{name:"Regional Indicator Symbol Letters Ax",unified:"1F1E6-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1fd.png",sheet_x:33,sheet_y:7,short_name:"flag-ax",short_names:["flag-ax"],text:null,texts:null,category:"Flags",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},grimacing:{name:"Grimacing Face",unified:"1F62C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f62c.png",sheet_x:27,sheet_y:18,short_name:"grimacing",short_names:["grimacing"],text:null,texts:null,category:"People",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},taxi:{name:"Taxi",unified:"1F695",variations:[],docomo:"E65E",au:"E4B1",softbank:"E15A",google:"FE7EF",image:"1f695.png",sheet_x:29,sheet_y:33,short_name:"taxi",short_names:["taxi"],text:null,texts:null,category:"Places",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},iphone:{name:"Mobile Phone",unified:"1F4F1",variations:[],docomo:"E688",au:"E588",softbank:"E00A",google:"FE525",image:"1f4f1.png",sheet_x:22,sheet_y:11,short_name:"iphone",short_names:["iphone"],text:null,texts:null,category:"Objects",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},basketball:{name:"Basketball and Hoop",unified:"1F3C0",variations:[],docomo:"E658",au:"E59A",softbank:"E42A",google:"FE7D6",image:"1f3c0.png",sheet_x:10,sheet_y:6,short_name:"basketball",short_names:["basketball"],text:null,texts:null,category:"Activity",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cat:{name:"Cat Face",unified:"1F431",variations:[],docomo:"E6A2",au:"E4DB",softbank:"E04F",google:"FE1B8",image:"1f431.png",sheet_x:13,sheet_y:13,short_name:"cat",short_names:["cat"],text:null,texts:null,category:"Nature",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},apple:{name:"Red Apple",unified:"1F34E",variations:[],docomo:"E745",au:"EAB9",softbank:"E345",google:"FE051",image:"1f34e.png",sheet_x:7,sheet_y:15,short_name:"apple",short_names:["apple"],text:null,texts:null,category:"Foods",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},yellow_heart:{name:"Yellow Heart",unified:"1F49B",variations:[],docomo:"E6EC",au:"EAA9",softbank:"E32C",google:"FEB15",image:"1f49b.png",sheet_x:20,sheet_y:2,short_name:"yellow_heart",short_names:["yellow_heart"],text:"<3",texts:null,category:"Symbols",sort_order:2,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mouse:{name:"Mouse Face",unified:"1F42D",variations:[],docomo:null,au:"E5C2",softbank:"E053",google:"FE1C2",image:"1f42d.png",sheet_x:13,sheet_y:9,short_name:"mouse",short_names:["mouse"],text:null,texts:null,category:"Nature",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pear:{name:"Pear",unified:"1F350",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f350.png",sheet_x:7,sheet_y:17,short_name:"pear",short_names:["pear"],text:null,texts:null,category:"Foods",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},green_heart:{name:"Green Heart",unified:"1F49A",variations:[],docomo:"E6EC",au:"EAA8",softbank:"E32B",google:"FEB14",image:"1f49a.png",sheet_x:20,sheet_y:1,short_name:"green_heart",short_names:["green_heart"],text:"<3",texts:null,category:"Symbols",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},football:{name:"American Football",unified:"1F3C8",variations:[],docomo:null,au:"E4BB",softbank:"E42B",google:"FE7DD",image:"1f3c8.png",sheet_x:10,sheet_y:24,short_name:"football",short_names:["football"],text:null,texts:null,category:"Activity",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},grin:{name:"Grinning Face with Smiling Eyes",unified:"1F601",variations:[],docomo:"E753",au:"EB80",softbank:"E404",google:"FE333",image:"1f601.png",sheet_x:26,sheet_y:16,short_name:"grin",short_names:["grin"],text:null,texts:null,category:"People",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-al":{name:"Regional Indicator Symbol Letters Al",unified:"1F1E6-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f1.png",sheet_x:32,sheet_y:39,short_name:"flag-al",short_names:["flag-al"],text:null,texts:null,category:"Flags",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},calling:{name:"Mobile Phone with Rightwards Arrow at Left",unified:"1F4F2",variations:[],docomo:"E6CE",au:"EB08",softbank:"E104",google:"FE526",image:"1f4f2.png",sheet_x:22,sheet_y:12,short_name:"calling",short_names:["calling"],text:null,texts:null,category:"Objects",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},blue_car:{name:"Recreational Vehicle",unified:"1F699",variations:[],docomo:"E65F",au:"E4B1",softbank:"E42E",google:"FE7E5",image:"1f699.png",sheet_x:29,sheet_y:37,short_name:"blue_car",short_names:["blue_car"],text:null,texts:null,category:"Places",sort_order:3,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hamster:{name:"Hamster Face",unified:"1F439",variations:[],docomo:null,au:null,softbank:"E524",google:"FE1CA",image:"1f439.png",sheet_x:13,sheet_y:21,short_name:"hamster",short_names:["hamster"],text:null,texts:null,category:"Nature",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},blue_heart:{name:"Blue Heart",unified:"1F499",variations:[],docomo:"E6EC",au:"EAA7",softbank:"E32A",google:"FEB13",image:"1f499.png",sheet_x:20,sheet_y:0,short_name:"blue_heart",short_names:["blue_heart"],text:"<3",texts:null,category:"Symbols",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bus:{name:"Bus",unified:"1F68C",variations:[],docomo:"E660",au:"E4AF",softbank:"E159",google:"FE7E6",image:"1f68c.png",sheet_x:29,sheet_y:24,short_name:"bus",short_names:["bus"],text:null,texts:null,category:"Places",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},joy:{name:"Face with Tears of Joy",unified:"1F602",variations:[],docomo:"E72A",au:"EB64",softbank:"E412",google:"FE334",image:"1f602.png",sheet_x:26,sheet_y:17,short_name:"joy",short_names:["joy"],text:null,texts:null,category:"People",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},computer:{name:"Personal Computer",unified:"1F4BB",variations:[],docomo:"E716",au:"E5B8",softbank:"E00C",google:"FE538",image:"1f4bb.png",sheet_x:20,sheet_y:39,short_name:"computer",short_names:["computer"],text:null,texts:null,category:"Objects",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tangerine:{name:"Tangerine",unified:"1F34A",variations:[],docomo:null,au:"EABA",softbank:"E346",google:"FE052",image:"1f34a.png",sheet_x:7,sheet_y:11,short_name:"tangerine",short_names:["tangerine"],text:null,texts:null,category:"Foods",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},baseball:{name:"Baseball",unified:"26BE",variations:["26BE-FE0F"],docomo:"E653",au:"E4BA",softbank:"E016",google:"FE7D1",image:"26be.png",sheet_x:2,sheet_y:19,short_name:"baseball",short_names:["baseball"],text:null,texts:null,category:"Activity",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-dz":{name:"Regional Indicator Symbol Letters Dz",unified:"1F1E9-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ff.png",sheet_x:34,sheet_y:15,short_name:"flag-dz",short_names:["flag-dz"],text:null,texts:null,category:"Flags",sort_order:4,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tennis:{name:"Tennis Racquet and Ball",unified:"1F3BE",variations:[],docomo:"E655",au:"E4B7",softbank:"E015",google:"FE7D3",image:"1f3be.png",sheet_x:10,sheet_y:4,short_name:"tennis",short_names:["tennis"],text:null,texts:null,category:"Activity",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},trolleybus:{name:"Trolleybus",unified:"1F68E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68e.png",sheet_x:29,sheet_y:26,short_name:"trolleybus",short_names:["trolleybus"],text:null,texts:null,category:"Places",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},keyboard:{name:"Keyboard",unified:"2328",variations:["2328-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2328.png",sheet_x:0,sheet_y:16,short_name:"keyboard",short_names:["keyboard"],text:null,texts:null,category:"Objects",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rabbit:{name:"Rabbit Face",unified:"1F430",variations:[],docomo:null,au:"E4D7",softbank:"E52C",google:"FE1D2",image:"1f430.png",sheet_x:13,sheet_y:12,short_name:"rabbit",short_names:["rabbit"],text:null,texts:null,category:"Nature",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-as":{name:"Regional Indicator Symbol Letters As",unified:"1F1E6-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f8.png",sheet_x:33,sheet_y:3,short_name:"flag-as",short_names:["flag-as"],text:null,texts:null,category:"Flags",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lemon:{name:"Lemon",unified:"1F34B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f34b.png",sheet_x:7,sheet_y:12,short_name:"lemon",short_names:["lemon"],text:null,texts:null,category:"Foods",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},purple_heart:{name:"Purple Heart",unified:"1F49C",variations:[],docomo:"E6EC",au:"EAAA",softbank:"E32D",google:"FEB16",image:"1f49c.png",sheet_x:20,sheet_y:3,short_name:"purple_heart",short_names:["purple_heart"],text:"<3",texts:null,category:"Symbols",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smiley:{name:"Smiling Face with Open Mouth",unified:"1F603",variations:[],docomo:"E6F0",au:"E471",softbank:"E057",google:"FE330",image:"1f603.png",sheet_x:26,sheet_y:18,short_name:"smiley",short_names:["smiley"],text:":)",texts:["=)","=-)"],category:"People",sort_order:5,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},desktop_computer:{name:"Desktop Computer",unified:"1F5A5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5a5.png",sheet_x:25,sheet_y:31,short_name:"desktop_computer",short_names:["desktop_computer"],text:null,texts:null,category:"Objects",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},racing_car:{name:"Racing Car",unified:"1F3CE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3ce.png",sheet_x:10,sheet_y:40,short_name:"racing_car",short_names:["racing_car"],text:null,texts:null,category:"Places",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},volleyball:{name:"Volleyball",unified:"1F3D0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d0.png",sheet_x:11,sheet_y:1,short_name:"volleyball",short_names:["volleyball"],text:null,texts:null,category:"Activity",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},banana:{name:"Banana",unified:"1F34C",variations:[],docomo:"E744",au:"EB35",softbank:null,google:"FE050",image:"1f34c.png",sheet_x:7,sheet_y:13,short_name:"banana",short_names:["banana"],text:null,texts:null,category:"Foods",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bear:{name:"Bear Face",unified:"1F43B",variations:[],docomo:null,au:"E5C1",softbank:"E051",google:"FE1C1",image:"1f43b.png",sheet_x:13,sheet_y:23,short_name:"bear",short_names:["bear"],text:null,texts:null,category:"Nature",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smile:{name:"Smiling Face with Open Mouth and Smiling Eyes",unified:"1F604",variations:[],docomo:"E6F0",au:"E471",softbank:"E415",google:"FE338",image:"1f604.png",sheet_x:26,sheet_y:19,short_name:"smile",short_names:["smile"],text:":)",texts:["C:","c:",":D",":-D"],category:"People",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ad":{name:"Regional Indicator Symbol Letters Ad",unified:"1F1E6-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1e9.png",sheet_x:32,sheet_y:34,short_name:"flag-ad",short_names:["flag-ad"],text:null,texts:null,category:"Flags",sort_order:6,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},broken_heart:{name:"Broken Heart",unified:"1F494",variations:[],docomo:"E6EE",au:"E477",softbank:"E023",google:"FEB0E",image:"1f494.png",sheet_x:19,sheet_y:36,short_name:"broken_heart",short_names:["broken_heart"],text:"",":->"],category:"People",sort_order:8,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},koala:{name:"Koala",unified:"1F428",variations:[],docomo:null,au:"EB20",softbank:"E527",google:"FE1CD",image:"1f428.png",sheet_x:13,sheet_y:4,short_name:"koala",short_names:["koala"],text:null,texts:null,category:"Nature",sort_order:8,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-aq":{name:"Regional Indicator Symbol Letters Aq",unified:"1F1E6-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f6.png",sheet_x:33,sheet_y:1,short_name:"flag-aq",short_names:["flag-aq"],text:null,texts:null,category:"Flags",sort_order:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},fire_engine:{name:"Fire Engine",unified:"1F692",variations:[],docomo:null,au:"EADF",softbank:"E430",google:"FE7F2",image:"1f692.png",sheet_x:29,sheet_y:30,short_name:"fire_engine",short_names:["fire_engine"],text:null,texts:null,category:"Places",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},revolving_hearts:{name:"Revolving Hearts",unified:"1F49E",variations:[],docomo:"E6ED",au:"E5AF",softbank:"E327",google:"FEB18",image:"1f49e.png",sheet_x:20,sheet_y:5,short_name:"revolving_hearts",short_names:["revolving_hearts"],text:null,texts:null,category:"Symbols",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},golf:{name:"Flag in Hole",unified:"26F3",variations:["26F3-FE0F"],docomo:"E654",au:"E599",softbank:"E014",google:"FE7D2",image:"26f3.png",sheet_x:2,sheet_y:33,short_name:"golf",short_names:["golf"],text:null,texts:null,category:"Activity",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},innocent:{name:"Smiling Face with Halo",unified:"1F607",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f607.png",sheet_x:26,sheet_y:22,short_name:"innocent",short_names:["innocent"],text:null,texts:null,category:"People",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},strawberry:{name:"Strawberry",unified:"1F353",variations:[],docomo:null,au:"E4D4",softbank:"E347",google:"FE053",image:"1f353.png",sheet_x:7,sheet_y:20,short_name:"strawberry",short_names:["strawberry"],text:null,texts:null,category:"Foods",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},trackball:{name:"Trackball",unified:"1F5B2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5b2.png",sheet_x:25,sheet_y:34,short_name:"trackball",short_names:["trackball"],text:null,texts:null,category:"Objects",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tiger:{name:"Tiger Face",unified:"1F42F",variations:[],docomo:null,au:"E5C0",softbank:"E050",google:"FE1C0",image:"1f42f.png",sheet_x:13,sheet_y:11,short_name:"tiger",short_names:["tiger"],text:null,texts:null,category:"Nature",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lion_face:{name:"Lion Face",unified:"1F981",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f981.png",sheet_x:32,sheet_y:16,short_name:"lion_face",short_names:["lion_face"],text:null,texts:null,category:"Nature",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ag":{name:"Regional Indicator Symbol Letters Ag",unified:"1F1E6-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ec.png",sheet_x:32,sheet_y:37,short_name:"flag-ag",short_names:["flag-ag"],text:null,texts:null,category:"Flags",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},minibus:{name:"Minibus",unified:"1F690",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f690.png",sheet_x:29,sheet_y:28,short_name:"minibus",short_names:["minibus"], -text:null,texts:null,category:"Places",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},melon:{name:"Melon",unified:"1F348",variations:[],docomo:null,au:"EB32",softbank:null,google:"FE057",image:"1f348.png",sheet_x:7,sheet_y:9,short_name:"melon",short_names:["melon"],text:null,texts:null,category:"Foods",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wink:{name:"Winking Face",unified:"1F609",variations:[],docomo:"E729",au:"E5C3",softbank:"E405",google:"FE347",image:"1f609.png",sheet_x:26,sheet_y:24,short_name:"wink",short_names:["wink"],text:";)",texts:[";)",";-)"],category:"People",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},golfer:{name:"Golfer",unified:"1F3CC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cc.png",sheet_x:10,sheet_y:38,short_name:"golfer",short_names:["golfer"],text:null,texts:null,category:"Activity",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heartbeat:{name:"Beating Heart",unified:"1F493",variations:[],docomo:"E6ED",au:"EB75",softbank:"E327",google:"FEB0D",image:"1f493.png",sheet_x:19,sheet_y:35,short_name:"heartbeat",short_names:["heartbeat"],text:null,texts:null,category:"Symbols",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},joystick:{name:"Joystick",unified:"1F579",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f579.png",sheet_x:25,sheet_y:7,short_name:"joystick",short_names:["joystick"],text:null,texts:null,category:"Objects",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heartpulse:{name:"Growing Heart",unified:"1F497",variations:[],docomo:"E6ED",au:"EB75",softbank:"E328",google:"FEB11",image:"1f497.png",sheet_x:19,sheet_y:39,short_name:"heartpulse",short_names:["heartpulse"],text:null,texts:null,category:"Symbols",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ar":{name:"Regional Indicator Symbol Letters Ar",unified:"1F1E6-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f7.png",sheet_x:33,sheet_y:2,short_name:"flag-ar",short_names:["flag-ar"],text:null,texts:null,category:"Flags",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},table_tennis_paddle_and_ball:{name:"Table Tennis Paddle and Ball",unified:"1F3D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d3.png",sheet_x:11,sheet_y:4,short_name:"table_tennis_paddle_and_ball",short_names:["table_tennis_paddle_and_ball"],text:null,texts:null,category:"Activity",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cow:{name:"Cow Face",unified:"1F42E",variations:[],docomo:null,au:"EB21",softbank:"E52B",google:"FE1D1",image:"1f42e.png",sheet_x:13,sheet_y:10,short_name:"cow",short_names:["cow"],text:null,texts:null,category:"Nature",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cherries:{name:"Cherries",unified:"1F352",variations:[],docomo:"E742",au:"E4D2",softbank:null,google:"FE04F",image:"1f352.png",sheet_x:7,sheet_y:19,short_name:"cherries",short_names:["cherries"],text:null,texts:null,category:"Foods",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},compression:{name:"Compression",unified:"1F5DC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5dc.png",sheet_x:26,sheet_y:1,short_name:"compression",short_names:["compression"],text:null,texts:null,category:"Objects",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},truck:{name:"Delivery Truck",unified:"1F69A",variations:[],docomo:null,au:"E4B2",softbank:"E42F",google:"FE7F1",image:"1f69a.png",sheet_x:29,sheet_y:38,short_name:"truck",short_names:["truck"],text:null,texts:null,category:"Places",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},blush:{name:"Smiling Face with Smiling Eyes",unified:"1F60A",variations:[],docomo:"E6F0",au:"EACD",softbank:"E056",google:"FE335",image:"1f60a.png",sheet_x:26,sheet_y:25,short_name:"blush",short_names:["blush"],text:":)",texts:null,category:"People",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},slightly_smiling_face:{name:"Slightly Smiling Face",unified:"1F642",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f642.png",sheet_x:27,sheet_y:40,short_name:"slightly_smiling_face",short_names:["slightly_smiling_face"],text:null,texts:[":)","(:",":-)"],category:"People",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pig:{name:"Pig Face",unified:"1F437",variations:[],docomo:"E755",au:"E4DE",softbank:"E10B",google:"FE1BF",image:"1f437.png",sheet_x:13,sheet_y:19,short_name:"pig",short_names:["pig"],text:null,texts:null,category:"Nature",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sparkling_heart:{name:"Sparkling Heart",unified:"1F496",variations:[],docomo:"E6EC",au:"EAA6",softbank:"E327",google:"FEB10",image:"1f496.png",sheet_x:19,sheet_y:38,short_name:"sparkling_heart",short_names:["sparkling_heart"],text:null,texts:null,category:"Symbols",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},badminton_racquet_and_shuttlecock:{name:"Badminton Racquet and Shuttlecock",unified:"1F3F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f8.png",sheet_x:11,sheet_y:38,short_name:"badminton_racquet_and_shuttlecock",short_names:["badminton_racquet_and_shuttlecock"],text:null,texts:null,category:"Activity",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},peach:{name:"Peach",unified:"1F351",variations:[],docomo:null,au:"EB39",softbank:null,google:"FE05A",image:"1f351.png",sheet_x:7,sheet_y:18,short_name:"peach",short_names:["peach"],text:null,texts:null,category:"Foods",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},minidisc:{name:"Minidisc",unified:"1F4BD",variations:[],docomo:null,au:"E582",softbank:"E316",google:"FE53C",image:"1f4bd.png",sheet_x:21,sheet_y:0,short_name:"minidisc",short_names:["minidisc"],text:null,texts:null,category:"Objects",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},articulated_lorry:{name:"Articulated Lorry",unified:"1F69B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69b.png",sheet_x:29,sheet_y:39,short_name:"articulated_lorry",short_names:["articulated_lorry"],text:null,texts:null,category:"Places",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-am":{name:"Regional Indicator Symbol Letters Am",unified:"1F1E6-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f2.png",sheet_x:32,sheet_y:40,short_name:"flag-am",short_names:["flag-am"],text:null,texts:null,category:"Flags",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ice_hockey_stick_and_puck:{name:"Ice Hockey Stick and Puck",unified:"1F3D2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d2.png",sheet_x:11,sheet_y:3,short_name:"ice_hockey_stick_and_puck",short_names:["ice_hockey_stick_and_puck"],text:null,texts:null,category:"Activity",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pineapple:{name:"Pineapple",unified:"1F34D",variations:[],docomo:null,au:"EB33",softbank:null,google:"FE058",image:"1f34d.png",sheet_x:7,sheet_y:14,short_name:"pineapple",short_names:["pineapple"],text:null,texts:null,category:"Foods",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-aw":{name:"Regional Indicator Symbol Letters Aw",unified:"1F1E6-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1fc.png",sheet_x:33,sheet_y:6,short_name:"flag-aw",short_names:["flag-aw"],text:null,texts:null,category:"Flags",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pig_nose:{name:"Pig Nose",unified:"1F43D",variations:[],docomo:"E755",au:"EB48",softbank:"E10B",google:"FE1E0",image:"1f43d.png",sheet_x:13,sheet_y:25,short_name:"pig_nose",short_names:["pig_nose"],text:null,texts:null,category:"Nature",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},floppy_disk:{name:"Floppy Disk",unified:"1F4BE",variations:[],docomo:null,au:"E562",softbank:"E316",google:"FE53D",image:"1f4be.png",sheet_x:21,sheet_y:1,short_name:"floppy_disk",short_names:["floppy_disk"],text:null,texts:null,category:"Objects",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tractor:{name:"Tractor",unified:"1F69C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69c.png",sheet_x:29,sheet_y:40,short_name:"tractor",short_names:["tractor"],text:null,texts:null,category:"Places",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},upside_down_face:{name:"Upside-Down Face",unified:"1F643",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f643.png",sheet_x:28,sheet_y:0,short_name:"upside_down_face",short_names:["upside_down_face"],text:null,texts:null,category:"People",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cupid:{name:"Heart with Arrow",unified:"1F498",variations:[],docomo:"E6EC",au:"E4EA",softbank:"E329",google:"FEB12",image:"1f498.png",sheet_x:19,sheet_y:40,short_name:"cupid",short_names:["cupid"],text:null,texts:null,category:"Symbols",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cd:{name:"Optical Disc",unified:"1F4BF",variations:[],docomo:"E68C",au:"E50C",softbank:"E126",google:"FE81D",image:"1f4bf.png",sheet_x:21,sheet_y:2,short_name:"cd",short_names:["cd"],text:null,texts:null,category:"Objects",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gift_heart:{name:"Heart with Ribbon",unified:"1F49D",variations:[],docomo:"E6EC",au:"EB54",softbank:"E437",google:"FEB17",image:"1f49d.png",sheet_x:20,sheet_y:4,short_name:"gift_heart",short_names:["gift_heart"],text:null,texts:null,category:"Symbols",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-au":{name:"Regional Indicator Symbol Letters Au",unified:"1F1E6-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1fa.png",sheet_x:33,sheet_y:5,short_name:"flag-au",short_names:["flag-au"],text:null,texts:null,category:"Flags",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},field_hockey_stick_and_ball:{name:"Field Hockey Stick and Ball",unified:"1F3D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d1.png",sheet_x:11,sheet_y:2,short_name:"field_hockey_stick_and_ball",short_names:["field_hockey_stick_and_ball"],text:null,texts:null,category:"Activity",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tomato:{name:"Tomato",unified:"1F345",variations:[],docomo:null,au:"EABB",softbank:"E349",google:"FE055",image:"1f345.png",sheet_x:7,sheet_y:6,short_name:"tomato",short_names:["tomato"],text:null,texts:null,category:"Foods",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},racing_motorcycle:{name:"Racing Motorcycle",unified:"1F3CD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cd.png",sheet_x:10,sheet_y:39,short_name:"racing_motorcycle",short_names:["racing_motorcycle"],text:null,texts:null,category:"Places",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},relaxed:{name:"White Smiling Face",unified:"263A",variations:["263A-FE0F"],docomo:"E6F0",au:"E4FB",softbank:"E414",google:"FE336",image:"263a.png",sheet_x:1,sheet_y:25,short_name:"relaxed",short_names:["relaxed"],text:null,texts:null,category:"People",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},frog:{name:"Frog Face",unified:"1F438",variations:[],docomo:null,au:"E4DA",softbank:"E531",google:"FE1D7",image:"1f438.png",sheet_x:13,sheet_y:20,short_name:"frog",short_names:["frog"],text:null,texts:null,category:"Nature",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cricket_bat_and_ball:{name:"Cricket Bat and Ball",unified:"1F3CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cf.png",sheet_x:11,sheet_y:0,short_name:"cricket_bat_and_ball",short_names:["cricket_bat_and_ball"],text:null,texts:null,category:"Activity",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dvd:{name:"Dvd",unified:"1F4C0",variations:[],docomo:"E68C",au:"E50C",softbank:"E127",google:"FE81E",image:"1f4c0.png",sheet_x:21,sheet_y:3,short_name:"dvd",short_names:["dvd"],text:null,texts:null,category:"Objects",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},octopus:{name:"Octopus",unified:"1F419",variations:[],docomo:null,au:"E5C7",softbank:"E10A",google:"FE1C5",image:"1f419.png",sheet_x:12,sheet_y:30,short_name:"octopus",short_names:["octopus"],text:null,texts:null,category:"Nature",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bike:{name:"Bicycle",unified:"1F6B2",variations:[],docomo:"E71D",au:"E4AE",softbank:"E136",google:"FE7EB",image:"1f6b2.png",sheet_x:30,sheet_y:26,short_name:"bike",short_names:["bike"],text:null,texts:null,category:"Places",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heart_decoration:{name:"Heart Decoration",unified:"1F49F",variations:[],docomo:"E6F8",au:"E595",softbank:"E204",google:"FEB19",image:"1f49f.png",sheet_x:20,sheet_y:6,short_name:"heart_decoration",short_names:["heart_decoration"],text:null,texts:null,category:"Symbols",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},yum:{name:"Face Savouring Delicious Food",unified:"1F60B",variations:[],docomo:"E752",au:"EACD",softbank:"E056",google:"FE32B",image:"1f60b.png",sheet_x:26,sheet_y:26,short_name:"yum",short_names:["yum"],text:null,texts:null,category:"People",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eggplant:{name:"Aubergine",unified:"1F346",variations:[],docomo:null,au:"EABC",softbank:"E34A",google:"FE056",image:"1f346.png",sheet_x:7,sheet_y:7,short_name:"eggplant",short_names:["eggplant"],text:null,texts:null,category:"Foods",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-at":{name:"Regional Indicator Symbol Letters at",unified:"1F1E6-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f9.png",sheet_x:33,sheet_y:4,short_name:"flag-at",short_names:["flag-at"],text:null,texts:null,category:"Flags",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rotating_light:{name:"Police Cars Revolving Light",unified:"1F6A8",variations:[],docomo:null,au:"EB73",softbank:"E432",google:"FE7F9",image:"1f6a8.png",sheet_x:30,sheet_y:16,short_name:"rotating_light",short_names:["rotating_light"],text:null,texts:null,category:"Places",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},monkey_face:{name:"Monkey Face",unified:"1F435",variations:[],docomo:null,au:"E4D9",softbank:"E109",google:"FE1C4",image:"1f435.png",sheet_x:13,sheet_y:17,short_name:"monkey_face",short_names:["monkey_face"],text:null,texts:[":o)"],category:"Nature",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ski:{name:"Ski and Ski Boot",unified:"1F3BF",variations:[],docomo:"E657",au:"EAAC",softbank:"E013",google:"FE7D5",image:"1f3bf.png",sheet_x:10,sheet_y:5,short_name:"ski",short_names:["ski"],text:null,texts:null,category:"Activity",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hot_pepper:{name:"Hot Pepper",unified:"1F336",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f336.png",sheet_x:6,sheet_y:32,short_name:"hot_pepper",short_names:["hot_pepper"],text:null,texts:null,category:"Foods",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},peace_symbol:{name:"Peace Symbol",unified:"262E",variations:["262E-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262e.png",sheet_x:1,sheet_y:21,short_name:"peace_symbol",short_names:["peace_symbol"],text:null,texts:null,category:"Symbols",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-az":{name:"Regional Indicator Symbol Letters Az",unified:"1F1E6-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ff.png",sheet_x:33,sheet_y:8,short_name:"flag-az",short_names:["flag-az"],text:null,texts:null,category:"Flags",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},relieved:{name:"Relieved Face",unified:"1F60C",variations:[],docomo:"E721",au:"EAC5",softbank:"E40A",google:"FE33E",image:"1f60c.png",sheet_x:26,sheet_y:27,short_name:"relieved",short_names:["relieved"],text:null,texts:null,category:"People",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},vhs:{name:"Videocassette",unified:"1F4FC",variations:[],docomo:null,au:"E580",softbank:"E129",google:"FE820",image:"1f4fc.png",sheet_x:22,sheet_y:22,short_name:"vhs",short_names:["vhs"],text:null,texts:null,category:"Objects",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oncoming_police_car:{name:"Oncoming Police Car",unified:"1F694",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f694.png",sheet_x:29,sheet_y:32,short_name:"oncoming_police_car",short_names:["oncoming_police_car"],text:null,texts:null,category:"Places",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},corn:{name:"Ear of Maize",unified:"1F33D",variations:[],docomo:null,au:"EB36",softbank:null,google:"FE04A",image:"1f33d.png",sheet_x:6,sheet_y:39,short_name:"corn",short_names:["corn"],text:null,texts:null,category:"Foods",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},latin_cross:{name:"Latin Cross",unified:"271D",variations:["271D-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"271d.png",sheet_x:3,sheet_y:37,short_name:"latin_cross",short_names:["latin_cross"],text:null,texts:null,category:"Symbols",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},camera:{name:"Camera",unified:"1F4F7",variations:[],docomo:"E681",au:"E515",softbank:"E008",google:"FE4EF",image:"1f4f7.png",sheet_x:22,sheet_y:17,short_name:"camera",short_names:["camera"],text:null,texts:null,category:"Objects",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},see_no_evil:{name:"See-No-Evil Monkey",unified:"1F648",variations:[],docomo:null,au:"EB50",softbank:null,google:"FE354",image:"1f648.png",sheet_x:28,sheet_y:20,short_name:"see_no_evil",short_names:["see_no_evil"],text:null,texts:null,category:"Nature",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heart_eyes:{name:"Smiling Face with Heart-Shaped Eyes",unified:"1F60D",variations:[],docomo:"E726",au:"E5C4",softbank:"E106",google:"FE327",image:"1f60d.png",sheet_x:26,sheet_y:28,short_name:"heart_eyes",short_names:["heart_eyes"],text:null,texts:null,category:"People",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bs":{name:"Regional Indicator Symbol Letters Bs",unified:"1F1E7-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f8.png",sheet_x:33,sheet_y:24,short_name:"flag-bs",short_names:["flag-bs"],text:null,texts:null,category:"Flags",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},skier:{name:"Skier",unified:"26F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f7.png",sheet_x:2,sheet_y:36,short_name:"skier",short_names:["skier"],text:null,texts:null,category:"Activity",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oncoming_bus:{name:"Oncoming Bus",unified:"1F68D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68d.png",sheet_x:29,sheet_y:25,short_name:"oncoming_bus",short_names:["oncoming_bus"],text:null,texts:null,category:"Places",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snowboarder:{name:"Snowboarder",unified:"1F3C2",variations:[],docomo:"E712",au:"E4B8",softbank:null,google:"FE7D8",image:"1f3c2.png",sheet_x:10,sheet_y:8,short_name:"snowboarder",short_names:["snowboarder"],text:null,texts:null,category:"Activity",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sweet_potato:{name:"Roasted Sweet Potato",unified:"1F360",variations:[],docomo:null,au:"EB3A",softbank:null,google:"FE974",image:"1f360.png",sheet_x:7,sheet_y:33,short_name:"sweet_potato",short_names:["sweet_potato"],text:null,texts:null,category:"Foods",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hear_no_evil:{name:"Hear-No-Evil Monkey",unified:"1F649",variations:[],docomo:null,au:"EB52",softbank:null,google:"FE356",image:"1f649.png",sheet_x:28,sheet_y:21,short_name:"hear_no_evil",short_names:["hear_no_evil"],text:null,texts:null,category:"Nature",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bh":{name:"Regional Indicator Symbol Letters Bh",unified:"1F1E7-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ed.png",sheet_x:33,sheet_y:15,short_name:"flag-bh",short_names:["flag-bh"],text:null,texts:null,category:"Flags",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},star_and_crescent:{name:"Star and Crescent",unified:"262A",variations:["262A-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262a.png",sheet_x:1,sheet_y:20,short_name:"star_and_crescent",short_names:["star_and_crescent"],text:null,texts:null,category:"Symbols",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kissing_heart:{name:"Face Throwing a Kiss",unified:"1F618",variations:[],docomo:"E726",au:"EACF",softbank:"E418",google:"FE32C",image:"1f618.png",sheet_x:26,sheet_y:39,short_name:"kissing_heart",short_names:["kissing_heart"],text:null,texts:null,category:"People",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},camera_with_flash:{name:"Camera with Flash",unified:"1F4F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f8.png",sheet_x:22,sheet_y:18,short_name:"camera_with_flash",short_names:["camera_with_flash"],text:null,texts:null,category:"Objects",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ice_skate:{name:"Ice Skate",unified:"26F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f8.png",sheet_x:2,sheet_y:37,short_name:"ice_skate",short_names:["ice_skate"],text:null,texts:null,category:"Activity",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oncoming_automobile:{name:"Oncoming Automobile",unified:"1F698",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f698.png",sheet_x:29,sheet_y:36,short_name:"oncoming_automobile",short_names:["oncoming_automobile"],text:null,texts:null,category:"Places",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},speak_no_evil:{name:"Speak-No-Evil Monkey",unified:"1F64A",variations:[],docomo:null,au:"EB51",softbank:null,google:"FE355",image:"1f64a.png",sheet_x:28,sheet_y:22,short_name:"speak_no_evil",short_names:["speak_no_evil"],text:null,texts:null,category:"Nature",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},honey_pot:{name:"Honey Pot",unified:"1F36F",variations:[],docomo:null,au:"EB59",softbank:null,google:"FE97E",image:"1f36f.png",sheet_x:8,sheet_y:7,short_name:"honey_pot",short_names:["honey_pot"],text:null,texts:null,category:"Foods",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kissing:{name:"Kissing Face",unified:"1F617",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f617.png",sheet_x:26,sheet_y:38,short_name:"kissing",short_names:["kissing"],text:null,texts:null,category:"People",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},video_camera:{name:"Video Camera",unified:"1F4F9",variations:[],docomo:"E677",au:"E57E",softbank:"E03D",google:"FE4F9",image:"1f4f9.png",sheet_x:22,sheet_y:19,short_name:"video_camera",short_names:["video_camera"],text:null,texts:null,category:"Objects",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},om_symbol:{name:"Om Symbol",unified:"1F549",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f549.png",sheet_x:24,sheet_y:5,short_name:"om_symbol",short_names:["om_symbol"],text:null,texts:null,category:"Symbols",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bd":{name:"Regional Indicator Symbol Letters Bd",unified:"1F1E7-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e9.png",sheet_x:33,sheet_y:11,short_name:"flag-bd",short_names:["flag-bd"],text:null,texts:null,category:"Flags",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},monkey:{name:"Monkey",unified:"1F412",variations:[],docomo:null,au:"E4D9",softbank:"E528",google:"FE1CE",image:"1f412.png",sheet_x:12,sheet_y:23,short_name:"monkey",short_names:["monkey"],text:null,texts:null,category:"Nature",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},movie_camera:{name:"Movie Camera",unified:"1F3A5",variations:[],docomo:"E677",au:"E517",softbank:"E03D",google:"FE801",image:"1f3a5.png",sheet_x:9,sheet_y:20,short_name:"movie_camera",short_names:["movie_camera"],text:null,texts:null,category:"Objects",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oncoming_taxi:{name:"Oncoming Taxi",unified:"1F696",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f696.png",sheet_x:29,sheet_y:34,short_name:"oncoming_taxi",short_names:["oncoming_taxi"],text:null,texts:null,category:"Places",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bb":{name:"Regional Indicator Symbol Letters Bb",unified:"1F1E7-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e7.png",sheet_x:33,sheet_y:10,short_name:"flag-bb",short_names:["flag-bb"],text:null,texts:null,category:"Flags",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kissing_smiling_eyes:{name:"Kissing Face with Smiling Eyes",unified:"1F619",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f619.png",sheet_x:26,sheet_y:40,short_name:"kissing_smiling_eyes",short_names:["kissing_smiling_eyes"],text:null,texts:null,category:"People",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bread:{name:"Bread",unified:"1F35E",variations:[],docomo:"E74D",au:"EAAF",softbank:"E339",google:"FE964",image:"1f35e.png",sheet_x:7,sheet_y:31,short_name:"bread",short_names:["bread"],text:null,texts:null,category:"Foods",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bow_and_arrow:{name:"Bow and Arrow",unified:"1F3F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f9.png",sheet_x:11,sheet_y:39,short_name:"bow_and_arrow",short_names:["bow_and_arrow"],text:null,texts:null,category:"Activity",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wheel_of_dharma:{name:"Wheel of Dharma",unified:"2638",variations:["2638-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2638.png",sheet_x:1,sheet_y:23,short_name:"wheel_of_dharma",short_names:["wheel_of_dharma"],text:null,texts:null,category:"Symbols",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},aerial_tramway:{name:"Aerial Tramway",unified:"1F6A1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a1.png",sheet_x:30,sheet_y:4,short_name:"aerial_tramway",short_names:["aerial_tramway"],text:null,texts:null,category:"Places",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cheese_wedge:{name:"Cheese Wedge",unified:"1F9C0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f9c0.png",sheet_x:32,sheet_y:20,short_name:"cheese_wedge",short_names:["cheese_wedge"],text:null,texts:null,category:"Foods",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},film_projector:{name:"Film Projector",unified:"1F4FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4fd.png",sheet_x:22,sheet_y:23,short_name:"film_projector",short_names:["film_projector"],text:null,texts:null,category:"Objects",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fishing_pole_and_fish:{name:"Fishing Pole and Fish",unified:"1F3A3",variations:[],docomo:"E751",au:"EB42",softbank:"E019",google:"FE7FF",image:"1f3a3.png",sheet_x:9,sheet_y:18,short_name:"fishing_pole_and_fish",short_names:["fishing_pole_and_fish"],text:null,texts:null,category:"Activity",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kissing_closed_eyes:{name:"Kissing Face with Closed Eyes",unified:"1F61A",variations:[],docomo:"E726",au:"EACE",softbank:"E417",google:"FE32D",image:"1f61a.png",sheet_x:27,sheet_y:0,short_name:"kissing_closed_eyes",short_names:["kissing_closed_eyes"],text:null,texts:null,category:"People",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},star_of_david:{name:"Star of David",unified:"2721",variations:["2721-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2721.png",sheet_x:3,sheet_y:38,short_name:"star_of_david",short_names:["star_of_david"],text:null,texts:null,category:"Symbols",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chicken:{name:"Chicken",unified:"1F414",variations:[],docomo:null,au:"EB23",softbank:"E52E",google:"FE1D4",image:"1f414.png",sheet_x:12,sheet_y:25,short_name:"chicken",short_names:["chicken"],text:null,texts:null,category:"Nature",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-by":{name:"Regional Indicator Symbol Letters by",unified:"1F1E7-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fe.png",sheet_x:33,sheet_y:28,short_name:"flag-by",short_names:["flag-by"],text:null,texts:null,category:"Flags",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},six_pointed_star:{name:"Six Pointed Star with Middle Dot",unified:"1F52F",variations:[],docomo:null,au:"EA8F",softbank:"E23E",google:"FE4F8",image:"1f52f.png",sheet_x:23,sheet_y:31,short_name:"six_pointed_star",short_names:["six_pointed_star"],text:null,texts:null,category:"Symbols",sort_order:22, -has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},penguin:{name:"Penguin",unified:"1F427",variations:[],docomo:"E750",au:"E4DC",softbank:"E055",google:"FE1BC",image:"1f427.png",sheet_x:13,sheet_y:3,short_name:"penguin",short_names:["penguin"],text:null,texts:null,category:"Nature",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mountain_cableway:{name:"Mountain Cableway",unified:"1F6A0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a0.png",sheet_x:30,sheet_y:3,short_name:"mountain_cableway",short_names:["mountain_cableway"],text:null,texts:null,category:"Places",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stuck_out_tongue_winking_eye:{name:"Face with Stuck-out Tongue and Winking Eye",unified:"1F61C",variations:[],docomo:"E728",au:"E4E7",softbank:"E105",google:"FE329",image:"1f61c.png",sheet_x:27,sheet_y:2,short_name:"stuck_out_tongue_winking_eye",short_names:["stuck_out_tongue_winking_eye"],text:";p",texts:[";p",";-p",";b",";-b",";P",";-P"],category:"People",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-be":{name:"Regional Indicator Symbol Letters Be",unified:"1F1E7-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ea.png",sheet_x:33,sheet_y:12,short_name:"flag-be",short_names:["flag-be"],text:null,texts:null,category:"Flags",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},film_frames:{name:"Film Frames",unified:"1F39E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39e.png",sheet_x:9,sheet_y:13,short_name:"film_frames",short_names:["film_frames"],text:null,texts:null,category:"Objects",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},poultry_leg:{name:"Poultry Leg",unified:"1F357",variations:[],docomo:null,au:"EB3C",softbank:null,google:"FE976",image:"1f357.png",sheet_x:7,sheet_y:24,short_name:"poultry_leg",short_names:["poultry_leg"],text:null,texts:null,category:"Foods",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rowboat:{name:"Rowboat",unified:"1F6A3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a3.png",sheet_x:30,sheet_y:6,short_name:"rowboat",short_names:["rowboat"],text:null,texts:null,category:"Activity",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6A3-1F3FB":{unified:"1F6A3-1F3FB",image:"1f6a3-1f3fb.png",sheet_x:30,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FC":{unified:"1F6A3-1F3FC",image:"1f6a3-1f3fc.png",sheet_x:30,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FD":{unified:"1F6A3-1F3FD",image:"1f6a3-1f3fd.png",sheet_x:30,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FE":{unified:"1F6A3-1F3FE",image:"1f6a3-1f3fe.png",sheet_x:30,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FF":{unified:"1F6A3-1F3FF",image:"1f6a3-1f3ff.png",sheet_x:30,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},menorah_with_nine_branches:{name:"Menorah with Nine Branches",unified:"1F54E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54e.png",sheet_x:24,sheet_y:10,short_name:"menorah_with_nine_branches",short_names:["menorah_with_nine_branches"],text:null,texts:null,category:"Symbols",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stuck_out_tongue_closed_eyes:{name:"Face with Stuck-out Tongue and Tightly-Closed Eyes",unified:"1F61D",variations:[],docomo:"E728",au:"E4E7",softbank:"E409",google:"FE32A",image:"1f61d.png",sheet_x:27,sheet_y:3,short_name:"stuck_out_tongue_closed_eyes",short_names:["stuck_out_tongue_closed_eyes"],text:null,texts:null,category:"People",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bz":{name:"Regional Indicator Symbol Letters Bz",unified:"1F1E7-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ff.png",sheet_x:33,sheet_y:29,short_name:"flag-bz",short_names:["flag-bz"],text:null,texts:null,category:"Flags",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},swimmer:{name:"Swimmer",unified:"1F3CA",variations:[],docomo:null,au:"EADE",softbank:"E42D",google:"FE7DE",image:"1f3ca.png",sheet_x:10,sheet_y:26,short_name:"swimmer",short_names:["swimmer"],text:null,texts:null,category:"Activity",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3CA-1F3FB":{unified:"1F3CA-1F3FB",image:"1f3ca-1f3fb.png",sheet_x:10,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FC":{unified:"1F3CA-1F3FC",image:"1f3ca-1f3fc.png",sheet_x:10,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FD":{unified:"1F3CA-1F3FD",image:"1f3ca-1f3fd.png",sheet_x:10,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FE":{unified:"1F3CA-1F3FE",image:"1f3ca-1f3fe.png",sheet_x:10,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FF":{unified:"1F3CA-1F3FF",image:"1f3ca-1f3ff.png",sheet_x:10,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},bird:{name:"Bird",unified:"1F426",variations:[],docomo:"E74F",au:"E4E0",softbank:"E521",google:"FE1C8",image:"1f426.png",sheet_x:13,sheet_y:2,short_name:"bird",short_names:["bird"],text:null,texts:null,category:"Nature",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},telephone_receiver:{name:"Telephone Receiver",unified:"1F4DE",variations:[],docomo:"E687",au:"E51E",softbank:"E009",google:"FE524",image:"1f4de.png",sheet_x:21,sheet_y:33,short_name:"telephone_receiver",short_names:["telephone_receiver"],text:null,texts:null,category:"Objects",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},meat_on_bone:{name:"Meat on Bone",unified:"1F356",variations:[],docomo:null,au:"E4C4",softbank:null,google:"FE972",image:"1f356.png",sheet_x:7,sheet_y:23,short_name:"meat_on_bone",short_names:["meat_on_bone"],text:null,texts:null,category:"Foods",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},suspension_railway:{name:"Suspension Railway",unified:"1F69F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69f.png",sheet_x:30,sheet_y:2,short_name:"suspension_railway",short_names:["suspension_railway"],text:null,texts:null,category:"Places",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bj":{name:"Regional Indicator Symbol Letters Bj",unified:"1F1E7-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ef.png",sheet_x:33,sheet_y:17,short_name:"flag-bj",short_names:["flag-bj"],text:null,texts:null,category:"Flags",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},yin_yang:{name:"Yin Yang",unified:"262F",variations:["262F-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262f.png",sheet_x:1,sheet_y:22,short_name:"yin_yang",short_names:["yin_yang"],text:null,texts:null,category:"Symbols",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stuck_out_tongue:{name:"Face with Stuck-out Tongue",unified:"1F61B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f61b.png",sheet_x:27,sheet_y:1,short_name:"stuck_out_tongue",short_names:["stuck_out_tongue"],text:":p",texts:[":p",":-p",":P",":-P",":b",":-b"],category:"People",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},phone:{name:"Black Telephone",unified:"260E",variations:["260E-FE0F"],docomo:"E687",au:"E596",softbank:"E009",google:"FE523",image:"260e.png",sheet_x:1,sheet_y:5,short_name:"phone",short_names:["phone","telephone"],text:null,texts:null,category:"Objects",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},railway_car:{name:"Railway Car",unified:"1F683",variations:[],docomo:"E65B",au:"E4B5",softbank:"E01E",google:"FE7DF",image:"1f683.png",sheet_x:29,sheet_y:15,short_name:"railway_car",short_names:["railway_car"],text:null,texts:null,category:"Places",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fried_shrimp:{name:"Fried Shrimp",unified:"1F364",variations:[],docomo:null,au:"EB70",softbank:null,google:"FE97F",image:"1f364.png",sheet_x:7,sheet_y:37,short_name:"fried_shrimp",short_names:["fried_shrimp"],text:null,texts:null,category:"Foods",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},surfer:{name:"Surfer",unified:"1F3C4",variations:[],docomo:"E712",au:"EB41",softbank:"E017",google:"FE7DA",image:"1f3c4.png",sheet_x:10,sheet_y:15,short_name:"surfer",short_names:["surfer"],text:null,texts:null,category:"Activity",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3C4-1F3FB":{unified:"1F3C4-1F3FB",image:"1f3c4-1f3fb.png",sheet_x:10,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FC":{unified:"1F3C4-1F3FC",image:"1f3c4-1f3fc.png",sheet_x:10,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FD":{unified:"1F3C4-1F3FD",image:"1f3c4-1f3fd.png",sheet_x:10,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FE":{unified:"1F3C4-1F3FE",image:"1f3c4-1f3fe.png",sheet_x:10,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FF":{unified:"1F3C4-1F3FF",image:"1f3c4-1f3ff.png",sheet_x:10,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},baby_chick:{name:"Baby Chick",unified:"1F424",variations:[],docomo:"E74F",au:"E4E0",softbank:"E523",google:"FE1BA",image:"1f424.png",sheet_x:13,sheet_y:0,short_name:"baby_chick",short_names:["baby_chick"],text:null,texts:null,category:"Nature",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},egg:{name:"Cooking",unified:"1F373",variations:[],docomo:null,au:"E4D1",softbank:"E147",google:"FE965",image:"1f373.png",sheet_x:8,sheet_y:11,short_name:"egg",short_names:["egg"],text:null,texts:null,category:"Foods",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bm":{name:"Regional Indicator Symbol Letters Bm",unified:"1F1E7-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f2.png",sheet_x:33,sheet_y:19,short_name:"flag-bm",short_names:["flag-bm"],text:null,texts:null,category:"Flags",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hatching_chick:{name:"Hatching Chick",unified:"1F423",variations:[],docomo:"E74F",au:"E5DB",softbank:"E523",google:"FE1DD",image:"1f423.png",sheet_x:12,sheet_y:40,short_name:"hatching_chick",short_names:["hatching_chick"],text:null,texts:null,category:"Nature",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},train:{name:"Tram Car",unified:"1F68B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68b.png",sheet_x:29,sheet_y:23,short_name:"train",short_names:["train"],text:null,texts:null,category:"Places",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pager:{name:"Pager",unified:"1F4DF",variations:[],docomo:"E65A",au:"E59B",softbank:null,google:"FE522",image:"1f4df.png",sheet_x:21,sheet_y:34,short_name:"pager",short_names:["pager"],text:null,texts:null,category:"Objects",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bath:{name:"Bath",unified:"1F6C0",variations:[],docomo:"E6F7",au:"E5D8",softbank:"E13F",google:"FE505",image:"1f6c0.png",sheet_x:31,sheet_y:14,short_name:"bath",short_names:["bath"],text:null,texts:null,category:"Activity",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6C0-1F3FB":{unified:"1F6C0-1F3FB",image:"1f6c0-1f3fb.png",sheet_x:31,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FC":{unified:"1F6C0-1F3FC",image:"1f6c0-1f3fc.png",sheet_x:31,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FD":{unified:"1F6C0-1F3FD",image:"1f6c0-1f3fd.png",sheet_x:31,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FE":{unified:"1F6C0-1F3FE",image:"1f6c0-1f3fe.png",sheet_x:31,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FF":{unified:"1F6C0-1F3FF",image:"1f6c0-1f3ff.png",sheet_x:31,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},money_mouth_face:{name:"Money-Mouth Face",unified:"1F911",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f911.png",sheet_x:32,sheet_y:2,short_name:"money_mouth_face",short_names:["money_mouth_face"],text:null,texts:null,category:"People",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},orthodox_cross:{name:"Orthodox Cross",unified:"2626",variations:["2626-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2626.png",sheet_x:1,sheet_y:19,short_name:"orthodox_cross",short_names:["orthodox_cross"],text:null,texts:null,category:"Symbols",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hatched_chick:{name:"Front-Facing Baby Chick",unified:"1F425",variations:[],docomo:"E74F",au:"EB76",softbank:"E523",google:"FE1BB",image:"1f425.png",sheet_x:13,sheet_y:1,short_name:"hatched_chick",short_names:["hatched_chick"],text:null,texts:null,category:"Nature",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},place_of_worship:{name:"Place of Worship",unified:"1F6D0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6d0.png",sheet_x:31,sheet_y:30,short_name:"place_of_worship",short_names:["place_of_worship"],text:null,texts:null,category:"Symbols",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hamburger:{name:"Hamburger",unified:"1F354",variations:[],docomo:"E673",au:"E4D6",softbank:"E120",google:"FE960",image:"1f354.png",sheet_x:7,sheet_y:21,short_name:"hamburger",short_names:["hamburger"],text:null,texts:null,category:"Foods",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bt":{name:"Regional Indicator Symbol Letters Bt",unified:"1F1E7-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f9.png",sheet_x:33,sheet_y:25,short_name:"flag-bt",short_names:["flag-bt"],text:null,texts:null,category:"Flags",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fax:{name:"Fax Machine",unified:"1F4E0",variations:[],docomo:"E6D0",au:"E520",softbank:"E00B",google:"FE528",image:"1f4e0.png",sheet_x:21,sheet_y:35,short_name:"fax",short_names:["fax"],text:null,texts:null,category:"Objects",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},nerd_face:{name:"Nerd Face",unified:"1F913",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f913.png",sheet_x:32,sheet_y:4,short_name:"nerd_face",short_names:["nerd_face"],text:null,texts:null,category:"People",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},monorail:{name:"Monorail",unified:"1F69D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69d.png",sheet_x:30,sheet_y:0,short_name:"monorail",short_names:["monorail"],text:null,texts:null,category:"Places",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},person_with_ball:{name:"Person with Ball",unified:"26F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f9.png",sheet_x:2,sheet_y:38,short_name:"person_with_ball",short_names:["person_with_ball"],text:null,texts:null,category:"Activity",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"26F9-1F3FB":{unified:"26F9-1F3FB",image:"26f9-1f3fb.png",sheet_x:2,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FC":{unified:"26F9-1F3FC",image:"26f9-1f3fc.png",sheet_x:2,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FD":{unified:"26F9-1F3FD",image:"26f9-1f3fd.png",sheet_x:3,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FE":{unified:"26F9-1F3FE",image:"26f9-1f3fe.png",sheet_x:3,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FF":{unified:"26F9-1F3FF",image:"26f9-1f3ff.png",sheet_x:3,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},weight_lifter:{name:"Weight Lifter",unified:"1F3CB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cb.png",sheet_x:10,sheet_y:32,short_name:"weight_lifter",short_names:["weight_lifter"],text:null,texts:null,category:"Activity",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3CB-1F3FB":{unified:"1F3CB-1F3FB",image:"1f3cb-1f3fb.png",sheet_x:10,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FC":{unified:"1F3CB-1F3FC",image:"1f3cb-1f3fc.png",sheet_x:10,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FD":{unified:"1F3CB-1F3FD",image:"1f3cb-1f3fd.png",sheet_x:10,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FE":{unified:"1F3CB-1F3FE",image:"1f3cb-1f3fe.png",sheet_x:10,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FF":{unified:"1F3CB-1F3FF",image:"1f3cb-1f3ff.png",sheet_x:10,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},sunglasses:{name:"Smiling Face with Sunglasses",unified:"1F60E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f60e.png",sheet_x:26,sheet_y:29,short_name:"sunglasses",short_names:["sunglasses"],text:null,texts:["8)"],category:"People",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wolf:{name:"Wolf Face",unified:"1F43A",variations:[],docomo:"E6A1",au:"E4E1",softbank:"E52A",google:"FE1D0",image:"1f43a.png",sheet_x:13,sheet_y:22,short_name:"wolf",short_names:["wolf"],text:null,texts:null,category:"Nature",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bullettrain_side:{name:"High-Speed Train",unified:"1F684",variations:[],docomo:"E65D",au:"E4B0",softbank:"E435",google:"FE7E2",image:"1f684.png",sheet_x:29,sheet_y:16,short_name:"bullettrain_side",short_names:["bullettrain_side"],text:null,texts:null,category:"Places",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ophiuchus:{name:"Ophiuchus",unified:"26CE",variations:[],docomo:null,au:"E49B",softbank:"E24B",google:"FE037",image:"26ce.png",sheet_x:2,sheet_y:23,short_name:"ophiuchus",short_names:["ophiuchus"],text:null,texts:null,category:"Symbols",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bo":{name:"Regional Indicator Symbol Letters Bo",unified:"1F1E7-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f4.png",sheet_x:33,sheet_y:21,short_name:"flag-bo",short_names:["flag-bo"],text:null,texts:null,category:"Flags",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tv:{name:"Television",unified:"1F4FA",variations:[],docomo:"E68A",au:"E502",softbank:"E12A",google:"FE81C",image:"1f4fa.png",sheet_x:22,sheet_y:20,short_name:"tv",short_names:["tv"],text:null,texts:null,category:"Objects",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fries:{name:"French Fries",unified:"1F35F",variations:[],docomo:null,au:"EAB1",softbank:"E33B",google:"FE967",image:"1f35f.png",sheet_x:7,sheet_y:32,short_name:"fries",short_names:["fries"],text:null,texts:null,category:"Foods",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bicyclist:{name:"Bicyclist",unified:"1F6B4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b4.png",sheet_x:30,sheet_y:28,short_name:"bicyclist",short_names:["bicyclist"],text:null,texts:null,category:"Activity",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B4-1F3FB":{unified:"1F6B4-1F3FB",image:"1f6b4-1f3fb.png",sheet_x:30,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FC":{unified:"1F6B4-1F3FC",image:"1f6b4-1f3fc.png",sheet_x:30,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FD":{unified:"1F6B4-1F3FD",image:"1f6b4-1f3fd.png",sheet_x:30,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FE":{unified:"1F6B4-1F3FE",image:"1f6b4-1f3fe.png",sheet_x:30,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FF":{unified:"1F6B4-1F3FF",image:"1f6b4-1f3ff.png",sheet_x:30,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},aries:{name:"Aries",unified:"2648",variations:["2648-FE0F"],docomo:"E646",au:"E48F",softbank:"E23F",google:"FE02B",image:"2648.png",sheet_x:1,sheet_y:26,short_name:"aries",short_names:["aries"],text:null,texts:null,category:"Symbols",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hugging_face:{name:"Hugging Face",unified:"1F917",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f917.png",sheet_x:32,sheet_y:8,short_name:"hugging_face",short_names:["hugging_face"],text:null,texts:null,category:"People",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bq":{name:"Regional Indicator Symbol Letters Bq",unified:"1F1E7-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f6.png",sheet_x:33,sheet_y:22,short_name:"flag-bq",short_names:["flag-bq"],text:null,texts:null,category:"Flags",sort_order:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},bullettrain_front:{name:"High-Speed Train with Bullet Nose",unified:"1F685",variations:[],docomo:"E65D",au:"E4B0",softbank:"E01F",google:"FE7E3",image:"1f685.png",sheet_x:29,sheet_y:17,short_name:"bullettrain_front",short_names:["bullettrain_front"],text:null,texts:null,category:"Places",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},radio:{name:"Radio",unified:"1F4FB",variations:[],docomo:null,au:"E5B9",softbank:"E128",google:"FE81F",image:"1f4fb.png",sheet_x:22,sheet_y:21,short_name:"radio",short_names:["radio"],text:null,texts:null,category:"Objects",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hotdog:{name:"Hot Dog",unified:"1F32D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32d.png",sheet_x:6,sheet_y:23,short_name:"hotdog",short_names:["hotdog"],text:null,texts:null,category:"Foods",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},boar:{name:"Boar",unified:"1F417",variations:[],docomo:null,au:"EB24",softbank:"E52F",google:"FE1D5",image:"1f417.png",sheet_x:12,sheet_y:28,short_name:"boar",short_names:["boar"],text:null,texts:null,category:"Nature",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},studio_microphone:{name:"Studio Microphone",unified:"1F399",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f399.png",sheet_x:9,sheet_y:10,short_name:"studio_microphone",short_names:["studio_microphone"],text:null,texts:null,category:"Objects",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pizza:{name:"Slice of Pizza",unified:"1F355",variations:[],docomo:null,au:"EB3B",softbank:null,google:"FE975",image:"1f355.png",sheet_x:7,sheet_y:22,short_name:"pizza",short_names:["pizza"],text:null,texts:null,category:"Foods",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ba":{name:"Regional Indicator Symbol Letters Ba",unified:"1F1E7-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e6.png",sheet_x:33,sheet_y:9,short_name:"flag-ba",short_names:["flag-ba"],text:null,texts:null,category:"Flags",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mountain_bicyclist:{name:"Mountain Bicyclist",unified:"1F6B5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b5.png",sheet_x:30,sheet_y:34,short_name:"mountain_bicyclist",short_names:["mountain_bicyclist"],text:null,texts:null,category:"Activity",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B5-1F3FB":{unified:"1F6B5-1F3FB",image:"1f6b5-1f3fb.png",sheet_x:30,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FC":{unified:"1F6B5-1F3FC",image:"1f6b5-1f3fc.png",sheet_x:30,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FD":{unified:"1F6B5-1F3FD",image:"1f6b5-1f3fd.png",sheet_x:30,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FE":{unified:"1F6B5-1F3FE",image:"1f6b5-1f3fe.png",sheet_x:30,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FF":{unified:"1F6B5-1F3FF",image:"1f6b5-1f3ff.png",sheet_x:30,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},smirk:{name:"Smirking Face",unified:"1F60F",variations:[],docomo:"E72C",au:"EABF",softbank:"E402",google:"FE343",image:"1f60f.png",sheet_x:26,sheet_y:30,short_name:"smirk",short_names:["smirk"],text:null,texts:null,category:"People",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},light_rail:{name:"Light Rail",unified:"1F688",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f688.png",sheet_x:29,sheet_y:20,short_name:"light_rail",short_names:["light_rail"],text:null,texts:null,category:"Places",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},horse:{name:"Horse Face",unified:"1F434",variations:[],docomo:"E754",au:"E4D8",softbank:"E01A",google:"FE1BE",image:"1f434.png",sheet_x:13,sheet_y:16,short_name:"horse",short_names:["horse"],text:null,texts:null,category:"Nature",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},taurus:{name:"Taurus",unified:"2649",variations:["2649-FE0F"],docomo:"E647",au:"E490",softbank:"E240",google:"FE02C",image:"2649.png",sheet_x:1,sheet_y:27,short_name:"taurus",short_names:["taurus"],text:null,texts:null,category:"Symbols",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gemini:{name:"Gemini",unified:"264A",variations:["264A-FE0F"],docomo:"E648",au:"E491",softbank:"E241",google:"FE02D",image:"264a.png",sheet_x:1,sheet_y:28,short_name:"gemini",short_names:["gemini"],text:null,texts:null,category:"Symbols",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},horse_racing:{name:"Horse Racing",unified:"1F3C7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3c7.png",sheet_x:10,sheet_y:23,short_name:"horse_racing",short_names:["horse_racing"],text:null,texts:null,category:"Activity",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},level_slider:{name:"Level Slider",unified:"1F39A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39a.png",sheet_x:9,sheet_y:11,short_name:"level_slider",short_names:["level_slider"],text:null,texts:null,category:"Objects",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bw":{name:"Regional Indicator Symbol Letters Bw",unified:"1F1E7-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fc.png",sheet_x:33,sheet_y:27,short_name:"flag-bw",short_names:["flag-bw"],text:null,texts:null,category:"Flags",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},unicorn_face:{name:"Unicorn Face",unified:"1F984",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f984.png",sheet_x:32,sheet_y:19,short_name:"unicorn_face",short_names:["unicorn_face"],text:null,texts:null,category:"Nature",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mountain_railway:{name:"Mountain Railway",unified:"1F69E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69e.png",sheet_x:30,sheet_y:1,short_name:"mountain_railway",short_names:["mountain_railway"],text:null,texts:null,category:"Places",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},spaghetti:{name:"Spaghetti",unified:"1F35D",variations:[],docomo:null,au:"EAB5",softbank:"E33F",google:"FE96B",image:"1f35d.png",sheet_x:7,sheet_y:30,short_name:"spaghetti",short_names:["spaghetti"],text:null,texts:null,category:"Foods",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_mouth:{name:"Face Without Mouth",unified:"1F636",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f636.png",sheet_x:27,sheet_y:28,short_name:"no_mouth",short_names:["no_mouth"],text:null,texts:null,category:"People",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-br":{name:"Regional Indicator Symbol Letters Br",unified:"1F1E7-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f7.png",sheet_x:33,sheet_y:23,short_name:"flag-br",short_names:["flag-br"],text:null,texts:null,category:"Flags",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},man_in_business_suit_levitating:{name:"Man in Business Suit Levitating",unified:"1F574",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f574.png",sheet_x:24,sheet_y:38,short_name:"man_in_business_suit_levitating",short_names:["man_in_business_suit_levitating"],text:null,texts:null,category:"Activity",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},control_knobs:{name:"Control Knobs",unified:"1F39B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39b.png",sheet_x:9,sheet_y:12,short_name:"control_knobs",short_names:["control_knobs"],text:null,texts:null,category:"Objects",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bee:{name:"Honeybee",unified:"1F41D",variations:[],docomo:null,au:"EB57",softbank:null,google:"FE1E1",image:"1f41d.png",sheet_x:12,sheet_y:34,short_name:"bee",short_names:["bee","honeybee"],text:null,texts:null,category:"Nature",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},neutral_face:{name:"Neutral Face", -unified:"1F610",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f610.png",sheet_x:26,sheet_y:31,short_name:"neutral_face",short_names:["neutral_face"],text:null,texts:[":|",":-|"],category:"People",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},steam_locomotive:{name:"Steam Locomotive",unified:"1F682",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f682.png",sheet_x:29,sheet_y:14,short_name:"steam_locomotive",short_names:["steam_locomotive"],text:null,texts:null,category:"Places",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cancer:{name:"Cancer",unified:"264B",variations:["264B-FE0F"],docomo:"E649",au:"E492",softbank:"E242",google:"FE02E",image:"264b.png",sheet_x:1,sheet_y:29,short_name:"cancer",short_names:["cancer"],text:null,texts:null,category:"Symbols",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},taco:{name:"Taco",unified:"1F32E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32e.png",sheet_x:6,sheet_y:24,short_name:"taco",short_names:["taco"],text:null,texts:null,category:"Foods",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},burrito:{name:"Burrito",unified:"1F32F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32f.png",sheet_x:6,sheet_y:25,short_name:"burrito",short_names:["burrito"],text:null,texts:null,category:"Foods",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},expressionless:{name:"Expressionless Face",unified:"1F611",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f611.png",sheet_x:26,sheet_y:32,short_name:"expressionless",short_names:["expressionless"],text:null,texts:null,category:"People",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},trophy:{name:"Trophy",unified:"1F3C6",variations:[],docomo:null,au:"E5D3",softbank:"E131",google:"FE7DB",image:"1f3c6.png",sheet_x:10,sheet_y:22,short_name:"trophy",short_names:["trophy"],text:null,texts:null,category:"Activity",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},train2:{name:"Train",unified:"1F686",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f686.png",sheet_x:29,sheet_y:18,short_name:"train2",short_names:["train2"],text:null,texts:null,category:"Places",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-io":{name:"Regional Indicator Symbol Letters Io",unified:"1F1EE-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f4.png",sheet_x:35,sheet_y:21,short_name:"flag-io",short_names:["flag-io"],text:null,texts:null,category:"Flags",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bug:{name:"Bug",unified:"1F41B",variations:[],docomo:null,au:"EB1E",softbank:"E525",google:"FE1CB",image:"1f41b.png",sheet_x:12,sheet_y:32,short_name:"bug",short_names:["bug"],text:null,texts:null,category:"Nature",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stopwatch:{name:"Stopwatch",unified:"23F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f1.png",sheet_x:0,sheet_y:26,short_name:"stopwatch",short_names:["stopwatch"],text:null,texts:null,category:"Objects",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},leo:{name:"Leo",unified:"264C",variations:["264C-FE0F"],docomo:"E64A",au:"E493",softbank:"E243",google:"FE02F",image:"264c.png",sheet_x:1,sheet_y:30,short_name:"leo",short_names:["leo"],text:null,texts:null,category:"Symbols",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},virgo:{name:"Virgo",unified:"264D",variations:["264D-FE0F"],docomo:"E64B",au:"E494",softbank:"E244",google:"FE030",image:"264d.png",sheet_x:1,sheet_y:31,short_name:"virgo",short_names:["virgo"],text:null,texts:null,category:"Symbols",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},running_shirt_with_sash:{name:"Running Shirt with Sash",unified:"1F3BD",variations:[],docomo:"E652",au:null,softbank:null,google:"FE7D0",image:"1f3bd.png",sheet_x:10,sheet_y:3,short_name:"running_shirt_with_sash",short_names:["running_shirt_with_sash"],text:null,texts:null,category:"Activity",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-vg":{name:"Regional Indicator Symbol Letters Vg",unified:"1F1FB-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ec.png",sheet_x:38,sheet_y:32,short_name:"flag-vg",short_names:["flag-vg"],text:null,texts:null,category:"Flags",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},metro:{name:"Metro",unified:"1F687",variations:[],docomo:"E65C",au:"E5BC",softbank:"E434",google:"FE7E0",image:"1f687.png",sheet_x:29,sheet_y:19,short_name:"metro",short_names:["metro"],text:null,texts:null,category:"Places",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},unamused:{name:"Unamused Face",unified:"1F612",variations:[],docomo:"E725",au:"EAC9",softbank:"E40E",google:"FE326",image:"1f612.png",sheet_x:26,sheet_y:33,short_name:"unamused",short_names:["unamused"],text:":(",texts:null,category:"People",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snail:{name:"Snail",unified:"1F40C",variations:[],docomo:"E74E",au:"EB7E",softbank:null,google:"FE1B9",image:"1f40c.png",sheet_x:12,sheet_y:17,short_name:"snail",short_names:["snail"],text:null,texts:null,category:"Nature",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},timer_clock:{name:"Timer Clock",unified:"23F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f2.png",sheet_x:0,sheet_y:27,short_name:"timer_clock",short_names:["timer_clock"],text:null,texts:null,category:"Objects",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ramen:{name:"Steaming Bowl",unified:"1F35C",variations:[],docomo:"E74C",au:"E5B4",softbank:"E340",google:"FE963",image:"1f35c.png",sheet_x:7,sheet_y:29,short_name:"ramen",short_names:["ramen"],text:null,texts:null,category:"Foods",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},beetle:{name:"Lady Beetle",unified:"1F41E",variations:[],docomo:null,au:"EB58",softbank:null,google:"FE1E2",image:"1f41e.png",sheet_x:12,sheet_y:35,short_name:"beetle",short_names:["beetle"],text:null,texts:null,category:"Nature",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},face_with_rolling_eyes:{name:"Face with Rolling Eyes",unified:"1F644",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f644.png",sheet_x:28,sheet_y:1,short_name:"face_with_rolling_eyes",short_names:["face_with_rolling_eyes"],text:null,texts:null,category:"People",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},libra:{name:"Libra",unified:"264E",variations:["264E-FE0F"],docomo:"E64C",au:"E495",softbank:"E245",google:"FE031",image:"264e.png",sheet_x:1,sheet_y:32,short_name:"libra",short_names:["libra"],text:null,texts:null,category:"Symbols",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stew:{name:"Pot of Food",unified:"1F372",variations:[],docomo:null,au:"EABE",softbank:"E34D",google:"FE970",image:"1f372.png",sheet_x:8,sheet_y:10,short_name:"stew",short_names:["stew"],text:null,texts:null,category:"Foods",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sports_medal:{name:"Sports Medal",unified:"1F3C5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3c5.png",sheet_x:10,sheet_y:21,short_name:"sports_medal",short_names:["sports_medal"],text:null,texts:null,category:"Activity",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bn":{name:"Regional Indicator Symbol Letters Bn",unified:"1F1E7-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f3.png",sheet_x:33,sheet_y:20,short_name:"flag-bn",short_names:["flag-bn"],text:null,texts:null,category:"Flags",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},alarm_clock:{name:"Alarm Clock",unified:"23F0",variations:[],docomo:"E6BA",au:"E594",softbank:"E02D",google:"FE02A",image:"23f0.png",sheet_x:0,sheet_y:25,short_name:"alarm_clock",short_names:["alarm_clock"],text:null,texts:null,category:"Objects",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tram:{name:"Tram",unified:"1F68A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68a.png",sheet_x:29,sheet_y:22,short_name:"tram",short_names:["tram"],text:null,texts:null,category:"Places",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fish_cake:{name:"Fish Cake with Swirl Design",unified:"1F365",variations:[],docomo:"E643",au:"E4ED",softbank:null,google:"FE973",image:"1f365.png",sheet_x:7,sheet_y:38,short_name:"fish_cake",short_names:["fish_cake"],text:null,texts:null,category:"Foods",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},thinking_face:{name:"Thinking Face",unified:"1F914",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f914.png",sheet_x:32,sheet_y:5,short_name:"thinking_face",short_names:["thinking_face"],text:null,texts:null,category:"People",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},medal:{name:"Military Medal",unified:"1F396",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f396.png",sheet_x:9,sheet_y:8,short_name:"medal",short_names:["medal"],text:null,texts:null,category:"Activity",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mantelpiece_clock:{name:"Mantelpiece Clock",unified:"1F570",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f570.png",sheet_x:24,sheet_y:36,short_name:"mantelpiece_clock",short_names:["mantelpiece_clock"],text:null,texts:null,category:"Objects",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},station:{name:"Station",unified:"1F689",variations:[],docomo:null,au:"EB6D",softbank:"E039",google:"FE7EC",image:"1f689.png",sheet_x:29,sheet_y:21,short_name:"station",short_names:["station"],text:null,texts:null,category:"Places",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bg":{name:"Regional Indicator Symbol Letters Bg",unified:"1F1E7-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ec.png",sheet_x:33,sheet_y:14,short_name:"flag-bg",short_names:["flag-bg"],text:null,texts:null,category:"Flags",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ant:{name:"Ant",unified:"1F41C",variations:[],docomo:null,au:"E4DD",softbank:null,google:"FE1DA",image:"1f41c.png",sheet_x:12,sheet_y:33,short_name:"ant",short_names:["ant"],text:null,texts:null,category:"Nature",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scorpius:{name:"Scorpius",unified:"264F",variations:["264F-FE0F"],docomo:"E64D",au:"E496",softbank:"E246",google:"FE032",image:"264f.png",sheet_x:1,sheet_y:33,short_name:"scorpius",short_names:["scorpius"],text:null,texts:null,category:"Symbols",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sushi:{name:"Sushi",unified:"1F363",variations:[],docomo:null,au:"EAB8",softbank:"E344",google:"FE96E",image:"1f363.png",sheet_x:7,sheet_y:36,short_name:"sushi",short_names:["sushi"],text:null,texts:null,category:"Foods",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},flushed:{name:"Flushed Face",unified:"1F633",variations:[],docomo:"E72A",au:"EAC8",softbank:"E40D",google:"FE32F",image:"1f633.png",sheet_x:27,sheet_y:25,short_name:"flushed",short_names:["flushed"],text:null,texts:null,category:"People",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},spider:{name:"Spider",unified:"1F577",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f577.png",sheet_x:25,sheet_y:5,short_name:"spider",short_names:["spider"],text:null,texts:null,category:"Nature",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},reminder_ribbon:{name:"Reminder Ribbon",unified:"1F397",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f397.png",sheet_x:9,sheet_y:9,short_name:"reminder_ribbon",short_names:["reminder_ribbon"],text:null,texts:null,category:"Activity",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},helicopter:{name:"Helicopter",unified:"1F681",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f681.png",sheet_x:29,sheet_y:13,short_name:"helicopter",short_names:["helicopter"],text:null,texts:null,category:"Places",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sagittarius:{name:"Sagittarius",unified:"2650",variations:["2650-FE0F"],docomo:"E64E",au:"E497",softbank:"E247",google:"FE033",image:"2650.png",sheet_x:1,sheet_y:34,short_name:"sagittarius",short_names:["sagittarius"],text:null,texts:null,category:"Symbols",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bf":{name:"Regional Indicator Symbol Letters Bf",unified:"1F1E7-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1eb.png",sheet_x:33,sheet_y:13,short_name:"flag-bf",short_names:["flag-bf"],text:null,texts:null,category:"Flags",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hourglass_flowing_sand:{name:"Hourglass with Flowing Sand",unified:"23F3",variations:[],docomo:"E71C",au:"E47C",softbank:null,google:"FE01B",image:"23f3.png",sheet_x:0,sheet_y:28,short_name:"hourglass_flowing_sand",short_names:["hourglass_flowing_sand"],text:null,texts:null,category:"Objects",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},small_airplane:{name:"Small Airplane",unified:"1F6E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e9.png",sheet_x:31,sheet_y:37,short_name:"small_airplane",short_names:["small_airplane"],text:null,texts:null,category:"Places",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rosette:{name:"Rosette",unified:"1F3F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f5.png",sheet_x:11,sheet_y:36,short_name:"rosette",short_names:["rosette"],text:null,texts:null,category:"Activity",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bento:{name:"Bento Box",unified:"1F371",variations:[],docomo:null,au:"EABD",softbank:"E34C",google:"FE96F",image:"1f371.png",sheet_x:8,sheet_y:9,short_name:"bento",short_names:["bento"],text:null,texts:null,category:"Foods",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},capricorn:{name:"Capricorn",unified:"2651",variations:["2651-FE0F"],docomo:"E64F",au:"E498",softbank:"E248",google:"FE034",image:"2651.png",sheet_x:1,sheet_y:35,short_name:"capricorn",short_names:["capricorn"],text:null,texts:null,category:"Symbols",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bi":{name:"Regional Indicator Symbol Letters Bi",unified:"1F1E7-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ee.png",sheet_x:33,sheet_y:16,short_name:"flag-bi",short_names:["flag-bi"],text:null,texts:null,category:"Flags",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},disappointed:{name:"Disappointed Face",unified:"1F61E",variations:[],docomo:"E6F2",au:"EAC0",softbank:"E058",google:"FE323",image:"1f61e.png",sheet_x:27,sheet_y:4,short_name:"disappointed",short_names:["disappointed"],text:":(",texts:["):",":(",":-("],category:"People",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scorpion:{name:"Scorpion",unified:"1F982",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f982.png",sheet_x:32,sheet_y:17,short_name:"scorpion",short_names:["scorpion"],text:null,texts:null,category:"Nature",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hourglass:{name:"Hourglass",unified:"231B",variations:["231B-FE0F"],docomo:"E71C",au:"E57B",softbank:null,google:"FE01C",image:"231b.png",sheet_x:0,sheet_y:15,short_name:"hourglass",short_names:["hourglass"],text:null,texts:null,category:"Objects",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crab:{name:"Crab",unified:"1F980",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f980.png",sheet_x:32,sheet_y:15,short_name:"crab",short_names:["crab"],text:null,texts:null,category:"Nature",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},satellite_antenna:{name:"Satellite Antenna",unified:"1F4E1",variations:[],docomo:null,au:"E4A8",softbank:"E14B",google:"FE531",image:"1f4e1.png",sheet_x:21,sheet_y:36,short_name:"satellite_antenna",short_names:["satellite_antenna"],text:null,texts:null,category:"Objects",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},airplane:{name:"Airplane",unified:"2708",variations:["2708-FE0F"],docomo:"E662",au:"E4B3",softbank:"E01D",google:"FE7E9",image:"2708.png",sheet_x:3,sheet_y:7,short_name:"airplane",short_names:["airplane"],text:null,texts:null,category:"Places",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},aquarius:{name:"Aquarius",unified:"2652",variations:["2652-FE0F"],docomo:"E650",au:"E499",softbank:"E249",google:"FE035",image:"2652.png",sheet_x:1,sheet_y:36,short_name:"aquarius",short_names:["aquarius"],text:null,texts:null,category:"Symbols",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ticket:{name:"Ticket",unified:"1F3AB",variations:[],docomo:"E67E",au:"E49E",softbank:"E125",google:"FE807",image:"1f3ab.png",sheet_x:9,sheet_y:26,short_name:"ticket",short_names:["ticket"],text:null,texts:null,category:"Activity",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},worried:{name:"Worried Face",unified:"1F61F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f61f.png",sheet_x:27,sheet_y:5,short_name:"worried",short_names:["worried"],text:null,texts:null,category:"People",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cv":{name:"Regional Indicator Symbol Letters Cv",unified:"1F1E8-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fb.png",sheet_x:34,sheet_y:4,short_name:"flag-cv",short_names:["flag-cv"],text:null,texts:null,category:"Flags",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},curry:{name:"Curry and Rice",unified:"1F35B",variations:[],docomo:null,au:"EAB6",softbank:"E341",google:"FE96C",image:"1f35b.png",sheet_x:7,sheet_y:28,short_name:"curry",short_names:["curry"],text:null,texts:null,category:"Foods",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pisces:{name:"Pisces",unified:"2653",variations:["2653-FE0F"],docomo:"E651",au:"E49A",softbank:"E24A",google:"FE036",image:"2653.png",sheet_x:1,sheet_y:37,short_name:"pisces",short_names:["pisces"],text:null,texts:null,category:"Symbols",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},airplane_departure:{name:"Airplane Departure",unified:"1F6EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6eb.png",sheet_x:31,sheet_y:38,short_name:"airplane_departure",short_names:["airplane_departure"],text:null,texts:null,category:"Places",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kh":{name:"Regional Indicator Symbol Letters Kh",unified:"1F1F0-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ed.png",sheet_x:35,sheet_y:32,short_name:"flag-kh",short_names:["flag-kh"],text:null,texts:null,category:"Flags",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},battery:{name:"Battery",unified:"1F50B",variations:[],docomo:null,au:"E584",softbank:null,google:"FE4FC",image:"1f50b.png",sheet_x:22,sheet_y:36,short_name:"battery",short_names:["battery"],text:null,texts:null,category:"Objects",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snake:{name:"Snake",unified:"1F40D",variations:[],docomo:null,au:"EB22",softbank:"E52D",google:"FE1D3",image:"1f40d.png",sheet_x:12,sheet_y:18,short_name:"snake",short_names:["snake"],text:null,texts:null,category:"Nature",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},angry:{name:"Angry Face",unified:"1F620",variations:[],docomo:"E6F1",au:"E472",softbank:"E059",google:"FE320",image:"1f620.png",sheet_x:27,sheet_y:6,short_name:"angry",short_names:["angry"],text:null,texts:[">:(",">:-("],category:"People",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rice_ball:{name:"Rice Ball",unified:"1F359",variations:[],docomo:"E749",au:"E4D5",softbank:"E342",google:"FE961",image:"1f359.png",sheet_x:7,sheet_y:26,short_name:"rice_ball",short_names:["rice_ball"],text:null,texts:null,category:"Foods",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},admission_tickets:{name:"Admission Tickets",unified:"1F39F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39f.png",sheet_x:9,sheet_y:14,short_name:"admission_tickets",short_names:["admission_tickets"],text:null,texts:null,category:"Activity",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},performing_arts:{name:"Performing Arts",unified:"1F3AD",variations:[],docomo:null,au:"E59D",softbank:"E503",google:"FE809",image:"1f3ad.png",sheet_x:9,sheet_y:28,short_name:"performing_arts",short_names:["performing_arts"],text:null,texts:null,category:"Activity",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rage:{name:"Pouting Face",unified:"1F621",variations:[],docomo:"E724",au:"EB5D",softbank:"E416",google:"FE33D",image:"1f621.png",sheet_x:27,sheet_y:7,short_name:"rage",short_names:["rage"],text:null,texts:null,category:"People",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rice:{name:"Cooked Rice",unified:"1F35A",variations:[],docomo:"E74C",au:"EAB4",softbank:"E33E",google:"FE96A",image:"1f35a.png",sheet_x:7,sheet_y:27,short_name:"rice",short_names:["rice"],text:null,texts:null,category:"Foods",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},airplane_arriving:{name:"Airplane Arriving",unified:"1F6EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ec.png",sheet_x:31,sheet_y:39,short_name:"airplane_arriving",short_names:["airplane_arriving"],text:null,texts:null,category:"Places",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},id:{name:"Squared Id",unified:"1F194",variations:[],docomo:"E6D8",au:"EA88",softbank:"E229",google:"FEB81",image:"1f194.png",sheet_x:4,sheet_y:40,short_name:"id",short_names:["id"],text:null,texts:null,category:"Symbols",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cm":{name:"Regional Indicator Symbol Letters Cm",unified:"1F1E8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f2.png",sheet_x:33,sheet_y:39,short_name:"flag-cm",short_names:["flag-cm"],text:null,texts:null,category:"Flags",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},turtle:{name:"Turtle",unified:"1F422",variations:[],docomo:null,au:"E5D4",softbank:null,google:"FE1DC",image:"1f422.png",sheet_x:12,sheet_y:39,short_name:"turtle",short_names:["turtle"],text:null,texts:null,category:"Nature",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},electric_plug:{name:"Electric Plug",unified:"1F50C",variations:[],docomo:null,au:"E589",softbank:null,google:"FE4FE",image:"1f50c.png",sheet_x:22,sheet_y:37,short_name:"electric_plug",short_names:["electric_plug"],text:null,texts:null,category:"Objects",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tropical_fish:{name:"Tropical Fish",unified:"1F420",variations:[],docomo:"E751",au:"EB1D",softbank:"E522",google:"FE1C9",image:"1f420.png",sheet_x:12,sheet_y:37,short_name:"tropical_fish",short_names:["tropical_fish"],text:null,texts:null,category:"Nature",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bulb:{name:"Electric Light Bulb",unified:"1F4A1",variations:[],docomo:"E6FB",au:"E476",softbank:"E10F",google:"FEB56",image:"1f4a1.png",sheet_x:20,sheet_y:8,short_name:"bulb",short_names:["bulb"],text:null,texts:null,category:"Objects",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pensive:{name:"Pensive Face",unified:"1F614",variations:[],docomo:"E720",au:"EAC0",softbank:"E403",google:"FE340",image:"1f614.png",sheet_x:26,sheet_y:35,short_name:"pensive",short_names:["pensive"],text:null,texts:null,category:"People",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rice_cracker:{name:"Rice Cracker",unified:"1F358",variations:[],docomo:null,au:"EAB3",softbank:"E33D",google:"FE969",image:"1f358.png",sheet_x:7,sheet_y:25,short_name:"rice_cracker",short_names:["rice_cracker"],text:null,texts:null,category:"Foods",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},art:{name:"Artist Palette",unified:"1F3A8",variations:[],docomo:"E67B",au:"E59C",softbank:"E502",google:"FE804",image:"1f3a8.png",sheet_x:9,sheet_y:23,short_name:"art",short_names:["art"],text:null,texts:null,category:"Activity",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},boat:{name:"Sailboat",unified:"26F5",variations:["26F5-FE0F"],docomo:"E6A3",au:"E4B4",softbank:"E01C",google:"FE7EA",image:"26f5.png",sheet_x:2,sheet_y:35,short_name:"boat",short_names:["boat","sailboat"],text:null,texts:null,category:"Places",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},atom_symbol:{name:"Atom Symbol",unified:"269B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"269b.png",sheet_x:2,sheet_y:10,short_name:"atom_symbol",short_names:["atom_symbol"],text:null,texts:null,category:"Symbols",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ca":{name:"Regional Indicator Symbol Letters Ca",unified:"1F1E8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e6.png",sheet_x:33,sheet_y:30,short_name:"flag-ca",short_names:["flag-ca"],text:null,texts:null,category:"Flags",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oden:{name:"Oden",unified:"1F362",variations:[],docomo:null,au:"EAB7",softbank:"E343",google:"FE96D",image:"1f362.png",sheet_x:7,sheet_y:35,short_name:"oden",short_names:["oden"],text:null,texts:null,category:"Foods",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},flashlight:{name:"Electric Torch",unified:"1F526",variations:[],docomo:"E6FB",au:"E583",softbank:null,google:"FE4FB",image:"1f526.png",sheet_x:23,sheet_y:22,short_name:"flashlight",short_names:["flashlight"],text:null,texts:null,category:"Objects",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},confused:{name:"Confused Face",unified:"1F615",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f615.png",sheet_x:26,sheet_y:36,short_name:"confused",short_names:["confused"],text:null,texts:[":\\",":-\\",":/",":-/"],category:"People",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u7a7a:{name:"Squared Cjk Unified Ideograph-7a7a",unified:"1F233",variations:[],docomo:"E739",au:"EA8A",softbank:"E22B",google:"FEB2F",image:"1f233.png",sheet_x:5,sheet_y:11,short_name:"u7a7a",short_names:["u7a7a"],text:null,texts:null,category:"Symbols",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},circus_tent:{name:"Circus Tent",unified:"1F3AA",variations:[],docomo:"E67D",au:"E59E",softbank:null,google:"FE806",image:"1f3aa.png",sheet_x:9,sheet_y:25,short_name:"circus_tent",short_names:["circus_tent"],text:null,texts:null,category:"Activity",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},motor_boat:{name:"Motor Boat",unified:"1F6E5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e5.png",sheet_x:31,sheet_y:36,short_name:"motor_boat",short_names:["motor_boat"],text:null,texts:null,category:"Places",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ic":{name:"Regional Indicator Symbol Letters Ic",unified:"1F1EE-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1e8.png",sheet_x:35,sheet_y:15,short_name:"flag-ic",short_names:["flag-ic"],text:null,texts:null,category:"Flags",sort_order:42,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},fish:{name:"Fish",unified:"1F41F",variations:[],docomo:"E751",au:"E49A",softbank:"E019",google:"FE1BD",image:"1f41f.png",sheet_x:12,sheet_y:36,short_name:"fish",short_names:["fish"],text:null,texts:null,category:"Nature",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},microphone:{name:"Microphone",unified:"1F3A4",variations:[],docomo:"E676",au:"E503",softbank:"E03C",google:"FE800",image:"1f3a4.png",sheet_x:9,sheet_y:19,short_name:"microphone",short_names:["microphone"],text:null,texts:null,category:"Activity",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ky":{name:"Regional Indicator Symbol Letters Ky",unified:"1F1F0-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1fe.png",sheet_x:35,sheet_y:39,short_name:"flag-ky",short_names:["flag-ky"],text:null,texts:null,category:"Flags",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},candle:{name:"Candle",unified:"1F56F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f56f.png",sheet_x:24,sheet_y:35,short_name:"candle",short_names:["candle"],text:null,texts:null,category:"Objects",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dango:{name:"Dango",unified:"1F361",variations:[],docomo:null,au:"EAB2",softbank:"E33C",google:"FE968",image:"1f361.png",sheet_x:7,sheet_y:34,short_name:"dango",short_names:["dango"],text:null,texts:null,category:"Foods",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},slightly_frowning_face:{name:"Slightly Frowning Face",unified:"1F641",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f641.png",sheet_x:27,sheet_y:39,short_name:"slightly_frowning_face", -short_names:["slightly_frowning_face"],text:null,texts:null,category:"People",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},blowfish:{name:"Blowfish",unified:"1F421",variations:[],docomo:"E751",au:"E4D3",softbank:"E019",google:"FE1D9",image:"1f421.png",sheet_x:12,sheet_y:38,short_name:"blowfish",short_names:["blowfish"],text:null,texts:null,category:"Nature",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u5272:{name:"Squared Cjk Unified Ideograph-5272",unified:"1F239",variations:[],docomo:null,au:"EA86",softbank:"E227",google:"FEB3E",image:"1f239.png",sheet_x:5,sheet_y:17,short_name:"u5272",short_names:["u5272"],text:null,texts:null,category:"Symbols",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},speedboat:{name:"Speedboat",unified:"1F6A4",variations:[],docomo:"E6A3",au:"E4B4",softbank:"E135",google:"FE7EE",image:"1f6a4.png",sheet_x:30,sheet_y:12,short_name:"speedboat",short_names:["speedboat"],text:null,texts:null,category:"Places",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_frowning_face:{name:"White Frowning Face",unified:"2639",variations:["2639-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2639.png",sheet_x:1,sheet_y:24,short_name:"white_frowning_face",short_names:["white_frowning_face"],text:null,texts:null,category:"People",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dolphin:{name:"Dolphin",unified:"1F42C",variations:[],docomo:null,au:"EB1B",softbank:"E520",google:"FE1C7",image:"1f42c.png",sheet_x:13,sheet_y:8,short_name:"dolphin",short_names:["dolphin","flipper"],text:null,texts:null,category:"Nature",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},radioactive_sign:{name:"Radioactive Sign",unified:"2622",variations:["2622-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2622.png",sheet_x:1,sheet_y:17,short_name:"radioactive_sign",short_names:["radioactive_sign"],text:null,texts:null,category:"Symbols",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},headphones:{name:"Headphone",unified:"1F3A7",variations:[],docomo:"E67A",au:"E508",softbank:"E30A",google:"FE803",image:"1f3a7.png",sheet_x:9,sheet_y:22,short_name:"headphones",short_names:["headphones"],text:null,texts:null,category:"Activity",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cf":{name:"Regional Indicator Symbol Letters Cf",unified:"1F1E8-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1eb.png",sheet_x:33,sheet_y:33,short_name:"flag-cf",short_names:["flag-cf"],text:null,texts:null,category:"Flags",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ferry:{name:"Ferry",unified:"26F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f4.png",sheet_x:2,sheet_y:34,short_name:"ferry",short_names:["ferry"],text:null,texts:null,category:"Places",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wastebasket:{name:"Wastebasket",unified:"1F5D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d1.png",sheet_x:25,sheet_y:39,short_name:"wastebasket",short_names:["wastebasket"],text:null,texts:null,category:"Objects",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shaved_ice:{name:"Shaved Ice",unified:"1F367",variations:[],docomo:null,au:"EAEA",softbank:"E43F",google:"FE971",image:"1f367.png",sheet_x:7,sheet_y:40,short_name:"shaved_ice",short_names:["shaved_ice"],text:null,texts:null,category:"Foods",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},whale:{name:"Spouting Whale",unified:"1F433",variations:[],docomo:null,au:"E470",softbank:"E054",google:"FE1C3",image:"1f433.png",sheet_x:13,sheet_y:15,short_name:"whale",short_names:["whale"],text:null,texts:null,category:"Nature",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},oil_drum:{name:"Oil Drum",unified:"1F6E2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e2.png",sheet_x:31,sheet_y:33,short_name:"oil_drum",short_names:["oil_drum"],text:null,texts:null,category:"Objects",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ice_cream:{name:"Ice Cream",unified:"1F368",variations:[],docomo:null,au:"EB4A",softbank:null,google:"FE977",image:"1f368.png",sheet_x:8,sheet_y:0,short_name:"ice_cream",short_names:["ice_cream"],text:null,texts:null,category:"Foods",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},passenger_ship:{name:"Passenger Ship",unified:"1F6F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6f3.png",sheet_x:32,sheet_y:0,short_name:"passenger_ship",short_names:["passenger_ship"],text:null,texts:null,category:"Places",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},biohazard_sign:{name:"Biohazard Sign",unified:"2623",variations:["2623-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2623.png",sheet_x:1,sheet_y:18,short_name:"biohazard_sign",short_names:["biohazard_sign"],text:null,texts:null,category:"Symbols",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},musical_score:{name:"Musical Score",unified:"1F3BC",variations:[],docomo:"E6FF",au:"EACC",softbank:"E326",google:"FE81A",image:"1f3bc.png",sheet_x:10,sheet_y:2,short_name:"musical_score",short_names:["musical_score"],text:null,texts:null,category:"Activity",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},persevere:{name:"Persevering Face",unified:"1F623",variations:[],docomo:"E72B",au:"EAC2",softbank:"E406",google:"FE33C",image:"1f623.png",sheet_x:27,sheet_y:9,short_name:"persevere",short_names:["persevere"],text:null,texts:null,category:"People",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-td":{name:"Regional Indicator Symbol Letters Td",unified:"1F1F9-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e9.png",sheet_x:38,sheet_y:8,short_name:"flag-td",short_names:["flag-td"],text:null,texts:null,category:"Flags",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},icecream:{name:"Soft Ice Cream",unified:"1F366",variations:[],docomo:null,au:"EAB0",softbank:"E33A",google:"FE966",image:"1f366.png",sheet_x:7,sheet_y:39,short_name:"icecream",short_names:["icecream"],text:null,texts:null,category:"Foods",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},whale2:{name:"Whale",unified:"1F40B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40b.png",sheet_x:12,sheet_y:16,short_name:"whale2",short_names:["whale2"],text:null,texts:null,category:"Nature",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},musical_keyboard:{name:"Musical Keyboard",unified:"1F3B9",variations:[],docomo:null,au:"EB40",softbank:null,google:"FE817",image:"1f3b9.png",sheet_x:9,sheet_y:40,short_name:"musical_keyboard",short_names:["musical_keyboard"],text:null,texts:null,category:"Activity",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},money_with_wings:{name:"Money with Wings",unified:"1F4B8",variations:[],docomo:null,au:"EB5B",softbank:null,google:"FE4E4",image:"1f4b8.png",sheet_x:20,sheet_y:36,short_name:"money_with_wings",short_names:["money_with_wings"],text:null,texts:null,category:"Objects",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},confounded:{name:"Confounded Face",unified:"1F616",variations:[],docomo:"E6F3",au:"EAC3",softbank:"E407",google:"FE33F",image:"1f616.png",sheet_x:26,sheet_y:37,short_name:"confounded",short_names:["confounded"],text:null,texts:null,category:"People",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rocket:{name:"Rocket",unified:"1F680",variations:[],docomo:null,au:"E5C8",softbank:"E10D",google:"FE7ED",image:"1f680.png",sheet_x:29,sheet_y:12,short_name:"rocket",short_names:["rocket"],text:null,texts:null,category:"Places",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mobile_phone_off:{name:"Mobile Phone off",unified:"1F4F4",variations:[],docomo:null,au:"EA91",softbank:"E251",google:"FE83A",image:"1f4f4.png",sheet_x:22,sheet_y:14,short_name:"mobile_phone_off",short_names:["mobile_phone_off"],text:null,texts:null,category:"Symbols",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cl":{name:"Regional Indicator Symbol Letters Cl",unified:"1F1E8-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f1.png",sheet_x:33,sheet_y:38,short_name:"flag-cl",short_names:["flag-cl"],text:null,texts:null,category:"Flags",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},satellite:{name:"Satellite",unified:"1F6F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6f0.png",sheet_x:31,sheet_y:40,short_name:"satellite",short_names:["satellite"],text:null,texts:null,category:"Places",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cn":{name:"Regional Indicator Symbol Letters Cn",unified:"1F1E8-1F1F3",variations:[],docomo:null,au:"EB11",softbank:"E513",google:"FE4ED",image:"1f1e8-1f1f3.png",sheet_x:33,sheet_y:40,short_name:"flag-cn",short_names:["flag-cn","cn"],text:null,texts:null,category:"Flags",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crocodile:{name:"Crocodile",unified:"1F40A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40a.png",sheet_x:12,sheet_y:15,short_name:"crocodile",short_names:["crocodile"],text:null,texts:null,category:"Nature",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cake:{name:"Shortcake",unified:"1F370",variations:[],docomo:"E74A",au:"E4D0",softbank:"E046",google:"FE962",image:"1f370.png",sheet_x:8,sheet_y:8,short_name:"cake",short_names:["cake"],text:null,texts:null,category:"Foods",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dollar:{name:"Banknote with Dollar Sign",unified:"1F4B5",variations:[],docomo:"E715",au:"E585",softbank:"E12F",google:"FE4E3",image:"1f4b5.png",sheet_x:20,sheet_y:33,short_name:"dollar",short_names:["dollar"],text:null,texts:null,category:"Objects",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},vibration_mode:{name:"Vibration Mode",unified:"1F4F3",variations:[],docomo:null,au:"EA90",softbank:"E250",google:"FE839",image:"1f4f3.png",sheet_x:22,sheet_y:13,short_name:"vibration_mode",short_names:["vibration_mode"],text:null,texts:null,category:"Symbols",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tired_face:{name:"Tired Face",unified:"1F62B",variations:[],docomo:"E72B",au:"E474",softbank:"E406",google:"FE346",image:"1f62b.png",sheet_x:27,sheet_y:17,short_name:"tired_face",short_names:["tired_face"],text:null,texts:null,category:"People",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},saxophone:{name:"Saxophone",unified:"1F3B7",variations:[],docomo:null,au:null,softbank:"E040",google:"FE815",image:"1f3b7.png",sheet_x:9,sheet_y:38,short_name:"saxophone",short_names:["saxophone"],text:null,texts:null,category:"Activity",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cx":{name:"Regional Indicator Symbol Letters Cx",unified:"1F1E8-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fd.png",sheet_x:34,sheet_y:6,short_name:"flag-cx",short_names:["flag-cx"],text:null,texts:null,category:"Flags",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},seat:{name:"Seat",unified:"1F4BA",variations:[],docomo:"E6B2",au:null,softbank:"E11F",google:"FE537",image:"1f4ba.png",sheet_x:20,sheet_y:38,short_name:"seat",short_names:["seat"],text:null,texts:null,category:"Places",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},trumpet:{name:"Trumpet",unified:"1F3BA",variations:[],docomo:null,au:"EADC",softbank:"E042",google:"FE818",image:"1f3ba.png",sheet_x:10,sheet_y:0,short_name:"trumpet",short_names:["trumpet"],text:null,texts:null,category:"Activity",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},yen:{name:"Banknote with Yen Sign",unified:"1F4B4",variations:[],docomo:"E6D6",au:"E57D",softbank:null,google:"FE4E2",image:"1f4b4.png",sheet_x:20,sheet_y:32,short_name:"yen",short_names:["yen"],text:null,texts:null,category:"Objects",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},leopard:{name:"Leopard",unified:"1F406",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f406.png",sheet_x:12,sheet_y:11,short_name:"leopard",short_names:["leopard"],text:null,texts:null,category:"Nature",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u6709:{name:"Squared Cjk Unified Ideograph-6709",unified:"1F236",variations:[],docomo:null,au:null,softbank:"E215",google:"FEB39",image:"1f236.png",sheet_x:5,sheet_y:14,short_name:"u6709",short_names:["u6709"],text:null,texts:null,category:"Symbols",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},birthday:{name:"Birthday Cake",unified:"1F382",variations:[],docomo:"E686",au:"E5A0",softbank:"E34B",google:"FE511",image:"1f382.png",sheet_x:8,sheet_y:26,short_name:"birthday",short_names:["birthday"],text:null,texts:null,category:"Foods",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},weary:{name:"Weary Face",unified:"1F629",variations:[],docomo:"E6F3",au:"EB67",softbank:"E403",google:"FE321",image:"1f629.png",sheet_x:27,sheet_y:15,short_name:"weary",short_names:["weary"],text:null,texts:null,category:"People",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tiger2:{name:"Tiger",unified:"1F405",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f405.png",sheet_x:12,sheet_y:10,short_name:"tiger2",short_names:["tiger2"],text:null,texts:null,category:"Nature",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cc":{name:"Regional Indicator Symbol Letters Cc",unified:"1F1E8-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e8.png",sheet_x:33,sheet_y:31,short_name:"flag-cc",short_names:["flag-cc"],text:null,texts:null,category:"Flags",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u7121:{name:"Squared Cjk Unified Ideograph-7121",unified:"1F21A",variations:["1F21A-FE0F"],docomo:null,au:null,softbank:"E216",google:"FEB3A",image:"1f21a.png",sheet_x:5,sheet_y:8,short_name:"u7121",short_names:["u7121"],text:null,texts:null,category:"Symbols",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},euro:{name:"Banknote with Euro Sign",unified:"1F4B6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4b6.png",sheet_x:20,sheet_y:34,short_name:"euro",short_names:["euro"],text:null,texts:null,category:"Objects",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},custard:{name:"Custard",unified:"1F36E",variations:[],docomo:null,au:"EB56",softbank:null,google:"FE97D",image:"1f36e.png",sheet_x:8,sheet_y:6,short_name:"custard",short_names:["custard"],text:null,texts:null,category:"Foods",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},triumph:{name:"Face with Look of Triumph",unified:"1F624",variations:[],docomo:"E753",au:"EAC1",softbank:"E404",google:"FE328",image:"1f624.png",sheet_x:27,sheet_y:10,short_name:"triumph",short_names:["triumph"],text:null,texts:null,category:"People",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},anchor:{name:"Anchor",unified:"2693",variations:["2693-FE0F"],docomo:"E661",au:"E4A9",softbank:"E202",google:"FE4C1",image:"2693.png",sheet_x:2,sheet_y:5,short_name:"anchor",short_names:["anchor"],text:null,texts:null,category:"Places",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},guitar:{name:"Guitar",unified:"1F3B8",variations:[],docomo:null,au:"E506",softbank:"E041",google:"FE816",image:"1f3b8.png",sheet_x:9,sheet_y:39,short_name:"guitar",short_names:["guitar"],text:null,texts:null,category:"Activity",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},violin:{name:"Violin",unified:"1F3BB",variations:[],docomo:null,au:"E507",softbank:null,google:"FE819",image:"1f3bb.png",sheet_x:10,sheet_y:1,short_name:"violin",short_names:["violin"],text:null,texts:null,category:"Activity",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},construction:{name:"Construction Sign",unified:"1F6A7",variations:[],docomo:null,au:"E5D7",softbank:"E137",google:"FE7F8",image:"1f6a7.png",sheet_x:30,sheet_y:15,short_name:"construction",short_names:["construction"],text:null,texts:null,category:"Places",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},water_buffalo:{name:"Water Buffalo",unified:"1F403",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f403.png",sheet_x:12,sheet_y:8,short_name:"water_buffalo",short_names:["water_buffalo"],text:null,texts:null,category:"Nature",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},candy:{name:"Candy",unified:"1F36C",variations:[],docomo:null,au:"EB4E",softbank:null,google:"FE97B",image:"1f36c.png",sheet_x:8,sheet_y:4,short_name:"candy",short_names:["candy"],text:null,texts:null,category:"Foods",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pound:{name:"Banknote with Pound Sign",unified:"1F4B7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4b7.png",sheet_x:20,sheet_y:35,short_name:"pound",short_names:["pound"],text:null,texts:null,category:"Objects",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-co":{name:"Regional Indicator Symbol Letters Co",unified:"1F1E8-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f4.png",sheet_x:34,sheet_y:0,short_name:"flag-co",short_names:["flag-co"],text:null,texts:null,category:"Flags",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},open_mouth:{name:"Face with Open Mouth",unified:"1F62E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f62e.png",sheet_x:27,sheet_y:20,short_name:"open_mouth",short_names:["open_mouth"],text:null,texts:[":o",":-o",":O",":-O"],category:"People",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u7533:{name:"Squared Cjk Unified Ideograph-7533",unified:"1F238",variations:[],docomo:null,au:null,softbank:"E218",google:"FEB3C",image:"1f238.png",sheet_x:5,sheet_y:16,short_name:"u7533",short_names:["u7533"],text:null,texts:null,category:"Symbols",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ox:{name:"Ox",unified:"1F402",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f402.png",sheet_x:12,sheet_y:7,short_name:"ox",short_names:["ox"],text:null,texts:null,category:"Nature",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scream:{name:"Face Screaming in Fear",unified:"1F631",variations:[],docomo:"E757",au:"E5C5",softbank:"E107",google:"FE341",image:"1f631.png",sheet_x:27,sheet_y:23,short_name:"scream",short_names:["scream"],text:null,texts:null,category:"People",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-km":{name:"Regional Indicator Symbol Letters Km",unified:"1F1F0-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f2.png",sheet_x:35,sheet_y:34,short_name:"flag-km",short_names:["flag-km"],text:null,texts:null,category:"Flags",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clapper:{name:"Clapper Board",unified:"1F3AC",variations:[],docomo:"E6AC",au:"E4BE",softbank:"E324",google:"FE808",image:"1f3ac.png",sheet_x:9,sheet_y:27,short_name:"clapper",short_names:["clapper"],text:null,texts:null,category:"Activity",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u55b6:{name:"Squared Cjk Unified Ideograph-55b6",unified:"1F23A",variations:[],docomo:null,au:"EA8C",softbank:"E22D",google:"FEB41",image:"1f23a.png",sheet_x:5,sheet_y:18,short_name:"u55b6",short_names:["u55b6"],text:null,texts:null,category:"Symbols",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fuelpump:{name:"Fuel Pump",unified:"26FD",variations:["26FD-FE0F"],docomo:"E66B",au:"E571",softbank:"E03A",google:"FE7F5",image:"26fd.png",sheet_x:3,sheet_y:4,short_name:"fuelpump",short_names:["fuelpump"],text:null,texts:null,category:"Places",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},moneybag:{name:"Money Bag",unified:"1F4B0",variations:[],docomo:"E715",au:"E4C7",softbank:"E12F",google:"FE4DD",image:"1f4b0.png",sheet_x:20,sheet_y:28,short_name:"moneybag",short_names:["moneybag"],text:null,texts:null,category:"Objects",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lollipop:{name:"Lollipop",unified:"1F36D",variations:[],docomo:null,au:"EB4F",softbank:null,google:"FE97C",image:"1f36d.png",sheet_x:8,sheet_y:5,short_name:"lollipop",short_names:["lollipop"],text:null,texts:null,category:"Foods",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},credit_card:{name:"Credit Card",unified:"1F4B3",variations:[],docomo:null,au:"E57C",softbank:null,google:"FE4E1",image:"1f4b3.png",sheet_x:20,sheet_y:31,short_name:"credit_card",short_names:["credit_card"],text:null,texts:null,category:"Objects",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cow2:{name:"Cow",unified:"1F404",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f404.png",sheet_x:12,sheet_y:9,short_name:"cow2",short_names:["cow2"],text:null,texts:null,category:"Nature",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},video_game:{name:"Video Game",unified:"1F3AE",variations:[],docomo:"E68B",au:"E4C6",softbank:null,google:"FE80A",image:"1f3ae.png",sheet_x:9,sheet_y:29,short_name:"video_game",short_names:["video_game"],text:null,texts:null,category:"Activity",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},busstop:{name:"Bus Stop",unified:"1F68F",variations:[],docomo:null,au:"E4A7",softbank:"E150",google:"FE7E7",image:"1f68f.png",sheet_x:29,sheet_y:27,short_name:"busstop",short_names:["busstop"],text:null,texts:null,category:"Places",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chocolate_bar:{name:"Chocolate Bar",unified:"1F36B",variations:[],docomo:null,au:"EB4D",softbank:null,google:"FE97A",image:"1f36b.png",sheet_x:8,sheet_y:3,short_name:"chocolate_bar",short_names:["chocolate_bar"],text:null,texts:null,category:"Foods",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u6708:{name:"Squared Cjk Unified Ideograph-6708",unified:"1F237",variations:["1F237-FE0F"],docomo:null,au:null,softbank:"E217",google:"FEB3B",image:"1f237.png",sheet_x:5,sheet_y:15,short_name:"u6708",short_names:["u6708"],text:null,texts:null,category:"Symbols",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fearful:{name:"Fearful Face",unified:"1F628",variations:[],docomo:"E757",au:"EAC6",softbank:"E40B",google:"FE33B",image:"1f628.png",sheet_x:27,sheet_y:14,short_name:"fearful",short_names:["fearful"],text:null,texts:null,category:"People",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cg":{name:"Regional Indicator Symbol Letters Cg",unified:"1F1E8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ec.png",sheet_x:33,sheet_y:34,short_name:"flag-cg",short_names:["flag-cg"],text:null,texts:null,category:"Flags",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dromedary_camel:{name:"Dromedary Camel",unified:"1F42A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f42a.png",sheet_x:13,sheet_y:6,short_name:"dromedary_camel",short_names:["dromedary_camel"],text:null,texts:null,category:"Nature",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},popcorn:{name:"Popcorn",unified:"1F37F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37f.png",sheet_x:8,sheet_y:23,short_name:"popcorn",short_names:["popcorn"],text:null,texts:null,category:"Foods",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eight_pointed_black_star:{name:"Eight Pointed Black Star",unified:"2734",variations:["2734-FE0F"],docomo:"E6F8",au:"E479",softbank:"E205",google:"FEB61",image:"2734.png",sheet_x:4,sheet_y:0,short_name:"eight_pointed_black_star",short_names:["eight_pointed_black_star"],text:null,texts:null,category:"Symbols",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gem:{name:"Gem Stone",unified:"1F48E",variations:[],docomo:"E71B",au:"E514",softbank:"E035",google:"FE826",image:"1f48e.png",sheet_x:19,sheet_y:30,short_name:"gem",short_names:["gem"],text:null,texts:null,category:"Objects",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},space_invader:{name:"Alien Monster",unified:"1F47E",variations:[],docomo:null,au:"E4EC",softbank:"E12B",google:"FE1B1",image:"1f47e.png",sheet_x:18,sheet_y:25,short_name:"space_invader",short_names:["space_invader"],text:null,texts:null,category:"Activity",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},vertical_traffic_light:{name:"Vertical Traffic Light",unified:"1F6A6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a6.png",sheet_x:30,sheet_y:14,short_name:"vertical_traffic_light",short_names:["vertical_traffic_light"],text:null,texts:null,category:"Places",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cold_sweat:{name:"Face with Open Mouth and Cold Sweat",unified:"1F630",variations:[],docomo:"E723",au:"EACB",softbank:"E40F",google:"FE325",image:"1f630.png",sheet_x:27,sheet_y:22,short_name:"cold_sweat",short_names:["cold_sweat"],text:null,texts:null,category:"People",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cd":{name:"Regional Indicator Symbol Letters Cd",unified:"1F1E8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e9.png",sheet_x:33,sheet_y:32,short_name:"flag-cd",short_names:["flag-cd"],text:null,texts:null,category:"Flags",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ck":{name:"Regional Indicator Symbol Letters Ck",unified:"1F1E8-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f0.png",sheet_x:33,sheet_y:37,short_name:"flag-ck",short_names:["flag-ck"],text:null,texts:null,category:"Flags",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hushed:{name:"Hushed Face",unified:"1F62F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f62f.png",sheet_x:27,sheet_y:21,short_name:"hushed",short_names:["hushed"],text:null,texts:null,category:"People",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},traffic_light:{name:"Horizontal Traffic Light",unified:"1F6A5",variations:[],docomo:"E66D",au:"E46A",softbank:"E14E",google:"FE7F7",image:"1f6a5.png",sheet_x:30,sheet_y:13,short_name:"traffic_light",short_names:["traffic_light"],text:null,texts:null,category:"Places",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},doughnut:{name:"Doughnut",unified:"1F369",variations:[],docomo:null,au:"EB4B",softbank:null,google:"FE978",image:"1f369.png",sheet_x:8,sheet_y:1,short_name:"doughnut",short_names:["doughnut"],text:null,texts:null,category:"Foods",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},camel:{name:"Bactrian Camel",unified:"1F42B",variations:[],docomo:null,au:"EB25",softbank:"E530",google:"FE1D6",image:"1f42b.png",sheet_x:13,sheet_y:7,short_name:"camel",short_names:["camel"],text:null,texts:null,category:"Nature",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dart:{name:"Direct Hit",unified:"1F3AF",variations:[],docomo:null,au:"E4C5",softbank:"E130",google:"FE80C",image:"1f3af.png",sheet_x:9,sheet_y:30,short_name:"dart",short_names:["dart"],text:null,texts:null,category:"Activity",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scales:{name:"Scales",unified:"2696",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2696.png",sheet_x:2,sheet_y:7,short_name:"scales",short_names:["scales"],text:null,texts:null,category:"Objects",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},vs:{name:"Squared Vs",unified:"1F19A",variations:[],docomo:null,au:"E5D2",softbank:"E12E",google:"FEB32",image:"1f19a.png",sheet_x:5,sheet_y:5,short_name:"vs",short_names:["vs"],text:null,texts:null,category:"Symbols",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},elephant:{name:"Elephant",unified:"1F418",variations:[],docomo:null,au:"EB1F",softbank:"E526",google:"FE1CC",image:"1f418.png",sheet_x:12,sheet_y:29,short_name:"elephant",short_names:["elephant"],text:null,texts:null,category:"Nature",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wrench:{name:"Wrench",unified:"1F527",variations:[],docomo:"E718",au:"E587",softbank:null,google:"FE4C9",image:"1f527.png",sheet_x:23,sheet_y:23,short_name:"wrench",short_names:["wrench"],text:null,texts:null,category:"Objects",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},game_die:{name:"Game Die",unified:"1F3B2",variations:[],docomo:null,au:"E4C8",softbank:null,google:"FE80F",image:"1f3b2.png",sheet_x:9,sheet_y:33,short_name:"game_die",short_names:["game_die"],text:null,texts:null,category:"Activity",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},accept:{name:"Circled Ideograph Accept",unified:"1F251",variations:[],docomo:null,au:"EB01",softbank:null,google:"FEB50",image:"1f251.png",sheet_x:5,sheet_y:20,short_name:"accept",short_names:["accept"],text:null,texts:null,category:"Symbols",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cookie:{name:"Cookie",unified:"1F36A",variations:[],docomo:null,au:"EB4C",softbank:null,google:"FE979",image:"1f36a.png",sheet_x:8,sheet_y:2,short_name:"cookie",short_names:["cookie"], -text:null,texts:null,category:"Foods",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cr":{name:"Regional Indicator Symbol Letters Cr",unified:"1F1E8-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f7.png",sheet_x:34,sheet_y:2,short_name:"flag-cr",short_names:["flag-cr"],text:null,texts:null,category:"Flags",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},checkered_flag:{name:"Chequered Flag",unified:"1F3C1",variations:[],docomo:"E659",au:"E4B9",softbank:"E132",google:"FE7D7",image:"1f3c1.png",sheet_x:10,sheet_y:7,short_name:"checkered_flag",short_names:["checkered_flag"],text:null,texts:null,category:"Places",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},frowning:{name:"Frowning Face with Open Mouth",unified:"1F626",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f626.png",sheet_x:27,sheet_y:12,short_name:"frowning",short_names:["frowning"],text:null,texts:null,category:"People",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_flower:{name:"White Flower",unified:"1F4AE",variations:[],docomo:null,au:"E4F0",softbank:null,google:"FEB7A",image:"1f4ae.png",sheet_x:20,sheet_y:26,short_name:"white_flower",short_names:["white_flower"],text:null,texts:null,category:"Symbols",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ship:{name:"Ship",unified:"1F6A2",variations:[],docomo:"E661",au:"EA82",softbank:"E202",google:"FE7E8",image:"1f6a2.png",sheet_x:30,sheet_y:5,short_name:"ship",short_names:["ship"],text:null,texts:null,category:"Places",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hammer:{name:"Hammer",unified:"1F528",variations:[],docomo:null,au:"E5CB",softbank:"E116",google:"FE4CA",image:"1f528.png",sheet_x:23,sheet_y:24,short_name:"hammer",short_names:["hammer"],text:null,texts:null,category:"Objects",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-hr":{name:"Regional Indicator Symbol Letters Hr",unified:"1F1ED-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f7.png",sheet_x:35,sheet_y:12,short_name:"flag-hr",short_names:["flag-hr"],text:null,texts:null,category:"Flags",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},anguished:{name:"Anguished Face",unified:"1F627",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f627.png",sheet_x:27,sheet_y:13,short_name:"anguished",short_names:["anguished"],text:null,texts:["D:"],category:"People",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},goat:{name:"Goat",unified:"1F410",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f410.png",sheet_x:12,sheet_y:21,short_name:"goat",short_names:["goat"],text:null,texts:null,category:"Nature",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},beer:{name:"Beer Mug",unified:"1F37A",variations:[],docomo:"E672",au:"E4C3",softbank:"E047",google:"FE983",image:"1f37a.png",sheet_x:8,sheet_y:18,short_name:"beer",short_names:["beer"],text:null,texts:null,category:"Foods",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},slot_machine:{name:"Slot Machine",unified:"1F3B0",variations:[],docomo:null,au:"E46E",softbank:"E133",google:"FE80D",image:"1f3b0.png",sheet_x:9,sheet_y:31,short_name:"slot_machine",short_names:["slot_machine"],text:null,texts:null,category:"Activity",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cu":{name:"Regional Indicator Symbol Letters Cu",unified:"1F1E8-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fa.png",sheet_x:34,sheet_y:3,short_name:"flag-cu",short_names:["flag-cu"],text:null,texts:null,category:"Flags",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hammer_and_pick:{name:"Hammer and Pick",unified:"2692",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2692.png",sheet_x:2,sheet_y:4,short_name:"hammer_and_pick",short_names:["hammer_and_pick"],text:null,texts:null,category:"Objects",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},beers:{name:"Clinking Beer Mugs",unified:"1F37B",variations:[],docomo:"E672",au:"EA98",softbank:"E30C",google:"FE987",image:"1f37b.png",sheet_x:8,sheet_y:19,short_name:"beers",short_names:["beers"],text:null,texts:null,category:"Foods",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ferris_wheel:{name:"Ferris Wheel",unified:"1F3A1",variations:[],docomo:null,au:"E46D",softbank:"E124",google:"FE7FD",image:"1f3a1.png",sheet_x:9,sheet_y:16,short_name:"ferris_wheel",short_names:["ferris_wheel"],text:null,texts:null,category:"Places",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ideograph_advantage:{name:"Circled Ideograph Advantage",unified:"1F250",variations:[],docomo:null,au:"E4F7",softbank:"E226",google:"FEB3D",image:"1f250.png",sheet_x:5,sheet_y:19,short_name:"ideograph_advantage",short_names:["ideograph_advantage"],text:null,texts:null,category:"Symbols",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ram:{name:"Ram",unified:"1F40F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40f.png",sheet_x:12,sheet_y:20,short_name:"ram",short_names:["ram"],text:null,texts:null,category:"Nature",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cry:{name:"Crying Face",unified:"1F622",variations:[],docomo:"E72E",au:"EB69",softbank:"E413",google:"FE339",image:"1f622.png",sheet_x:27,sheet_y:8,short_name:"cry",short_names:["cry"],text:":'(",texts:[":'("],category:"People",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bowling:{name:"Bowling",unified:"1F3B3",variations:[],docomo:null,au:"EB43",softbank:null,google:"FE810",image:"1f3b3.png",sheet_x:9,sheet_y:34,short_name:"bowling",short_names:["bowling"],text:null,texts:null,category:"Activity",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cw":{name:"Regional Indicator Symbol Letters Cw",unified:"1F1E8-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fc.png",sheet_x:34,sheet_y:5,short_name:"flag-cw",short_names:["flag-cw"],text:null,texts:null,category:"Flags",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},secret:{name:"Circled Ideograph Secret",unified:"3299",variations:["3299-FE0F"],docomo:"E734",au:"E4F1",softbank:"E315",google:"FEB2B",image:"3299.png",sheet_x:4,sheet_y:29,short_name:"secret",short_names:["secret"],text:null,texts:null,category:"Symbols",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},disappointed_relieved:{name:"Disappointed but Relieved Face",unified:"1F625",variations:[],docomo:"E723",au:"E5C6",softbank:"E401",google:"FE345",image:"1f625.png",sheet_x:27,sheet_y:11,short_name:"disappointed_relieved",short_names:["disappointed_relieved"],text:null,texts:null,category:"People",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hammer_and_wrench:{name:"Hammer and Wrench",unified:"1F6E0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e0.png",sheet_x:31,sheet_y:31,short_name:"hammer_and_wrench",short_names:["hammer_and_wrench"],text:null,texts:null,category:"Objects",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},roller_coaster:{name:"Roller Coaster",unified:"1F3A2",variations:[],docomo:null,au:"EAE2",softbank:"E433",google:"FE7FE",image:"1f3a2.png",sheet_x:9,sheet_y:17,short_name:"roller_coaster",short_names:["roller_coaster"],text:null,texts:null,category:"Places",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sheep:{name:"Sheep",unified:"1F411",variations:[],docomo:null,au:"E48F",softbank:"E529",google:"FE1CF",image:"1f411.png",sheet_x:12,sheet_y:22,short_name:"sheep",short_names:["sheep"],text:null,texts:null,category:"Nature",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wine_glass:{name:"Wine Glass",unified:"1F377",variations:[],docomo:"E756",au:"E4C1",softbank:"E044",google:"FE986",image:"1f377.png",sheet_x:8,sheet_y:15,short_name:"wine_glass",short_names:["wine_glass"],text:null,texts:null,category:"Foods",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},congratulations:{name:"Circled Ideograph Congratulation",unified:"3297",variations:["3297-FE0F"],docomo:null,au:"EA99",softbank:"E30D",google:"FEB43",image:"3297.png",sheet_x:4,sheet_y:28,short_name:"congratulations",short_names:["congratulations"],text:null,texts:null,category:"Symbols",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sleepy:{name:"Sleepy Face",unified:"1F62A",variations:[],docomo:"E701",au:"EAC4",softbank:"E408",google:"FE342",image:"1f62a.png",sheet_x:27,sheet_y:16,short_name:"sleepy",short_names:["sleepy"],text:null,texts:null,category:"People",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},carousel_horse:{name:"Carousel Horse",unified:"1F3A0",variations:[],docomo:"E679",au:null,softbank:null,google:"FE7FC",image:"1f3a0.png",sheet_x:9,sheet_y:15,short_name:"carousel_horse",short_names:["carousel_horse"],text:null,texts:null,category:"Places",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pick:{name:"Pick",unified:"26CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26cf.png",sheet_x:2,sheet_y:24,short_name:"pick",short_names:["pick"],text:null,texts:null,category:"Objects",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cy":{name:"Regional Indicator Symbol Letters Cy",unified:"1F1E8-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fe.png",sheet_x:34,sheet_y:7,short_name:"flag-cy",short_names:["flag-cy"],text:null,texts:null,category:"Flags",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cocktail:{name:"Cocktail Glass",unified:"1F378",variations:[],docomo:"E671",au:"E4C2",softbank:"E044",google:"FE982",image:"1f378.png",sheet_x:8,sheet_y:16,short_name:"cocktail",short_names:["cocktail"],text:null,texts:null,category:"Foods",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},racehorse:{name:"Horse",unified:"1F40E",variations:[],docomo:"E754",au:"E4D8",softbank:"E134",google:"FE7DC",image:"1f40e.png",sheet_x:12,sheet_y:19,short_name:"racehorse",short_names:["racehorse"],text:null,texts:null,category:"Nature",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cz":{name:"Regional Indicator Symbol Letters Cz",unified:"1F1E8-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ff.png",sheet_x:34,sheet_y:8,short_name:"flag-cz",short_names:["flag-cz"],text:null,texts:null,category:"Flags",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tropical_drink:{name:"Tropical Drink",unified:"1F379",variations:[],docomo:"E671",au:"EB3E",softbank:"E044",google:"FE988",image:"1f379.png",sheet_x:8,sheet_y:17,short_name:"tropical_drink",short_names:["tropical_drink"],text:null,texts:null,category:"Foods",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u5408:{name:"Squared Cjk Unified Ideograph-5408",unified:"1F234",variations:[],docomo:"E73A",au:null,softbank:null,google:"FEB30",image:"1f234.png",sheet_x:5,sheet_y:12,short_name:"u5408",short_names:["u5408"],text:null,texts:null,category:"Symbols",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},nut_and_bolt:{name:"Nut and Bolt",unified:"1F529",variations:[],docomo:null,au:"E581",softbank:null,google:"FE4CB",image:"1f529.png",sheet_x:23,sheet_y:25,short_name:"nut_and_bolt",short_names:["nut_and_bolt"],text:null,texts:null,category:"Objects",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sweat:{name:"Face with Cold Sweat",unified:"1F613",variations:[],docomo:"E723",au:"E5C6",softbank:"E108",google:"FE344",image:"1f613.png",sheet_x:26,sheet_y:34,short_name:"sweat",short_names:["sweat"],text:null,texts:null,category:"People",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},building_construction:{name:"Building Construction",unified:"1F3D7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d7.png",sheet_x:11,sheet_y:8,short_name:"building_construction",short_names:["building_construction"],text:null,texts:null,category:"Places",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pig2:{name:"Pig",unified:"1F416",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f416.png",sheet_x:12,sheet_y:27,short_name:"pig2",short_names:["pig2"],text:null,texts:null,category:"Nature",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sob:{name:"Loudly Crying Face",unified:"1F62D",variations:[],docomo:"E72D",au:"E473",softbank:"E411",google:"FE33A",image:"1f62d.png",sheet_x:27,sheet_y:19,short_name:"sob",short_names:["sob"],text:":'(",texts:null,category:"People",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u6e80:{name:"Squared Cjk Unified Ideograph-6e80",unified:"1F235",variations:[],docomo:"E73B",au:"EA89",softbank:"E22A",google:"FEB31",image:"1f235.png",sheet_x:5,sheet_y:13,short_name:"u6e80",short_names:["u6e80"],text:null,texts:null,category:"Symbols",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-dk":{name:"Regional Indicator Symbol Letters Dk",unified:"1F1E9-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f0.png",sheet_x:34,sheet_y:12,short_name:"flag-dk",short_names:["flag-dk"],text:null,texts:null,category:"Flags",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gear:{name:"Gear",unified:"2699",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2699.png",sheet_x:2,sheet_y:9,short_name:"gear",short_names:["gear"],text:null,texts:null,category:"Objects",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rat:{name:"Rat",unified:"1F400",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f400.png",sheet_x:12,sheet_y:5,short_name:"rat",short_names:["rat"],text:null,texts:null,category:"Nature",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},champagne:{name:"Bottle with Popping Cork",unified:"1F37E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37e.png",sheet_x:8,sheet_y:22,short_name:"champagne",short_names:["champagne"],text:null,texts:null,category:"Foods",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},foggy:{name:"Foggy",unified:"1F301",variations:[],docomo:"E644",au:"E598",softbank:null,google:"FE006",image:"1f301.png",sheet_x:5,sheet_y:22,short_name:"foggy",short_names:["foggy"],text:null,texts:null,category:"Places",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tokyo_tower:{name:"Tokyo Tower",unified:"1F5FC",variations:[],docomo:null,au:"E4C0",softbank:"E509",google:"FE4C4",image:"1f5fc.png",sheet_x:26,sheet_y:11,short_name:"tokyo_tower",short_names:["tokyo_tower"],text:null,texts:null,category:"Places",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dizzy_face:{name:"Dizzy Face",unified:"1F635",variations:[],docomo:"E6F4",au:"E5AE",softbank:"E406",google:"FE324",image:"1f635.png",sheet_x:27,sheet_y:27,short_name:"dizzy_face",short_names:["dizzy_face"],text:null,texts:null,category:"People",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sake:{name:"Sake Bottle and Cup",unified:"1F376",variations:[],docomo:"E74B",au:"EA97",softbank:"E30B",google:"FE985",image:"1f376.png",sheet_x:8,sheet_y:14,short_name:"sake",short_names:["sake"],text:null,texts:null,category:"Foods",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u7981:{name:"Squared Cjk Unified Ideograph-7981",unified:"1F232",variations:[],docomo:"E738",au:null,softbank:null,google:"FEB2E",image:"1f232.png",sheet_x:5,sheet_y:10,short_name:"u7981",short_names:["u7981"],text:null,texts:null,category:"Symbols",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mouse2:{name:"Mouse",unified:"1F401",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f401.png",sheet_x:12,sheet_y:6,short_name:"mouse2",short_names:["mouse2"],text:null,texts:null,category:"Nature",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-dj":{name:"Regional Indicator Symbol Letters Dj",unified:"1F1E9-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ef.png",sheet_x:34,sheet_y:11,short_name:"flag-dj",short_names:["flag-dj"],text:null,texts:null,category:"Flags",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chains:{name:"Chains",unified:"26D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d3.png",sheet_x:2,sheet_y:26,short_name:"chains",short_names:["chains"],text:null,texts:null,category:"Objects",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},a:{name:"Negative Squared Latin Capital Letter a",unified:"1F170",variations:["1F170-FE0F"],docomo:null,au:"EB26",softbank:"E532",google:"FE50B",image:"1f170.png",sheet_x:4,sheet_y:32,short_name:"a",short_names:["a"],text:null,texts:null,category:"Symbols",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tea:{name:"Teacup Without Handle",unified:"1F375",variations:[],docomo:"E71E",au:"EAAE",softbank:"E338",google:"FE984",image:"1f375.png",sheet_x:8,sheet_y:13,short_name:"tea",short_names:["tea"],text:null,texts:null,category:"Foods",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gun:{name:"Pistol",unified:"1F52B",variations:[],docomo:null,au:"E50A",softbank:"E113",google:"FE4F5",image:"1f52b.png",sheet_x:23,sheet_y:27,short_name:"gun",short_names:["gun"],text:null,texts:null,category:"Objects",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},astonished:{name:"Astonished Face",unified:"1F632",variations:[],docomo:"E6F4",au:"EACA",softbank:"E410",google:"FE322",image:"1f632.png",sheet_x:27,sheet_y:24,short_name:"astonished",short_names:["astonished"],text:null,texts:null,category:"People",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-dm":{name:"Regional Indicator Symbol Letters Dm",unified:"1F1E9-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f2.png",sheet_x:34,sheet_y:13,short_name:"flag-dm",short_names:["flag-dm"],text:null,texts:null,category:"Flags",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rooster:{name:"Rooster",unified:"1F413",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f413.png",sheet_x:12,sheet_y:24,short_name:"rooster",short_names:["rooster"],text:null,texts:null,category:"Nature",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},factory:{name:"Factory",unified:"1F3ED",variations:[],docomo:null,au:"EAF9",softbank:"E508",google:"FE4C0",image:"1f3ed.png",sheet_x:11,sheet_y:30,short_name:"factory",short_names:["factory"],text:null,texts:null,category:"Places",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},coffee:{name:"Hot Beverage",unified:"2615",variations:["2615-FE0F"],docomo:"E670",au:"E597",softbank:"E045",google:"FE981",image:"2615.png",sheet_x:1,sheet_y:8,short_name:"coffee",short_names:["coffee"],text:null,texts:null,category:"Foods",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bomb:{name:"Bomb",unified:"1F4A3",variations:[],docomo:"E6FE",au:"E47A",softbank:"E311",google:"FEB58",image:"1f4a3.png",sheet_x:20,sheet_y:10,short_name:"bomb",short_names:["bomb"],text:null,texts:null,category:"Objects",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-do":{name:"Regional Indicator Symbol Letters Do",unified:"1F1E9-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f4.png",sheet_x:34,sheet_y:14,short_name:"flag-do",short_names:["flag-do"],text:null,texts:null,category:"Flags",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fountain:{name:"Fountain",unified:"26F2",variations:["26F2-FE0F"],docomo:null,au:"E5CF",softbank:"E121",google:"FE4BC",image:"26f2.png",sheet_x:2,sheet_y:32,short_name:"fountain",short_names:["fountain"],text:null,texts:null,category:"Places",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},turkey:{name:"Turkey",unified:"1F983",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f983.png",sheet_x:32,sheet_y:18,short_name:"turkey",short_names:["turkey"],text:null,texts:null,category:"Nature",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},zipper_mouth_face:{name:"Zipper-Mouth Face",unified:"1F910",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f910.png",sheet_x:32,sheet_y:1,short_name:"zipper_mouth_face",short_names:["zipper_mouth_face"],text:null,texts:null,category:"People",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},b:{name:"Negative Squared Latin Capital Letter B",unified:"1F171",variations:["1F171-FE0F"],docomo:null,au:"EB27",softbank:"E533",google:"FE50C",image:"1f171.png",sheet_x:4,sheet_y:33,short_name:"b",short_names:["b"],text:null,texts:null,category:"Symbols",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mask:{name:"Face with Medical Mask",unified:"1F637",variations:[],docomo:null,au:"EAC7",softbank:"E40C",google:"FE32E",image:"1f637.png",sheet_x:27,sheet_y:29,short_name:"mask",short_names:["mask"],text:null,texts:null,category:"People",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ec":{name:"Regional Indicator Symbol Letters Ec",unified:"1F1EA-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1e8.png",sheet_x:34,sheet_y:17,short_name:"flag-ec",short_names:["flag-ec"],text:null,texts:null,category:"Flags",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ab:{name:"Negative Squared Ab",unified:"1F18E",variations:[],docomo:null,au:"EB29",softbank:"E534",google:"FE50D",image:"1f18e.png",sheet_x:4,sheet_y:36,short_name:"ab",short_names:["ab"],text:null,texts:null,category:"Symbols",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rice_scene:{name:"Moon Viewing Ceremony",unified:"1F391",variations:[],docomo:null,au:"EAEF",softbank:"E446",google:"FE017",image:"1f391.png",sheet_x:9,sheet_y:5,short_name:"rice_scene",short_names:["rice_scene"],text:null,texts:null,category:"Places",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},baby_bottle:{name:"Baby Bottle",unified:"1F37C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37c.png",sheet_x:8,sheet_y:20,short_name:"baby_bottle",short_names:["baby_bottle"],text:null,texts:null,category:"Foods",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hocho:{name:"Hocho",unified:"1F52A",variations:[],docomo:null,au:"E57F",softbank:null,google:"FE4FA",image:"1f52a.png",sheet_x:23,sheet_y:26,short_name:"hocho",short_names:["hocho","knife"],text:null,texts:null,category:"Objects",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dove_of_peace:{name:"Dove of Peace",unified:"1F54A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54a.png",sheet_x:24,sheet_y:6,short_name:"dove_of_peace",short_names:["dove_of_peace"],text:null,texts:null,category:"Nature",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cl:{name:"Squared Cl",unified:"1F191",variations:[],docomo:"E6DB",au:"E5AB",softbank:null,google:"FEB84",image:"1f191.png",sheet_x:4,sheet_y:37,short_name:"cl",short_names:["cl"],text:null,texts:null,category:"Symbols",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dog2:{name:"Dog",unified:"1F415",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f415.png",sheet_x:12,sheet_y:26,short_name:"dog2",short_names:["dog2"],text:null,texts:null,category:"Nature",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fork_and_knife:{name:"Fork and Knife",unified:"1F374",variations:[],docomo:"E66F",au:"E4AC",softbank:"E043",google:"FE980",image:"1f374.png",sheet_x:8,sheet_y:12,short_name:"fork_and_knife",short_names:["fork_and_knife"],text:null,texts:null,category:"Foods",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dagger_knife:{name:"Dagger Knife",unified:"1F5E1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e1.png",sheet_x:26,sheet_y:4,short_name:"dagger_knife",short_names:["dagger_knife"],text:null,texts:null,category:"Objects",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mountain:{name:"Mountain",unified:"26F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f0.png",sheet_x:2,sheet_y:30,short_name:"mountain",short_names:["mountain"],text:null,texts:null,category:"Places",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},face_with_thermometer:{name:"Face with Thermometer",unified:"1F912",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f912.png",sheet_x:32,sheet_y:3,short_name:"face_with_thermometer",short_names:["face_with_thermometer"],text:null,texts:null,category:"People",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-eg":{name:"Regional Indicator Symbol Letters Eg",unified:"1F1EA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ec.png",sheet_x:34,sheet_y:19,short_name:"flag-eg",short_names:["flag-eg"],text:null,texts:null,category:"Flags",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},poodle:{name:"Poodle",unified:"1F429",variations:[],docomo:"E6A1",au:"E4DF",softbank:"E052",google:"FE1D8",image:"1f429.png",sheet_x:13,sheet_y:5,short_name:"poodle",short_names:["poodle"],text:null,texts:null,category:"Nature",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sv":{name:"Regional Indicator Symbol Letters Sv",unified:"1F1F8-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fb.png",sheet_x:38,sheet_y:2,short_name:"flag-sv",short_names:["flag-sv"],text:null,texts:null,category:"Flags",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snow_capped_mountain:{name:"Snow Capped Mountain",unified:"1F3D4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d4.png",sheet_x:11,sheet_y:5,short_name:"snow_capped_mountain",short_names:["snow_capped_mountain"],text:null,texts:null,category:"Places",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},face_with_head_bandage:{name:"Face with Head-Bandage",unified:"1F915",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f915.png",sheet_x:32,sheet_y:6,short_name:"face_with_head_bandage",short_names:["face_with_head_bandage"],text:null,texts:null,category:"People",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},o2:{name:"Negative Squared Latin Capital Letter O",unified:"1F17E",variations:["1F17E-FE0F"],docomo:null,au:"EB28",softbank:"E535",google:"FE50E",image:"1f17e.png",sheet_x:4,sheet_y:34,short_name:"o2",short_names:["o2"],text:null,texts:null,category:"Symbols",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},knife_fork_plate:{name:"Fork and Knife with Plate",unified:"1F37D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37d.png",sheet_x:8,sheet_y:21,short_name:"knife_fork_plate",short_names:["knife_fork_plate"],text:null,texts:null,category:"Foods",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crossed_swords:{name:"Crossed Swords",unified:"2694",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2694.png",sheet_x:2,sheet_y:6,short_name:"crossed_swords",short_names:["crossed_swords"],text:null,texts:null,category:"Objects",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sos:{name:"Squared Sos",unified:"1F198",variations:[],docomo:null,au:"E4E8",softbank:null,google:"FEB4F",image:"1f198.png",sheet_x:5,sheet_y:3,short_name:"sos",short_names:["sos"],text:null,texts:null,category:"Symbols",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gq":{name:"Regional Indicator Symbol Letters Gq",unified:"1F1EC-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f6.png",sheet_x:35,sheet_y:2,short_name:"flag-gq",short_names:["flag-gq"],text:null,texts:null,category:"Flags",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mount_fuji:{name:"Mount Fuji",unified:"1F5FB",variations:[],docomo:"E740",au:"E5BD",softbank:"E03B",google:"FE4C3",image:"1f5fb.png",sheet_x:26,sheet_y:10,short_name:"mount_fuji",short_names:["mount_fuji"],text:null,texts:null,category:"Places",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cat2:{name:"Cat",unified:"1F408",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f408.png",sheet_x:12,sheet_y:13,short_name:"cat2",short_names:["cat2"],text:null,texts:null,category:"Nature",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shield:{name:"Shield",unified:"1F6E1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e1.png",sheet_x:31,sheet_y:32,short_name:"shield",short_names:["shield"],text:null,texts:null,category:"Objects",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sleeping:{name:"Sleeping Face",unified:"1F634",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f634.png",sheet_x:27,sheet_y:26,short_name:"sleeping",short_names:["sleeping"],text:null,texts:null,category:"People",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},volcano:{name:"Volcano",unified:"1F30B",variations:[],docomo:null,au:"EB53",softbank:null,google:"FE03A",image:"1f30b.png",sheet_x:5,sheet_y:32,short_name:"volcano",short_names:["volcano"], -text:null,texts:null,category:"Places",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rabbit2:{name:"Rabbit",unified:"1F407",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f407.png",sheet_x:12,sheet_y:12,short_name:"rabbit2",short_names:["rabbit2"],text:null,texts:null,category:"Nature",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smoking:{name:"Smoking Symbol",unified:"1F6AC",variations:[],docomo:"E67F",au:"E47D",softbank:"E30E",google:"FEB1E",image:"1f6ac.png",sheet_x:30,sheet_y:20,short_name:"smoking",short_names:["smoking"],text:null,texts:null,category:"Objects",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-er":{name:"Regional Indicator Symbol Letters Er",unified:"1F1EA-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1f7.png",sheet_x:34,sheet_y:21,short_name:"flag-er",short_names:["flag-er"],text:null,texts:null,category:"Flags",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},zzz:{name:"Sleeping Symbol",unified:"1F4A4",variations:[],docomo:"E701",au:"E475",softbank:"E13C",google:"FEB59",image:"1f4a4.png",sheet_x:20,sheet_y:11,short_name:"zzz",short_names:["zzz"],text:null,texts:null,category:"People",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_entry:{name:"No Entry",unified:"26D4",variations:["26D4-FE0F"],docomo:"E72F",au:"E484",softbank:"E137",google:"FEB26",image:"26d4.png",sheet_x:2,sheet_y:27,short_name:"no_entry",short_names:["no_entry"],text:null,texts:null,category:"Symbols",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hankey:{name:"Pile of Poo",unified:"1F4A9",variations:[],docomo:null,au:"E4F5",softbank:"E05A",google:"FE4F4",image:"1f4a9.png",sheet_x:20,sheet_y:16,short_name:"hankey",short_names:["hankey","poop","shit"],text:null,texts:null,category:"People",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ee":{name:"Regional Indicator Symbol Letters Ee",unified:"1F1EA-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ea.png",sheet_x:34,sheet_y:18,short_name:"flag-ee",short_names:["flag-ee"],text:null,texts:null,category:"Flags",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},skull_and_crossbones:{name:"Skull and Crossbones",unified:"2620",variations:["2620-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2620.png",sheet_x:1,sheet_y:16,short_name:"skull_and_crossbones",short_names:["skull_and_crossbones"],text:null,texts:null,category:"Objects",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chipmunk:{name:"Chipmunk",unified:"1F43F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f43f.png",sheet_x:13,sheet_y:27,short_name:"chipmunk",short_names:["chipmunk"],text:null,texts:null,category:"Nature",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},japan:{name:"Silhouette of Japan",unified:"1F5FE",variations:[],docomo:null,au:"E572",softbank:null,google:"FE4C7",image:"1f5fe.png",sheet_x:26,sheet_y:13,short_name:"japan",short_names:["japan"],text:null,texts:null,category:"Places",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},name_badge:{name:"Name Badge",unified:"1F4DB",variations:[],docomo:null,au:"E51D",softbank:null,google:"FE504",image:"1f4db.png",sheet_x:21,sheet_y:30,short_name:"name_badge",short_names:["name_badge"],text:null,texts:null,category:"Symbols",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},coffin:{name:"Coffin",unified:"26B0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26b0.png",sheet_x:2,sheet_y:16,short_name:"coffin",short_names:["coffin"],text:null,texts:null,category:"Objects",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},camping:{name:"Camping",unified:"1F3D5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d5.png",sheet_x:11,sheet_y:6,short_name:"camping",short_names:["camping"],text:null,texts:null,category:"Places",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},feet:{name:"Paw Prints",unified:"1F43E",variations:[],docomo:"E698",au:"E4EE",softbank:"E536",google:"FE1DB",image:"1f43e.png",sheet_x:13,sheet_y:26,short_name:"feet",short_names:["feet","paw_prints"],text:null,texts:null,category:"Nature",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-et":{name:"Regional Indicator Symbol Letters Et",unified:"1F1EA-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1f9.png",sheet_x:34,sheet_y:23,short_name:"flag-et",short_names:["flag-et"],text:null,texts:null,category:"Flags",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_entry_sign:{name:"No Entry Sign",unified:"1F6AB",variations:[],docomo:"E738",au:"E541",softbank:null,google:"FEB48",image:"1f6ab.png",sheet_x:30,sheet_y:19,short_name:"no_entry_sign",short_names:["no_entry_sign"],text:null,texts:null,category:"Symbols",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smiling_imp:{name:"Smiling Face with Horns",unified:"1F608",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f608.png",sheet_x:26,sheet_y:23,short_name:"smiling_imp",short_names:["smiling_imp"],text:null,texts:null,category:"People",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},imp:{name:"Imp",unified:"1F47F",variations:[],docomo:null,au:"E4EF",softbank:"E11A",google:"FE1B2",image:"1f47f.png",sheet_x:18,sheet_y:26,short_name:"imp",short_names:["imp"],text:null,texts:null,category:"People",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},funeral_urn:{name:"Funeral Urn",unified:"26B1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26b1.png",sheet_x:2,sheet_y:17,short_name:"funeral_urn",short_names:["funeral_urn"],text:null,texts:null,category:"Objects",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tent:{name:"Tent",unified:"26FA",variations:["26FA-FE0F"],docomo:null,au:"E5D0",softbank:"E122",google:"FE7FB",image:"26fa.png",sheet_x:3,sheet_y:3,short_name:"tent",short_names:["tent"],text:null,texts:null,category:"Places",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dragon:{name:"Dragon",unified:"1F409",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f409.png",sheet_x:12,sheet_y:14,short_name:"dragon",short_names:["dragon"],text:null,texts:null,category:"Nature",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},x:{name:"Cross Mark",unified:"274C",variations:[],docomo:null,au:"E550",softbank:"E333",google:"FEB45",image:"274c.png",sheet_x:4,sheet_y:3,short_name:"x",short_names:["x"],text:null,texts:null,category:"Symbols",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-eu":{name:"Regional Indicator Symbol Letters Eu",unified:"1F1EA-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1fa.png",sheet_x:34,sheet_y:24,short_name:"flag-eu",short_names:["flag-eu"],text:null,texts:null,category:"Flags",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},amphora:{name:"Amphora",unified:"1F3FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fa.png",sheet_x:11,sheet_y:40,short_name:"amphora",short_names:["amphora"],text:null,texts:null,category:"Objects",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},o:{name:"Heavy Large Circle",unified:"2B55",variations:["2B55-FE0F"],docomo:"E6A0",au:"EAAD",softbank:"E332",google:"FEB44",image:"2b55.png",sheet_x:4,sheet_y:25,short_name:"o",short_names:["o"],text:null,texts:null,category:"Symbols",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},national_park:{name:"National Park",unified:"1F3DE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3de.png",sheet_x:11,sheet_y:15,short_name:"national_park",short_names:["national_park"],text:null,texts:null,category:"Places",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dragon_face:{name:"Dragon Face",unified:"1F432",variations:[],docomo:null,au:"EB3F",softbank:null,google:"FE1DE",image:"1f432.png",sheet_x:13,sheet_y:14,short_name:"dragon_face",short_names:["dragon_face"],text:null,texts:null,category:"Nature",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fk":{name:"Regional Indicator Symbol Letters Fk",unified:"1F1EB-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f0.png",sheet_x:34,sheet_y:27,short_name:"flag-fk",short_names:["flag-fk"],text:null,texts:null,category:"Flags",sort_order:73,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},japanese_ogre:{name:"Japanese Ogre",unified:"1F479",variations:[],docomo:null,au:"EB44",softbank:null,google:"FE1AC",image:"1f479.png",sheet_x:18,sheet_y:15,short_name:"japanese_ogre",short_names:["japanese_ogre"],text:null,texts:null,category:"People",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},japanese_goblin:{name:"Japanese Goblin",unified:"1F47A",variations:[],docomo:null,au:"EB45",softbank:null,google:"FE1AD",image:"1f47a.png",sheet_x:18,sheet_y:16,short_name:"japanese_goblin",short_names:["japanese_goblin"],text:null,texts:null,category:"People",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fo":{name:"Regional Indicator Symbol Letters Fo",unified:"1F1EB-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f4.png",sheet_x:34,sheet_y:29,short_name:"flag-fo",short_names:["flag-fo"],text:null,texts:null,category:"Flags",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},motorway:{name:"Motorway",unified:"1F6E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e3.png",sheet_x:31,sheet_y:34,short_name:"motorway",short_names:["motorway"],text:null,texts:null,category:"Places",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cactus:{name:"Cactus",unified:"1F335",variations:[],docomo:null,au:"EA96",softbank:"E308",google:"FE048",image:"1f335.png",sheet_x:6,sheet_y:31,short_name:"cactus",short_names:["cactus"],text:null,texts:null,category:"Nature",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},anger:{name:"Anger Symbol",unified:"1F4A2",variations:[],docomo:"E6FC",au:"E4E5",softbank:"E334",google:"FEB57",image:"1f4a2.png",sheet_x:20,sheet_y:9,short_name:"anger",short_names:["anger"],text:null,texts:null,category:"Symbols",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crystal_ball:{name:"Crystal Ball",unified:"1F52E",variations:[],docomo:null,au:"EA8F",softbank:"E23E",google:"FE4F7",image:"1f52e.png",sheet_x:23,sheet_y:30,short_name:"crystal_ball",short_names:["crystal_ball"],text:null,texts:null,category:"Objects",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},skull:{name:"Skull",unified:"1F480",variations:[],docomo:null,au:"E4F8",softbank:"E11C",google:"FE1B3",image:"1f480.png",sheet_x:18,sheet_y:27,short_name:"skull",short_names:["skull"],text:null,texts:null,category:"People",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hotsprings:{name:"Hot Springs",unified:"2668",variations:["2668-FE0F"],docomo:"E6F7",au:"E4BC",softbank:"E123",google:"FE7FA",image:"2668.png",sheet_x:2,sheet_y:1,short_name:"hotsprings",short_names:["hotsprings"],text:null,texts:null,category:"Symbols",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fj":{name:"Regional Indicator Symbol Letters Fj",unified:"1F1EB-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1ef.png",sheet_x:34,sheet_y:26,short_name:"flag-fj",short_names:["flag-fj"],text:null,texts:null,category:"Flags",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},prayer_beads:{name:"Prayer Beads",unified:"1F4FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ff.png",sheet_x:22,sheet_y:24,short_name:"prayer_beads",short_names:["prayer_beads"],text:null,texts:null,category:"Objects",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},christmas_tree:{name:"Christmas Tree",unified:"1F384",variations:[],docomo:"E6A4",au:"E4C9",softbank:"E033",google:"FE512",image:"1f384.png",sheet_x:8,sheet_y:28,short_name:"christmas_tree",short_names:["christmas_tree"],text:null,texts:null,category:"Nature",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},railway_track:{name:"Railway Track",unified:"1F6E4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e4.png",sheet_x:31,sheet_y:35,short_name:"railway_track",short_names:["railway_track"],text:null,texts:null,category:"Places",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fi":{name:"Regional Indicator Symbol Letters Fi",unified:"1F1EB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1ee.png",sheet_x:34,sheet_y:25,short_name:"flag-fi",short_names:["flag-fi"],text:null,texts:null,category:"Flags",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},barber:{name:"Barber Pole",unified:"1F488",variations:[],docomo:null,au:"EAA2",softbank:"E320",google:"FE199",image:"1f488.png",sheet_x:19,sheet_y:24,short_name:"barber",short_names:["barber"],text:null,texts:null,category:"Objects",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ghost:{name:"Ghost",unified:"1F47B",variations:[],docomo:null,au:"E4CB",softbank:"E11B",google:"FE1AE",image:"1f47b.png",sheet_x:18,sheet_y:17,short_name:"ghost",short_names:["ghost"],text:null,texts:null,category:"People",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sunrise:{name:"Sunrise",unified:"1F305",variations:[],docomo:"E63E",au:"EAF4",softbank:"E449",google:"FE00A",image:"1f305.png",sheet_x:5,sheet_y:26,short_name:"sunrise",short_names:["sunrise"],text:null,texts:null,category:"Places",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},evergreen_tree:{name:"Evergreen Tree",unified:"1F332",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f332.png",sheet_x:6,sheet_y:28,short_name:"evergreen_tree",short_names:["evergreen_tree"],text:null,texts:null,category:"Nature",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_pedestrians:{name:"No Pedestrians",unified:"1F6B7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b7.png",sheet_x:31,sheet_y:5,short_name:"no_pedestrians",short_names:["no_pedestrians"],text:null,texts:null,category:"Symbols",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sunrise_over_mountains:{name:"Sunrise over Mountains",unified:"1F304",variations:[],docomo:"E63E",au:"EAF4",softbank:"E04D",google:"FE009",image:"1f304.png",sheet_x:5,sheet_y:25,short_name:"sunrise_over_mountains",short_names:["sunrise_over_mountains"],text:null,texts:null,category:"Places",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},alembic:{name:"Alembic",unified:"2697",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2697.png",sheet_x:2,sheet_y:8,short_name:"alembic",short_names:["alembic"],text:null,texts:null,category:"Objects",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},alien:{name:"Extraterrestrial Alien",unified:"1F47D",variations:[],docomo:null,au:"E50E",softbank:"E10C",google:"FE1B0",image:"1f47d.png",sheet_x:18,sheet_y:24,short_name:"alien",short_names:["alien"],text:null,texts:null,category:"People",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},deciduous_tree:{name:"Deciduous Tree",unified:"1F333",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f333.png",sheet_x:6,sheet_y:29,short_name:"deciduous_tree",short_names:["deciduous_tree"],text:null,texts:null,category:"Nature",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},do_not_litter:{name:"Do Not Litter Symbol",unified:"1F6AF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6af.png",sheet_x:30,sheet_y:23,short_name:"do_not_litter",short_names:["do_not_litter"],text:null,texts:null,category:"Symbols",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fr":{name:"Regional Indicator Symbol Letters Fr",unified:"1F1EB-1F1F7",variations:[],docomo:null,au:"EAFA",softbank:"E50D",google:"FE4E7",image:"1f1eb-1f1f7.png",sheet_x:34,sheet_y:30,short_name:"flag-fr",short_names:["flag-fr","fr"],text:null,texts:null,category:"Flags",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},telescope:{name:"Telescope",unified:"1F52D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f52d.png",sheet_x:23,sheet_y:29,short_name:"telescope",short_names:["telescope"],text:null,texts:null,category:"Objects",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},palm_tree:{name:"Palm Tree",unified:"1F334",variations:[],docomo:null,au:"E4E2",softbank:"E307",google:"FE047",image:"1f334.png",sheet_x:6,sheet_y:30,short_name:"palm_tree",short_names:["palm_tree"],text:null,texts:null,category:"Nature",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_bicycles:{name:"No Bicycles",unified:"1F6B3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b3.png",sheet_x:30,sheet_y:27,short_name:"no_bicycles",short_names:["no_bicycles"],text:null,texts:null,category:"Symbols",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},desert:{name:"Desert",unified:"1F3DC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3dc.png",sheet_x:11,sheet_y:13,short_name:"desert",short_names:["desert"],text:null,texts:null,category:"Places",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},robot_face:{name:"Robot Face",unified:"1F916",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f916.png",sheet_x:32,sheet_y:7,short_name:"robot_face",short_names:["robot_face"],text:null,texts:null,category:"People",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gf":{name:"Regional Indicator Symbol Letters Gf",unified:"1F1EC-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1eb.png",sheet_x:34,sheet_y:35,short_name:"flag-gf",short_names:["flag-gf"],text:null,texts:null,category:"Flags",sort_order:78,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"non-potable_water":{name:"Non-Potable Water Symbol",unified:"1F6B1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b1.png",sheet_x:30,sheet_y:25,short_name:"non-potable_water",short_names:["non-potable_water"],text:null,texts:null,category:"Symbols",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},beach_with_umbrella:{name:"Beach with Umbrella",unified:"1F3D6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d6.png",sheet_x:11,sheet_y:7,short_name:"beach_with_umbrella",short_names:["beach_with_umbrella"],text:null,texts:null,category:"Places",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},microscope:{name:"Microscope",unified:"1F52C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f52c.png",sheet_x:23,sheet_y:28,short_name:"microscope",short_names:["microscope"],text:null,texts:null,category:"Objects",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},seedling:{name:"Seedling",unified:"1F331",variations:[],docomo:"E746",au:"EB7D",softbank:"E110",google:"FE03E",image:"1f331.png",sheet_x:6,sheet_y:27,short_name:"seedling",short_names:["seedling"],text:null,texts:null,category:"Nature",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smiley_cat:{name:"Smiling Cat Face with Open Mouth",unified:"1F63A",variations:[],docomo:"E6F0",au:"EB61",softbank:"E057",google:"FE348",image:"1f63a.png",sheet_x:27,sheet_y:32,short_name:"smiley_cat",short_names:["smiley_cat"],text:null,texts:null,category:"People",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pf":{name:"Regional Indicator Symbol Letters Pf",unified:"1F1F5-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1eb.png",sheet_x:37,sheet_y:8,short_name:"flag-pf",short_names:["flag-pf"],text:null,texts:null,category:"Flags",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},herb:{name:"Herb",unified:"1F33F",variations:[],docomo:"E741",au:"EB82",softbank:"E110",google:"FE04E",image:"1f33f.png",sheet_x:7,sheet_y:0,short_name:"herb",short_names:["herb"],text:null,texts:null,category:"Nature",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},underage:{name:"No One Under Eighteen Symbol",unified:"1F51E",variations:[],docomo:null,au:"EA83",softbank:"E207",google:"FEB25",image:"1f51e.png",sheet_x:23,sheet_y:14,short_name:"underage",short_names:["underage"],text:null,texts:null,category:"Symbols",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hole:{name:"Hole",unified:"1F573",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f573.png",sheet_x:24,sheet_y:37,short_name:"hole",short_names:["hole"],text:null,texts:null,category:"Objects",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tf":{name:"Regional Indicator Symbol Letters Tf",unified:"1F1F9-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1eb.png",sheet_x:38,sheet_y:9,short_name:"flag-tf",short_names:["flag-tf"],text:null,texts:null,category:"Flags",sort_order:80,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},desert_island:{name:"Desert Island",unified:"1F3DD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3dd.png",sheet_x:11,sheet_y:14,short_name:"desert_island",short_names:["desert_island"],text:null,texts:null,category:"Places",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smile_cat:{name:"Grinning Cat Face with Smiling Eyes",unified:"1F638",variations:[],docomo:"E753",au:"EB7F",softbank:"E404",google:"FE349",image:"1f638.png",sheet_x:27,sheet_y:30,short_name:"smile_cat",short_names:["smile_cat"],text:null,texts:null,category:"People",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pill:{name:"Pill",unified:"1F48A",variations:[],docomo:null,au:"EA9A",softbank:"E30F",google:"FE50A",image:"1f48a.png",sheet_x:19,sheet_y:26,short_name:"pill",short_names:["pill"],text:null,texts:null,category:"Objects",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shamrock:{name:"Shamrock",unified:"2618",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2618.png",sheet_x:1,sheet_y:9,short_name:"shamrock",short_names:["shamrock"],text:null,texts:null,category:"Nature",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ga":{name:"Regional Indicator Symbol Letters Ga",unified:"1F1EC-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1e6.png",sheet_x:34,sheet_y:31,short_name:"flag-ga",short_names:["flag-ga"],text:null,texts:null,category:"Flags",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},city_sunrise:{name:"Sunset over Buildings",unified:"1F307",variations:[],docomo:"E63E",au:"E5DA",softbank:"E44A",google:"FE00C",image:"1f307.png",sheet_x:5,sheet_y:28,short_name:"city_sunrise",short_names:["city_sunrise"],text:null,texts:null,category:"Places",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},joy_cat:{name:"Cat Face with Tears of Joy",unified:"1F639",variations:[],docomo:"E72A",au:"EB63",softbank:"E412",google:"FE34A",image:"1f639.png",sheet_x:27,sheet_y:31,short_name:"joy_cat",short_names:["joy_cat"],text:null,texts:null,category:"People",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_mobile_phones:{name:"No Mobile Phones",unified:"1F4F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f5.png",sheet_x:22,sheet_y:15,short_name:"no_mobile_phones",short_names:["no_mobile_phones"],text:null,texts:null,category:"Symbols",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heart_eyes_cat:{name:"Smiling Cat Face with Heart-Shaped Eyes",unified:"1F63B",variations:[],docomo:"E726",au:"EB65",softbank:"E106",google:"FE34C",image:"1f63b.png",sheet_x:27,sheet_y:33,short_name:"heart_eyes_cat",short_names:["heart_eyes_cat"],text:null,texts:null,category:"People",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},syringe:{name:"Syringe",unified:"1F489",variations:[],docomo:null,au:"E510",softbank:"E13B",google:"FE509",image:"1f489.png",sheet_x:19,sheet_y:25,short_name:"syringe",short_names:["syringe"],text:null,texts:null,category:"Objects",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},exclamation:{name:"Heavy Exclamation Mark Symbol",unified:"2757",variations:["2757-FE0F"],docomo:"E702",au:"E482",softbank:"E021",google:"FEB04",image:"2757.png",sheet_x:4,sheet_y:8,short_name:"exclamation",short_names:["exclamation","heavy_exclamation_mark"],text:null,texts:null,category:"Symbols",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},city_sunset:{name:"Cityscape at Dusk",unified:"1F306",variations:[],docomo:null,au:"E5DA",softbank:"E146",google:"FE00B",image:"1f306.png",sheet_x:5,sheet_y:27,short_name:"city_sunset",short_names:["city_sunset"],text:null,texts:null,category:"Places",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gm":{name:"Regional Indicator Symbol Letters Gm",unified:"1F1EC-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f2.png",sheet_x:34,sheet_y:40,short_name:"flag-gm",short_names:["flag-gm"],text:null,texts:null,category:"Flags",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},four_leaf_clover:{name:"Four Leaf Clover",unified:"1F340",variations:[],docomo:"E741",au:"E513",softbank:"E110",google:"FE03C",image:"1f340.png",sheet_x:7,sheet_y:1,short_name:"four_leaf_clover",short_names:["four_leaf_clover"],text:null,texts:null,category:"Nature",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},grey_exclamation:{name:"White Exclamation Mark Ornament",unified:"2755",variations:[],docomo:"E702",au:"E482",softbank:"E337",google:"FEB0B",image:"2755.png",sheet_x:4,sheet_y:7,short_name:"grey_exclamation",short_names:["grey_exclamation"],text:null,texts:null,category:"Symbols",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},smirk_cat:{name:"Cat Face with Wry Smile",unified:"1F63C",variations:[],docomo:"E753",au:"EB6A",softbank:"E404",google:"FE34F",image:"1f63c.png",sheet_x:27,sheet_y:34,short_name:"smirk_cat",short_names:["smirk_cat"],text:null,texts:null,category:"People",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},thermometer:{name:"Thermometer",unified:"1F321",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f321.png",sheet_x:6,sheet_y:13,short_name:"thermometer",short_names:["thermometer"],text:null,texts:null,category:"Objects",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cityscape:{name:"Cityscape",unified:"1F3D9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d9.png",sheet_x:11,sheet_y:10,short_name:"cityscape",short_names:["cityscape"],text:null,texts:null,category:"Places",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ge":{name:"Regional Indicator Symbol Letters Ge",unified:"1F1EC-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ea.png",sheet_x:34,sheet_y:34,short_name:"flag-ge",short_names:["flag-ge"],text:null,texts:null,category:"Flags",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bamboo:{name:"Pine Decoration",unified:"1F38D",variations:[],docomo:null,au:"EAE3",softbank:"E436",google:"FE518",image:"1f38d.png",sheet_x:9,sheet_y:1,short_name:"bamboo",short_names:["bamboo"],text:null,texts:null,category:"Nature",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-de":{name:"Regional Indicator Symbol Letters De",unified:"1F1E9-1F1EA",variations:[],docomo:null,au:"EB0E",softbank:"E50E",google:"FE4E8",image:"1f1e9-1f1ea.png",sheet_x:34,sheet_y:9,short_name:"flag-de",short_names:["flag-de","de"],text:null,texts:null,category:"Flags",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},night_with_stars:{name:"Night with Stars",unified:"1F303",variations:[],docomo:"E6B3",au:"EAF1",softbank:"E44B",google:"FE008",image:"1f303.png",sheet_x:5,sheet_y:24,short_name:"night_with_stars",short_names:["night_with_stars"],text:null,texts:null,category:"Places",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kissing_cat:{name:"Kissing Cat Face with Closed Eyes",unified:"1F63D",variations:[],docomo:"E726",au:"EB60",softbank:"E418",google:"FE34B",image:"1f63d.png",sheet_x:27,sheet_y:35,short_name:"kissing_cat",short_names:["kissing_cat"],text:null,texts:null,category:"People",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tanabata_tree:{name:"Tanabata Tree",unified:"1F38B",variations:[],docomo:null,au:"EB3D",softbank:null,google:"FE521",image:"1f38b.png",sheet_x:8,sheet_y:40,short_name:"tanabata_tree",short_names:["tanabata_tree"],text:null,texts:null,category:"Nature",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},label:{name:"Label",unified:"1F3F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f7.png",sheet_x:11,sheet_y:37,short_name:"label",short_names:["label"],text:null,texts:null,category:"Objects",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},question:{name:"Black Question Mark Ornament",unified:"2753",variations:[],docomo:null,au:"E483",softbank:"E020",google:"FEB09",image:"2753.png",sheet_x:4,sheet_y:5,short_name:"question",short_names:["question"], -text:null,texts:null,category:"Symbols",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},leaves:{name:"Leaf Fluttering in Wind",unified:"1F343",variations:[],docomo:null,au:"E5CD",softbank:"E447",google:"FE043",image:"1f343.png",sheet_x:7,sheet_y:4,short_name:"leaves",short_names:["leaves"],text:null,texts:null,category:"Nature",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},grey_question:{name:"White Question Mark Ornament",unified:"2754",variations:[],docomo:null,au:"E483",softbank:"E336",google:"FEB0A",image:"2754.png",sheet_x:4,sheet_y:6,short_name:"grey_question",short_names:["grey_question"],text:null,texts:null,category:"Symbols",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scream_cat:{name:"Weary Cat Face",unified:"1F640",variations:[],docomo:"E6F3",au:"EB66",softbank:"E403",google:"FE350",image:"1f640.png",sheet_x:27,sheet_y:38,short_name:"scream_cat",short_names:["scream_cat"],text:null,texts:null,category:"People",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bookmark:{name:"Bookmark",unified:"1F516",variations:[],docomo:null,au:"EB07",softbank:null,google:"FEB8F",image:"1f516.png",sheet_x:23,sheet_y:6,short_name:"bookmark",short_names:["bookmark"],text:null,texts:null,category:"Objects",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bridge_at_night:{name:"Bridge at Night",unified:"1F309",variations:[],docomo:"E6B3",au:"E4BF",softbank:"E44B",google:"FE010",image:"1f309.png",sheet_x:5,sheet_y:30,short_name:"bridge_at_night",short_names:["bridge_at_night"],text:null,texts:null,category:"Places",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gh":{name:"Regional Indicator Symbol Letters Gh",unified:"1F1EC-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ed.png",sheet_x:34,sheet_y:37,short_name:"flag-gh",short_names:["flag-gh"],text:null,texts:null,category:"Flags",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},milky_way:{name:"Milky Way",unified:"1F30C",variations:[],docomo:"E6B3",au:"EB5F",softbank:"E44B",google:"FE03B",image:"1f30c.png",sheet_x:5,sheet_y:33,short_name:"milky_way",short_names:["milky_way"],text:null,texts:null,category:"Places",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},toilet:{name:"Toilet",unified:"1F6BD",variations:[],docomo:"E66E",au:"E4A5",softbank:"E140",google:"FE507",image:"1f6bd.png",sheet_x:31,sheet_y:11,short_name:"toilet",short_names:["toilet"],text:null,texts:null,category:"Objects",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crying_cat_face:{name:"Crying Cat Face",unified:"1F63F",variations:[],docomo:"E72E",au:"EB68",softbank:"E413",google:"FE34D",image:"1f63f.png",sheet_x:27,sheet_y:37,short_name:"crying_cat_face",short_names:["crying_cat_face"],text:null,texts:null,category:"People",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bangbang:{name:"Double Exclamation Mark",unified:"203C",variations:["203C-FE0F"],docomo:"E704",au:"EB30",softbank:null,google:"FEB06",image:"203c.png",sheet_x:0,sheet_y:2,short_name:"bangbang",short_names:["bangbang"],text:null,texts:null,category:"Symbols",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fallen_leaf:{name:"Fallen Leaf",unified:"1F342",variations:[],docomo:"E747",au:"E5CD",softbank:"E119",google:"FE042",image:"1f342.png",sheet_x:7,sheet_y:3,short_name:"fallen_leaf",short_names:["fallen_leaf"],text:null,texts:null,category:"Nature",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gi":{name:"Regional Indicator Symbol Letters Gi",unified:"1F1EC-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ee.png",sheet_x:34,sheet_y:38,short_name:"flag-gi",short_names:["flag-gi"],text:null,texts:null,category:"Flags",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pouting_cat:{name:"Pouting Cat Face",unified:"1F63E",variations:[],docomo:"E724",au:"EB5E",softbank:"E416",google:"FE34E",image:"1f63e.png",sheet_x:27,sheet_y:36,short_name:"pouting_cat",short_names:["pouting_cat"],text:null,texts:null,category:"People",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},maple_leaf:{name:"Maple Leaf",unified:"1F341",variations:[],docomo:"E747",au:"E4CE",softbank:"E118",google:"FE03F",image:"1f341.png",sheet_x:7,sheet_y:2,short_name:"maple_leaf",short_names:["maple_leaf"],text:null,texts:null,category:"Nature",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gr":{name:"Regional Indicator Symbol Letters Gr",unified:"1F1EC-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f7.png",sheet_x:35,sheet_y:3,short_name:"flag-gr",short_names:["flag-gr"],text:null,texts:null,category:"Flags",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},interrobang:{name:"Exclamation Question Mark",unified:"2049",variations:["2049-FE0F"],docomo:"E703",au:"EB2F",softbank:null,google:"FEB05",image:"2049.png",sheet_x:0,sheet_y:3,short_name:"interrobang",short_names:["interrobang"],text:null,texts:null,category:"Symbols",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},stars:{name:"Shooting Star",unified:"1F320",variations:[],docomo:null,au:"E468",softbank:null,google:"FEB6A",image:"1f320.png",sheet_x:6,sheet_y:12,short_name:"stars",short_names:["stars"],text:null,texts:null,category:"Places",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shower:{name:"Shower",unified:"1F6BF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6bf.png",sheet_x:31,sheet_y:13,short_name:"shower",short_names:["shower"],text:null,texts:null,category:"Objects",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},raised_hands:{name:"Person Raising Both Hands in Celebration",unified:"1F64C",variations:[],docomo:null,au:"EB86",softbank:"E427",google:"FE358",image:"1f64c.png",sheet_x:28,sheet_y:29,short_name:"raised_hands",short_names:["raised_hands"],text:null,texts:null,category:"People",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64C-1F3FB":{unified:"1F64C-1F3FB",image:"1f64c-1f3fb.png",sheet_x:28,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FC":{unified:"1F64C-1F3FC",image:"1f64c-1f3fc.png",sheet_x:28,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FD":{unified:"1F64C-1F3FD",image:"1f64c-1f3fd.png",sheet_x:28,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FE":{unified:"1F64C-1F3FE",image:"1f64c-1f3fe.png",sheet_x:28,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FF":{unified:"1F64C-1F3FF",image:"1f64c-1f3ff.png",sheet_x:28,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-gl":{name:"Regional Indicator Symbol Letters Gl",unified:"1F1EC-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f1.png",sheet_x:34,sheet_y:39,short_name:"flag-gl",short_names:["flag-gl"],text:null,texts:null,category:"Flags",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ear_of_rice:{name:"Ear of Rice",unified:"1F33E",variations:[],docomo:null,au:null,softbank:"E444",google:"FE049",image:"1f33e.png",sheet_x:6,sheet_y:40,short_name:"ear_of_rice",short_names:["ear_of_rice"],text:null,texts:null,category:"Nature",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sparkler:{name:"Firework Sparkler",unified:"1F387",variations:[],docomo:null,au:"EAEB",softbank:"E440",google:"FE51D",image:"1f387.png",sheet_x:8,sheet_y:36,short_name:"sparkler",short_names:["sparkler"],text:null,texts:null,category:"Places",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bathtub:{name:"Bathtub",unified:"1F6C1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c1.png",sheet_x:31,sheet_y:20,short_name:"bathtub",short_names:["bathtub"],text:null,texts:null,category:"Objects",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hibiscus:{name:"Hibiscus",unified:"1F33A",variations:[],docomo:null,au:"EA94",softbank:"E303",google:"FE045",image:"1f33a.png",sheet_x:6,sheet_y:36,short_name:"hibiscus",short_names:["hibiscus"],text:null,texts:null,category:"Nature",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gd":{name:"Regional Indicator Symbol Letters Gd",unified:"1F1EC-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1e9.png",sheet_x:34,sheet_y:33,short_name:"flag-gd",short_names:["flag-gd"],text:null,texts:null,category:"Flags",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},key:{name:"Key",unified:"1F511",variations:[],docomo:"E6D9",au:"E519",softbank:"E03F",google:"FEB82",image:"1f511.png",sheet_x:23,sheet_y:1,short_name:"key",short_names:["key"],text:null,texts:null,category:"Objects",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},low_brightness:{name:"Low Brightness Symbol",unified:"1F505",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f505.png",sheet_x:22,sheet_y:30,short_name:"low_brightness",short_names:["low_brightness"],text:null,texts:null,category:"Symbols",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fireworks:{name:"Fireworks",unified:"1F386",variations:[],docomo:null,au:"E5CC",softbank:"E117",google:"FE515",image:"1f386.png",sheet_x:8,sheet_y:35,short_name:"fireworks",short_names:["fireworks"],text:null,texts:null,category:"Places",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clap:{name:"Clapping Hands Sign",unified:"1F44F",variations:[],docomo:null,au:"EAD3",softbank:"E41F",google:"FEB9E",image:"1f44f.png",sheet_x:15,sheet_y:16,short_name:"clap",short_names:["clap"],text:null,texts:null,category:"People",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44F-1F3FB":{unified:"1F44F-1F3FB",image:"1f44f-1f3fb.png",sheet_x:15,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FC":{unified:"1F44F-1F3FC",image:"1f44f-1f3fc.png",sheet_x:15,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FD":{unified:"1F44F-1F3FD",image:"1f44f-1f3fd.png",sheet_x:15,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FE":{unified:"1F44F-1F3FE",image:"1f44f-1f3fe.png",sheet_x:15,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FF":{unified:"1F44F-1F3FF",image:"1f44f-1f3ff.png",sheet_x:15,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-gp":{name:"Regional Indicator Symbol Letters Gp",unified:"1F1EC-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f5.png",sheet_x:35,sheet_y:1,short_name:"flag-gp",short_names:["flag-gp"],text:null,texts:null,category:"Flags",sort_order:90,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},old_key:{name:"Old Key",unified:"1F5DD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5dd.png",sheet_x:26,sheet_y:2,short_name:"old_key",short_names:["old_key"],text:null,texts:null,category:"Objects",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},high_brightness:{name:"High Brightness Symbol",unified:"1F506",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f506.png",sheet_x:22,sheet_y:31,short_name:"high_brightness",short_names:["high_brightness"],text:null,texts:null,category:"Symbols",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rainbow:{name:"Rainbow",unified:"1F308",variations:[],docomo:null,au:"EAF2",softbank:"E44C",google:"FE00D",image:"1f308.png",sheet_x:5,sheet_y:29,short_name:"rainbow",short_names:["rainbow"],text:null,texts:null,category:"Places",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wave:{name:"Waving Hand Sign",unified:"1F44B",variations:[],docomo:"E695",au:"EAD6",softbank:"E41E",google:"FEB9D",image:"1f44b.png",sheet_x:14,sheet_y:33,short_name:"wave",short_names:["wave"],text:null,texts:null,category:"People",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44B-1F3FB":{unified:"1F44B-1F3FB",image:"1f44b-1f3fb.png",sheet_x:14,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FC":{unified:"1F44B-1F3FC",image:"1f44b-1f3fc.png",sheet_x:14,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FD":{unified:"1F44B-1F3FD",image:"1f44b-1f3fd.png",sheet_x:14,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FE":{unified:"1F44B-1F3FE",image:"1f44b-1f3fe.png",sheet_x:14,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FF":{unified:"1F44B-1F3FF",image:"1f44b-1f3ff.png",sheet_x:14,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},sunflower:{name:"Sunflower",unified:"1F33B",variations:[],docomo:null,au:"E4E3",softbank:"E305",google:"FE046",image:"1f33b.png",sheet_x:6,sheet_y:37,short_name:"sunflower",short_names:["sunflower"],text:null,texts:null,category:"Nature",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"+1":{name:"Thumbs Up Sign",unified:"1F44D",variations:[],docomo:"E727",au:"E4F9",softbank:"E00E",google:"FEB97",image:"1f44d.png",sheet_x:15,sheet_y:4,short_name:"+1",short_names:["+1","thumbsup"],text:null,texts:null,category:"People",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44D-1F3FB":{unified:"1F44D-1F3FB",image:"1f44d-1f3fb.png",sheet_x:15,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FC":{unified:"1F44D-1F3FC",image:"1f44d-1f3fc.png",sheet_x:15,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FD":{unified:"1F44D-1F3FD",image:"1f44d-1f3fd.png",sheet_x:15,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FE":{unified:"1F44D-1F3FE",image:"1f44d-1f3fe.png",sheet_x:15,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FF":{unified:"1F44D-1F3FF",image:"1f44d-1f3ff.png",sheet_x:15,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},couch_and_lamp:{name:"Couch and Lamp",unified:"1F6CB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cb.png",sheet_x:31,sheet_y:25,short_name:"couch_and_lamp",short_names:["couch_and_lamp"],text:null,texts:null,category:"Objects",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},house_buildings:{name:"House Buildings",unified:"1F3D8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d8.png",sheet_x:11,sheet_y:9,short_name:"house_buildings",short_names:["house_buildings"],text:null,texts:null,category:"Places",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rose:{name:"Rose",unified:"1F339",variations:[],docomo:null,au:"E5BA",softbank:"E032",google:"FE041",image:"1f339.png",sheet_x:6,sheet_y:35,short_name:"rose",short_names:["rose"],text:null,texts:null,category:"Nature",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},trident:{name:"Trident Emblem",unified:"1F531",variations:[],docomo:"E71A",au:"E5C9",softbank:"E031",google:"FE4D2",image:"1f531.png",sheet_x:23,sheet_y:33,short_name:"trident",short_names:["trident"],text:null,texts:null,category:"Symbols",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gu":{name:"Regional Indicator Symbol Letters Gu",unified:"1F1EC-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fa.png",sheet_x:35,sheet_y:6,short_name:"flag-gu",short_names:["flag-gu"],text:null,texts:null,category:"Flags",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},european_castle:{name:"European Castle",unified:"1F3F0",variations:[],docomo:null,au:"EAF8",softbank:"E506",google:"FE4BF",image:"1f3f0.png",sheet_x:11,sheet_y:33,short_name:"european_castle",short_names:["european_castle"],text:null,texts:null,category:"Places",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"-1":{name:"Thumbs Down Sign",unified:"1F44E",variations:[],docomo:"E700",au:"EAD5",softbank:"E421",google:"FEBA0",image:"1f44e.png",sheet_x:15,sheet_y:10,short_name:"-1",short_names:["-1","thumbsdown"],text:null,texts:null,category:"People",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44E-1F3FB":{unified:"1F44E-1F3FB",image:"1f44e-1f3fb.png",sheet_x:15,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FC":{unified:"1F44E-1F3FC",image:"1f44e-1f3fc.png",sheet_x:15,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FD":{unified:"1F44E-1F3FD",image:"1f44e-1f3fd.png",sheet_x:15,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FE":{unified:"1F44E-1F3FE",image:"1f44e-1f3fe.png",sheet_x:15,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FF":{unified:"1F44E-1F3FF",image:"1f44e-1f3ff.png",sheet_x:15,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},fleur_de_lis:{name:"Fleur-De-Lis",unified:"269C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"269c.png",sheet_x:2,sheet_y:11,short_name:"fleur_de_lis",short_names:["fleur_de_lis"],text:null,texts:null,category:"Symbols",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tulip:{name:"Tulip",unified:"1F337",variations:[],docomo:"E743",au:"E4E4",softbank:"E304",google:"FE03D",image:"1f337.png",sheet_x:6,sheet_y:33,short_name:"tulip",short_names:["tulip"],text:null,texts:null,category:"Nature",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sleeping_accommodation:{name:"Sleeping Accommodation",unified:"1F6CC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cc.png",sheet_x:31,sheet_y:26,short_name:"sleeping_accommodation",short_names:["sleeping_accommodation"],text:null,texts:null,category:"Objects",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gt":{name:"Regional Indicator Symbol Letters Gt",unified:"1F1EC-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f9.png",sheet_x:35,sheet_y:5,short_name:"flag-gt",short_names:["flag-gt"],text:null,texts:null,category:"Flags",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},part_alternation_mark:{name:"Part Alternation Mark",unified:"303D",variations:["303D-FE0F"],docomo:null,au:null,softbank:"E12C",google:"FE81B",image:"303d.png",sheet_x:4,sheet_y:27,short_name:"part_alternation_mark",short_names:["part_alternation_mark"],text:null,texts:null,category:"Symbols",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},blossom:{name:"Blossom",unified:"1F33C",variations:[],docomo:null,au:"EB49",softbank:"E305",google:"FE04D",image:"1f33c.png",sheet_x:6,sheet_y:38,short_name:"blossom",short_names:["blossom"],text:null,texts:null,category:"Nature",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bed:{name:"Bed",unified:"1F6CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cf.png",sheet_x:31,sheet_y:29,short_name:"bed",short_names:["bed"],text:null,texts:null,category:"Objects",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gg":{name:"Regional Indicator Symbol Letters Gg",unified:"1F1EC-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ec.png",sheet_x:34,sheet_y:36,short_name:"flag-gg",short_names:["flag-gg"],text:null,texts:null,category:"Flags",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},japanese_castle:{name:"Japanese Castle",unified:"1F3EF",variations:[],docomo:null,au:"EAF7",softbank:"E505",google:"FE4BE",image:"1f3ef.png",sheet_x:11,sheet_y:32,short_name:"japanese_castle",short_names:["japanese_castle"],text:null,texts:null,category:"Places",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},facepunch:{name:"Fisted Hand Sign",unified:"1F44A",variations:[],docomo:"E6FD",au:"E4F3",softbank:"E00D",google:"FEB96",image:"1f44a.png",sheet_x:14,sheet_y:27,short_name:"facepunch",short_names:["facepunch","punch"],text:null,texts:null,category:"People",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44A-1F3FB":{unified:"1F44A-1F3FB",image:"1f44a-1f3fb.png",sheet_x:14,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FC":{unified:"1F44A-1F3FC",image:"1f44a-1f3fc.png",sheet_x:14,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FD":{unified:"1F44A-1F3FD",image:"1f44a-1f3fd.png",sheet_x:14,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FE":{unified:"1F44A-1F3FE",image:"1f44a-1f3fe.png",sheet_x:14,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FF":{unified:"1F44A-1F3FF",image:"1f44a-1f3ff.png",sheet_x:14,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},stadium:{name:"Stadium",unified:"1F3DF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3df.png",sheet_x:11,sheet_y:16,short_name:"stadium",short_names:["stadium"],text:null,texts:null,category:"Places",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gn":{name:"Regional Indicator Symbol Letters Gn",unified:"1F1EC-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f3.png",sheet_x:35,sheet_y:0,short_name:"flag-gn",short_names:["flag-gn"],text:null,texts:null,category:"Flags",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},warning:{name:"Warning Sign",unified:"26A0",variations:["26A0-FE0F"],docomo:"E737",au:"E481",softbank:"E252",google:"FEB23",image:"26a0.png",sheet_x:2,sheet_y:12,short_name:"warning",short_names:["warning"],text:null,texts:null,category:"Symbols",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},door:{name:"Door",unified:"1F6AA",variations:[],docomo:"E714",au:null,softbank:null,google:"FE4F3",image:"1f6aa.png",sheet_x:30,sheet_y:18,short_name:"door",short_names:["door"],text:null,texts:null,category:"Objects",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cherry_blossom:{name:"Cherry Blossom",unified:"1F338",variations:[],docomo:"E748",au:"E4CA",softbank:"E030",google:"FE040",image:"1f338.png",sheet_x:6,sheet_y:34,short_name:"cherry_blossom",short_names:["cherry_blossom"],text:null,texts:null,category:"Nature",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fist:{name:"Raised Fist",unified:"270A",variations:[],docomo:"E693",au:"EB83",softbank:"E010",google:"FEB93",image:"270a.png",sheet_x:3,sheet_y:9,short_name:"fist",short_names:["fist"],text:null,texts:null,category:"People",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270A-1F3FB":{unified:"270A-1F3FB",image:"270a-1f3fb.png",sheet_x:3,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FC":{unified:"270A-1F3FC",image:"270a-1f3fc.png",sheet_x:3,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FD":{unified:"270A-1F3FD",image:"270a-1f3fd.png",sheet_x:3,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FE":{unified:"270A-1F3FE",image:"270a-1f3fe.png",sheet_x:3,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FF":{unified:"270A-1F3FF",image:"270a-1f3ff.png",sheet_x:3,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},statue_of_liberty:{name:"Statue of Liberty",unified:"1F5FD",variations:[],docomo:null,au:null,softbank:"E51D",google:"FE4C6",image:"1f5fd.png",sheet_x:26,sheet_y:12,short_name:"statue_of_liberty",short_names:["statue_of_liberty"],text:null,texts:null,category:"Places",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},v:{name:"Victory Hand",unified:"270C",variations:["270C-FE0F"],docomo:"E694",au:"E5A6",softbank:"E011",google:"FEB94",image:"270c.png",sheet_x:3,sheet_y:21,short_name:"v",short_names:["v"],text:null,texts:null,category:"People",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270C-1F3FB":{unified:"270C-1F3FB",image:"270c-1f3fb.png",sheet_x:3,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FC":{unified:"270C-1F3FC",image:"270c-1f3fc.png",sheet_x:3,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FD":{unified:"270C-1F3FD",image:"270c-1f3fd.png",sheet_x:3,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FE":{unified:"270C-1F3FE",image:"270c-1f3fe.png",sheet_x:3,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FF":{unified:"270C-1F3FF",image:"270c-1f3ff.png",sheet_x:3,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},children_crossing:{name:"Children Crossing",unified:"1F6B8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b8.png",sheet_x:31,sheet_y:6,short_name:"children_crossing",short_names:["children_crossing"],text:null,texts:null,category:"Symbols",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bouquet:{name:"Bouquet",unified:"1F490",variations:[],docomo:null,au:"EA95",softbank:"E306",google:"FE828",image:"1f490.png",sheet_x:19,sheet_y:32,short_name:"bouquet",short_names:["bouquet"],text:null,texts:null,category:"Nature",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bellhop_bell:{name:"Bellhop Bell",unified:"1F6CE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ce.png",sheet_x:31,sheet_y:28,short_name:"bellhop_bell",short_names:["bellhop_bell"],text:null,texts:null,category:"Objects",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gw":{name:"Regional Indicator Symbol Letters Gw",unified:"1F1EC-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fc.png",sheet_x:35,sheet_y:7,short_name:"flag-gw",short_names:["flag-gw"],text:null,texts:null,category:"Flags",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},beginner:{name:"Japanese Symbol for Beginner",unified:"1F530",variations:[],docomo:null,au:"E480",softbank:"E209",google:"FE044",image:"1f530.png",sheet_x:23,sheet_y:32,short_name:"beginner",short_names:["beginner"],text:null,texts:null,category:"Symbols",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},house:{name:"House Building",unified:"1F3E0",variations:[],docomo:"E663",au:"E4AB",softbank:"E036",google:"FE4B0",image:"1f3e0.png",sheet_x:11,sheet_y:17,short_name:"house",short_names:["house"],text:null,texts:null,category:"Places",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mushroom:{name:"Mushroom",unified:"1F344",variations:[],docomo:null,au:"EB37",softbank:null,google:"FE04B",image:"1f344.png",sheet_x:7,sheet_y:5,short_name:"mushroom",short_names:["mushroom"],text:null,texts:null,category:"Nature",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},frame_with_picture:{name:"Frame with Picture",unified:"1F5BC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5bc.png",sheet_x:25,sheet_y:35,short_name:"frame_with_picture",short_names:["frame_with_picture"],text:null,texts:null,category:"Objects",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ok_hand:{name:"Ok Hand Sign",unified:"1F44C",variations:[],docomo:"E70B",au:"EAD4",softbank:"E420",google:"FEB9F",image:"1f44c.png",sheet_x:14,sheet_y:39,short_name:"ok_hand",short_names:["ok_hand"],text:null,texts:null,category:"People",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44C-1F3FB":{unified:"1F44C-1F3FB",image:"1f44c-1f3fb.png",sheet_x:14,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FC":{unified:"1F44C-1F3FC",image:"1f44c-1f3fc.png",sheet_x:15,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FD":{unified:"1F44C-1F3FD",image:"1f44c-1f3fd.png",sheet_x:15,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FE":{unified:"1F44C-1F3FE",image:"1f44c-1f3fe.png",sheet_x:15,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FF":{unified:"1F44C-1F3FF",image:"1f44c-1f3ff.png",sheet_x:15,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-gy":{name:"Regional Indicator Symbol Letters Gy",unified:"1F1EC-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fe.png",sheet_x:35,sheet_y:8,short_name:"flag-gy",short_names:["flag-gy"],text:null,texts:null,category:"Flags",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ht":{name:"Regional Indicator Symbol Letters Ht",unified:"1F1ED-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f9.png",sheet_x:35,sheet_y:13,short_name:"flag-ht",short_names:["flag-ht"],text:null,texts:null,category:"Flags",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},house_with_garden:{name:"House with Garden",unified:"1F3E1",variations:[],docomo:"E663",au:"EB09",softbank:"E036",google:"FE4B1",image:"1f3e1.png",sheet_x:11,sheet_y:18,short_name:"house_with_garden",short_names:["house_with_garden"],text:null,texts:null,category:"Places",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},world_map:{ -name:"World Map",unified:"1F5FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5fa.png",sheet_x:26,sheet_y:9,short_name:"world_map",short_names:["world_map"],text:null,texts:null,category:"Objects",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chestnut:{name:"Chestnut",unified:"1F330",variations:[],docomo:null,au:"EB38",softbank:null,google:"FE04C",image:"1f330.png",sheet_x:6,sheet_y:26,short_name:"chestnut",short_names:["chestnut"],text:null,texts:null,category:"Nature",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hand:{name:"Raised Hand",unified:"270B",variations:[],docomo:"E695",au:"E5A7",softbank:"E012",google:"FEB95",image:"270b.png",sheet_x:3,sheet_y:15,short_name:"hand",short_names:["hand","raised_hand"],text:null,texts:null,category:"People",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270B-1F3FB":{unified:"270B-1F3FB",image:"270b-1f3fb.png",sheet_x:3,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FC":{unified:"270B-1F3FC",image:"270b-1f3fc.png",sheet_x:3,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FD":{unified:"270B-1F3FD",image:"270b-1f3fd.png",sheet_x:3,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FE":{unified:"270B-1F3FE",image:"270b-1f3fe.png",sheet_x:3,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FF":{unified:"270B-1F3FF",image:"270b-1f3ff.png",sheet_x:3,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},recycle:{name:"Black Universal Recycling Symbol",unified:"267B",variations:["267B-FE0F"],docomo:"E735",au:"EB79",softbank:null,google:"FEB2C",image:"267b.png",sheet_x:2,sheet_y:2,short_name:"recycle",short_names:["recycle"],text:null,texts:null,category:"Symbols",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},umbrella_on_ground:{name:"Umbrella on Ground",unified:"26F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f1.png",sheet_x:2,sheet_y:31,short_name:"umbrella_on_ground",short_names:["umbrella_on_ground"],text:null,texts:null,category:"Objects",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},jack_o_lantern:{name:"Jack-O-Lantern",unified:"1F383",variations:[],docomo:null,au:"EAEE",softbank:"E445",google:"FE51F",image:"1f383.png",sheet_x:8,sheet_y:27,short_name:"jack_o_lantern",short_names:["jack_o_lantern"],text:null,texts:null,category:"Nature",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},open_hands:{name:"Open Hands Sign",unified:"1F450",variations:[],docomo:"E695",au:"EAD6",softbank:"E422",google:"FEBA1",image:"1f450.png",sheet_x:15,sheet_y:22,short_name:"open_hands",short_names:["open_hands"],text:null,texts:null,category:"People",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F450-1F3FB":{unified:"1F450-1F3FB",image:"1f450-1f3fb.png",sheet_x:15,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FC":{unified:"1F450-1F3FC",image:"1f450-1f3fc.png",sheet_x:15,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FD":{unified:"1F450-1F3FD",image:"1f450-1f3fd.png",sheet_x:15,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FE":{unified:"1F450-1F3FE",image:"1f450-1f3fe.png",sheet_x:15,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FF":{unified:"1F450-1F3FF",image:"1f450-1f3ff.png",sheet_x:15,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},derelict_house_building:{name:"Derelict House Building",unified:"1F3DA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3da.png",sheet_x:11,sheet_y:11,short_name:"derelict_house_building",short_names:["derelict_house_building"],text:null,texts:null,category:"Places",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},u6307:{name:"Squared Cjk Unified Ideograph-6307",unified:"1F22F",variations:["1F22F-FE0F"],docomo:null,au:"EA8B",softbank:"E22C",google:"FEB40",image:"1f22f.png",sheet_x:5,sheet_y:9,short_name:"u6307",short_names:["u6307"],text:null,texts:null,category:"Symbols",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-hn":{name:"Regional Indicator Symbol Letters Hn",unified:"1F1ED-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f3.png",sheet_x:35,sheet_y:11,short_name:"flag-hn",short_names:["flag-hn"],text:null,texts:null,category:"Flags",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shell:{name:"Spiral Shell",unified:"1F41A",variations:[],docomo:null,au:"EAEC",softbank:"E441",google:"FE1C6",image:"1f41a.png",sheet_x:12,sheet_y:31,short_name:"shell",short_names:["shell"],text:null,texts:null,category:"Nature",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-hk":{name:"Regional Indicator Symbol Letters Hk",unified:"1F1ED-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f0.png",sheet_x:35,sheet_y:9,short_name:"flag-hk",short_names:["flag-hk"],text:null,texts:null,category:"Flags",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},moyai:{name:"Moyai",unified:"1F5FF",variations:[],docomo:null,au:"EB6C",softbank:null,google:"FE4C8",image:"1f5ff.png",sheet_x:26,sheet_y:14,short_name:"moyai",short_names:["moyai"],text:null,texts:null,category:"Objects",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},muscle:{name:"Flexed Biceps",unified:"1F4AA",variations:[],docomo:null,au:"E4E9",softbank:"E14C",google:"FEB5E",image:"1f4aa.png",sheet_x:20,sheet_y:17,short_name:"muscle",short_names:["muscle"],text:null,texts:null,category:"People",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F4AA-1F3FB":{unified:"1F4AA-1F3FB",image:"1f4aa-1f3fb.png",sheet_x:20,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FC":{unified:"1F4AA-1F3FC",image:"1f4aa-1f3fc.png",sheet_x:20,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FD":{unified:"1F4AA-1F3FD",image:"1f4aa-1f3fd.png",sheet_x:20,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FE":{unified:"1F4AA-1F3FE",image:"1f4aa-1f3fe.png",sheet_x:20,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FF":{unified:"1F4AA-1F3FF",image:"1f4aa-1f3ff.png",sheet_x:20,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},chart:{name:"Chart with Upwards Trend and Yen Sign",unified:"1F4B9",variations:[],docomo:null,au:"E5DC",softbank:"E14A",google:"FE4DF",image:"1f4b9.png",sheet_x:20,sheet_y:37,short_name:"chart",short_names:["chart"],text:null,texts:null,category:"Symbols",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},office:{name:"Office Building",unified:"1F3E2",variations:[],docomo:"E664",au:"E4AD",softbank:"E038",google:"FE4B2",image:"1f3e2.png",sheet_x:11,sheet_y:19,short_name:"office",short_names:["office"],text:null,texts:null,category:"Places",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shopping_bags:{name:"Shopping Bags",unified:"1F6CD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cd.png",sheet_x:31,sheet_y:27,short_name:"shopping_bags",short_names:["shopping_bags"],text:null,texts:null,category:"Objects",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},department_store:{name:"Department Store",unified:"1F3EC",variations:[],docomo:null,au:"EAF6",softbank:"E504",google:"FE4BD",image:"1f3ec.png",sheet_x:11,sheet_y:29,short_name:"department_store",short_names:["department_store"],text:null,texts:null,category:"Places",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pray:{name:"Person with Folded Hands",unified:"1F64F",variations:[],docomo:null,au:"EAD2",softbank:"E41D",google:"FE35B",image:"1f64f.png",sheet_x:29,sheet_y:6,short_name:"pray",short_names:["pray"],text:null,texts:null,category:"People",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64F-1F3FB":{unified:"1F64F-1F3FB",image:"1f64f-1f3fb.png",sheet_x:29,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FC":{unified:"1F64F-1F3FC",image:"1f64f-1f3fc.png",sheet_x:29,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FD":{unified:"1F64F-1F3FD",image:"1f64f-1f3fd.png",sheet_x:29,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FE":{unified:"1F64F-1F3FE",image:"1f64f-1f3fe.png",sheet_x:29,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FF":{unified:"1F64F-1F3FF",image:"1f64f-1f3ff.png",sheet_x:29,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-hu":{name:"Regional Indicator Symbol Letters Hu",unified:"1F1ED-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1fa.png",sheet_x:35,sheet_y:14,short_name:"flag-hu",short_names:["flag-hu"],text:null,texts:null,category:"Flags",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sparkle:{name:"Sparkle",unified:"2747",variations:["2747-FE0F"],docomo:"E6FA",au:"E46C",softbank:"E32E",google:"FEB77",image:"2747.png",sheet_x:4,sheet_y:2,short_name:"sparkle",short_names:["sparkle"],text:null,texts:null,category:"Symbols",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},spider_web:{name:"Spider Web",unified:"1F578",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f578.png",sheet_x:25,sheet_y:6,short_name:"spider_web",short_names:["spider_web"],text:null,texts:null,category:"Nature",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},point_up:{name:"White Up Pointing Index",unified:"261D",variations:["261D-FE0F"],docomo:null,au:"E4F6",softbank:"E00F",google:"FEB98",image:"261d.png",sheet_x:1,sheet_y:10,short_name:"point_up",short_names:["point_up"],text:null,texts:null,category:"People",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"261D-1F3FB":{unified:"261D-1F3FB",image:"261d-1f3fb.png",sheet_x:1,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FC":{unified:"261D-1F3FC",image:"261d-1f3fc.png",sheet_x:1,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FD":{unified:"261D-1F3FD",image:"261d-1f3fd.png",sheet_x:1,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FE":{unified:"261D-1F3FE",image:"261d-1f3fe.png",sheet_x:1,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FF":{unified:"261D-1F3FF",image:"261d-1f3ff.png",sheet_x:1,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},eight_spoked_asterisk:{name:"Eight Spoked Asterisk",unified:"2733",variations:["2733-FE0F"],docomo:"E6F8",au:"E53E",softbank:"E206",google:"FEB62",image:"2733.png",sheet_x:3,sheet_y:40,short_name:"eight_spoked_asterisk",short_names:["eight_spoked_asterisk"],text:null,texts:null,category:"Symbols",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-is":{name:"Regional Indicator Symbol Letters Is",unified:"1F1EE-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f8.png",sheet_x:35,sheet_y:24,short_name:"flag-is",short_names:["flag-is"],text:null,texts:null,category:"Flags",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},post_office:{name:"Japanese Post Office",unified:"1F3E3",variations:[],docomo:"E665",au:"E5DE",softbank:"E153",google:"FE4B3",image:"1f3e3.png",sheet_x:11,sheet_y:20,short_name:"post_office",short_names:["post_office"],text:null,texts:null,category:"Places",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},earth_americas:{name:"Earth Globe Americas",unified:"1F30E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f30e.png",sheet_x:5,sheet_y:35,short_name:"earth_americas",short_names:["earth_americas"],text:null,texts:null,category:"Nature",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},balloon:{name:"Balloon",unified:"1F388",variations:[],docomo:null,au:"EA9B",softbank:"E310",google:"FE516",image:"1f388.png",sheet_x:8,sheet_y:37,short_name:"balloon",short_names:["balloon"],text:null,texts:null,category:"Objects",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},european_post_office:{name:"European Post Office",unified:"1F3E4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3e4.png",sheet_x:11,sheet_y:21,short_name:"european_post_office",short_names:["european_post_office"],text:null,texts:null,category:"Places",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},point_up_2:{name:"White Up Pointing Backhand Index",unified:"1F446",variations:[],docomo:null,au:"EA8D",softbank:"E22E",google:"FEB99",image:"1f446.png",sheet_x:14,sheet_y:3,short_name:"point_up_2",short_names:["point_up_2"],text:null,texts:null,category:"People",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F446-1F3FB":{unified:"1F446-1F3FB",image:"1f446-1f3fb.png",sheet_x:14,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FC":{unified:"1F446-1F3FC",image:"1f446-1f3fc.png",sheet_x:14,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FD":{unified:"1F446-1F3FD",image:"1f446-1f3fd.png",sheet_x:14,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FE":{unified:"1F446-1F3FE",image:"1f446-1f3fe.png",sheet_x:14,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FF":{unified:"1F446-1F3FF",image:"1f446-1f3ff.png",sheet_x:14,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},earth_africa:{name:"Earth Globe Europe-Africa",unified:"1F30D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f30d.png",sheet_x:5,sheet_y:34,short_name:"earth_africa",short_names:["earth_africa"],text:null,texts:null,category:"Nature",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},negative_squared_cross_mark:{name:"Negative Squared Cross Mark",unified:"274E",variations:[],docomo:null,au:"E551",softbank:"E333",google:"FEB46",image:"274e.png",sheet_x:4,sheet_y:4,short_name:"negative_squared_cross_mark",short_names:["negative_squared_cross_mark"],text:null,texts:null,category:"Symbols",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},flags:{name:"Carp Streamer",unified:"1F38F",variations:[],docomo:null,au:"EAE7",softbank:"E43B",google:"FE51C",image:"1f38f.png",sheet_x:9,sheet_y:3,short_name:"flags",short_names:["flags"],text:null,texts:null,category:"Objects",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-in":{name:"Regional Indicator Symbol Letters in",unified:"1F1EE-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f3.png",sheet_x:35,sheet_y:20,short_name:"flag-in",short_names:["flag-in"],text:null,texts:null,category:"Flags",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hospital:{name:"Hospital",unified:"1F3E5",variations:[],docomo:"E666",au:"E5DF",softbank:"E155",google:"FE4B4",image:"1f3e5.png",sheet_x:11,sheet_y:22,short_name:"hospital",short_names:["hospital"],text:null,texts:null,category:"Places",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},point_down:{name:"White Down Pointing Backhand Index",unified:"1F447",variations:[],docomo:null,au:"EA8E",softbank:"E22F",google:"FEB9A",image:"1f447.png",sheet_x:14,sheet_y:9,short_name:"point_down",short_names:["point_down"],text:null,texts:null,category:"People",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F447-1F3FB":{unified:"1F447-1F3FB",image:"1f447-1f3fb.png",sheet_x:14,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FC":{unified:"1F447-1F3FC",image:"1f447-1f3fc.png",sheet_x:14,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FD":{unified:"1F447-1F3FD",image:"1f447-1f3fd.png",sheet_x:14,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FE":{unified:"1F447-1F3FE",image:"1f447-1f3fe.png",sheet_x:14,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FF":{unified:"1F447-1F3FF",image:"1f447-1f3ff.png",sheet_x:14,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},white_check_mark:{name:"White Heavy Check Mark",unified:"2705",variations:[],docomo:null,au:"E55E",softbank:null,google:"FEB4A",image:"2705.png",sheet_x:3,sheet_y:6,short_name:"white_check_mark",short_names:["white_check_mark"],text:null,texts:null,category:"Symbols",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ribbon:{name:"Ribbon",unified:"1F380",variations:[],docomo:"E684",au:"E59F",softbank:"E314",google:"FE50F",image:"1f380.png",sheet_x:8,sheet_y:24,short_name:"ribbon",short_names:["ribbon"],text:null,texts:null,category:"Objects",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},earth_asia:{name:"Earth Globe Asia-Australia",unified:"1F30F",variations:[],docomo:null,au:"E5B3",softbank:null,google:"FE039",image:"1f30f.png",sheet_x:5,sheet_y:36,short_name:"earth_asia",short_names:["earth_asia"],text:null,texts:null,category:"Nature",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-id":{name:"Regional Indicator Symbol Letters Id",unified:"1F1EE-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1e9.png",sheet_x:35,sheet_y:16,short_name:"flag-id",short_names:["flag-id"],text:null,texts:null,category:"Flags",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},full_moon:{name:"Full Moon Symbol",unified:"1F315",variations:[],docomo:"E6A0",au:null,softbank:null,google:"FE015",image:"1f315.png",sheet_x:6,sheet_y:1,short_name:"full_moon",short_names:["full_moon"],text:null,texts:null,category:"Nature",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},point_left:{name:"White Left Pointing Backhand Index",unified:"1F448",variations:[],docomo:null,au:"E4FF",softbank:"E230",google:"FEB9B",image:"1f448.png",sheet_x:14,sheet_y:15,short_name:"point_left",short_names:["point_left"],text:null,texts:null,category:"People",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F448-1F3FB":{unified:"1F448-1F3FB",image:"1f448-1f3fb.png",sheet_x:14,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FC":{unified:"1F448-1F3FC",image:"1f448-1f3fc.png",sheet_x:14,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FD":{unified:"1F448-1F3FD",image:"1f448-1f3fd.png",sheet_x:14,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FE":{unified:"1F448-1F3FE",image:"1f448-1f3fe.png",sheet_x:14,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FF":{unified:"1F448-1F3FF",image:"1f448-1f3ff.png",sheet_x:14,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-ir":{name:"Regional Indicator Symbol Letters Ir",unified:"1F1EE-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f7.png",sheet_x:35,sheet_y:23,short_name:"flag-ir",short_names:["flag-ir"],text:null,texts:null,category:"Flags",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},gift:{name:"Wrapped Present",unified:"1F381",variations:[],docomo:"E685",au:"E4CF",softbank:"E112",google:"FE510",image:"1f381.png",sheet_x:8,sheet_y:25,short_name:"gift",short_names:["gift"],text:null,texts:null,category:"Objects",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bank:{name:"Bank",unified:"1F3E6",variations:[],docomo:"E667",au:"E4AA",softbank:"E14D",google:"FE4B5",image:"1f3e6.png",sheet_x:11,sheet_y:23,short_name:"bank",short_names:["bank"],text:null,texts:null,category:"Places",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},diamond_shape_with_a_dot_inside:{name:"Diamond Shape with a Dot Inside",unified:"1F4A0",variations:[],docomo:"E6F8",au:null,softbank:null,google:"FEB55",image:"1f4a0.png",sheet_x:20,sheet_y:7,short_name:"diamond_shape_with_a_dot_inside",short_names:["diamond_shape_with_a_dot_inside"],text:null,texts:null,category:"Symbols",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-iq":{name:"Regional Indicator Symbol Letters Iq",unified:"1F1EE-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f6.png",sheet_x:35,sheet_y:22,short_name:"flag-iq",short_names:["flag-iq"],text:null,texts:null,category:"Flags",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},confetti_ball:{name:"Confetti Ball",unified:"1F38A",variations:[],docomo:null,au:"E46F",softbank:null,google:"FE520",image:"1f38a.png",sheet_x:8,sheet_y:39,short_name:"confetti_ball",short_names:["confetti_ball"],text:null,texts:null,category:"Objects",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},point_right:{name:"White Right Pointing Backhand Index",unified:"1F449",variations:[],docomo:null,au:"E500",softbank:"E231",google:"FEB9C",image:"1f449.png",sheet_x:14,sheet_y:21,short_name:"point_right",short_names:["point_right"],text:null,texts:null,category:"People",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F449-1F3FB":{unified:"1F449-1F3FB",image:"1f449-1f3fb.png",sheet_x:14,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FC":{unified:"1F449-1F3FC",image:"1f449-1f3fc.png",sheet_x:14,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FD":{unified:"1F449-1F3FD",image:"1f449-1f3fd.png",sheet_x:14,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FE":{unified:"1F449-1F3FE",image:"1f449-1f3fe.png",sheet_x:14,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FF":{unified:"1F449-1F3FF",image:"1f449-1f3ff.png",sheet_x:14,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},cyclone:{name:"Cyclone",unified:"1F300",variations:[],docomo:"E643",au:"E469",softbank:"E443",google:"FE005",image:"1f300.png",sheet_x:5,sheet_y:21,short_name:"cyclone",short_names:["cyclone"],text:null,texts:null,category:"Symbols",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},waning_gibbous_moon:{name:"Waning Gibbous Moon Symbol",unified:"1F316",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f316.png",sheet_x:6,sheet_y:2,short_name:"waning_gibbous_moon",short_names:["waning_gibbous_moon"],text:null,texts:null,category:"Nature",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hotel:{name:"Hotel",unified:"1F3E8",variations:[],docomo:"E669",au:"EA81",softbank:"E158",google:"FE4B7",image:"1f3e8.png",sheet_x:11,sheet_y:25,short_name:"hotel",short_names:["hotel"],text:null,texts:null,category:"Places",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},loop:{name:"Double Curly Loop",unified:"27BF",variations:[],docomo:"E6DF",au:null,softbank:"E211",google:"FE82B",image:"27bf.png",sheet_x:4,sheet_y:16,short_name:"loop",short_names:["loop"],text:null,texts:null,category:"Symbols",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},convenience_store:{name:"Convenience Store",unified:"1F3EA",variations:[],docomo:"E66A",au:"E4A4",softbank:"E156",google:"FE4B9",image:"1f3ea.png",sheet_x:11,sheet_y:27,short_name:"convenience_store",short_names:["convenience_store"],text:null,texts:null,category:"Places",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},last_quarter_moon:{name:"Last Quarter Moon Symbol",unified:"1F317",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f317.png",sheet_x:6,sheet_y:3,short_name:"last_quarter_moon",short_names:["last_quarter_moon"],text:null,texts:null,category:"Nature",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tada:{name:"Party Popper",unified:"1F389",variations:[],docomo:null,au:"EA9C",softbank:"E312",google:"FE517",image:"1f389.png",sheet_x:8,sheet_y:38,short_name:"tada",short_names:["tada"],text:null,texts:null,category:"Objects",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},middle_finger:{name:"Reversed Hand with Middle Finger Extended",unified:"1F595",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f595.png",sheet_x:25,sheet_y:19,short_name:"middle_finger",short_names:["middle_finger","reversed_hand_with_middle_finger_extended"],text:null,texts:null,category:"People",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F595-1F3FB":{unified:"1F595-1F3FB",image:"1f595-1f3fb.png",sheet_x:25,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FC":{unified:"1F595-1F3FC",image:"1f595-1f3fc.png",sheet_x:25,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FD":{unified:"1F595-1F3FD",image:"1f595-1f3fd.png",sheet_x:25,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FE":{unified:"1F595-1F3FE",image:"1f595-1f3fe.png",sheet_x:25,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FF":{unified:"1F595-1F3FF",image:"1f595-1f3ff.png",sheet_x:25,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-ie":{name:"Regional Indicator Symbol Letters Ie",unified:"1F1EE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1ea.png",sheet_x:35,sheet_y:17,short_name:"flag-ie",short_names:["flag-ie"],text:null,texts:null,category:"Flags",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dolls:{name:"Japanese Dolls",unified:"1F38E",variations:[],docomo:null,au:"EAE4",softbank:"E438",google:"FE519",image:"1f38e.png",sheet_x:9,sheet_y:2,short_name:"dolls",short_names:["dolls"],text:null,texts:null,category:"Objects",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},globe_with_meridians:{name:"Globe with Meridians",unified:"1F310",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f310.png",sheet_x:5,sheet_y:37,short_name:"globe_with_meridians",short_names:["globe_with_meridians"],text:null,texts:null,category:"Symbols",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-im":{name:"Regional Indicator Symbol Letters Im",unified:"1F1EE-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f2.png",sheet_x:35,sheet_y:19,short_name:"flag-im",short_names:["flag-im"],text:null,texts:null,category:"Flags",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},waning_crescent_moon:{name:"Waning Crescent Moon Symbol",unified:"1F318",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f318.png",sheet_x:6,sheet_y:4,short_name:"waning_crescent_moon",short_names:["waning_crescent_moon"],text:null,texts:null,category:"Nature",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},raised_hand_with_fingers_splayed:{name:"Raised Hand with Fingers Splayed",unified:"1F590",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f590.png",sheet_x:25,sheet_y:13,short_name:"raised_hand_with_fingers_splayed",short_names:["raised_hand_with_fingers_splayed"],text:null,texts:null,category:"People",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F590-1F3FB":{unified:"1F590-1F3FB",image:"1f590-1f3fb.png",sheet_x:25,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FC":{unified:"1F590-1F3FC",image:"1f590-1f3fc.png",sheet_x:25,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FD":{unified:"1F590-1F3FD",image:"1f590-1f3fd.png",sheet_x:25,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FE":{unified:"1F590-1F3FE",image:"1f590-1f3fe.png",sheet_x:25,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FF":{unified:"1F590-1F3FF",image:"1f590-1f3ff.png",sheet_x:25,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},school:{name:"School",unified:"1F3EB",variations:[],docomo:"E73E",au:"EA80",softbank:"E157",google:"FE4BA",image:"1f3eb.png",sheet_x:11,sheet_y:28,short_name:"school",short_names:["school"],text:null,texts:null,category:"Places",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},new_moon:{name:"New Moon Symbol",unified:"1F311",variations:[],docomo:"E69C",au:"E5A8",softbank:null,google:"FE011",image:"1f311.png",sheet_x:5,sheet_y:38,short_name:"new_moon",short_names:["new_moon"],text:null,texts:null,category:"Nature",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},the_horns:{name:"Sign of the Horns",unified:"1F918",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f918.png",sheet_x:32,sheet_y:9,short_name:"the_horns",short_names:["the_horns","sign_of_the_horns"],text:null,texts:null,category:"People",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F918-1F3FB":{unified:"1F918-1F3FB",image:"1f918-1f3fb.png",sheet_x:32,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FC":{unified:"1F918-1F3FC",image:"1f918-1f3fc.png",sheet_x:32,sheet_y:11,has_img_apple:!0,has_img_google:!1, -has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FD":{unified:"1F918-1F3FD",image:"1f918-1f3fd.png",sheet_x:32,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FE":{unified:"1F918-1F3FE",image:"1f918-1f3fe.png",sheet_x:32,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FF":{unified:"1F918-1F3FF",image:"1f918-1f3ff.png",sheet_x:32,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},love_hotel:{name:"Love Hotel",unified:"1F3E9",variations:[],docomo:"E669-E6EF",au:"EAF3",softbank:"E501",google:"FE4B8",image:"1f3e9.png",sheet_x:11,sheet_y:26,short_name:"love_hotel",short_names:["love_hotel"],text:null,texts:null,category:"Places",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},m:{name:"Circled Latin Capital Letter M",unified:"24C2",variations:["24C2-FE0F"],docomo:"E65C",au:"E5BC",softbank:"E434",google:"FE7E1",image:"24c2.png",sheet_x:0,sheet_y:32,short_name:"m",short_names:["m"],text:null,texts:null,category:"Symbols",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-il":{name:"Regional Indicator Symbol Letters Il",unified:"1F1EE-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f1.png",sheet_x:35,sheet_y:18,short_name:"flag-il",short_names:["flag-il"],text:null,texts:null,category:"Flags",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wind_chime:{name:"Wind Chime",unified:"1F390",variations:[],docomo:null,au:"EAED",softbank:"E442",google:"FE51E",image:"1f390.png",sheet_x:9,sheet_y:4,short_name:"wind_chime",short_names:["wind_chime"],text:null,texts:null,category:"Objects",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"spock-hand":{name:"Raised Hand with Part Between Middle and Ring Fingers",unified:"1F596",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f596.png",sheet_x:25,sheet_y:25,short_name:"spock-hand",short_names:["spock-hand"],text:null,texts:null,category:"People",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F596-1F3FB":{unified:"1F596-1F3FB",image:"1f596-1f3fb.png",sheet_x:25,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FC":{unified:"1F596-1F3FC",image:"1f596-1f3fc.png",sheet_x:25,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FD":{unified:"1F596-1F3FD",image:"1f596-1f3fd.png",sheet_x:25,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FE":{unified:"1F596-1F3FE",image:"1f596-1f3fe.png",sheet_x:25,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FF":{unified:"1F596-1F3FF",image:"1f596-1f3ff.png",sheet_x:25,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},wedding:{name:"Wedding",unified:"1F492",variations:[],docomo:null,au:"E5BB",softbank:"E43D",google:"FE82A",image:"1f492.png",sheet_x:19,sheet_y:34,short_name:"wedding",short_names:["wedding"],text:null,texts:null,category:"Places",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},atm:{name:"Automated Teller Machine",unified:"1F3E7",variations:[],docomo:"E668",au:"E4A3",softbank:"E154",google:"FE4B6",image:"1f3e7.png",sheet_x:11,sheet_y:24,short_name:"atm",short_names:["atm"],text:null,texts:null,category:"Symbols",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crossed_flags:{name:"Crossed Flags",unified:"1F38C",variations:[],docomo:null,au:"E5D9",softbank:"E143",google:"FE514",image:"1f38c.png",sheet_x:9,sheet_y:0,short_name:"crossed_flags",short_names:["crossed_flags"],text:null,texts:null,category:"Objects",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-it":{name:"Regional Indicator Symbol Letters It",unified:"1F1EE-1F1F9",variations:[],docomo:null,au:"EB0F",softbank:"E50F",google:"FE4E9",image:"1f1ee-1f1f9.png",sheet_x:35,sheet_y:25,short_name:"flag-it",short_names:["flag-it","it"],text:null,texts:null,category:"Flags",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},waxing_crescent_moon:{name:"Waxing Crescent Moon Symbol",unified:"1F312",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f312.png",sheet_x:5,sheet_y:39,short_name:"waxing_crescent_moon",short_names:["waxing_crescent_moon"],text:null,texts:null,category:"Nature",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},izakaya_lantern:{name:"Izakaya Lantern",unified:"1F3EE",variations:[],docomo:"E74B",au:"E4BD",softbank:"E30B",google:"FE4C2",image:"1f3ee.png",sheet_x:11,sheet_y:31,short_name:"izakaya_lantern",short_names:["izakaya_lantern","lantern"],text:null,texts:null,category:"Objects",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},first_quarter_moon:{name:"First Quarter Moon Symbol",unified:"1F313",variations:[],docomo:"E69E",au:"E5AA",softbank:"E04C",google:"FE013",image:"1f313.png",sheet_x:5,sheet_y:40,short_name:"first_quarter_moon",short_names:["first_quarter_moon"],text:null,texts:null,category:"Nature",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sa:{name:"Squared Katakana Sa",unified:"1F202",variations:["1F202-FE0F"],docomo:null,au:"EA87",softbank:"E228",google:"FEB3F",image:"1f202.png",sheet_x:5,sheet_y:7,short_name:"sa",short_names:["sa"],text:null,texts:null,category:"Symbols",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},classical_building:{name:"Classical Building",unified:"1F3DB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3db.png",sheet_x:11,sheet_y:12,short_name:"classical_building",short_names:["classical_building"],text:null,texts:null,category:"Places",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},writing_hand:{name:"Writing Hand",unified:"270D",variations:["270D-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"270d.png",sheet_x:3,sheet_y:27,short_name:"writing_hand",short_names:["writing_hand"],text:null,texts:null,category:"People",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270D-1F3FB":{unified:"270D-1F3FB",image:"270d-1f3fb.png",sheet_x:3,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FC":{unified:"270D-1F3FC",image:"270d-1f3fc.png",sheet_x:3,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FD":{unified:"270D-1F3FD",image:"270d-1f3fd.png",sheet_x:3,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FE":{unified:"270D-1F3FE",image:"270d-1f3fe.png",sheet_x:3,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FF":{unified:"270D-1F3FF",image:"270d-1f3ff.png",sheet_x:3,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-ci":{name:"Regional Indicator Symbol Letters Ci",unified:"1F1E8-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ee.png",sheet_x:33,sheet_y:36,short_name:"flag-ci",short_names:["flag-ci"],text:null,texts:null,category:"Flags",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},moon:{name:"Waxing Gibbous Moon Symbol",unified:"1F314",variations:[],docomo:"E69D",au:"E5A9",softbank:"E04C",google:"FE012",image:"1f314.png",sheet_x:6,sheet_y:0,short_name:"moon",short_names:["moon","waxing_gibbous_moon"],text:null,texts:null,category:"Nature",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},church:{name:"Church",unified:"26EA",variations:["26EA-FE0F"],docomo:null,au:"E5BB",softbank:"E037",google:"FE4BB",image:"26ea.png",sheet_x:2,sheet_y:29,short_name:"church",short_names:["church"],text:null,texts:null,category:"Places",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},email:{name:"Envelope",unified:"2709",variations:["2709-FE0F"],docomo:"E6D3",au:"E521",softbank:"E103",google:"FE529",image:"2709.png",sheet_x:3,sheet_y:8,short_name:"email",short_names:["email","envelope"],text:null,texts:null,category:"Objects",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},passport_control:{name:"Passport Control",unified:"1F6C2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c2.png",sheet_x:31,sheet_y:21,short_name:"passport_control",short_names:["passport_control"],text:null,texts:null,category:"Symbols",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},nail_care:{name:"Nail Polish",unified:"1F485",variations:[],docomo:null,au:"EAA0",softbank:"E31D",google:"FE196",image:"1f485.png",sheet_x:19,sheet_y:6,short_name:"nail_care",short_names:["nail_care"],text:null,texts:null,category:"People",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F485-1F3FB":{unified:"1F485-1F3FB",image:"1f485-1f3fb.png",sheet_x:19,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FC":{unified:"1F485-1F3FC",image:"1f485-1f3fc.png",sheet_x:19,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FD":{unified:"1F485-1F3FD",image:"1f485-1f3fd.png",sheet_x:19,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FE":{unified:"1F485-1F3FE",image:"1f485-1f3fe.png",sheet_x:19,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FF":{unified:"1F485-1F3FF",image:"1f485-1f3ff.png",sheet_x:19,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-jm":{name:"Regional Indicator Symbol Letters Jm",unified:"1F1EF-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1f2.png",sheet_x:35,sheet_y:27,short_name:"flag-jm",short_names:["flag-jm"],text:null,texts:null,category:"Flags",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lips:{name:"Mouth",unified:"1F444",variations:[],docomo:"E6F9",au:"EAD1",softbank:"E41C",google:"FE193",image:"1f444.png",sheet_x:14,sheet_y:1,short_name:"lips",short_names:["lips"],text:null,texts:null,category:"People",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mosque:{name:"Mosque",unified:"1F54C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54c.png",sheet_x:24,sheet_y:8,short_name:"mosque",short_names:["mosque"],text:null,texts:null,category:"Places",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-jp":{name:"Regional Indicator Symbol Letters Jp",unified:"1F1EF-1F1F5",variations:[],docomo:null,au:"E4CC",softbank:"E50B",google:"FE4E5",image:"1f1ef-1f1f5.png",sheet_x:35,sheet_y:29,short_name:"flag-jp",short_names:["flag-jp","jp"],text:null,texts:null,category:"Flags",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},new_moon_with_face:{name:"New Moon with Face",unified:"1F31A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31a.png",sheet_x:6,sheet_y:6,short_name:"new_moon_with_face",short_names:["new_moon_with_face"],text:null,texts:null,category:"Nature",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},customs:{name:"Customs",unified:"1F6C3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c3.png",sheet_x:31,sheet_y:22,short_name:"customs",short_names:["customs"],text:null,texts:null,category:"Symbols",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},envelope_with_arrow:{name:"Envelope with Downwards Arrow Above",unified:"1F4E9",variations:[],docomo:"E6CF",au:"EB62",softbank:"E103",google:"FE52B",image:"1f4e9.png",sheet_x:22,sheet_y:3,short_name:"envelope_with_arrow",short_names:["envelope_with_arrow"],text:null,texts:null,category:"Objects",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},full_moon_with_face:{name:"Full Moon with Face",unified:"1F31D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31d.png",sheet_x:6,sheet_y:9,short_name:"full_moon_with_face",short_names:["full_moon_with_face"],text:null,texts:null,category:"Nature",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-je":{name:"Regional Indicator Symbol Letters Je",unified:"1F1EF-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1ea.png",sheet_x:35,sheet_y:26,short_name:"flag-je",short_names:["flag-je"],text:null,texts:null,category:"Flags",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},synagogue:{name:"Synagogue",unified:"1F54D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54d.png",sheet_x:24,sheet_y:9,short_name:"synagogue",short_names:["synagogue"],text:null,texts:null,category:"Places",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},baggage_claim:{name:"Baggage Claim",unified:"1F6C4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c4.png",sheet_x:31,sheet_y:23,short_name:"baggage_claim",short_names:["baggage_claim"],text:null,texts:null,category:"Symbols",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tongue:{name:"Tongue",unified:"1F445",variations:[],docomo:"E728",au:"EB47",softbank:"E409",google:"FE194",image:"1f445.png",sheet_x:14,sheet_y:2,short_name:"tongue",short_names:["tongue"],text:null,texts:null,category:"People",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},incoming_envelope:{name:"Incoming Envelope",unified:"1F4E8",variations:[],docomo:"E6CF",au:"E591",softbank:"E103",google:"FE52A",image:"1f4e8.png",sheet_x:22,sheet_y:2,short_name:"incoming_envelope",short_names:["incoming_envelope"],text:null,texts:null,category:"Objects",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"e-mail":{name:"E-Mail Symbol",unified:"1F4E7",variations:[],docomo:"E6D3",au:"EB71",softbank:"E103",google:"FEB92",image:"1f4e7.png",sheet_x:22,sheet_y:1,short_name:"e-mail",short_names:["e-mail"],text:null,texts:null,category:"Objects",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ear:{name:"Ear",unified:"1F442",variations:[],docomo:"E692",au:"E5A5",softbank:"E41B",google:"FE191",image:"1f442.png",sheet_x:13,sheet_y:30,short_name:"ear",short_names:["ear"],text:null,texts:null,category:"People",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F442-1F3FB":{unified:"1F442-1F3FB",image:"1f442-1f3fb.png",sheet_x:13,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FC":{unified:"1F442-1F3FC",image:"1f442-1f3fc.png",sheet_x:13,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FD":{unified:"1F442-1F3FD",image:"1f442-1f3fd.png",sheet_x:13,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FE":{unified:"1F442-1F3FE",image:"1f442-1f3fe.png",sheet_x:13,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FF":{unified:"1F442-1F3FF",image:"1f442-1f3ff.png",sheet_x:13,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},first_quarter_moon_with_face:{name:"First Quarter Moon with Face",unified:"1F31B",variations:[],docomo:"E69E",au:"E489",softbank:"E04C",google:"FE016",image:"1f31b.png",sheet_x:6,sheet_y:7,short_name:"first_quarter_moon_with_face",short_names:["first_quarter_moon_with_face"],text:null,texts:null,category:"Nature",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},left_luggage:{name:"Left Luggage",unified:"1F6C5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c5.png",sheet_x:31,sheet_y:24,short_name:"left_luggage",short_names:["left_luggage"],text:null,texts:null,category:"Symbols",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kaaba:{name:"Kaaba",unified:"1F54B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54b.png",sheet_x:24,sheet_y:7,short_name:"kaaba",short_names:["kaaba"],text:null,texts:null,category:"Places",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-jo":{name:"Regional Indicator Symbol Letters Jo",unified:"1F1EF-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1f4.png",sheet_x:35,sheet_y:28,short_name:"flag-jo",short_names:["flag-jo"],text:null,texts:null,category:"Flags",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kz":{name:"Regional Indicator Symbol Letters Kz",unified:"1F1F0-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ff.png",sheet_x:35,sheet_y:40,short_name:"flag-kz",short_names:["flag-kz"],text:null,texts:null,category:"Flags",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wheelchair:{name:"Wheelchair Symbol",unified:"267F",variations:["267F-FE0F"],docomo:"E69B",au:"E47F",softbank:"E20A",google:"FEB20",image:"267f.png",sheet_x:2,sheet_y:3,short_name:"wheelchair",short_names:["wheelchair"],text:null,texts:null,category:"Symbols",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},last_quarter_moon_with_face:{name:"Last Quarter Moon with Face",unified:"1F31C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31c.png",sheet_x:6,sheet_y:8,short_name:"last_quarter_moon_with_face",short_names:["last_quarter_moon_with_face"],text:null,texts:null,category:"Nature",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},nose:{name:"Nose",unified:"1F443",variations:[],docomo:null,au:"EAD0",softbank:"E41A",google:"FE192",image:"1f443.png",sheet_x:13,sheet_y:36,short_name:"nose",short_names:["nose"],text:null,texts:null,category:"People",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F443-1F3FB":{unified:"1F443-1F3FB",image:"1f443-1f3fb.png",sheet_x:13,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FC":{unified:"1F443-1F3FC",image:"1f443-1f3fc.png",sheet_x:13,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FD":{unified:"1F443-1F3FD",image:"1f443-1f3fd.png",sheet_x:13,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FE":{unified:"1F443-1F3FE",image:"1f443-1f3fe.png",sheet_x:13,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FF":{unified:"1F443-1F3FF",image:"1f443-1f3ff.png",sheet_x:14,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},love_letter:{name:"Love Letter",unified:"1F48C",variations:[],docomo:"E717",au:"EB78",softbank:"E103-E328",google:"FE824",image:"1f48c.png",sheet_x:19,sheet_y:28,short_name:"love_letter",short_names:["love_letter"],text:null,texts:null,category:"Objects",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shinto_shrine:{name:"Shinto Shrine",unified:"26E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26e9.png",sheet_x:2,sheet_y:28,short_name:"shinto_shrine",short_names:["shinto_shrine"],text:null,texts:null,category:"Places",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_smoking:{name:"No Smoking Symbol",unified:"1F6AD",variations:[],docomo:"E680",au:"E47E",softbank:"E208",google:"FEB1F",image:"1f6ad.png",sheet_x:30,sheet_y:21,short_name:"no_smoking",short_names:["no_smoking"],text:null,texts:null,category:"Symbols",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},postbox:{name:"Postbox",unified:"1F4EE",variations:[],docomo:"E665",au:"E51B",softbank:"E102",google:"FE52E",image:"1f4ee.png",sheet_x:22,sheet_y:8,short_name:"postbox",short_names:["postbox"],text:null,texts:null,category:"Objects",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eye:{name:"Eye",unified:"1F441",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f441.png",sheet_x:13,sheet_y:29,short_name:"eye",short_names:["eye"],text:null,texts:null,category:"People",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sun_with_face:{name:"Sun with Face",unified:"1F31E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31e.png",sheet_x:6,sheet_y:10,short_name:"sun_with_face",short_names:["sun_with_face"],text:null,texts:null,category:"Nature",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ke":{name:"Regional Indicator Symbol Letters Ke",unified:"1F1F0-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ea.png",sheet_x:35,sheet_y:30,short_name:"flag-ke",short_names:["flag-ke"],text:null,texts:null,category:"Flags",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mailbox_closed:{name:"Closed Mailbox with Lowered Flag",unified:"1F4EA",variations:[],docomo:"E665",au:"E51B",softbank:"E101",google:"FE52C",image:"1f4ea.png",sheet_x:22,sheet_y:4,short_name:"mailbox_closed",short_names:["mailbox_closed"],text:null,texts:null,category:"Objects",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ki":{name:"Regional Indicator Symbol Letters Ki",unified:"1F1F0-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ee.png",sheet_x:35,sheet_y:33,short_name:"flag-ki",short_names:["flag-ki"],text:null,texts:null,category:"Flags",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eyes:{name:"Eyes",unified:"1F440",variations:[],docomo:"E691",au:"E5A4",softbank:"E419",google:"FE190",image:"1f440.png",sheet_x:13,sheet_y:28,short_name:"eyes",short_names:["eyes"],text:null,texts:null,category:"People",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wc:{name:"Water Closet",unified:"1F6BE",variations:[],docomo:"E66E",au:"E4A5",softbank:"E309",google:"FE508",image:"1f6be.png",sheet_x:31,sheet_y:12,short_name:"wc",short_names:["wc"],text:null,texts:null,category:"Symbols",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crescent_moon:{name:"Crescent Moon",unified:"1F319",variations:[],docomo:"E69F",au:"E486",softbank:"E04C",google:"FE014",image:"1f319.png",sheet_x:6,sheet_y:5,short_name:"crescent_moon",short_names:["crescent_moon"],text:null,texts:null,category:"Nature",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mailbox:{name:"Closed Mailbox with Raised Flag",unified:"1F4EB",variations:[],docomo:"E665",au:"EB0A",softbank:"E101",google:"FE52D",image:"1f4eb.png",sheet_x:22,sheet_y:5,short_name:"mailbox",short_names:["mailbox"],text:null,texts:null,category:"Objects",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-xk":{name:"Regional Indicator Symbol Letters Xk",unified:"1F1FD-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fd-1f1f0.png",sheet_x:38,sheet_y:38,short_name:"flag-xk",short_names:["flag-xk"],text:null,texts:null,category:"Flags",sort_order:118,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},parking:{name:"Negative Squared Latin Capital Letter P",unified:"1F17F",variations:["1F17F-FE0F"],docomo:"E66C",au:"E4A6",softbank:"E14F",google:"FE7F6",image:"1f17f.png",sheet_x:4,sheet_y:35,short_name:"parking",short_names:["parking"],text:null,texts:null,category:"Symbols",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bust_in_silhouette:{name:"Bust in Silhouette",unified:"1F464",variations:[],docomo:"E6B1",au:null,softbank:null,google:"FE19A",image:"1f464.png",sheet_x:16,sheet_y:6,short_name:"bust_in_silhouette",short_names:["bust_in_silhouette"],text:null,texts:null,category:"People",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},star:{name:"White Medium Star",unified:"2B50",variations:["2B50-FE0F"],docomo:null,au:"E48B",softbank:"E32F",google:"FEB68",image:"2b50.png",sheet_x:4,sheet_y:24,short_name:"star",short_names:["star"],text:null,texts:null,category:"Nature",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},star2:{name:"Glowing Star",unified:"1F31F",variations:[],docomo:null,au:"E48B",softbank:"E335",google:"FEB69",image:"1f31f.png",sheet_x:6,sheet_y:11,short_name:"star2",short_names:["star2"],text:null,texts:null,category:"Nature",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mailbox_with_mail:{name:"Open Mailbox with Raised Flag",unified:"1F4EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ec.png",sheet_x:22,sheet_y:6,short_name:"mailbox_with_mail",short_names:["mailbox_with_mail"],text:null,texts:null,category:"Objects",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},potable_water:{name:"Potable Water Symbol",unified:"1F6B0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b0.png",sheet_x:30,sheet_y:24,short_name:"potable_water",short_names:["potable_water"],text:null,texts:null,category:"Symbols",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},busts_in_silhouette:{name:"Busts in Silhouette",unified:"1F465",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f465.png",sheet_x:16,sheet_y:7,short_name:"busts_in_silhouette",short_names:["busts_in_silhouette"],text:null,texts:null,category:"People",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kw":{name:"Regional Indicator Symbol Letters Kw",unified:"1F1F0-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1fc.png",sheet_x:35,sheet_y:38,short_name:"flag-kw",short_names:["flag-kw"],text:null,texts:null,category:"Flags",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mens:{name:"Mens Symbol",unified:"1F6B9",variations:[],docomo:null,au:null,softbank:"E138",google:"FEB33",image:"1f6b9.png",sheet_x:31,sheet_y:7,short_name:"mens",short_names:["mens"],text:null,texts:null,category:"Symbols",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dizzy:{name:"Dizzy Symbol",unified:"1F4AB",variations:[],docomo:null,au:"EB5C",softbank:"E407",google:"FEB5F",image:"1f4ab.png",sheet_x:20,sheet_y:23,short_name:"dizzy",short_names:["dizzy"],text:null,texts:null,category:"Nature",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},speaking_head_in_silhouette:{name:"Speaking Head in Silhouette",unified:"1F5E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e3.png",sheet_x:26,sheet_y:5,short_name:"speaking_head_in_silhouette",short_names:["speaking_head_in_silhouette"],text:null,texts:null,category:"People",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kg":{name:"Regional Indicator Symbol Letters Kg",unified:"1F1F0-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ec.png",sheet_x:35,sheet_y:31,short_name:"flag-kg",short_names:["flag-kg"],text:null,texts:null,category:"Flags",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mailbox_with_no_mail:{name:"Open Mailbox with Lowered Flag",unified:"1F4ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ed.png",sheet_x:22,sheet_y:7,short_name:"mailbox_with_no_mail",short_names:["mailbox_with_no_mail"],text:null,texts:null,category:"Objects",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sparkles:{name:"Sparkles",unified:"2728",variations:[],docomo:"E6FA",au:"EAAB",softbank:"E32E",google:"FEB60",image:"2728.png",sheet_x:3,sheet_y:39,short_name:"sparkles",short_names:["sparkles"],text:null,texts:null,category:"Nature",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},baby:{name:"Baby",unified:"1F476",variations:[],docomo:null,au:"EB18",softbank:"E51A",google:"FE1A9",image:"1f476.png",sheet_x:17,sheet_y:38,short_name:"baby",short_names:["baby"],text:null,texts:null,category:"People",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F476-1F3FB":{unified:"1F476-1F3FB",image:"1f476-1f3fb.png",sheet_x:17,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FC":{unified:"1F476-1F3FC",image:"1f476-1f3fc.png",sheet_x:17,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FD":{unified:"1F476-1F3FD",image:"1f476-1f3fd.png",sheet_x:18,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FE":{unified:"1F476-1F3FE",image:"1f476-1f3fe.png",sheet_x:18,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FF":{unified:"1F476-1F3FF",image:"1f476-1f3ff.png",sheet_x:18,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"package":{name:"Package",unified:"1F4E6",variations:[],docomo:"E685",au:"E51F",softbank:"E112",google:"FE535",image:"1f4e6.png",sheet_x:22,sheet_y:0,short_name:"package",short_names:["package"],text:null,texts:null,category:"Objects",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},womens:{name:"Womens Symbol",unified:"1F6BA",variations:[],docomo:null,au:null,softbank:"E139",google:"FEB34",image:"1f6ba.png",sheet_x:31,sheet_y:8,short_name:"womens",short_names:["womens"],text:null,texts:null,category:"Symbols",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-la":{name:"Regional Indicator Symbol Letters La",unified:"1F1F1-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e6.png",sheet_x:36,sheet_y:0,short_name:"flag-la",short_names:["flag-la"],text:null,texts:null,category:"Flags",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},baby_symbol:{name:"Baby Symbol",unified:"1F6BC",variations:[],docomo:null,au:"EB18",softbank:"E13A",google:"FEB35",image:"1f6bc.png",sheet_x:31,sheet_y:10,short_name:"baby_symbol",short_names:["baby_symbol"],text:null,texts:null,category:"Symbols",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lv":{name:"Regional Indicator Symbol Letters Lv",unified:"1F1F1-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fb.png",sheet_x:36,sheet_y:9,short_name:"flag-lv", -short_names:["flag-lv"],text:null,texts:null,category:"Flags",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},postal_horn:{name:"Postal Horn",unified:"1F4EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ef.png",sheet_x:22,sheet_y:9,short_name:"postal_horn",short_names:["postal_horn"],text:null,texts:null,category:"Objects",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},comet:{name:"Comet",unified:"2604",variations:["2604-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2604.png",sheet_x:1,sheet_y:4,short_name:"comet",short_names:["comet"],text:null,texts:null,category:"Nature",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},boy:{name:"Boy",unified:"1F466",variations:[],docomo:"E6F0",au:"E4FC",softbank:"E001",google:"FE19B",image:"1f466.png",sheet_x:16,sheet_y:8,short_name:"boy",short_names:["boy"],text:null,texts:null,category:"People",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F466-1F3FB":{unified:"1F466-1F3FB",image:"1f466-1f3fb.png",sheet_x:16,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FC":{unified:"1F466-1F3FC",image:"1f466-1f3fc.png",sheet_x:16,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FD":{unified:"1F466-1F3FD",image:"1f466-1f3fd.png",sheet_x:16,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FE":{unified:"1F466-1F3FE",image:"1f466-1f3fe.png",sheet_x:16,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FF":{unified:"1F466-1F3FF",image:"1f466-1f3ff.png",sheet_x:16,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},restroom:{name:"Restroom",unified:"1F6BB",variations:[],docomo:"E66E",au:"E4A5",softbank:"E151",google:"FE506",image:"1f6bb.png",sheet_x:31,sheet_y:9,short_name:"restroom",short_names:["restroom"],text:null,texts:null,category:"Symbols",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lb":{name:"Regional Indicator Symbol Letters Lb",unified:"1F1F1-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e7.png",sheet_x:36,sheet_y:1,short_name:"flag-lb",short_names:["flag-lb"],text:null,texts:null,category:"Flags",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},inbox_tray:{name:"Inbox Tray",unified:"1F4E5",variations:[],docomo:null,au:"E593",softbank:null,google:"FE534",image:"1f4e5.png",sheet_x:21,sheet_y:40,short_name:"inbox_tray",short_names:["inbox_tray"],text:null,texts:null,category:"Objects",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sunny:{name:"Black Sun with Rays",unified:"2600",variations:["2600-FE0F"],docomo:"E63E",au:"E488",softbank:"E04A",google:"FE000",image:"2600.png",sheet_x:1,sheet_y:0,short_name:"sunny",short_names:["sunny"],text:null,texts:null,category:"Nature",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},girl:{name:"Girl",unified:"1F467",variations:[],docomo:"E6F0",au:"E4FA",softbank:"E002",google:"FE19C",image:"1f467.png",sheet_x:16,sheet_y:14,short_name:"girl",short_names:["girl"],text:null,texts:null,category:"People",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F467-1F3FB":{unified:"1F467-1F3FB",image:"1f467-1f3fb.png",sheet_x:16,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FC":{unified:"1F467-1F3FC",image:"1f467-1f3fc.png",sheet_x:16,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FD":{unified:"1F467-1F3FD",image:"1f467-1f3fd.png",sheet_x:16,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FE":{unified:"1F467-1F3FE",image:"1f467-1f3fe.png",sheet_x:16,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FF":{unified:"1F467-1F3FF",image:"1f467-1f3ff.png",sheet_x:16,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},man:{name:"Man",unified:"1F468",variations:[],docomo:"E6F0",au:"E4FC",softbank:"E004",google:"FE19D",image:"1f468.png",sheet_x:16,sheet_y:20,short_name:"man",short_names:["man"],text:null,texts:null,category:"People",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F468-1F3FB":{unified:"1F468-1F3FB",image:"1f468-1f3fb.png",sheet_x:16,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FC":{unified:"1F468-1F3FC",image:"1f468-1f3fc.png",sheet_x:16,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FD":{unified:"1F468-1F3FD",image:"1f468-1f3fd.png",sheet_x:16,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FE":{unified:"1F468-1F3FE",image:"1f468-1f3fe.png",sheet_x:16,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FF":{unified:"1F468-1F3FF",image:"1f468-1f3ff.png",sheet_x:16,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},put_litter_in_its_place:{name:"Put Litter in Its Place Symbol",unified:"1F6AE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ae.png",sheet_x:30,sheet_y:22,short_name:"put_litter_in_its_place",short_names:["put_litter_in_its_place"],text:null,texts:null,category:"Symbols",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mostly_sunny:{name:"White Sun with Small Cloud",unified:"1F324",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f324.png",sheet_x:6,sheet_y:14,short_name:"mostly_sunny",short_names:["mostly_sunny","sun_small_cloud"],text:null,texts:null,category:"Nature",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ls":{name:"Regional Indicator Symbol Letters Ls",unified:"1F1F1-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f8.png",sheet_x:36,sheet_y:6,short_name:"flag-ls",short_names:["flag-ls"],text:null,texts:null,category:"Flags",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},outbox_tray:{name:"Outbox Tray",unified:"1F4E4",variations:[],docomo:null,au:"E592",softbank:null,google:"FE533",image:"1f4e4.png",sheet_x:21,sheet_y:39,short_name:"outbox_tray",short_names:["outbox_tray"],text:null,texts:null,category:"Objects",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cinema:{name:"Cinema",unified:"1F3A6",variations:[],docomo:"E677",au:"E517",softbank:"E507",google:"FE802",image:"1f3a6.png",sheet_x:9,sheet_y:21,short_name:"cinema",short_names:["cinema"],text:null,texts:null,category:"Symbols",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lr":{name:"Regional Indicator Symbol Letters Lr",unified:"1F1F1-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f7.png",sheet_x:36,sheet_y:5,short_name:"flag-lr",short_names:["flag-lr"],text:null,texts:null,category:"Flags",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scroll:{name:"Scroll",unified:"1F4DC",variations:[],docomo:"E70A",au:"E55F",softbank:null,google:"FE4FD",image:"1f4dc.png",sheet_x:21,sheet_y:31,short_name:"scroll",short_names:["scroll"],text:null,texts:null,category:"Objects",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},partly_sunny:{name:"Sun Behind Cloud",unified:"26C5",variations:["26C5-FE0F"],docomo:"E63E-E63F",au:"E48E",softbank:"E04A-E049",google:"FE00F",image:"26c5.png",sheet_x:2,sheet_y:21,short_name:"partly_sunny",short_names:["partly_sunny"],text:null,texts:null,category:"Nature",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},woman:{name:"Woman",unified:"1F469",variations:[],docomo:"E6F0",au:"E4FA",softbank:"E005",google:"FE19E",image:"1f469.png",sheet_x:16,sheet_y:26,short_name:"woman",short_names:["woman"],text:null,texts:null,category:"People",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F469-1F3FB":{unified:"1F469-1F3FB",image:"1f469-1f3fb.png",sheet_x:16,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FC":{unified:"1F469-1F3FC",image:"1f469-1f3fc.png",sheet_x:16,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FD":{unified:"1F469-1F3FD",image:"1f469-1f3fd.png",sheet_x:16,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FE":{unified:"1F469-1F3FE",image:"1f469-1f3fe.png",sheet_x:16,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FF":{unified:"1F469-1F3FF",image:"1f469-1f3ff.png",sheet_x:16,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},signal_strength:{name:"Antenna with Bars",unified:"1F4F6",variations:[],docomo:null,au:"EA84",softbank:"E20B",google:"FE838",image:"1f4f6.png",sheet_x:22,sheet_y:16,short_name:"signal_strength",short_names:["signal_strength"],text:null,texts:null,category:"Symbols",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},person_with_blond_hair:{name:"Person with Blond Hair",unified:"1F471",variations:[],docomo:null,au:"EB13",softbank:"E515",google:"FE1A4",image:"1f471.png",sheet_x:17,sheet_y:8,short_name:"person_with_blond_hair",short_names:["person_with_blond_hair"],text:null,texts:null,category:"People",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F471-1F3FB":{unified:"1F471-1F3FB",image:"1f471-1f3fb.png",sheet_x:17,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FC":{unified:"1F471-1F3FC",image:"1f471-1f3fc.png",sheet_x:17,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FD":{unified:"1F471-1F3FD",image:"1f471-1f3fd.png",sheet_x:17,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FE":{unified:"1F471-1F3FE",image:"1f471-1f3fe.png",sheet_x:17,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FF":{unified:"1F471-1F3FF",image:"1f471-1f3ff.png",sheet_x:17,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},barely_sunny:{name:"White Sun Behind Cloud",unified:"1F325",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f325.png",sheet_x:6,sheet_y:15,short_name:"barely_sunny",short_names:["barely_sunny","sun_behind_cloud"],text:null,texts:null,category:"Nature",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},page_with_curl:{name:"Page with Curl",unified:"1F4C3",variations:[],docomo:"E689",au:"E561",softbank:"E301",google:"FE540",image:"1f4c3.png",sheet_x:21,sheet_y:6,short_name:"page_with_curl",short_names:["page_with_curl"],text:null,texts:null,category:"Objects",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ly":{name:"Regional Indicator Symbol Letters Ly",unified:"1F1F1-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fe.png",sheet_x:36,sheet_y:10,short_name:"flag-ly",short_names:["flag-ly"],text:null,texts:null,category:"Flags",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bookmark_tabs:{name:"Bookmark Tabs",unified:"1F4D1",variations:[],docomo:"E689",au:"EB0B",softbank:"E301",google:"FE552",image:"1f4d1.png",sheet_x:21,sheet_y:20,short_name:"bookmark_tabs",short_names:["bookmark_tabs"],text:null,texts:null,category:"Objects",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-li":{name:"Regional Indicator Symbol Letters Li",unified:"1F1F1-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1ee.png",sheet_x:36,sheet_y:3,short_name:"flag-li",short_names:["flag-li"],text:null,texts:null,category:"Flags",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},older_man:{name:"Older Man",unified:"1F474",variations:[],docomo:null,au:"EB16",softbank:"E518",google:"FE1A7",image:"1f474.png",sheet_x:17,sheet_y:26,short_name:"older_man",short_names:["older_man"],text:null,texts:null,category:"People",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F474-1F3FB":{unified:"1F474-1F3FB",image:"1f474-1f3fb.png",sheet_x:17,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FC":{unified:"1F474-1F3FC",image:"1f474-1f3fc.png",sheet_x:17,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FD":{unified:"1F474-1F3FD",image:"1f474-1f3fd.png",sheet_x:17,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FE":{unified:"1F474-1F3FE",image:"1f474-1f3fe.png",sheet_x:17,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FF":{unified:"1F474-1F3FF",image:"1f474-1f3ff.png",sheet_x:17,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},partly_sunny_rain:{name:"White Sun Behind Cloud with Rain",unified:"1F326",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f326.png",sheet_x:6,sheet_y:16,short_name:"partly_sunny_rain",short_names:["partly_sunny_rain","sun_behind_rain_cloud"],text:null,texts:null,category:"Nature",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},koko:{name:"Squared Katakana Koko",unified:"1F201",variations:[],docomo:null,au:null,softbank:"E203",google:"FEB24",image:"1f201.png",sheet_x:5,sheet_y:6,short_name:"koko",short_names:["koko"],text:null,texts:null,category:"Symbols",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bar_chart:{name:"Bar Chart",unified:"1F4CA",variations:[],docomo:null,au:"E574",softbank:"E14A",google:"FE54A",image:"1f4ca.png",sheet_x:21,sheet_y:13,short_name:"bar_chart",short_names:["bar_chart"],text:null,texts:null,category:"Objects",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cloud:{name:"Cloud",unified:"2601",variations:["2601-FE0F"],docomo:"E63F",au:"E48D",softbank:"E049",google:"FE001",image:"2601.png",sheet_x:1,sheet_y:1,short_name:"cloud",short_names:["cloud"],text:null,texts:null,category:"Nature",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ng:{name:"Squared Ng",unified:"1F196",variations:[],docomo:"E72F",au:null,softbank:null,google:"FEB28",image:"1f196.png",sheet_x:5,sheet_y:1,short_name:"ng",short_names:["ng"],text:null,texts:null,category:"Symbols",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lt":{name:"Regional Indicator Symbol Letters Lt",unified:"1F1F1-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f9.png",sheet_x:36,sheet_y:7,short_name:"flag-lt",short_names:["flag-lt"],text:null,texts:null,category:"Flags",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},older_woman:{name:"Older Woman",unified:"1F475",variations:[],docomo:null,au:"EB17",softbank:"E519",google:"FE1A8",image:"1f475.png",sheet_x:17,sheet_y:32,short_name:"older_woman",short_names:["older_woman"],text:null,texts:null,category:"People",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F475-1F3FB":{unified:"1F475-1F3FB",image:"1f475-1f3fb.png",sheet_x:17,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FC":{unified:"1F475-1F3FC",image:"1f475-1f3fc.png",sheet_x:17,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FD":{unified:"1F475-1F3FD",image:"1f475-1f3fd.png",sheet_x:17,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FE":{unified:"1F475-1F3FE",image:"1f475-1f3fe.png",sheet_x:17,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FF":{unified:"1F475-1F3FF",image:"1f475-1f3ff.png",sheet_x:17,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},rain_cloud:{name:"Cloud with Rain",unified:"1F327",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f327.png",sheet_x:6,sheet_y:17,short_name:"rain_cloud",short_names:["rain_cloud"],text:null,texts:null,category:"Nature",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lu":{name:"Regional Indicator Symbol Letters Lu",unified:"1F1F1-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fa.png",sheet_x:36,sheet_y:8,short_name:"flag-lu",short_names:["flag-lu"],text:null,texts:null,category:"Flags",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},chart_with_upwards_trend:{name:"Chart with Upwards Trend",unified:"1F4C8",variations:[],docomo:null,au:"E575",softbank:"E14A",google:"FE54B",image:"1f4c8.png",sheet_x:21,sheet_y:11,short_name:"chart_with_upwards_trend",short_names:["chart_with_upwards_trend"],text:null,texts:null,category:"Objects",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ok:{name:"Squared Ok",unified:"1F197",variations:[],docomo:"E70B",au:"E5AD",softbank:"E24D",google:"FEB27",image:"1f197.png",sheet_x:5,sheet_y:2,short_name:"ok",short_names:["ok"],text:null,texts:null,category:"Symbols",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},man_with_gua_pi_mao:{name:"Man with Gua Pi Mao",unified:"1F472",variations:[],docomo:null,au:"EB14",softbank:"E516",google:"FE1A5",image:"1f472.png",sheet_x:17,sheet_y:14,short_name:"man_with_gua_pi_mao",short_names:["man_with_gua_pi_mao"],text:null,texts:null,category:"People",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F472-1F3FB":{unified:"1F472-1F3FB",image:"1f472-1f3fb.png",sheet_x:17,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FC":{unified:"1F472-1F3FC",image:"1f472-1f3fc.png",sheet_x:17,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FD":{unified:"1F472-1F3FD",image:"1f472-1f3fd.png",sheet_x:17,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FE":{unified:"1F472-1F3FE",image:"1f472-1f3fe.png",sheet_x:17,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FF":{unified:"1F472-1F3FF",image:"1f472-1f3ff.png",sheet_x:17,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},thunder_cloud_and_rain:{name:"Thunder Cloud and Rain",unified:"26C8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26c8.png",sheet_x:2,sheet_y:22,short_name:"thunder_cloud_and_rain",short_names:["thunder_cloud_and_rain"],text:null,texts:null,category:"Nature",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},up:{name:"Squared Up with Exclamation Mark",unified:"1F199",variations:[],docomo:null,au:"E50F",softbank:"E213",google:"FEB37",image:"1f199.png",sheet_x:5,sheet_y:4,short_name:"up",short_names:["up"],text:null,texts:null,category:"Symbols",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},man_with_turban:{name:"Man with Turban",unified:"1F473",variations:[],docomo:null,au:"EB15",softbank:"E517",google:"FE1A6",image:"1f473.png",sheet_x:17,sheet_y:20,short_name:"man_with_turban",short_names:["man_with_turban"],text:null,texts:null,category:"People",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F473-1F3FB":{unified:"1F473-1F3FB",image:"1f473-1f3fb.png",sheet_x:17,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FC":{unified:"1F473-1F3FC",image:"1f473-1f3fc.png",sheet_x:17,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FD":{unified:"1F473-1F3FD",image:"1f473-1f3fd.png",sheet_x:17,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FE":{unified:"1F473-1F3FE",image:"1f473-1f3fe.png",sheet_x:17,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FF":{unified:"1F473-1F3FF",image:"1f473-1f3ff.png",sheet_x:17,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},chart_with_downwards_trend:{name:"Chart with Downwards Trend",unified:"1F4C9",variations:[],docomo:null,au:"E576",softbank:null,google:"FE54C",image:"1f4c9.png",sheet_x:21,sheet_y:12,short_name:"chart_with_downwards_trend",short_names:["chart_with_downwards_trend"],text:null,texts:null,category:"Objects",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mo":{name:"Regional Indicator Symbol Letters Mo",unified:"1F1F2-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f4.png",sheet_x:36,sheet_y:22,short_name:"flag-mo",short_names:["flag-mo"],text:null,texts:null,category:"Flags",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},page_facing_up:{name:"Page Facing Up",unified:"1F4C4",variations:[],docomo:"E689",au:"E569",softbank:"E301",google:"FE541",image:"1f4c4.png",sheet_x:21,sheet_y:7,short_name:"page_facing_up",short_names:["page_facing_up"],text:null,texts:null,category:"Objects",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cool:{name:"Squared Cool",unified:"1F192",variations:[],docomo:null,au:"EA85",softbank:"E214",google:"FEB38",image:"1f192.png",sheet_x:4,sheet_y:38,short_name:"cool",short_names:["cool"],text:null,texts:null,category:"Symbols",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lightning:{name:"Cloud with Lightning",unified:"1F329",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f329.png",sheet_x:6,sheet_y:19,short_name:"lightning",short_names:["lightning","lightning_cloud"],text:null,texts:null,category:"Nature",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mk":{name:"Regional Indicator Symbol Letters Mk",unified:"1F1F2-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f0.png",sheet_x:36,sheet_y:18,short_name:"flag-mk",short_names:["flag-mk"],text:null,texts:null,category:"Flags",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},cop:{name:"Police Officer",unified:"1F46E",variations:[],docomo:null,au:"E5DD",softbank:"E152",google:"FE1A1",image:"1f46e.png",sheet_x:16,sheet_y:36,short_name:"cop",short_names:["cop"],text:null,texts:null,category:"People",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F46E-1F3FB":{unified:"1F46E-1F3FB",image:"1f46e-1f3fb.png",sheet_x:16,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FC":{unified:"1F46E-1F3FC",image:"1f46e-1f3fc.png",sheet_x:16,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FD":{unified:"1F46E-1F3FD",image:"1f46e-1f3fd.png",sheet_x:16,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FE":{unified:"1F46E-1F3FE",image:"1f46e-1f3fe.png",sheet_x:16,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FF":{unified:"1F46E-1F3FF",image:"1f46e-1f3ff.png",sheet_x:17,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-mg":{name:"Regional Indicator Symbol Letters Mg",unified:"1F1F2-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ec.png",sheet_x:36,sheet_y:16,short_name:"flag-mg",short_names:["flag-mg"],text:null,texts:null,category:"Flags",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},date:{name:"Calendar",unified:"1F4C5",variations:[],docomo:null,au:"E563",softbank:null,google:"FE542",image:"1f4c5.png",sheet_x:21,sheet_y:8,short_name:"date",short_names:["date"],text:null,texts:null,category:"Objects",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"new":{name:"Squared New",unified:"1F195",variations:[],docomo:"E6DD",au:"E5B5",softbank:"E212",google:"FEB36",image:"1f195.png",sheet_x:5,sheet_y:0,short_name:"new",short_names:["new"],text:null,texts:null,category:"Symbols",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},zap:{name:"High Voltage Sign",unified:"26A1",variations:["26A1-FE0F"],docomo:"E642",au:"E487",softbank:"E13D",google:"FE004",image:"26a1.png",sheet_x:2,sheet_y:13,short_name:"zap",short_names:["zap"],text:null,texts:null,category:"Nature",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},construction_worker:{name:"Construction Worker",unified:"1F477",variations:[],docomo:null,au:"EB19",softbank:"E51B",google:"FE1AA",image:"1f477.png",sheet_x:18,sheet_y:3,short_name:"construction_worker",short_names:["construction_worker"],text:null,texts:null,category:"People",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F477-1F3FB":{unified:"1F477-1F3FB",image:"1f477-1f3fb.png",sheet_x:18,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FC":{unified:"1F477-1F3FC",image:"1f477-1f3fc.png",sheet_x:18,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FD":{unified:"1F477-1F3FD",image:"1f477-1f3fd.png",sheet_x:18,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FE":{unified:"1F477-1F3FE",image:"1f477-1f3fe.png",sheet_x:18,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FF":{unified:"1F477-1F3FF",image:"1f477-1f3ff.png",sheet_x:18,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},guardsman:{name:"Guardsman",unified:"1F482",variations:[],docomo:null,au:null,softbank:"E51E",google:"FE1B5",image:"1f482.png",sheet_x:18,sheet_y:34,short_name:"guardsman",short_names:["guardsman"],text:null,texts:null,category:"People",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F482-1F3FB":{unified:"1F482-1F3FB",image:"1f482-1f3fb.png",sheet_x:18,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FC":{unified:"1F482-1F3FC",image:"1f482-1f3fc.png",sheet_x:18,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FD":{unified:"1F482-1F3FD",image:"1f482-1f3fd.png",sheet_x:18,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FE":{unified:"1F482-1F3FE",image:"1f482-1f3fe.png",sheet_x:18,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FF":{unified:"1F482-1F3FF",image:"1f482-1f3ff.png",sheet_x:18,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},fire:{name:"Fire",unified:"1F525",variations:[],docomo:null,au:"E47B",softbank:"E11D",google:"FE4F6",image:"1f525.png",sheet_x:23,sheet_y:21,short_name:"fire",short_names:["fire"],text:null,texts:null,category:"Nature",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},free:{name:"Squared Free",unified:"1F193",variations:[],docomo:"E6D7",au:"E578",softbank:null,google:"FEB21",image:"1f193.png",sheet_x:4,sheet_y:39,short_name:"free",short_names:["free"],text:null,texts:null,category:"Symbols",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mw":{name:"Regional Indicator Symbol Letters Mw",unified:"1F1F2-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fc.png",sheet_x:36,sheet_y:30,short_name:"flag-mw",short_names:["flag-mw"],text:null,texts:null,category:"Flags",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},calendar:{name:"Tear-off Calendar",unified:"1F4C6",variations:[],docomo:null,au:"E56A",softbank:null,google:"FE549",image:"1f4c6.png",sheet_x:21,sheet_y:9,short_name:"calendar",short_names:["calendar"],text:null,texts:null,category:"Objects",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},spiral_calendar_pad:{name:"Spiral Calendar Pad",unified:"1F5D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d3.png",sheet_x:26,sheet_y:0,short_name:"spiral_calendar_pad",short_names:["spiral_calendar_pad"],text:null,texts:null,category:"Objects",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},boom:{name:"Collision Symbol",unified:"1F4A5",variations:[],docomo:"E705",au:"E5B0",softbank:null,google:"FEB5A",image:"1f4a5.png",sheet_x:20,sheet_y:12,short_name:"boom",short_names:["boom","collision"],text:null,texts:null,category:"Nature",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-my":{name:"Regional Indicator Symbol Letters My",unified:"1F1F2-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fe.png",sheet_x:36,sheet_y:32,short_name:"flag-my",short_names:["flag-my"],text:null,texts:null,category:"Flags",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},zero:{name:"Keycap 0",unified:"0030-20E3",variations:["0030-FE0F-20E3"],docomo:"E6EB",au:"E5AC",softbank:"E225",google:"FE837",image:"0030-20e3.png",sheet_x:32,sheet_y:23,short_name:"zero",short_names:["zero"],text:null,texts:null,category:"Symbols",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sleuth_or_spy:{name:"Sleuth or Spy",unified:"1F575",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f575.png",sheet_x:24,sheet_y:39,short_name:"sleuth_or_spy",short_names:["sleuth_or_spy"],text:null,texts:null,category:"People",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F575-1F3FB":{unified:"1F575-1F3FB",image:"1f575-1f3fb.png",sheet_x:24,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FC":{unified:"1F575-1F3FC",image:"1f575-1f3fc.png",sheet_x:25,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FD":{unified:"1F575-1F3FD",image:"1f575-1f3fd.png",sheet_x:25,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FE":{unified:"1F575-1F3FE",image:"1f575-1f3fe.png",sheet_x:25,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0 -},"1F575-1F3FF":{unified:"1F575-1F3FF",image:"1f575-1f3ff.png",sheet_x:25,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0}}},one:{name:"Keycap 1",unified:"0031-20E3",variations:["0031-FE0F-20E3"],docomo:"E6E2",au:"E522",softbank:"E21C",google:"FE82E",image:"0031-20e3.png",sheet_x:32,sheet_y:24,short_name:"one",short_names:["one"],text:null,texts:null,category:"Symbols",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},santa:{name:"Father Christmas",unified:"1F385",variations:[],docomo:null,au:"EAF0",softbank:"E448",google:"FE513",image:"1f385.png",sheet_x:8,sheet_y:29,short_name:"santa",short_names:["santa"],text:null,texts:null,category:"People",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F385-1F3FB":{unified:"1F385-1F3FB",image:"1f385-1f3fb.png",sheet_x:8,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FC":{unified:"1F385-1F3FC",image:"1f385-1f3fc.png",sheet_x:8,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FD":{unified:"1F385-1F3FD",image:"1f385-1f3fd.png",sheet_x:8,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FE":{unified:"1F385-1F3FE",image:"1f385-1f3fe.png",sheet_x:8,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FF":{unified:"1F385-1F3FF",image:"1f385-1f3ff.png",sheet_x:8,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},card_index:{name:"Card Index",unified:"1F4C7",variations:[],docomo:"E683",au:"E56C",softbank:"E148",google:"FE54D",image:"1f4c7.png",sheet_x:21,sheet_y:10,short_name:"card_index",short_names:["card_index"],text:null,texts:null,category:"Objects",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snowflake:{name:"Snowflake",unified:"2744",variations:["2744-FE0F"],docomo:null,au:"E48A",softbank:null,google:"FE00E",image:"2744.png",sheet_x:4,sheet_y:1,short_name:"snowflake",short_names:["snowflake"],text:null,texts:null,category:"Nature",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mv":{name:"Regional Indicator Symbol Letters Mv",unified:"1F1F2-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fb.png",sheet_x:36,sheet_y:29,short_name:"flag-mv",short_names:["flag-mv"],text:null,texts:null,category:"Flags",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snow_cloud:{name:"Cloud with Snow",unified:"1F328",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f328.png",sheet_x:6,sheet_y:18,short_name:"snow_cloud",short_names:["snow_cloud"],text:null,texts:null,category:"Nature",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},angel:{name:"Baby Angel",unified:"1F47C",variations:[],docomo:null,au:"E5BF",softbank:"E04E",google:"FE1AF",image:"1f47c.png",sheet_x:18,sheet_y:18,short_name:"angel",short_names:["angel"],text:null,texts:null,category:"People",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F47C-1F3FB":{unified:"1F47C-1F3FB",image:"1f47c-1f3fb.png",sheet_x:18,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FC":{unified:"1F47C-1F3FC",image:"1f47c-1f3fc.png",sheet_x:18,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FD":{unified:"1F47C-1F3FD",image:"1f47c-1f3fd.png",sheet_x:18,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FE":{unified:"1F47C-1F3FE",image:"1f47c-1f3fe.png",sheet_x:18,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FF":{unified:"1F47C-1F3FF",image:"1f47c-1f3ff.png",sheet_x:18,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},two:{name:"Keycap 2",unified:"0032-20E3",variations:["0032-FE0F-20E3"],docomo:"E6E3",au:"E523",softbank:"E21D",google:"FE82F",image:"0032-20e3.png",sheet_x:32,sheet_y:25,short_name:"two",short_names:["two"],text:null,texts:null,category:"Symbols",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},card_file_box:{name:"Card File Box",unified:"1F5C3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c3.png",sheet_x:25,sheet_y:37,short_name:"card_file_box",short_names:["card_file_box"],text:null,texts:null,category:"Objects",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ml":{name:"Regional Indicator Symbol Letters Ml",unified:"1F1F2-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f1.png",sheet_x:36,sheet_y:19,short_name:"flag-ml",short_names:["flag-ml"],text:null,texts:null,category:"Flags",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},three:{name:"Keycap 3",unified:"0033-20E3",variations:["0033-FE0F-20E3"],docomo:"E6E4",au:"E524",softbank:"E21E",google:"FE830",image:"0033-20e3.png",sheet_x:32,sheet_y:26,short_name:"three",short_names:["three"],text:null,texts:null,category:"Symbols",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},princess:{name:"Princess",unified:"1F478",variations:[],docomo:null,au:"EB1A",softbank:"E51C",google:"FE1AB",image:"1f478.png",sheet_x:18,sheet_y:9,short_name:"princess",short_names:["princess"],text:null,texts:null,category:"People",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F478-1F3FB":{unified:"1F478-1F3FB",image:"1f478-1f3fb.png",sheet_x:18,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FC":{unified:"1F478-1F3FC",image:"1f478-1f3fc.png",sheet_x:18,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FD":{unified:"1F478-1F3FD",image:"1f478-1f3fd.png",sheet_x:18,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FE":{unified:"1F478-1F3FE",image:"1f478-1f3fe.png",sheet_x:18,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FF":{unified:"1F478-1F3FF",image:"1f478-1f3ff.png",sheet_x:18,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},snowman:{name:"Snowman",unified:"2603",variations:["2603-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2603.png",sheet_x:1,sheet_y:3,short_name:"snowman",short_names:["snowman"],text:null,texts:null,category:"Nature",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ballot_box_with_ballot:{name:"Ballot Box with Ballot",unified:"1F5F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5f3.png",sheet_x:26,sheet_y:8,short_name:"ballot_box_with_ballot",short_names:["ballot_box_with_ballot"],text:null,texts:null,category:"Objects",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mt":{name:"Regional Indicator Symbol Letters Mt",unified:"1F1F2-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f9.png",sheet_x:36,sheet_y:27,short_name:"flag-mt",short_names:["flag-mt"],text:null,texts:null,category:"Flags",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},file_cabinet:{name:"File Cabinet",unified:"1F5C4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c4.png",sheet_x:25,sheet_y:38,short_name:"file_cabinet",short_names:["file_cabinet"],text:null,texts:null,category:"Objects",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bride_with_veil:{name:"Bride with Veil",unified:"1F470",variations:[],docomo:null,au:"EAE9",softbank:null,google:"FE1A3",image:"1f470.png",sheet_x:17,sheet_y:2,short_name:"bride_with_veil",short_names:["bride_with_veil"],text:null,texts:null,category:"People",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F470-1F3FB":{unified:"1F470-1F3FB",image:"1f470-1f3fb.png",sheet_x:17,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FC":{unified:"1F470-1F3FC",image:"1f470-1f3fc.png",sheet_x:17,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FD":{unified:"1F470-1F3FD",image:"1f470-1f3fd.png",sheet_x:17,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FE":{unified:"1F470-1F3FE",image:"1f470-1f3fe.png",sheet_x:17,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FF":{unified:"1F470-1F3FF",image:"1f470-1f3ff.png",sheet_x:17,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-mh":{name:"Regional Indicator Symbol Letters Mh",unified:"1F1F2-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ed.png",sheet_x:36,sheet_y:17,short_name:"flag-mh",short_names:["flag-mh"],text:null,texts:null,category:"Flags",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},snowman_without_snow:{name:"Snowman Without Snow",unified:"26C4",variations:["26C4-FE0F"],docomo:"E641",au:"E485",softbank:"E048",google:"FE003",image:"26c4.png",sheet_x:2,sheet_y:20,short_name:"snowman_without_snow",short_names:["snowman_without_snow"],text:null,texts:null,category:"Nature",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},four:{name:"Keycap 4",unified:"0034-20E3",variations:["0034-FE0F-20E3"],docomo:"E6E5",au:"E525",softbank:"E21F",google:"FE831",image:"0034-20e3.png",sheet_x:32,sheet_y:27,short_name:"four",short_names:["four"],text:null,texts:null,category:"Symbols",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clipboard:{name:"Clipboard",unified:"1F4CB",variations:[],docomo:"E689",au:"E564",softbank:"E301",google:"FE548",image:"1f4cb.png",sheet_x:21,sheet_y:14,short_name:"clipboard",short_names:["clipboard"],text:null,texts:null,category:"Objects",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wind_blowing_face:{name:"Wind Blowing Face",unified:"1F32C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32c.png",sheet_x:6,sheet_y:22,short_name:"wind_blowing_face",short_names:["wind_blowing_face"],text:null,texts:null,category:"Nature",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},five:{name:"Keycap 5",unified:"0035-20E3",variations:["0035-FE0F-20E3"],docomo:"E6E6",au:"E526",softbank:"E220",google:"FE832",image:"0035-20e3.png",sheet_x:32,sheet_y:28,short_name:"five",short_names:["five"],text:null,texts:null,category:"Symbols",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},walking:{name:"Pedestrian",unified:"1F6B6",variations:[],docomo:"E733",au:"EB72",softbank:"E201",google:"FE7F0",image:"1f6b6.png",sheet_x:30,sheet_y:40,short_name:"walking",short_names:["walking"],text:null,texts:null,category:"People",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B6-1F3FB":{unified:"1F6B6-1F3FB",image:"1f6b6-1f3fb.png",sheet_x:31,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FC":{unified:"1F6B6-1F3FC",image:"1f6b6-1f3fc.png",sheet_x:31,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FD":{unified:"1F6B6-1F3FD",image:"1f6b6-1f3fd.png",sheet_x:31,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FE":{unified:"1F6B6-1F3FE",image:"1f6b6-1f3fe.png",sheet_x:31,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FF":{unified:"1F6B6-1F3FF",image:"1f6b6-1f3ff.png",sheet_x:31,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-mq":{name:"Regional Indicator Symbol Letters Mq",unified:"1F1F2-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f6.png",sheet_x:36,sheet_y:24,short_name:"flag-mq",short_names:["flag-mq"],text:null,texts:null,category:"Flags",sort_order:139,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},six:{name:"Keycap 6",unified:"0036-20E3",variations:["0036-FE0F-20E3"],docomo:"E6E7",au:"E527",softbank:"E221",google:"FE833",image:"0036-20e3.png",sheet_x:32,sheet_y:29,short_name:"six",short_names:["six"],text:null,texts:null,category:"Symbols",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dash:{name:"Dash Symbol",unified:"1F4A8",variations:[],docomo:"E708",au:"E4F4",softbank:"E330",google:"FEB5D",image:"1f4a8.png",sheet_x:20,sheet_y:15,short_name:"dash",short_names:["dash"],text:null,texts:null,category:"Nature",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mr":{name:"Regional Indicator Symbol Letters Mr",unified:"1F1F2-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f7.png",sheet_x:36,sheet_y:25,short_name:"flag-mr",short_names:["flag-mr"],text:null,texts:null,category:"Flags",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},runner:{name:"Runner",unified:"1F3C3",variations:[],docomo:"E733",au:"E46B",softbank:"E115",google:"FE7D9",image:"1f3c3.png",sheet_x:10,sheet_y:9,short_name:"runner",short_names:["runner","running"],text:null,texts:null,category:"People",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3C3-1F3FB":{unified:"1F3C3-1F3FB",image:"1f3c3-1f3fb.png",sheet_x:10,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FC":{unified:"1F3C3-1F3FC",image:"1f3c3-1f3fc.png",sheet_x:10,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FD":{unified:"1F3C3-1F3FD",image:"1f3c3-1f3fd.png",sheet_x:10,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FE":{unified:"1F3C3-1F3FE",image:"1f3c3-1f3fe.png",sheet_x:10,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FF":{unified:"1F3C3-1F3FF",image:"1f3c3-1f3ff.png",sheet_x:10,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},spiral_note_pad:{name:"Spiral Note Pad",unified:"1F5D2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d2.png",sheet_x:25,sheet_y:40,short_name:"spiral_note_pad",short_names:["spiral_note_pad"],text:null,texts:null,category:"Objects",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},seven:{name:"Keycap 7",unified:"0037-20E3",variations:["0037-FE0F-20E3"],docomo:"E6E8",au:"E528",softbank:"E222",google:"FE834",image:"0037-20e3.png",sheet_x:32,sheet_y:30,short_name:"seven",short_names:["seven"],text:null,texts:null,category:"Symbols",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tornado:{name:"Cloud with Tornado",unified:"1F32A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32a.png",sheet_x:6,sheet_y:20,short_name:"tornado",short_names:["tornado","tornado_cloud"],text:null,texts:null,category:"Nature",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},file_folder:{name:"File Folder",unified:"1F4C1",variations:[],docomo:null,au:"E58F",softbank:null,google:"FE543",image:"1f4c1.png",sheet_x:21,sheet_y:4,short_name:"file_folder",short_names:["file_folder"],text:null,texts:null,category:"Objects",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mu":{name:"Regional Indicator Symbol Letters Mu",unified:"1F1F2-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fa.png",sheet_x:36,sheet_y:28,short_name:"flag-mu",short_names:["flag-mu"],text:null,texts:null,category:"Flags",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dancer:{name:"Dancer",unified:"1F483",variations:[],docomo:null,au:"EB1C",softbank:"E51F",google:"FE1B6",image:"1f483.png",sheet_x:18,sheet_y:40,short_name:"dancer",short_names:["dancer"],text:null,texts:null,category:"People",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F483-1F3FB":{unified:"1F483-1F3FB",image:"1f483-1f3fb.png",sheet_x:19,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FC":{unified:"1F483-1F3FC",image:"1f483-1f3fc.png",sheet_x:19,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FD":{unified:"1F483-1F3FD",image:"1f483-1f3fd.png",sheet_x:19,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FE":{unified:"1F483-1F3FE",image:"1f483-1f3fe.png",sheet_x:19,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FF":{unified:"1F483-1F3FF",image:"1f483-1f3ff.png",sheet_x:19,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},open_file_folder:{name:"Open File Folder",unified:"1F4C2",variations:[],docomo:null,au:"E590",softbank:null,google:"FE544",image:"1f4c2.png",sheet_x:21,sheet_y:5,short_name:"open_file_folder",short_names:["open_file_folder"],text:null,texts:null,category:"Objects",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eight:{name:"Keycap 8",unified:"0038-20E3",variations:["0038-FE0F-20E3"],docomo:"E6E9",au:"E529",softbank:"E223",google:"FE835",image:"0038-20e3.png",sheet_x:32,sheet_y:31,short_name:"eight",short_names:["eight"],text:null,texts:null,category:"Symbols",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fog:{name:"Fog",unified:"1F32B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32b.png",sheet_x:6,sheet_y:21,short_name:"fog",short_names:["fog"],text:null,texts:null,category:"Nature",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dancers:{name:"Woman with Bunny Ears",unified:"1F46F",variations:[],docomo:null,au:"EADB",softbank:"E429",google:"FE1A2",image:"1f46f.png",sheet_x:17,sheet_y:1,short_name:"dancers",short_names:["dancers"],text:null,texts:null,category:"People",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-yt":{name:"Regional Indicator Symbol Letters Yt",unified:"1F1FE-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fe-1f1f9.png",sheet_x:38,sheet_y:40,short_name:"flag-yt",short_names:["flag-yt"],text:null,texts:null,category:"Flags",sort_order:142,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"flag-mx":{name:"Regional Indicator Symbol Letters Mx",unified:"1F1F2-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fd.png",sheet_x:36,sheet_y:31,short_name:"flag-mx",short_names:["flag-mx"],text:null,texts:null,category:"Flags",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},card_index_dividers:{name:"Card Index Dividers",unified:"1F5C2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c2.png",sheet_x:25,sheet_y:36,short_name:"card_index_dividers",short_names:["card_index_dividers"],text:null,texts:null,category:"Objects",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},couple:{name:"Man and Woman Holding Hands",unified:"1F46B",variations:[],docomo:null,au:null,softbank:"E428",google:"FE1A0",image:"1f46b.png",sheet_x:16,sheet_y:33,short_name:"couple",short_names:["couple","man_and_woman_holding_hands"],text:null,texts:null,category:"People",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},umbrella:{name:"Umbrella",unified:"2602",variations:["2602-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2602.png",sheet_x:1,sheet_y:2,short_name:"umbrella",short_names:["umbrella"],text:null,texts:null,category:"Nature",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},nine:{name:"Keycap 9",unified:"0039-20E3",variations:["0039-FE0F-20E3"],docomo:"E6EA",au:"E52A",softbank:"E224",google:"FE836",image:"0039-20e3.png",sheet_x:32,sheet_y:32,short_name:"nine",short_names:["nine"],text:null,texts:null,category:"Symbols",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rolled_up_newspaper:{name:"Rolled-Up Newspaper",unified:"1F5DE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5de.png",sheet_x:26,sheet_y:3,short_name:"rolled_up_newspaper",short_names:["rolled_up_newspaper"],text:null,texts:null,category:"Objects",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-fm":{name:"Regional Indicator Symbol Letters Fm",unified:"1F1EB-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f2.png",sheet_x:34,sheet_y:28,short_name:"flag-fm",short_names:["flag-fm"],text:null,texts:null,category:"Flags",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},umbrella_with_rain_drops:{name:"Umbrella with Rain Drops",unified:"2614",variations:["2614-FE0F"],docomo:"E640",au:"E48C",softbank:"E04B",google:"FE002",image:"2614.png",sheet_x:1,sheet_y:7,short_name:"umbrella_with_rain_drops",short_names:["umbrella_with_rain_drops"],text:null,texts:null,category:"Nature",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},two_men_holding_hands:{name:"Two Men Holding Hands",unified:"1F46C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f46c.png",sheet_x:16,sheet_y:34,short_name:"two_men_holding_hands",short_names:["two_men_holding_hands"],text:null,texts:null,category:"People",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},keycap_ten:{name:"Keycap Ten",unified:"1F51F",variations:[],docomo:null,au:"E52B",softbank:null,google:"FE83B",image:"1f51f.png",sheet_x:23,sheet_y:15,short_name:"keycap_ten",short_names:["keycap_ten"],text:null,texts:null,category:"Symbols",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},newspaper:{name:"Newspaper",unified:"1F4F0",variations:[],docomo:null,au:"E58B",softbank:null,google:"FE822",image:"1f4f0.png",sheet_x:22,sheet_y:10,short_name:"newspaper",short_names:["newspaper"],text:null,texts:null,category:"Objects",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},keycap_star:{name:"Keycap Star",unified:"002A-20E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"002a-20e3.png",sheet_x:32,sheet_y:22,short_name:"keycap_star",short_names:["keycap_star"],text:null,texts:null,category:"Symbols",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-md":{name:"Regional Indicator Symbol Letters Md",unified:"1F1F2-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e9.png",sheet_x:36,sheet_y:13,short_name:"flag-md",short_names:["flag-md"],text:null,texts:null,category:"Flags",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},two_women_holding_hands:{name:"Two Women Holding Hands",unified:"1F46D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f46d.png",sheet_x:16,sheet_y:35,short_name:"two_women_holding_hands",short_names:["two_women_holding_hands"],text:null,texts:null,category:"People",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},droplet:{name:"Droplet",unified:"1F4A7",variations:[],docomo:"E707",au:"E4E6",softbank:"E331",google:"FEB5C",image:"1f4a7.png",sheet_x:20,sheet_y:14,short_name:"droplet",short_names:["droplet"],text:null,texts:null,category:"Nature",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bow:{name:"Person Bowing Deeply",unified:"1F647",variations:[],docomo:null,au:"EAD9",softbank:"E426",google:"FE353",image:"1f647.png",sheet_x:28,sheet_y:14,short_name:"bow",short_names:["bow"],text:null,texts:null,category:"People",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F647-1F3FB":{unified:"1F647-1F3FB",image:"1f647-1f3fb.png",sheet_x:28,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FC":{unified:"1F647-1F3FC",image:"1f647-1f3fc.png",sheet_x:28,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FD":{unified:"1F647-1F3FD",image:"1f647-1f3fd.png",sheet_x:28,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FE":{unified:"1F647-1F3FE",image:"1f647-1f3fe.png",sheet_x:28,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FF":{unified:"1F647-1F3FF",image:"1f647-1f3ff.png",sheet_x:28,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},notebook:{name:"Notebook",unified:"1F4D3",variations:[],docomo:"E683",au:"E56B",softbank:"E148",google:"FE545",image:"1f4d3.png",sheet_x:21,sheet_y:22,short_name:"notebook",short_names:["notebook"],text:null,texts:null,category:"Objects",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sweat_drops:{name:"Splashing Sweat Symbol",unified:"1F4A6",variations:[],docomo:"E706",au:"E5B1",softbank:"E331",google:"FEB5B",image:"1f4a6.png",sheet_x:20,sheet_y:13,short_name:"sweat_drops",short_names:["sweat_drops"],text:null,texts:null,category:"Nature",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mc":{name:"Regional Indicator Symbol Letters Mc",unified:"1F1F2-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e8.png",sheet_x:36,sheet_y:12,short_name:"flag-mc",short_names:["flag-mc"],text:null,texts:null,category:"Flags",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},closed_book:{name:"Closed Book",unified:"1F4D5",variations:[],docomo:"E683",au:"E568",softbank:"E148",google:"FE502",image:"1f4d5.png",sheet_x:21,sheet_y:24,short_name:"closed_book",short_names:["closed_book"],text:null,texts:null,category:"Objects",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mn":{name:"Regional Indicator Symbol Letters Mn",unified:"1F1F2-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f3.png",sheet_x:36,sheet_y:21,short_name:"flag-mn",short_names:["flag-mn"],text:null,texts:null,category:"Flags",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_forward:{name:"Black Right-Pointing Triangle",unified:"25B6",variations:["25B6-FE0F"],docomo:null,au:"E52E",softbank:"E23A",google:"FEAFC",image:"25b6.png",sheet_x:0,sheet_y:35,short_name:"arrow_forward",short_names:["arrow_forward"],text:null,texts:null,category:"Symbols",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},information_desk_person:{name:"Information Desk Person",unified:"1F481",variations:[],docomo:null,au:null,softbank:"E253",google:"FE1B4",image:"1f481.png",sheet_x:18,sheet_y:28,short_name:"information_desk_person",short_names:["information_desk_person"],text:null,texts:null,category:"People",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F481-1F3FB":{unified:"1F481-1F3FB",image:"1f481-1f3fb.png",sheet_x:18,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FC":{unified:"1F481-1F3FC",image:"1f481-1f3fc.png",sheet_x:18,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FD":{unified:"1F481-1F3FD",image:"1f481-1f3fd.png",sheet_x:18,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FE":{unified:"1F481-1F3FE",image:"1f481-1f3fe.png",sheet_x:18,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FF":{unified:"1F481-1F3FF",image:"1f481-1f3ff.png",sheet_x:18,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},ocean:{name:"Water Wave",unified:"1F30A",variations:[],docomo:"E73F",au:"EB7C",softbank:"E43E",google:"FE038",image:"1f30a.png",sheet_x:5,sheet_y:31,short_name:"ocean",short_names:["ocean"],text:null,texts:null,category:"Nature",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},double_vertical_bar:{name:"Double Vertical Bar",unified:"23F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f8.png",sheet_x:0,sheet_y:29,short_name:"double_vertical_bar",short_names:["double_vertical_bar"],text:null,texts:null,category:"Symbols",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},green_book:{name:"Green Book",unified:"1F4D7",variations:[],docomo:"E683",au:"E565",softbank:"E148",google:"FE4FF",image:"1f4d7.png",sheet_x:21,sheet_y:26,short_name:"green_book",short_names:["green_book"],text:null,texts:null,category:"Objects",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_good:{name:"Face with No Good Gesture",unified:"1F645",variations:[],docomo:"E72F",au:"EAD7",softbank:"E423",google:"FE351",image:"1f645.png",sheet_x:28,sheet_y:2,short_name:"no_good",short_names:["no_good"],text:null,texts:null,category:"People",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F645-1F3FB":{unified:"1F645-1F3FB",image:"1f645-1f3fb.png",sheet_x:28,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FC":{unified:"1F645-1F3FC",image:"1f645-1f3fc.png",sheet_x:28,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FD":{unified:"1F645-1F3FD",image:"1f645-1f3fd.png",sheet_x:28,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FE":{unified:"1F645-1F3FE",image:"1f645-1f3fe.png",sheet_x:28,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FF":{unified:"1F645-1F3FF",image:"1f645-1f3ff.png",sheet_x:28,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},"flag-me":{name:"Regional Indicator Symbol Letters Me",unified:"1F1F2-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ea.png",sheet_x:36,sheet_y:14,short_name:"flag-me",short_names:["flag-me"],text:null,texts:null,category:"Flags",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ms":{name:"Regional Indicator Symbol Letters Ms",unified:"1F1F2-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f8.png",sheet_x:36,sheet_y:26,short_name:"flag-ms",short_names:["flag-ms"],text:null,texts:null,category:"Flags",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ok_woman:{ -name:"Face with Ok Gesture",unified:"1F646",variations:[],docomo:"E70B",au:"EAD8",softbank:"E424",google:"FE352",image:"1f646.png",sheet_x:28,sheet_y:8,short_name:"ok_woman",short_names:["ok_woman"],text:null,texts:null,category:"People",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F646-1F3FB":{unified:"1F646-1F3FB",image:"1f646-1f3fb.png",sheet_x:28,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FC":{unified:"1F646-1F3FC",image:"1f646-1f3fc.png",sheet_x:28,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FD":{unified:"1F646-1F3FD",image:"1f646-1f3fd.png",sheet_x:28,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FE":{unified:"1F646-1F3FE",image:"1f646-1f3fe.png",sheet_x:28,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FF":{unified:"1F646-1F3FF",image:"1f646-1f3ff.png",sheet_x:28,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},blue_book:{name:"Blue Book",unified:"1F4D8",variations:[],docomo:"E683",au:"E566",softbank:"E148",google:"FE500",image:"1f4d8.png",sheet_x:21,sheet_y:27,short_name:"blue_book",short_names:["blue_book"],text:null,texts:null,category:"Objects",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_right_pointing_triangle_with_double_vertical_bar:{name:"Black Right-Pointing Triangle with Double Vertical Bar",unified:"23EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ef.png",sheet_x:0,sheet_y:24,short_name:"black_right_pointing_triangle_with_double_vertical_bar",short_names:["black_right_pointing_triangle_with_double_vertical_bar"],text:null,texts:null,category:"Symbols",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},raising_hand:{name:"Happy Person Raising One Hand",unified:"1F64B",variations:[],docomo:null,au:"EB85",softbank:"E012",google:"FE357",image:"1f64b.png",sheet_x:28,sheet_y:23,short_name:"raising_hand",short_names:["raising_hand"],text:null,texts:null,category:"People",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64B-1F3FB":{unified:"1F64B-1F3FB",image:"1f64b-1f3fb.png",sheet_x:28,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FC":{unified:"1F64B-1F3FC",image:"1f64b-1f3fc.png",sheet_x:28,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FD":{unified:"1F64B-1F3FD",image:"1f64b-1f3fd.png",sheet_x:28,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FE":{unified:"1F64B-1F3FE",image:"1f64b-1f3fe.png",sheet_x:28,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FF":{unified:"1F64B-1F3FF",image:"1f64b-1f3ff.png",sheet_x:28,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},black_square_for_stop:{name:"Black Square for Stop",unified:"23F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f9.png",sheet_x:0,sheet_y:30,short_name:"black_square_for_stop",short_names:["black_square_for_stop"],text:null,texts:null,category:"Symbols",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},orange_book:{name:"Orange Book",unified:"1F4D9",variations:[],docomo:"E683",au:"E567",softbank:"E148",google:"FE501",image:"1f4d9.png",sheet_x:21,sheet_y:28,short_name:"orange_book",short_names:["orange_book"],text:null,texts:null,category:"Objects",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ma":{name:"Regional Indicator Symbol Letters Ma",unified:"1F1F2-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e6.png",sheet_x:36,sheet_y:11,short_name:"flag-ma",short_names:["flag-ma"],text:null,texts:null,category:"Flags",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mz":{name:"Regional Indicator Symbol Letters Mz",unified:"1F1F2-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ff.png",sheet_x:36,sheet_y:33,short_name:"flag-mz",short_names:["flag-mz"],text:null,texts:null,category:"Flags",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},notebook_with_decorative_cover:{name:"Notebook with Decorative Cover",unified:"1F4D4",variations:[],docomo:"E683",au:"E49D",softbank:"E148",google:"FE547",image:"1f4d4.png",sheet_x:21,sheet_y:23,short_name:"notebook_with_decorative_cover",short_names:["notebook_with_decorative_cover"],text:null,texts:null,category:"Objects",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},person_with_pouting_face:{name:"Person with Pouting Face",unified:"1F64E",variations:[],docomo:"E6F1",au:"EB88",softbank:"E416",google:"FE35A",image:"1f64e.png",sheet_x:29,sheet_y:0,short_name:"person_with_pouting_face",short_names:["person_with_pouting_face"],text:null,texts:null,category:"People",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64E-1F3FB":{unified:"1F64E-1F3FB",image:"1f64e-1f3fb.png",sheet_x:29,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FC":{unified:"1F64E-1F3FC",image:"1f64e-1f3fc.png",sheet_x:29,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FD":{unified:"1F64E-1F3FD",image:"1f64e-1f3fd.png",sheet_x:29,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FE":{unified:"1F64E-1F3FE",image:"1f64e-1f3fe.png",sheet_x:29,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FF":{unified:"1F64E-1F3FF",image:"1f64e-1f3ff.png",sheet_x:29,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},eject:{name:"Eject Symbol",unified:"23CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23cf.png",sheet_x:0,sheet_y:17,short_name:"eject",short_names:["eject"],text:null,texts:null,category:"Symbols",sort_order:151,has_img_apple:!1,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!1},black_circle_for_record:{name:"Black Circle for Record",unified:"23FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23fa.png",sheet_x:0,sheet_y:31,short_name:"black_circle_for_record",short_names:["black_circle_for_record"],text:null,texts:null,category:"Symbols",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mm":{name:"Regional Indicator Symbol Letters Mm",unified:"1F1F2-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f2.png",sheet_x:36,sheet_y:20,short_name:"flag-mm",short_names:["flag-mm"],text:null,texts:null,category:"Flags",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},person_frowning:{name:"Person Frowning",unified:"1F64D",variations:[],docomo:"E6F3",au:"EB87",softbank:"E403",google:"FE359",image:"1f64d.png",sheet_x:28,sheet_y:35,short_name:"person_frowning",short_names:["person_frowning"],text:null,texts:null,category:"People",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64D-1F3FB":{unified:"1F64D-1F3FB",image:"1f64d-1f3fb.png",sheet_x:28,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FC":{unified:"1F64D-1F3FC",image:"1f64d-1f3fc.png",sheet_x:28,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FD":{unified:"1F64D-1F3FD",image:"1f64d-1f3fd.png",sheet_x:28,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FE":{unified:"1F64D-1F3FE",image:"1f64d-1f3fe.png",sheet_x:28,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FF":{unified:"1F64D-1F3FF",image:"1f64d-1f3ff.png",sheet_x:28,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},ledger:{name:"Ledger",unified:"1F4D2",variations:[],docomo:"E683",au:"E56E",softbank:"E148",google:"FE54F",image:"1f4d2.png",sheet_x:21,sheet_y:21,short_name:"ledger",short_names:["ledger"],text:null,texts:null,category:"Objects",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-na":{name:"Regional Indicator Symbol Letters Na",unified:"1F1F3-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1e6.png",sheet_x:36,sheet_y:34,short_name:"flag-na",short_names:["flag-na"],text:null,texts:null,category:"Flags",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},haircut:{name:"Haircut",unified:"1F487",variations:[],docomo:"E675",au:"EAA1",softbank:"E31F",google:"FE198",image:"1f487.png",sheet_x:19,sheet_y:18,short_name:"haircut",short_names:["haircut"],text:null,texts:null,category:"People",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F487-1F3FB":{unified:"1F487-1F3FB",image:"1f487-1f3fb.png",sheet_x:19,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FC":{unified:"1F487-1F3FC",image:"1f487-1f3fc.png",sheet_x:19,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FD":{unified:"1F487-1F3FD",image:"1f487-1f3fd.png",sheet_x:19,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FE":{unified:"1F487-1F3FE",image:"1f487-1f3fe.png",sheet_x:19,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FF":{unified:"1F487-1F3FF",image:"1f487-1f3ff.png",sheet_x:19,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},books:{name:"Books",unified:"1F4DA",variations:[],docomo:"E683",au:"E56F",softbank:"E148",google:"FE503",image:"1f4da.png",sheet_x:21,sheet_y:29,short_name:"books",short_names:["books"],text:null,texts:null,category:"Objects",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_right_pointing_double_triangle_with_vertical_bar:{name:"Black Right-Pointing Double Triangle with Vertical Bar",unified:"23ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ed.png",sheet_x:0,sheet_y:22,short_name:"black_right_pointing_double_triangle_with_vertical_bar",short_names:["black_right_pointing_double_triangle_with_vertical_bar"],text:null,texts:null,category:"Symbols",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},book:{name:"Open Book",unified:"1F4D6",variations:[],docomo:"E683",au:"E49F",softbank:"E148",google:"FE546",image:"1f4d6.png",sheet_x:21,sheet_y:25,short_name:"book",short_names:["book","open_book"],text:null,texts:null,category:"Objects",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-nr":{name:"Regional Indicator Symbol Letters Nr",unified:"1F1F3-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f7.png",sheet_x:37,sheet_y:2,short_name:"flag-nr",short_names:["flag-nr"],text:null,texts:null,category:"Flags",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_left_pointing_double_triangle_with_vertical_bar:{name:"Black Left-Pointing Double Triangle with Vertical Bar",unified:"23EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ee.png",sheet_x:0,sheet_y:23,short_name:"black_left_pointing_double_triangle_with_vertical_bar",short_names:["black_left_pointing_double_triangle_with_vertical_bar"],text:null,texts:null,category:"Symbols",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},massage:{name:"Face Massage",unified:"1F486",variations:[],docomo:null,au:"E50B",softbank:"E31E",google:"FE197",image:"1f486.png",sheet_x:19,sheet_y:12,short_name:"massage",short_names:["massage"],text:null,texts:null,category:"People",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F486-1F3FB":{unified:"1F486-1F3FB",image:"1f486-1f3fb.png",sheet_x:19,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FC":{unified:"1F486-1F3FC",image:"1f486-1f3fc.png",sheet_x:19,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FD":{unified:"1F486-1F3FD",image:"1f486-1f3fd.png",sheet_x:19,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FE":{unified:"1F486-1F3FE",image:"1f486-1f3fe.png",sheet_x:19,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FF":{unified:"1F486-1F3FF",image:"1f486-1f3ff.png",sheet_x:19,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}},couple_with_heart:{name:"Couple with Heart",unified:"1F491",variations:[],docomo:"E6ED",au:"EADA",softbank:"E425",google:"FE829",image:"1f491.png",sheet_x:19,sheet_y:33,short_name:"couple_with_heart",short_names:["couple_with_heart"],text:null,texts:null,category:"People",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},fast_forward:{name:"Black Right-Pointing Double Triangle",unified:"23E9",variations:[],docomo:null,au:"E530",softbank:"E23C",google:"FEAFE",image:"23e9.png",sheet_x:0,sheet_y:18,short_name:"fast_forward",short_names:["fast_forward"],text:null,texts:null,category:"Symbols",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-np":{name:"Regional Indicator Symbol Letters Np",unified:"1F1F3-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f5.png",sheet_x:37,sheet_y:1,short_name:"flag-np",short_names:["flag-np"],text:null,texts:null,category:"Flags",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},link:{name:"Link Symbol",unified:"1F517",variations:[],docomo:null,au:"E58A",softbank:null,google:"FEB4B",image:"1f517.png",sheet_x:23,sheet_y:7,short_name:"link",short_names:["link"],text:null,texts:null,category:"Objects",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},paperclip:{name:"Paperclip",unified:"1F4CE",variations:[],docomo:"E730",au:"E4A0",softbank:null,google:"FE53A",image:"1f4ce.png",sheet_x:21,sheet_y:17,short_name:"paperclip",short_names:["paperclip"],text:null,texts:null,category:"Objects",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},rewind:{name:"Black Left-Pointing Double Triangle",unified:"23EA",variations:[],docomo:null,au:"E52F",softbank:"E23D",google:"FEAFF",image:"23ea.png",sheet_x:0,sheet_y:19,short_name:"rewind",short_names:["rewind"],text:null,texts:null,category:"Symbols",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-heart-woman":{name:"Woman Heart Woman",unified:"1F469-200D-2764-FE0F-200D-1F469",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-2764-fe0f-200d-1f469.png",sheet_x:39,sheet_y:19,short_name:"woman-heart-woman",short_names:["woman-heart-woman"],text:null,texts:null,category:"People",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1},"flag-nl":{name:"Regional Indicator Symbol Letters Nl",unified:"1F1F3-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f1.png",sheet_x:36,sheet_y:40,short_name:"flag-nl",short_names:["flag-nl"],text:null,texts:null,category:"Flags",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},linked_paperclips:{name:"Linked Paperclips",unified:"1F587",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f587.png",sheet_x:25,sheet_y:8,short_name:"linked_paperclips",short_names:["linked_paperclips"],text:null,texts:null,category:"Objects",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-heart-man":{name:"Man Heart Man",unified:"1F468-200D-2764-FE0F-200D-1F468",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-2764-fe0f-200d-1f468.png",sheet_x:39,sheet_y:12,short_name:"man-heart-man",short_names:["man-heart-man"],text:null,texts:null,category:"People",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1},"flag-nc":{name:"Regional Indicator Symbol Letters Nc",unified:"1F1F3-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1e8.png",sheet_x:36,sheet_y:35,short_name:"flag-nc",short_names:["flag-nc"],text:null,texts:null,category:"Flags",sort_order:157,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},twisted_rightwards_arrows:{name:"Twisted Rightwards Arrows",unified:"1F500",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f500.png",sheet_x:22,sheet_y:25,short_name:"twisted_rightwards_arrows",short_names:["twisted_rightwards_arrows"],text:null,texts:null,category:"Symbols",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},couplekiss:{name:"Kiss",unified:"1F48F",variations:[],docomo:"E6F9",au:"E5CA",softbank:"E111",google:"FE827",image:"1f48f.png",sheet_x:19,sheet_y:31,short_name:"couplekiss",short_names:["couplekiss"],text:null,texts:null,category:"People",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-nz":{name:"Regional Indicator Symbol Letters Nz",unified:"1F1F3-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ff.png",sheet_x:37,sheet_y:4,short_name:"flag-nz",short_names:["flag-nz"],text:null,texts:null,category:"Flags",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},scissors:{name:"Black Scissors",unified:"2702",variations:["2702-FE0F"],docomo:"E675",au:"E516",softbank:"E313",google:"FE53E",image:"2702.png",sheet_x:3,sheet_y:5,short_name:"scissors",short_names:["scissors"],text:null,texts:null,category:"Objects",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},repeat:{name:"Clockwise Rightwards and Leftwards Open Circle Arrows",unified:"1F501",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f501.png",sheet_x:22,sheet_y:26,short_name:"repeat",short_names:["repeat"],text:null,texts:null,category:"Symbols",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},repeat_one:{name:"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay",unified:"1F502",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f502.png",sheet_x:22,sheet_y:27,short_name:"repeat_one",short_names:["repeat_one"],text:null,texts:null,category:"Symbols",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ni":{name:"Regional Indicator Symbol Letters Ni",unified:"1F1F3-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ee.png",sheet_x:36,sheet_y:39,short_name:"flag-ni",short_names:["flag-ni"],text:null,texts:null,category:"Flags",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-kiss-woman":{name:"Woman Kiss Woman",unified:"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",sheet_x:39,sheet_y:20,short_name:"woman-kiss-woman",short_names:["woman-kiss-woman"],text:null,texts:null,category:"People",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1},triangular_ruler:{name:"Triangular Ruler",unified:"1F4D0",variations:[],docomo:null,au:"E4A2",softbank:null,google:"FE551",image:"1f4d0.png",sheet_x:21,sheet_y:19,short_name:"triangular_ruler",short_names:["triangular_ruler"],text:null,texts:null,category:"Objects",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},straight_ruler:{name:"Straight Ruler",unified:"1F4CF",variations:[],docomo:null,au:"E570",softbank:null,google:"FE550",image:"1f4cf.png",sheet_x:21,sheet_y:18,short_name:"straight_ruler",short_names:["straight_ruler"],text:null,texts:null,category:"Objects",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ne":{name:"Regional Indicator Symbol Letters Ne",unified:"1F1F3-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ea.png",sheet_x:36,sheet_y:36,short_name:"flag-ne",short_names:["flag-ne"],text:null,texts:null,category:"Flags",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-kiss-man":{name:"Man Kiss Man",unified:"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",sheet_x:39,sheet_y:13,short_name:"man-kiss-man",short_names:["man-kiss-man"],text:null,texts:null,category:"People",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1},arrow_backward:{name:"Black Left-Pointing Triangle",unified:"25C0",variations:["25C0-FE0F"],docomo:null,au:"E52D",softbank:"E23B",google:"FEAFD",image:"25c0.png",sheet_x:0,sheet_y:36,short_name:"arrow_backward",short_names:["arrow_backward"],text:null,texts:null,category:"Symbols",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_up_small:{name:"Up-Pointing Small Red Triangle",unified:"1F53C",variations:[],docomo:null,au:"E543",softbank:null,google:"FEB01",image:"1f53c.png",sheet_x:24,sheet_y:3,short_name:"arrow_up_small",short_names:["arrow_up_small"],text:null,texts:null,category:"Symbols",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ng":{name:"Regional Indicator Symbol Letters Ng",unified:"1F1F3-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ec.png",sheet_x:36,sheet_y:38,short_name:"flag-ng",short_names:["flag-ng"],text:null,texts:null,category:"Flags",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},family:{name:"Family",unified:"1F46A",variations:["1F468-200D-1F469-200D-1F466"],docomo:null,au:"E501",softbank:null,google:"FE19F",image:"1f46a.png",sheet_x:16,sheet_y:32,short_name:"family",short_names:["family","man-woman-boy"],text:null,texts:null,category:"People",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pushpin:{name:"Pushpin",unified:"1F4CC",variations:[],docomo:null,au:"E56D",softbank:null,google:"FE54E",image:"1f4cc.png",sheet_x:21,sheet_y:15,short_name:"pushpin",short_names:["pushpin"],text:null,texts:null,category:"Objects",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-woman-girl":{name:"Man Woman Girl",unified:"1F468-200D-1F469-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:9,short_name:"man-woman-girl",short_names:["man-woman-girl"],text:null,texts:null,category:"People",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},round_pushpin:{name:"Round Pushpin",unified:"1F4CD",variations:[],docomo:null,au:"E560",softbank:null,google:"FE53F",image:"1f4cd.png",sheet_x:21,sheet_y:16,short_name:"round_pushpin",short_names:["round_pushpin"],text:null,texts:null,category:"Objects",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_down_small:{name:"Down-Pointing Small Red Triangle",unified:"1F53D",variations:[],docomo:null,au:"E542",softbank:null,google:"FEB00",image:"1f53d.png",sheet_x:24,sheet_y:4,short_name:"arrow_down_small",short_names:["arrow_down_small"],text:null,texts:null,category:"Symbols",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-nu":{name:"Regional Indicator Symbol Letters Nu",unified:"1F1F3-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1fa.png",sheet_x:37,sheet_y:3,short_name:"flag-nu",short_names:["flag-nu"],text:null,texts:null,category:"Flags",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-nf":{name:"Regional Indicator Symbol Letters Nf",unified:"1F1F3-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1eb.png",sheet_x:36,sheet_y:37,short_name:"flag-nf",short_names:["flag-nf"],text:null,texts:null,category:"Flags",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},triangular_flag_on_post:{name:"Triangular Flag on Post",unified:"1F6A9",variations:[],docomo:"E6DE",au:"EB2C",softbank:null,google:"FEB22",image:"1f6a9.png",sheet_x:30,sheet_y:17,short_name:"triangular_flag_on_post",short_names:["triangular_flag_on_post"],text:null,texts:null,category:"Objects",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-woman-girl-boy":{name:"Man Woman Girl Boy",unified:"1F468-200D-1F469-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:10,short_name:"man-woman-girl-boy",short_names:["man-woman-girl-boy"],text:null,texts:null,category:"People",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_double_up:{name:"Black Up-Pointing Double Triangle",unified:"23EB",variations:[],docomo:null,au:"E545",softbank:null,google:"FEB03",image:"23eb.png",sheet_x:0,sheet_y:20,short_name:"arrow_double_up",short_names:["arrow_double_up"],text:null,texts:null,category:"Symbols",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-woman-boy-boy":{name:"Man Woman Boy Boy",unified:"1F468-200D-1F469-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:8,short_name:"man-woman-boy-boy",short_names:["man-woman-boy-boy"],text:null,texts:null,category:"People",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mp":{name:"Regional Indicator Symbol Letters Mp",unified:"1F1F2-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f5.png",sheet_x:36,sheet_y:23,short_name:"flag-mp",short_names:["flag-mp"],text:null,texts:null,category:"Flags",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},waving_white_flag:{name:"Waving White Flag",unified:"1F3F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f3.png",sheet_x:11,sheet_y:34,short_name:"waving_white_flag",short_names:["waving_white_flag"],text:null,texts:null,category:"Objects",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_double_down:{name:"Black Down-Pointing Double Triangle",unified:"23EC",variations:[],docomo:null,au:"E544",softbank:null,google:"FEB02",image:"23ec.png",sheet_x:0,sheet_y:21,short_name:"arrow_double_down",short_names:["arrow_double_down"],text:null,texts:null,category:"Symbols",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-woman-girl-girl":{name:"Man Woman Girl Girl",unified:"1F468-200D-1F469-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:11,short_name:"man-woman-girl-girl",short_names:["man-woman-girl-girl"],text:null,texts:null,category:"People",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kp":{name:"Regional Indicator Symbol Letters Kp",unified:"1F1F0-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f5.png",sheet_x:35,sheet_y:36,short_name:"flag-kp",short_names:["flag-kp"],text:null,texts:null,category:"Flags",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},waving_black_flag:{name:"Waving Black Flag",unified:"1F3F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f4.png",sheet_x:11,sheet_y:35,short_name:"waving_black_flag",short_names:["waving_black_flag"],text:null,texts:null,category:"Objects",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_right:{name:"Black Rightwards Arrow",unified:"27A1",variations:["27A1-FE0F"],docomo:null,au:"E552",softbank:"E234",google:"FEAFA",image:"27a1.png",sheet_x:4,sheet_y:14,short_name:"arrow_right",short_names:["arrow_right"],text:null,texts:null,category:"Symbols",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-no":{name:"Regional Indicator Symbol Letters No",unified:"1F1F3-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f4.png",sheet_x:37,sheet_y:0,short_name:"flag-no",short_names:["flag-no"],text:null,texts:null,category:"Flags",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-woman-boy":{name:"Woman Woman Boy",unified:"1F469-200D-1F469-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466.png",sheet_x:39,sheet_y:14,short_name:"woman-woman-boy",short_names:["woman-woman-boy"],text:null,texts:null,category:"People",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_left:{name:"Leftwards Black Arrow",unified:"2B05",variations:["2B05-FE0F"],docomo:null,au:"E553",softbank:"E235",google:"FEAFB",image:"2b05.png",sheet_x:4,sheet_y:19,short_name:"arrow_left",short_names:["arrow_left"],text:null,texts:null,category:"Symbols",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},closed_lock_with_key:{name:"Closed Lock with Key",unified:"1F510",variations:[],docomo:"E6D9",au:"EAFC",softbank:"E144",google:"FEB8A",image:"1f510.png",sheet_x:23,sheet_y:0,short_name:"closed_lock_with_key",short_names:["closed_lock_with_key"],text:null,texts:null,category:"Objects",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-om":{name:"Regional Indicator Symbol Letters Om",unified:"1F1F4-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f4-1f1f2.png",sheet_x:37,sheet_y:5,short_name:"flag-om",short_names:["flag-om"],text:null,texts:null,category:"Flags",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lock:{name:"Lock",unified:"1F512",variations:[],docomo:"E6D9",au:"E51C",softbank:"E144",google:"FEB86",image:"1f512.png",sheet_x:23,sheet_y:2,short_name:"lock",short_names:["lock"],text:null,texts:null,category:"Objects",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_up:{name:"Upwards Black Arrow",unified:"2B06",variations:["2B06-FE0F"],docomo:null,au:"E53F",softbank:"E232",google:"FEAF8",image:"2b06.png",sheet_x:4,sheet_y:20,short_name:"arrow_up",short_names:["arrow_up"],text:null,texts:null,category:"Symbols",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-woman-girl":{name:"Woman Woman Girl",unified:"1F469-200D-1F469-200D-1F467",variations:[], -docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:16,short_name:"woman-woman-girl",short_names:["woman-woman-girl"],text:null,texts:null,category:"People",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_down:{name:"Downwards Black Arrow",unified:"2B07",variations:["2B07-FE0F"],docomo:null,au:"E540",softbank:"E233",google:"FEAF9",image:"2b07.png",sheet_x:4,sheet_y:21,short_name:"arrow_down",short_names:["arrow_down"],text:null,texts:null,category:"Symbols",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pk":{name:"Regional Indicator Symbol Letters Pk",unified:"1F1F5-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f0.png",sheet_x:37,sheet_y:11,short_name:"flag-pk",short_names:["flag-pk"],text:null,texts:null,category:"Flags",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-woman-girl-boy":{name:"Woman Woman Girl Boy",unified:"1F469-200D-1F469-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:17,short_name:"woman-woman-girl-boy",short_names:["woman-woman-girl-boy"],text:null,texts:null,category:"People",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},unlock:{name:"Open Lock",unified:"1F513",variations:[],docomo:"E6D9",au:"E51C",softbank:"E145",google:"FEB87",image:"1f513.png",sheet_x:23,sheet_y:3,short_name:"unlock",short_names:["unlock"],text:null,texts:null,category:"Objects",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-woman-boy-boy":{name:"Woman Woman Boy Boy",unified:"1F469-200D-1F469-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:15,short_name:"woman-woman-boy-boy",short_names:["woman-woman-boy-boy"],text:null,texts:null,category:"People",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lock_with_ink_pen:{name:"Lock with Ink Pen",unified:"1F50F",variations:[],docomo:"E6D9",au:"EB0C",softbank:"E144",google:"FEB90",image:"1f50f.png",sheet_x:22,sheet_y:40,short_name:"lock_with_ink_pen",short_names:["lock_with_ink_pen"],text:null,texts:null,category:"Objects",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pw":{name:"Regional Indicator Symbol Letters Pw",unified:"1F1F5-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fc.png",sheet_x:37,sheet_y:18,short_name:"flag-pw",short_names:["flag-pw"],text:null,texts:null,category:"Flags",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_upper_right:{name:"North East Arrow",unified:"2197",variations:["2197-FE0F"],docomo:"E678",au:"E555",softbank:"E236",google:"FEAF0",image:"2197.png",sheet_x:0,sheet_y:9,short_name:"arrow_upper_right",short_names:["arrow_upper_right"],text:null,texts:null,category:"Symbols",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"woman-woman-girl-girl":{name:"Woman Woman Girl Girl",unified:"1F469-200D-1F469-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:18,short_name:"woman-woman-girl-girl",short_names:["woman-woman-girl-girl"],text:null,texts:null,category:"People",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_lower_right:{name:"South East Arrow",unified:"2198",variations:["2198-FE0F"],docomo:"E696",au:"E54D",softbank:"E238",google:"FEAF1",image:"2198.png",sheet_x:0,sheet_y:10,short_name:"arrow_lower_right",short_names:["arrow_lower_right"],text:null,texts:null,category:"Symbols",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lower_left_ballpoint_pen:{name:"Lower Left Ballpoint Pen",unified:"1F58A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58a.png",sheet_x:25,sheet_y:9,short_name:"lower_left_ballpoint_pen",short_names:["lower_left_ballpoint_pen"],text:null,texts:null,category:"Objects",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ps":{name:"Regional Indicator Symbol Letters Ps",unified:"1F1F5-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f8.png",sheet_x:37,sheet_y:16,short_name:"flag-ps",short_names:["flag-ps"],text:null,texts:null,category:"Flags",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pa":{name:"Regional Indicator Symbol Letters Pa",unified:"1F1F5-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1e6.png",sheet_x:37,sheet_y:6,short_name:"flag-pa",short_names:["flag-pa"],text:null,texts:null,category:"Flags",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lower_left_fountain_pen:{name:"Lower Left Fountain Pen",unified:"1F58B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58b.png",sheet_x:25,sheet_y:10,short_name:"lower_left_fountain_pen",short_names:["lower_left_fountain_pen"],text:null,texts:null,category:"Objects",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_lower_left:{name:"South West Arrow",unified:"2199",variations:["2199-FE0F"],docomo:"E6A5",au:"E556",softbank:"E239",google:"FEAF3",image:"2199.png",sheet_x:0,sheet_y:11,short_name:"arrow_lower_left",short_names:["arrow_lower_left"],text:null,texts:null,category:"Symbols",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-man-boy":{name:"Man Man Boy",unified:"1F468-200D-1F468-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466.png",sheet_x:39,sheet_y:3,short_name:"man-man-boy",short_names:["man-man-boy"],text:null,texts:null,category:"People",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_nib:{name:"Black Nib",unified:"2712",variations:["2712-FE0F"],docomo:"E6AE",au:"EB03",softbank:null,google:"FE536",image:"2712.png",sheet_x:3,sheet_y:34,short_name:"black_nib",short_names:["black_nib"],text:null,texts:null,category:"Objects",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pg":{name:"Regional Indicator Symbol Letters Pg",unified:"1F1F5-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ec.png",sheet_x:37,sheet_y:9,short_name:"flag-pg",short_names:["flag-pg"],text:null,texts:null,category:"Flags",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_upper_left:{name:"North West Arrow",unified:"2196",variations:["2196-FE0F"],docomo:"E697",au:"E54C",softbank:"E237",google:"FEAF2",image:"2196.png",sheet_x:0,sheet_y:8,short_name:"arrow_upper_left",short_names:["arrow_upper_left"],text:null,texts:null,category:"Symbols",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-man-girl":{name:"Man Man Girl",unified:"1F468-200D-1F468-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467.png",sheet_x:39,sheet_y:5,short_name:"man-man-girl",short_names:["man-man-girl"],text:null,texts:null,category:"People",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-man-girl-boy":{name:"Man Man Girl Boy",unified:"1F468-200D-1F468-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:6,short_name:"man-man-girl-boy",short_names:["man-man-girl-boy"],text:null,texts:null,category:"People",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_up_down:{name:"Up Down Arrow",unified:"2195",variations:["2195-FE0F"],docomo:"E73D",au:"EB7B",softbank:null,google:"FEAF7",image:"2195.png",sheet_x:0,sheet_y:7,short_name:"arrow_up_down",short_names:["arrow_up_down"],text:null,texts:null,category:"Symbols",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},memo:{name:"Memo",unified:"1F4DD",variations:[],docomo:"E689",au:"EA92",softbank:"E301",google:"FE527",image:"1f4dd.png",sheet_x:21,sheet_y:32,short_name:"memo",short_names:["memo","pencil"],text:null,texts:null,category:"Objects",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-py":{name:"Regional Indicator Symbol Letters Py",unified:"1F1F5-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fe.png",sheet_x:37,sheet_y:19,short_name:"flag-py",short_names:["flag-py"],text:null,texts:null,category:"Flags",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pe":{name:"Regional Indicator Symbol Letters Pe",unified:"1F1F5-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ea.png",sheet_x:37,sheet_y:7,short_name:"flag-pe",short_names:["flag-pe"],text:null,texts:null,category:"Flags",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pencil2:{name:"Pencil",unified:"270F",variations:["270F-FE0F"],docomo:"E719",au:"E4A1",softbank:"E301",google:"FE539",image:"270f.png",sheet_x:3,sheet_y:33,short_name:"pencil2",short_names:["pencil2"],text:null,texts:null,category:"Objects",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-man-boy-boy":{name:"Man Man Boy Boy",unified:"1F468-200D-1F468-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:4,short_name:"man-man-boy-boy",short_names:["man-man-boy-boy"],text:null,texts:null,category:"People",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},left_right_arrow:{name:"Left Right Arrow",unified:"2194",variations:["2194-FE0F"],docomo:"E73C",au:"EB7A",softbank:null,google:"FEAF6",image:"2194.png",sheet_x:0,sheet_y:6,short_name:"left_right_arrow",short_names:["left_right_arrow"],text:null,texts:null,category:"Symbols",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"man-man-girl-girl":{name:"Man Man Girl Girl",unified:"1F468-200D-1F468-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:7,short_name:"man-man-girl-girl",short_names:["man-man-girl-girl"],text:null,texts:null,category:"People",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrows_counterclockwise:{name:"Anticlockwise Downwards and Upwards Open Circle Arrows",unified:"1F504",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f504.png",sheet_x:22,sheet_y:29,short_name:"arrows_counterclockwise",short_names:["arrows_counterclockwise"],text:null,texts:null,category:"Symbols",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ph":{name:"Regional Indicator Symbol Letters Ph",unified:"1F1F5-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ed.png",sheet_x:37,sheet_y:10,short_name:"flag-ph",short_names:["flag-ph"],text:null,texts:null,category:"Flags",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lower_left_crayon:{name:"Lower Left Crayon",unified:"1F58D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58d.png",sheet_x:25,sheet_y:12,short_name:"lower_left_crayon",short_names:["lower_left_crayon"],text:null,texts:null,category:"Objects",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},womans_clothes:{name:"Womans Clothes",unified:"1F45A",variations:[],docomo:"E70E",au:"E50D",softbank:"E006",google:"FE4DB",image:"1f45a.png",sheet_x:15,sheet_y:37,short_name:"womans_clothes",short_names:["womans_clothes"],text:null,texts:null,category:"People",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lower_left_paintbrush:{name:"Lower Left Paintbrush",unified:"1F58C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58c.png",sheet_x:25,sheet_y:11,short_name:"lower_left_paintbrush",short_names:["lower_left_paintbrush"],text:null,texts:null,category:"Objects",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pn":{name:"Regional Indicator Symbol Letters Pn",unified:"1F1F5-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f3.png",sheet_x:37,sheet_y:14,short_name:"flag-pn",short_names:["flag-pn"],text:null,texts:null,category:"Flags",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_right_hook:{name:"Rightwards Arrow with Hook",unified:"21AA",variations:["21AA-FE0F"],docomo:null,au:"E55C",softbank:null,google:"FEB88",image:"21aa.png",sheet_x:0,sheet_y:13,short_name:"arrow_right_hook",short_names:["arrow_right_hook"],text:null,texts:null,category:"Symbols",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},leftwards_arrow_with_hook:{name:"Leftwards Arrow with Hook",unified:"21A9",variations:["21A9-FE0F"],docomo:"E6DA",au:"E55D",softbank:null,google:"FEB83",image:"21a9.png",sheet_x:0,sheet_y:12,short_name:"leftwards_arrow_with_hook",short_names:["leftwards_arrow_with_hook"],text:null,texts:null,category:"Symbols",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mag:{name:"Left-Pointing Magnifying Glass",unified:"1F50D",variations:[],docomo:"E6DC",au:"E518",softbank:"E114",google:"FEB85",image:"1f50d.png",sheet_x:22,sheet_y:38,short_name:"mag",short_names:["mag"],text:null,texts:null,category:"Objects",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pl":{name:"Regional Indicator Symbol Letters Pl",unified:"1F1F5-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f1.png",sheet_x:37,sheet_y:12,short_name:"flag-pl",short_names:["flag-pl"],text:null,texts:null,category:"Flags",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},shirt:{name:"T-Shirt",unified:"1F455",variations:[],docomo:"E70E",au:"E5B6",softbank:"E006",google:"FE4CF",image:"1f455.png",sheet_x:15,sheet_y:32,short_name:"shirt",short_names:["shirt","tshirt"],text:null,texts:null,category:"People",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pt":{name:"Regional Indicator Symbol Letters Pt",unified:"1F1F5-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f9.png",sheet_x:37,sheet_y:17,short_name:"flag-pt",short_names:["flag-pt"],text:null,texts:null,category:"Flags",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},jeans:{name:"Jeans",unified:"1F456",variations:[],docomo:"E711",au:"EB77",softbank:null,google:"FE4D0",image:"1f456.png",sheet_x:15,sheet_y:33,short_name:"jeans",short_names:["jeans"],text:null,texts:null,category:"People",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mag_right:{name:"Right-Pointing Magnifying Glass",unified:"1F50E",variations:[],docomo:"E6DC",au:"EB05",softbank:"E114",google:"FEB8D",image:"1f50e.png",sheet_x:22,sheet_y:39,short_name:"mag_right",short_names:["mag_right"],text:null,texts:null,category:"Objects",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_heading_up:{name:"Arrow Pointing Rightwards Then Curving Upwards",unified:"2934",variations:["2934-FE0F"],docomo:"E6F5",au:"EB2D",softbank:"E236",google:"FEAF4",image:"2934.png",sheet_x:4,sheet_y:17,short_name:"arrow_heading_up",short_names:["arrow_heading_up"],text:null,texts:null,category:"Symbols",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},necktie:{name:"Necktie",unified:"1F454",variations:[],docomo:null,au:"EA93",softbank:"E302",google:"FE4D3",image:"1f454.png",sheet_x:15,sheet_y:31,short_name:"necktie",short_names:["necktie"],text:null,texts:null,category:"People",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pr":{name:"Regional Indicator Symbol Letters Pr",unified:"1F1F5-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f7.png",sheet_x:37,sheet_y:15,short_name:"flag-pr",short_names:["flag-pr"],text:null,texts:null,category:"Flags",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrow_heading_down:{name:"Arrow Pointing Rightwards Then Curving Downwards",unified:"2935",variations:["2935-FE0F"],docomo:"E700",au:"EB2E",softbank:"E238",google:"FEAF5",image:"2935.png",sheet_x:4,sheet_y:18,short_name:"arrow_heading_down",short_names:["arrow_heading_down"],text:null,texts:null,category:"Symbols",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dress:{name:"Dress",unified:"1F457",variations:[],docomo:null,au:"EB6B",softbank:"E319",google:"FE4D5",image:"1f457.png",sheet_x:15,sheet_y:34,short_name:"dress",short_names:["dress"],text:null,texts:null,category:"People",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-qa":{name:"Regional Indicator Symbol Letters Qa",unified:"1F1F6-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f6-1f1e6.png",sheet_x:37,sheet_y:20,short_name:"flag-qa",short_names:["flag-qa"],text:null,texts:null,category:"Flags",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hash:{name:"Hash Key",unified:"0023-20E3",variations:["0023-FE0F-20E3"],docomo:"E6E0",au:"EB84",softbank:"E210",google:"FE82C",image:"0023-20e3.png",sheet_x:32,sheet_y:21,short_name:"hash",short_names:["hash"],text:null,texts:null,category:"Symbols",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-re":{name:"Regional Indicator Symbol Letters Re",unified:"1F1F7-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1ea.png",sheet_x:37,sheet_y:21,short_name:"flag-re",short_names:["flag-re"],text:null,texts:null,category:"Flags",sort_order:181,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},bikini:{name:"Bikini",unified:"1F459",variations:[],docomo:null,au:"EAA4",softbank:"E322",google:"FE4DA",image:"1f459.png",sheet_x:15,sheet_y:36,short_name:"bikini",short_names:["bikini"],text:null,texts:null,category:"People",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},information_source:{name:"Information Source",unified:"2139",variations:["2139-FE0F"],docomo:null,au:"E533",softbank:null,google:"FEB47",image:"2139.png",sheet_x:0,sheet_y:5,short_name:"information_source",short_names:["information_source"],text:null,texts:null,category:"Symbols",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kimono:{name:"Kimono",unified:"1F458",variations:[],docomo:null,au:"EAA3",softbank:"E321",google:"FE4D9",image:"1f458.png",sheet_x:15,sheet_y:35,short_name:"kimono",short_names:["kimono"],text:null,texts:null,category:"People",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},abc:{name:"Input Symbol for Latin Letters",unified:"1F524",variations:[],docomo:null,au:"EB55",softbank:null,google:"FEB80",image:"1f524.png",sheet_x:23,sheet_y:20,short_name:"abc",short_names:["abc"],text:null,texts:null,category:"Symbols",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ro":{name:"Regional Indicator Symbol Letters Ro",unified:"1F1F7-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f4.png",sheet_x:37,sheet_y:22,short_name:"flag-ro",short_names:["flag-ro"],text:null,texts:null,category:"Flags",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},lipstick:{name:"Lipstick",unified:"1F484",variations:[],docomo:"E710",au:"E509",softbank:"E31C",google:"FE195",image:"1f484.png",sheet_x:19,sheet_y:5,short_name:"lipstick",short_names:["lipstick"],text:null,texts:null,category:"People",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ru":{name:"Regional Indicator Symbol Letters Ru",unified:"1F1F7-1F1FA",variations:[],docomo:null,au:"E5D6",softbank:"E512",google:"FE4EC",image:"1f1f7-1f1fa.png",sheet_x:37,sheet_y:24,short_name:"flag-ru",short_names:["flag-ru","ru"],text:null,texts:null,category:"Flags",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},abcd:{name:"Input Symbol for Latin Small Letters",unified:"1F521",variations:[],docomo:null,au:"EAFE",softbank:null,google:"FEB7D",image:"1f521.png",sheet_x:23,sheet_y:17,short_name:"abcd",short_names:["abcd"],text:null,texts:null,category:"Symbols",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},kiss:{name:"Kiss Mark",unified:"1F48B",variations:[],docomo:"E6F9",au:"E4EB",softbank:"E003",google:"FE823",image:"1f48b.png",sheet_x:19,sheet_y:27,short_name:"kiss",short_names:["kiss"],text:null,texts:[":*",":-*"],category:"People",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},capital_abcd:{name:"Input Symbol for Latin Capital Letters",unified:"1F520",variations:[],docomo:null,au:"EAFD",softbank:null,google:"FEB7C",image:"1f520.png",sheet_x:23,sheet_y:16,short_name:"capital_abcd",short_names:["capital_abcd"],text:null,texts:null,category:"Symbols",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-rw":{name:"Regional Indicator Symbol Letters Rw",unified:"1F1F7-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1fc.png",sheet_x:37,sheet_y:25,short_name:"flag-rw",short_names:["flag-rw"],text:null,texts:null,category:"Flags",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},footprints:{name:"Footprints",unified:"1F463",variations:[],docomo:"E698",au:"EB2A",softbank:"E536",google:"FE553",image:"1f463.png",sheet_x:16,sheet_y:5,short_name:"footprints",short_names:["footprints"],text:null,texts:null,category:"People",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bl":{name:"Regional Indicator Symbol Letters Bl",unified:"1F1E7-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f1.png",sheet_x:33,sheet_y:18,short_name:"flag-bl",short_names:["flag-bl"],text:null,texts:null,category:"Flags",sort_order:185,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},symbols:{name:"Input Symbol for Symbols",unified:"1F523",variations:[],docomo:null,au:"EB00",softbank:null,google:"FEB7F",image:"1f523.png",sheet_x:23,sheet_y:19,short_name:"symbols",short_names:["symbols"],text:null,texts:null,category:"Symbols",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},high_heel:{name:"High-Heeled Shoe",unified:"1F460",variations:[],docomo:"E674",au:"E51A",softbank:"E13E",google:"FE4D6",image:"1f460.png",sheet_x:16,sheet_y:2,short_name:"high_heel",short_names:["high_heel"],text:null,texts:null,category:"People",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},musical_note:{name:"Musical Note",unified:"1F3B5",variations:[],docomo:"E6F6",au:"E5BE",softbank:"E03E",google:"FE813",image:"1f3b5.png",sheet_x:9,sheet_y:36,short_name:"musical_note",short_names:["musical_note"],text:null,texts:null,category:"Symbols",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sh":{name:"Regional Indicator Symbol Letters Sh",unified:"1F1F8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ed.png",sheet_x:37,sheet_y:32,short_name:"flag-sh",short_names:["flag-sh"],text:null,texts:null,category:"Flags",sort_order:186,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"flag-kn":{name:"Regional Indicator Symbol Letters Kn",unified:"1F1F0-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f3.png",sheet_x:35,sheet_y:35,short_name:"flag-kn",short_names:["flag-kn"],text:null,texts:null,category:"Flags",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},notes:{name:"Multiple Musical Notes",unified:"1F3B6",variations:[],docomo:"E6FF",au:"E505",softbank:"E326",google:"FE814",image:"1f3b6.png",sheet_x:9,sheet_y:37,short_name:"notes",short_names:["notes"],text:null,texts:null,category:"Symbols",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sandal:{name:"Womans Sandal",unified:"1F461",variations:[],docomo:"E674",au:"E51A",softbank:"E31A",google:"FE4D7",image:"1f461.png",sheet_x:16,sheet_y:3,short_name:"sandal",short_names:["sandal"],text:null,texts:null,category:"People",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},boot:{name:"Womans Boots",unified:"1F462",variations:[],docomo:null,au:"EA9F",softbank:"E31B",google:"FE4D8",image:"1f462.png",sheet_x:16,sheet_y:4,short_name:"boot",short_names:["boot"],text:null,texts:null,category:"People",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},wavy_dash:{name:"Wavy Dash",unified:"3030",variations:["3030-FE0F"],docomo:"E709",au:null,softbank:null,google:"FEB07",image:"3030.png",sheet_x:4,sheet_y:26,short_name:"wavy_dash",short_names:["wavy_dash"],text:null,texts:null,category:"Symbols",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lc":{name:"Regional Indicator Symbol Letters Lc",unified:"1F1F1-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e8.png",sheet_x:36,sheet_y:2,short_name:"flag-lc",short_names:["flag-lc"],text:null,texts:null,category:"Flags",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-pm":{name:"Regional Indicator Symbol Letters Pm",unified:"1F1F5-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f2.png",sheet_x:37,sheet_y:13,short_name:"flag-pm",short_names:["flag-pm"],text:null,texts:null,category:"Flags",sort_order:189,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},mans_shoe:{name:"Mans Shoe",unified:"1F45E",variations:[],docomo:"E699",au:"E5B7",softbank:"E007",google:"FE4CC",image:"1f45e.png",sheet_x:16,sheet_y:0,short_name:"mans_shoe",short_names:["mans_shoe","shoe"],text:null,texts:null,category:"People",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},curly_loop:{name:"Curly Loop",unified:"27B0",variations:[],docomo:"E70A",au:"EB31",softbank:null,google:"FEB08",image:"27b0.png",sheet_x:4,sheet_y:15,short_name:"curly_loop",short_names:["curly_loop"],text:null,texts:null,category:"Symbols",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-vc":{name:"Regional Indicator Symbol Letters Vc",unified:"1F1FB-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e8.png",sheet_x:38,sheet_y:30,short_name:"flag-vc",short_names:["flag-vc"],text:null,texts:null,category:"Flags",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_check_mark:{name:"Heavy Check Mark",unified:"2714",variations:["2714-FE0F"],docomo:null,au:"E557",softbank:null,google:"FEB49",image:"2714.png",sheet_x:3,sheet_y:35,short_name:"heavy_check_mark",short_names:["heavy_check_mark"],text:null,texts:null,category:"Symbols",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},athletic_shoe:{name:"Athletic Shoe",unified:"1F45F",variations:[],docomo:"E699",au:"EB2B",softbank:"E007",google:"FE4CD",image:"1f45f.png",sheet_x:16,sheet_y:1,short_name:"athletic_shoe",short_names:["athletic_shoe"],text:null,texts:null,category:"People",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},womans_hat:{name:"Womans Hat",unified:"1F452",variations:[],docomo:null,au:"EA9E",softbank:"E318",google:"FE4D4",image:"1f452.png",sheet_x:15,sheet_y:29,short_name:"womans_hat",short_names:["womans_hat"],text:null,texts:null,category:"People",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ws":{name:"Regional Indicator Symbol Letters Ws",unified:"1F1FC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1f8.png",sheet_x:38,sheet_y:37,short_name:"flag-ws",short_names:["flag-ws"],text:null,texts:null,category:"Flags",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},arrows_clockwise:{name:"Clockwise Downwards and Upwards Open Circle Arrows",unified:"1F503",variations:[],docomo:"E735",au:"EB0D",softbank:null,google:"FEB91",image:"1f503.png",sheet_x:22,sheet_y:28,short_name:"arrows_clockwise",short_names:["arrows_clockwise"],text:null,texts:null,category:"Symbols",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_plus_sign:{name:"Heavy Plus Sign",unified:"2795",variations:[],docomo:null,au:"E53C",softbank:null,google:"FEB51",image:"2795.png",sheet_x:4,sheet_y:11,short_name:"heavy_plus_sign",short_names:["heavy_plus_sign"],text:null,texts:null,category:"Symbols",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tophat:{name:"Top Hat",unified:"1F3A9",variations:[],docomo:"E67C",au:"EAF5",softbank:"E503",google:"FE805",image:"1f3a9.png",sheet_x:9,sheet_y:24,short_name:"tophat",short_names:["tophat"],text:null,texts:null,category:"People",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sm":{name:"Regional Indicator Symbol Letters Sm",unified:"1F1F8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f2.png",sheet_x:37,sheet_y:37,short_name:"flag-sm",short_names:["flag-sm"],text:null,texts:null,category:"Flags",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},helmet_with_white_cross:{name:"Helmet with White Cross",unified:"26D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d1.png",sheet_x:2,sheet_y:25,short_name:"helmet_with_white_cross",short_names:["helmet_with_white_cross"],text:null,texts:null,category:"People",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_minus_sign:{name:"Heavy Minus Sign",unified:"2796",variations:[],docomo:null,au:"E53D",softbank:null,google:"FEB52",image:"2796.png",sheet_x:4,sheet_y:12,short_name:"heavy_minus_sign",short_names:["heavy_minus_sign"],text:null,texts:null,category:"Symbols",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-st":{name:"Regional Indicator Symbol Letters St",unified:"1F1F8-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f9.png",sheet_x:38,sheet_y:1,short_name:"flag-st",short_names:["flag-st"],text:null,texts:null,category:"Flags",sort_order:193,has_img_apple:!0, -has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sa":{name:"Regional Indicator Symbol Letters Sa",unified:"1F1F8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e6.png",sheet_x:37,sheet_y:26,short_name:"flag-sa",short_names:["flag-sa"],text:null,texts:null,category:"Flags",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_division_sign:{name:"Heavy Division Sign",unified:"2797",variations:[],docomo:null,au:"E554",softbank:null,google:"FEB54",image:"2797.png",sheet_x:4,sheet_y:13,short_name:"heavy_division_sign",short_names:["heavy_division_sign"],text:null,texts:null,category:"Symbols",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mortar_board:{name:"Graduation Cap",unified:"1F393",variations:[],docomo:null,au:"EAE5",softbank:"E439",google:"FE51A",image:"1f393.png",sheet_x:9,sheet_y:7,short_name:"mortar_board",short_names:["mortar_board"],text:null,texts:null,category:"People",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sn":{name:"Regional Indicator Symbol Letters Sn",unified:"1F1F8-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f3.png",sheet_x:37,sheet_y:38,short_name:"flag-sn",short_names:["flag-sn"],text:null,texts:null,category:"Flags",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_multiplication_x:{name:"Heavy Multiplication X",unified:"2716",variations:["2716-FE0F"],docomo:null,au:"E54F",softbank:"E333",google:"FEB53",image:"2716.png",sheet_x:3,sheet_y:36,short_name:"heavy_multiplication_x",short_names:["heavy_multiplication_x"],text:null,texts:null,category:"Symbols",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},crown:{name:"Crown",unified:"1F451",variations:[],docomo:"E71A",au:"E5C9",softbank:"E10E",google:"FE4D1",image:"1f451.png",sheet_x:15,sheet_y:28,short_name:"crown",short_names:["crown"],text:null,texts:null,category:"People",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},school_satchel:{name:"School Satchel",unified:"1F392",variations:[],docomo:null,au:"EAE6",softbank:"E43A",google:"FE51B",image:"1f392.png",sheet_x:9,sheet_y:6,short_name:"school_satchel",short_names:["school_satchel"],text:null,texts:null,category:"People",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-rs":{name:"Regional Indicator Symbol Letters Rs",unified:"1F1F7-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f8.png",sheet_x:37,sheet_y:23,short_name:"flag-rs",short_names:["flag-rs"],text:null,texts:null,category:"Flags",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},heavy_dollar_sign:{name:"Heavy Dollar Sign",unified:"1F4B2",variations:[],docomo:"E715",au:"E579",softbank:"E12F",google:"FE4E0",image:"1f4b2.png",sheet_x:20,sheet_y:30,short_name:"heavy_dollar_sign",short_names:["heavy_dollar_sign"],text:null,texts:null,category:"Symbols",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sc":{name:"Regional Indicator Symbol Letters Sc",unified:"1F1F8-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e8.png",sheet_x:37,sheet_y:28,short_name:"flag-sc",short_names:["flag-sc"],text:null,texts:null,category:"Flags",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},currency_exchange:{name:"Currency Exchange",unified:"1F4B1",variations:[],docomo:null,au:null,softbank:"E149",google:"FE4DE",image:"1f4b1.png",sheet_x:20,sheet_y:29,short_name:"currency_exchange",short_names:["currency_exchange"],text:null,texts:null,category:"Symbols",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},pouch:{name:"Pouch",unified:"1F45D",variations:[],docomo:"E6AD",au:null,softbank:null,google:"FE4F1",image:"1f45d.png",sheet_x:15,sheet_y:40,short_name:"pouch",short_names:["pouch"],text:null,texts:null,category:"People",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},purse:{name:"Purse",unified:"1F45B",variations:[],docomo:"E70F",au:"E504",softbank:null,google:"FE4DC",image:"1f45b.png",sheet_x:15,sheet_y:38,short_name:"purse",short_names:["purse"],text:null,texts:null,category:"People",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sl":{name:"Regional Indicator Symbol Letters Sl",unified:"1F1F8-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f1.png",sheet_x:37,sheet_y:36,short_name:"flag-sl",short_names:["flag-sl"],text:null,texts:null,category:"Flags",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},copyright:{name:"Copyright Sign",unified:"00A9",variations:["00A9-FE0F"],docomo:"E731",au:"E558",softbank:"E24E",google:"FEB29",image:"00a9.png",sheet_x:0,sheet_y:0,short_name:"copyright",short_names:["copyright"],text:null,texts:null,category:"Symbols",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0},handbag:{name:"Handbag",unified:"1F45C",variations:[],docomo:"E682",au:"E49C",softbank:"E323",google:"FE4F0",image:"1f45c.png",sheet_x:15,sheet_y:39,short_name:"handbag",short_names:["handbag"],text:null,texts:null,category:"People",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sg":{name:"Regional Indicator Symbol Letters Sg",unified:"1F1F8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ec.png",sheet_x:37,sheet_y:31,short_name:"flag-sg",short_names:["flag-sg"],text:null,texts:null,category:"Flags",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},registered:{name:"Registered Sign",unified:"00AE",variations:["00AE-FE0F"],docomo:"E736",au:"E559",softbank:"E24F",google:"FEB2D",image:"00ae.png",sheet_x:0,sheet_y:1,short_name:"registered",short_names:["registered"],text:null,texts:null,category:"Symbols",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0},briefcase:{name:"Briefcase",unified:"1F4BC",variations:[],docomo:"E682",au:"E5CE",softbank:"E11E",google:"FE53B",image:"1f4bc.png",sheet_x:20,sheet_y:40,short_name:"briefcase",short_names:["briefcase"],text:null,texts:null,category:"People",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sx":{name:"Regional Indicator Symbol Letters Sx",unified:"1F1F8-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fd.png",sheet_x:38,sheet_y:3,short_name:"flag-sx",short_names:["flag-sx"],text:null,texts:null,category:"Flags",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},tm:{name:"Trade Mark Sign",unified:"2122",variations:["2122-FE0F"],docomo:"E732",au:"E54E",softbank:"E537",google:"FEB2A",image:"2122.png",sheet_x:0,sheet_y:4,short_name:"tm",short_names:["tm"],text:null,texts:null,category:"Symbols",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0},"flag-sk":{name:"Regional Indicator Symbol Letters Sk",unified:"1F1F8-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f0.png",sheet_x:37,sheet_y:35,short_name:"flag-sk",short_names:["flag-sk"],text:null,texts:null,category:"Flags",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},eyeglasses:{name:"Eyeglasses",unified:"1F453",variations:[],docomo:"E69A",au:"E4FE",softbank:null,google:"FE4CE",image:"1f453.png",sheet_x:15,sheet_y:30,short_name:"eyeglasses",short_names:["eyeglasses"],text:null,texts:null,category:"People",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},end:{name:"End with Leftwards Arrow Above",unified:"1F51A",variations:[],docomo:"E6B9",au:null,softbank:null,google:"FE01A",image:"1f51a.png",sheet_x:23,sheet_y:10,short_name:"end",short_names:["end"],text:null,texts:null,category:"Symbols",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},dark_sunglasses:{name:"Dark Sunglasses",unified:"1F576",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f576.png",sheet_x:25,sheet_y:4,short_name:"dark_sunglasses",short_names:["dark_sunglasses"],text:null,texts:null,category:"People",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-si":{name:"Regional Indicator Symbol Letters Si",unified:"1F1F8-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ee.png",sheet_x:37,sheet_y:33,short_name:"flag-si",short_names:["flag-si"],text:null,texts:null,category:"Flags",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},back:{name:"Back with Leftwards Arrow Above",unified:"1F519",variations:[],docomo:null,au:"EB06",softbank:"E235",google:"FEB8E",image:"1f519.png",sheet_x:23,sheet_y:9,short_name:"back",short_names:["back"],text:null,texts:null,category:"Symbols",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},ring:{name:"Ring",unified:"1F48D",variations:[],docomo:"E71B",au:"E514",softbank:"E034",google:"FE825",image:"1f48d.png",sheet_x:19,sheet_y:29,short_name:"ring",short_names:["ring"],text:null,texts:null,category:"People",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sb":{name:"Regional Indicator Symbol Letters Sb",unified:"1F1F8-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e7.png",sheet_x:37,sheet_y:27,short_name:"flag-sb",short_names:["flag-sb"],text:null,texts:null,category:"Flags",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},on:{name:"On with Exclamation Mark with Left Right Arrow Above",unified:"1F51B",variations:[],docomo:"E6B8",au:null,softbank:null,google:"FE019",image:"1f51b.png",sheet_x:23,sheet_y:11,short_name:"on",short_names:["on"],text:null,texts:null,category:"Symbols",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},top:{name:"Top with Upwards Arrow Above",unified:"1F51D",variations:[],docomo:null,au:null,softbank:"E24C",google:"FEB42",image:"1f51d.png",sheet_x:23,sheet_y:13,short_name:"top",short_names:["top"],text:null,texts:null,category:"Symbols",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-so":{name:"Regional Indicator Symbol Letters so",unified:"1F1F8-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f4.png",sheet_x:37,sheet_y:39,short_name:"flag-so",short_names:["flag-so"],text:null,texts:null,category:"Flags",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},closed_umbrella:{name:"Closed Umbrella",unified:"1F302",variations:[],docomo:"E645",au:"EAE8",softbank:"E43C",google:"FE007",image:"1f302.png",sheet_x:5,sheet_y:23,short_name:"closed_umbrella",short_names:["closed_umbrella"],text:null,texts:null,category:"People",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-za":{name:"Regional Indicator Symbol Letters Za",unified:"1F1FF-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1e6.png",sheet_x:39,sheet_y:0,short_name:"flag-za",short_names:["flag-za"],text:null,texts:null,category:"Flags",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},soon:{name:"Soon with Rightwards Arrow Above",unified:"1F51C",variations:[],docomo:"E6B7",au:null,softbank:null,google:"FE018",image:"1f51c.png",sheet_x:23,sheet_y:12,short_name:"soon",short_names:["soon"],text:null,texts:null,category:"Symbols",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gs":{name:"Regional Indicator Symbol Letters Gs",unified:"1F1EC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f8.png",sheet_x:35,sheet_y:4,short_name:"flag-gs",short_names:["flag-gs"],text:null,texts:null,category:"Flags",sort_order:206,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},ballot_box_with_check:{name:"Ballot Box with Check",unified:"2611",variations:["2611-FE0F"],docomo:null,au:"EB02",softbank:null,google:"FEB8B",image:"2611.png",sheet_x:1,sheet_y:6,short_name:"ballot_box_with_check",short_names:["ballot_box_with_check"],text:null,texts:null,category:"Symbols",sort_order:206,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},radio_button:{name:"Radio Button",unified:"1F518",variations:[],docomo:null,au:"EB04",softbank:null,google:"FEB8C",image:"1f518.png",sheet_x:23,sheet_y:8,short_name:"radio_button",short_names:["radio_button"],text:null,texts:null,category:"Symbols",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-kr":{name:"Regional Indicator Symbol Letters Kr",unified:"1F1F0-1F1F7",variations:[],docomo:null,au:"EB12",softbank:"E514",google:"FE4EE",image:"1f1f0-1f1f7.png",sheet_x:35,sheet_y:37,short_name:"flag-kr",short_names:["flag-kr","kr"],text:null,texts:null,category:"Flags",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ss":{name:"Regional Indicator Symbol Letters Ss",unified:"1F1F8-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f8.png",sheet_x:38,sheet_y:0,short_name:"flag-ss",short_names:["flag-ss"],text:null,texts:null,category:"Flags",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_circle:{name:"Medium White Circle",unified:"26AA",variations:["26AA-FE0F"],docomo:"E69C",au:"E53A",softbank:"E219",google:"FEB65",image:"26aa.png",sheet_x:2,sheet_y:14,short_name:"white_circle",short_names:["white_circle"],text:null,texts:null,category:"Symbols",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-es":{name:"Regional Indicator Symbol Letters Es",unified:"1F1EA-1F1F8",variations:[],docomo:null,au:"E5D5",softbank:"E511",google:"FE4EB",image:"1f1ea-1f1f8.png",sheet_x:34,sheet_y:22,short_name:"flag-es",short_names:["flag-es","es"],text:null,texts:null,category:"Flags",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_circle:{name:"Medium Black Circle",unified:"26AB",variations:["26AB-FE0F"],docomo:"E69C",au:"E53B",softbank:"E219",google:"FEB66",image:"26ab.png",sheet_x:2,sheet_y:15,short_name:"black_circle",short_names:["black_circle"],text:null,texts:null,category:"Symbols",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-lk":{name:"Regional Indicator Symbol Letters Lk",unified:"1F1F1-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f0.png",sheet_x:36,sheet_y:4,short_name:"flag-lk",short_names:["flag-lk"],text:null,texts:null,category:"Flags",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},red_circle:{name:"Large Red Circle",unified:"1F534",variations:[],docomo:"E69C",au:"E54A",softbank:"E219",google:"FEB63",image:"1f534.png",sheet_x:23,sheet_y:36,short_name:"red_circle",short_names:["red_circle"],text:null,texts:null,category:"Symbols",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sd":{name:"Regional Indicator Symbol Letters Sd",unified:"1F1F8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e9.png",sheet_x:37,sheet_y:29,short_name:"flag-sd",short_names:["flag-sd"],text:null,texts:null,category:"Flags",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},large_blue_circle:{name:"Large Blue Circle",unified:"1F535",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f535.png",sheet_x:23,sheet_y:37,short_name:"large_blue_circle",short_names:["large_blue_circle"],text:null,texts:null,category:"Symbols",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},small_orange_diamond:{name:"Small Orange Diamond",unified:"1F538",variations:[],docomo:null,au:"E536",softbank:"E21B",google:"FEB75",image:"1f538.png",sheet_x:23,sheet_y:40,short_name:"small_orange_diamond",short_names:["small_orange_diamond"],text:null,texts:null,category:"Symbols",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sr":{name:"Regional Indicator Symbol Letters Sr",unified:"1F1F8-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f7.png",sheet_x:37,sheet_y:40,short_name:"flag-sr",short_names:["flag-sr"],text:null,texts:null,category:"Flags",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},small_blue_diamond:{name:"Small Blue Diamond",unified:"1F539",variations:[],docomo:null,au:"E537",softbank:"E21B",google:"FEB76",image:"1f539.png",sheet_x:24,sheet_y:0,short_name:"small_blue_diamond",short_names:["small_blue_diamond"],text:null,texts:null,category:"Symbols",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sz":{name:"Regional Indicator Symbol Letters Sz",unified:"1F1F8-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ff.png",sheet_x:38,sheet_y:5,short_name:"flag-sz",short_names:["flag-sz"],text:null,texts:null,category:"Flags",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},large_orange_diamond:{name:"Large Orange Diamond",unified:"1F536",variations:[],docomo:null,au:"E546",softbank:"E21B",google:"FEB73",image:"1f536.png",sheet_x:23,sheet_y:38,short_name:"large_orange_diamond",short_names:["large_orange_diamond"],text:null,texts:null,category:"Symbols",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-se":{name:"Regional Indicator Symbol Letters Se",unified:"1F1F8-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ea.png",sheet_x:37,sheet_y:30,short_name:"flag-se",short_names:["flag-se"],text:null,texts:null,category:"Flags",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ch":{name:"Regional Indicator Symbol Letters Ch",unified:"1F1E8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ed.png",sheet_x:33,sheet_y:35,short_name:"flag-ch",short_names:["flag-ch"],text:null,texts:null,category:"Flags",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},large_blue_diamond:{name:"Large Blue Diamond",unified:"1F537",variations:[],docomo:null,au:"E547",softbank:"E21B",google:"FEB74",image:"1f537.png",sheet_x:23,sheet_y:39,short_name:"large_blue_diamond",short_names:["large_blue_diamond"],text:null,texts:null,category:"Symbols",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sy":{name:"Regional Indicator Symbol Letters Sy",unified:"1F1F8-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fe.png",sheet_x:38,sheet_y:4,short_name:"flag-sy",short_names:["flag-sy"],text:null,texts:null,category:"Flags",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},small_red_triangle:{name:"Up-Pointing Red Triangle",unified:"1F53A",variations:[],docomo:null,au:"E55A",softbank:null,google:"FEB78",image:"1f53a.png",sheet_x:24,sheet_y:1,short_name:"small_red_triangle",short_names:["small_red_triangle"],text:null,texts:null,category:"Symbols",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tw":{name:"Regional Indicator Symbol Letters Tw",unified:"1F1F9-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fc.png",sheet_x:38,sheet_y:21,short_name:"flag-tw",short_names:["flag-tw"],text:null,texts:null,category:"Flags",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_small_square:{name:"Black Small Square",unified:"25AA",variations:["25AA-FE0F"],docomo:null,au:"E532",softbank:"E21A",google:"FEB6E",image:"25aa.png",sheet_x:0,sheet_y:33,short_name:"black_small_square",short_names:["black_small_square"],text:null,texts:null,category:"Symbols",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_small_square:{name:"White Small Square",unified:"25AB",variations:["25AB-FE0F"],docomo:null,au:"E531",softbank:"E21B",google:"FEB6D",image:"25ab.png",sheet_x:0,sheet_y:34,short_name:"white_small_square",short_names:["white_small_square"],text:null,texts:null,category:"Symbols",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tj":{name:"Regional Indicator Symbol Letters Tj",unified:"1F1F9-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ef.png",sheet_x:38,sheet_y:12,short_name:"flag-tj",short_names:["flag-tj"],text:null,texts:null,category:"Flags",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_large_square:{name:"Black Large Square",unified:"2B1B",variations:["2B1B-FE0F"],docomo:null,au:"E549",softbank:"E21A",google:"FEB6C",image:"2b1b.png",sheet_x:4,sheet_y:22,short_name:"black_large_square",short_names:["black_large_square"],text:null,texts:null,category:"Symbols",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tz":{name:"Regional Indicator Symbol Letters Tz",unified:"1F1F9-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ff.png",sheet_x:38,sheet_y:22,short_name:"flag-tz",short_names:["flag-tz"],text:null,texts:null,category:"Flags",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_large_square:{name:"White Large Square",unified:"2B1C",variations:["2B1C-FE0F"],docomo:null,au:"E548",softbank:"E21B",google:"FEB6B",image:"2b1c.png",sheet_x:4,sheet_y:23,short_name:"white_large_square",short_names:["white_large_square"],text:null,texts:null,category:"Symbols",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-th":{name:"Regional Indicator Symbol Letters Th",unified:"1F1F9-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ed.png",sheet_x:38,sheet_y:11,short_name:"flag-th",short_names:["flag-th"],text:null,texts:null,category:"Flags",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tl":{name:"Regional Indicator Symbol Letters Tl",unified:"1F1F9-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f1.png",sheet_x:38,sheet_y:14,short_name:"flag-tl",short_names:["flag-tl"],text:null,texts:null,category:"Flags",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},small_red_triangle_down:{name:"Down-Pointing Red Triangle",unified:"1F53B",variations:[],docomo:null,au:"E55B",softbank:null,google:"FEB79",image:"1f53b.png",sheet_x:24,sheet_y:2,short_name:"small_red_triangle_down",short_names:["small_red_triangle_down"],text:null,texts:null,category:"Symbols",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tg":{name:"Regional Indicator Symbol Letters Tg",unified:"1F1F9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ec.png",sheet_x:38,sheet_y:10,short_name:"flag-tg",short_names:["flag-tg"],text:null,texts:null,category:"Flags",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_medium_square:{name:"Black Medium Square",unified:"25FC",variations:["25FC-FE0F"],docomo:null,au:"E539",softbank:"E21A",google:"FEB72",image:"25fc.png",sheet_x:0,sheet_y:38,short_name:"black_medium_square",short_names:["black_medium_square"],text:null,texts:null,category:"Symbols",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tk":{name:"Regional Indicator Symbol Letters Tk",unified:"1F1F9-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f0.png",sheet_x:38,sheet_y:13,short_name:"flag-tk",short_names:["flag-tk"],text:null,texts:null,category:"Flags",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_medium_square:{name:"White Medium Square",unified:"25FB",variations:["25FB-FE0F"],docomo:null,au:"E538",softbank:"E21B",google:"FEB71",image:"25fb.png",sheet_x:0,sheet_y:37,short_name:"white_medium_square",short_names:["white_medium_square"],text:null,texts:null,category:"Symbols",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-to":{name:"Regional Indicator Symbol Letters to",unified:"1F1F9-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f4.png",sheet_x:38,sheet_y:17,short_name:"flag-to",short_names:["flag-to"],text:null,texts:null,category:"Flags",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_medium_small_square:{name:"Black Medium Small Square",unified:"25FE",variations:["25FE-FE0F"],docomo:null,au:"E535",softbank:"E21A",google:"FEB70",image:"25fe.png",sheet_x:0,sheet_y:40,short_name:"black_medium_small_square",short_names:["black_medium_small_square"],text:null,texts:null,category:"Symbols",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_medium_small_square:{name:"White Medium Small Square",unified:"25FD",variations:["25FD-FE0F"],docomo:null,au:"E534",softbank:"E21B",google:"FEB6F",image:"25fd.png",sheet_x:0,sheet_y:39,short_name:"white_medium_small_square",short_names:["white_medium_small_square"],text:null,texts:null,category:"Symbols",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tt":{name:"Regional Indicator Symbol Letters Tt",unified:"1F1F9-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f9.png",sheet_x:38,sheet_y:19,short_name:"flag-tt",short_names:["flag-tt"],text:null,texts:null,category:"Flags",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_square_button:{name:"Black Square Button",unified:"1F532",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f532.png",sheet_x:23,sheet_y:34,short_name:"black_square_button",short_names:["black_square_button"],text:null,texts:null,category:"Symbols",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tn":{name:"Regional Indicator Symbol Letters Tn",unified:"1F1F9-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f3.png",sheet_x:38,sheet_y:16,short_name:"flag-tn",short_names:["flag-tn"],text:null,texts:null,category:"Flags",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tr":{name:"Regional Indicator Symbol Letters Tr",unified:"1F1F9-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f7.png",sheet_x:38,sheet_y:18,short_name:"flag-tr",short_names:["flag-tr"],text:null,texts:null,category:"Flags",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},white_square_button:{name:"White Square Button",unified:"1F533",variations:[],docomo:"E69C",au:"E54B",softbank:"E21B",google:"FEB67",image:"1f533.png",sheet_x:23,sheet_y:35,short_name:"white_square_button",short_names:["white_square_button"],text:null,texts:null,category:"Symbols",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tm":{name:"Regional Indicator Symbol Letters Tm",unified:"1F1F9-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f2.png",sheet_x:38,sheet_y:15,short_name:"flag-tm",short_names:["flag-tm"],text:null,texts:null,category:"Flags",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},speaker:{name:"Speaker",unified:"1F508",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f508.png",sheet_x:22,sheet_y:33,short_name:"speaker",short_names:["speaker"],text:null,texts:null,category:"Symbols",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tc":{name:"Regional Indicator Symbol Letters Tc",unified:"1F1F9-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e8.png",sheet_x:38,sheet_y:7,short_name:"flag-tc",short_names:["flag-tc"],text:null,texts:null,category:"Flags",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},sound:{name:"Speaker with One Sound Wave",unified:"1F509",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f509.png",sheet_x:22,sheet_y:34,short_name:"sound",short_names:["sound"],text:null,texts:null,category:"Symbols",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-tv":{name:"Regional Indicator Symbol Letters Tv",unified:"1F1F9-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fb.png",sheet_x:38,sheet_y:20,short_name:"flag-tv",short_names:["flag-tv"],text:null,texts:null,category:"Flags",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},loud_sound:{name:"Speaker with Three Sound Waves",unified:"1F50A",variations:[],docomo:null,au:"E511",softbank:"E141",google:"FE821",image:"1f50a.png",sheet_x:22,sheet_y:35,short_name:"loud_sound",short_names:["loud_sound"],text:null,texts:null,category:"Symbols",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mute:{name:"Speaker with Cancellation Stroke",unified:"1F507",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f507.png",sheet_x:22,sheet_y:32,short_name:"mute",short_names:["mute"],text:null,texts:null,category:"Symbols",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ug":{name:"Regional Indicator Symbol Letters Ug",unified:"1F1FA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ec.png",sheet_x:38,sheet_y:24,short_name:"flag-ug",short_names:["flag-ug"],text:null,texts:null,category:"Flags",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ua":{name:"Regional Indicator Symbol Letters Ua",unified:"1F1FA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1e6.png",sheet_x:38,sheet_y:23,short_name:"flag-ua",short_names:["flag-ua"],text:null,texts:null,category:"Flags",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mega:{name:"Cheering Megaphone",unified:"1F4E3",variations:[],docomo:null,au:"E511",softbank:"E317",google:"FE530",image:"1f4e3.png",sheet_x:21,sheet_y:38,short_name:"mega",short_names:["mega"],text:null,texts:null,category:"Symbols",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ae":{name:"Regional Indicator Symbol Letters Ae",unified:"1F1E6-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ea.png",sheet_x:32,sheet_y:35,short_name:"flag-ae",short_names:["flag-ae"],text:null,texts:null,category:"Flags",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},loudspeaker:{name:"Public Address Loudspeaker",unified:"1F4E2", -variations:[],docomo:null,au:"E511",softbank:"E142",google:"FE52F",image:"1f4e2.png",sheet_x:21,sheet_y:37,short_name:"loudspeaker",short_names:["loudspeaker"],text:null,texts:null,category:"Symbols",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},bell:{name:"Bell",unified:"1F514",variations:[],docomo:"E713",au:"E512",softbank:"E325",google:"FE4F2",image:"1f514.png",sheet_x:23,sheet_y:4,short_name:"bell",short_names:["bell"],text:null,texts:null,category:"Symbols",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-gb":{name:"Regional Indicator Symbol Letters Gb",unified:"1F1EC-1F1E7",variations:[],docomo:null,au:"EB10",softbank:"E510",google:"FE4EA",image:"1f1ec-1f1e7.png",sheet_x:34,sheet_y:32,short_name:"flag-gb",short_names:["flag-gb","gb","uk"],text:null,texts:null,category:"Flags",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-us":{name:"Regional Indicator Symbol Letters Us",unified:"1F1FA-1F1F8",variations:[],docomo:null,au:"E573",softbank:"E50C",google:"FE4E6",image:"1f1fa-1f1f8.png",sheet_x:38,sheet_y:26,short_name:"flag-us",short_names:["flag-us","us"],text:null,texts:null,category:"Flags",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},no_bell:{name:"Bell with Cancellation Stroke",unified:"1F515",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f515.png",sheet_x:23,sheet_y:5,short_name:"no_bell",short_names:["no_bell"],text:null,texts:null,category:"Symbols",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-vi":{name:"Regional Indicator Symbol Letters Vi",unified:"1F1FB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ee.png",sheet_x:38,sheet_y:33,short_name:"flag-vi",short_names:["flag-vi"],text:null,texts:null,category:"Flags",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},black_joker:{name:"Playing Card Black Joker",unified:"1F0CF",variations:[],docomo:null,au:"EB6F",softbank:null,google:"FE812",image:"1f0cf.png",sheet_x:4,sheet_y:31,short_name:"black_joker",short_names:["black_joker"],text:null,texts:null,category:"Symbols",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},mahjong:{name:"Mahjong Tile Red Dragon",unified:"1F004",variations:["1F004-FE0F"],docomo:null,au:"E5D1",softbank:"E12D",google:"FE80B",image:"1f004.png",sheet_x:4,sheet_y:30,short_name:"mahjong",short_names:["mahjong"],text:null,texts:null,category:"Symbols",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-uy":{name:"Regional Indicator Symbol Letters Uy",unified:"1F1FA-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1fe.png",sheet_x:38,sheet_y:27,short_name:"flag-uy",short_names:["flag-uy"],text:null,texts:null,category:"Flags",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},spades:{name:"Black Spade Suit",unified:"2660",variations:["2660-FE0F"],docomo:"E68E",au:"E5A1",softbank:"E20E",google:"FEB1B",image:"2660.png",sheet_x:1,sheet_y:38,short_name:"spades",short_names:["spades"],text:null,texts:null,category:"Symbols",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-uz":{name:"Regional Indicator Symbol Letters Uz",unified:"1F1FA-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ff.png",sheet_x:38,sheet_y:28,short_name:"flag-uz",short_names:["flag-uz"],text:null,texts:null,category:"Flags",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clubs:{name:"Black Club Suit",unified:"2663",variations:["2663-FE0F"],docomo:"E690",au:"E5A3",softbank:"E20F",google:"FEB1D",image:"2663.png",sheet_x:1,sheet_y:39,short_name:"clubs",short_names:["clubs"],text:null,texts:null,category:"Symbols",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-vu":{name:"Regional Indicator Symbol Letters Vu",unified:"1F1FB-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1fa.png",sheet_x:38,sheet_y:35,short_name:"flag-vu",short_names:["flag-vu"],text:null,texts:null,category:"Flags",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},hearts:{name:"Black Heart Suit",unified:"2665",variations:["2665-FE0F"],docomo:"E68D",au:"EAA5",softbank:"E20C",google:"FEB1A",image:"2665.png",sheet_x:1,sheet_y:40,short_name:"hearts",short_names:["hearts"],text:null,texts:null,category:"Symbols",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-va":{name:"Regional Indicator Symbol Letters Va",unified:"1F1FB-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e6.png",sheet_x:38,sheet_y:29,short_name:"flag-va",short_names:["flag-va"],text:null,texts:null,category:"Flags",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},diamonds:{name:"Black Diamond Suit",unified:"2666",variations:["2666-FE0F"],docomo:"E68F",au:"E5A2",softbank:"E20D",google:"FEB1C",image:"2666.png",sheet_x:2,sheet_y:0,short_name:"diamonds",short_names:["diamonds"],text:null,texts:null,category:"Symbols",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ve":{name:"Regional Indicator Symbol Letters Ve",unified:"1F1FB-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ea.png",sheet_x:38,sheet_y:31,short_name:"flag-ve",short_names:["flag-ve"],text:null,texts:null,category:"Flags",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-vn":{name:"Regional Indicator Symbol Letters Vn",unified:"1F1FB-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1f3.png",sheet_x:38,sheet_y:34,short_name:"flag-vn",short_names:["flag-vn"],text:null,texts:null,category:"Flags",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},flower_playing_cards:{name:"Flower Playing Cards",unified:"1F3B4",variations:[],docomo:null,au:"EB6E",softbank:null,google:"FE811",image:"1f3b4.png",sheet_x:9,sheet_y:35,short_name:"flower_playing_cards",short_names:["flower_playing_cards"],text:null,texts:null,category:"Symbols",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},thought_balloon:{name:"Thought Balloon",unified:"1F4AD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ad.png",sheet_x:20,sheet_y:25,short_name:"thought_balloon",short_names:["thought_balloon"],text:null,texts:null,category:"Symbols",sort_order:243,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-wf":{name:"Regional Indicator Symbol Letters Wf",unified:"1F1FC-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1eb.png",sheet_x:38,sheet_y:36,short_name:"flag-wf",short_names:["flag-wf"],text:null,texts:null,category:"Flags",sort_order:243,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"flag-eh":{name:"Regional Indicator Symbol Letters Eh",unified:"1F1EA-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ed.png",sheet_x:34,sheet_y:20,short_name:"flag-eh",short_names:["flag-eh"],text:null,texts:null,category:"Flags",sort_order:244,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},right_anger_bubble:{name:"Right Anger Bubble",unified:"1F5EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5ef.png",sheet_x:26,sheet_y:7,short_name:"right_anger_bubble",short_names:["right_anger_bubble"],text:null,texts:null,category:"Symbols",sort_order:244,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},speech_balloon:{name:"Speech Balloon",unified:"1F4AC",variations:[],docomo:null,au:"E4FD",softbank:null,google:"FE532",image:"1f4ac.png",sheet_x:20,sheet_y:24,short_name:"speech_balloon",short_names:["speech_balloon"],text:null,texts:null,category:"Symbols",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ye":{name:"Regional Indicator Symbol Letters Ye",unified:"1F1FE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fe-1f1ea.png",sheet_x:38,sheet_y:39,short_name:"flag-ye",short_names:["flag-ye"],text:null,texts:null,category:"Flags",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},left_speech_bubble:{name:"Left Speech Bubble",unified:"1F5E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e8.png",sheet_x:26,sheet_y:6,short_name:"left_speech_bubble",short_names:["left_speech_bubble"],text:null,texts:null,category:"Symbols",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1},"flag-zm":{name:"Regional Indicator Symbol Letters Zm",unified:"1F1FF-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1f2.png",sheet_x:39,sheet_y:1,short_name:"flag-zm",short_names:["flag-zm"],text:null,texts:null,category:"Flags",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock1:{name:"Clock Face One Oclock",unified:"1F550",variations:[],docomo:"E6BA",au:"E594",softbank:"E024",google:"FE01E",image:"1f550.png",sheet_x:24,sheet_y:11,short_name:"clock1",short_names:["clock1"],text:null,texts:null,category:"Symbols",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-zw":{name:"Regional Indicator Symbol Letters Zw",unified:"1F1FF-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1fc.png",sheet_x:39,sheet_y:2,short_name:"flag-zw",short_names:["flag-zw"],text:null,texts:null,category:"Flags",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ac":{name:"Regional Indicator Symbol Letters Ac",unified:"1F1E6-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1e8.png",sheet_x:32,sheet_y:33,short_name:"flag-ac",short_names:["flag-ac"],text:null,texts:null,category:"Flags",sort_order:248,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock2:{name:"Clock Face Two Oclock",unified:"1F551",variations:[],docomo:"E6BA",au:"E594",softbank:"E025",google:"FE01F",image:"1f551.png",sheet_x:24,sheet_y:12,short_name:"clock2",short_names:["clock2"],text:null,texts:null,category:"Symbols",sort_order:248,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-bv":{name:"Regional Indicator Symbol Letters Bv",unified:"1F1E7-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fb.png",sheet_x:33,sheet_y:26,short_name:"flag-bv",short_names:["flag-bv"],text:null,texts:null,category:"Flags",sort_order:249,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock3:{name:"Clock Face Three Oclock",unified:"1F552",variations:[],docomo:"E6BA",au:"E594",softbank:"E026",google:"FE020",image:"1f552.png",sheet_x:24,sheet_y:13,short_name:"clock3",short_names:["clock3"],text:null,texts:null,category:"Symbols",sort_order:249,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-cp":{name:"Regional Indicator Symbol Letters Cp",unified:"1F1E8-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f5.png",sheet_x:34,sheet_y:1,short_name:"flag-cp",short_names:["flag-cp"],text:null,texts:null,category:"Flags",sort_order:250,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock4:{name:"Clock Face Four Oclock",unified:"1F553",variations:[],docomo:"E6BA",au:"E594",softbank:"E027",google:"FE021",image:"1f553.png",sheet_x:24,sheet_y:14,short_name:"clock4",short_names:["clock4"],text:null,texts:null,category:"Symbols",sort_order:250,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock5:{name:"Clock Face Five Oclock",unified:"1F554",variations:[],docomo:"E6BA",au:"E594",softbank:"E028",google:"FE022",image:"1f554.png",sheet_x:24,sheet_y:15,short_name:"clock5",short_names:["clock5"],text:null,texts:null,category:"Symbols",sort_order:251,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-dg":{name:"Regional Indicator Symbol Letters Dg",unified:"1F1E9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ec.png",sheet_x:34,sheet_y:10,short_name:"flag-dg",short_names:["flag-dg"],text:null,texts:null,category:"Flags",sort_order:251,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock6:{name:"Clock Face Six Oclock",unified:"1F555",variations:[],docomo:"E6BA",au:"E594",softbank:"E029",google:"FE023",image:"1f555.png",sheet_x:24,sheet_y:16,short_name:"clock6",short_names:["clock6"],text:null,texts:null,category:"Symbols",sort_order:252,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-ea":{name:"Regional Indicator Symbol Letters Ea",unified:"1F1EA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1e6.png",sheet_x:34,sheet_y:16,short_name:"flag-ea",short_names:["flag-ea"],text:null,texts:null,category:"Flags",sort_order:252,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"flag-hm":{name:"Regional Indicator Symbol Letters Hm",unified:"1F1ED-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f2.png",sheet_x:35,sheet_y:10,short_name:"flag-hm",short_names:["flag-hm"],text:null,texts:null,category:"Flags",sort_order:253,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock7:{name:"Clock Face Seven Oclock",unified:"1F556",variations:[],docomo:"E6BA",au:"E594",softbank:"E02A",google:"FE024",image:"1f556.png",sheet_x:24,sheet_y:17,short_name:"clock7",short_names:["clock7"],text:null,texts:null,category:"Symbols",sort_order:253,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-mf":{name:"Regional Indicator Symbol Letters Mf",unified:"1F1F2-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1eb.png",sheet_x:36,sheet_y:15,short_name:"flag-mf",short_names:["flag-mf"],text:null,texts:null,category:"Flags",sort_order:254,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock8:{name:"Clock Face Eight Oclock",unified:"1F557",variations:[],docomo:"E6BA",au:"E594",softbank:"E02B",google:"FE025",image:"1f557.png",sheet_x:24,sheet_y:18,short_name:"clock8",short_names:["clock8"],text:null,texts:null,category:"Symbols",sort_order:254,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock9:{name:"Clock Face Nine Oclock",unified:"1F558",variations:[],docomo:"E6BA",au:"E594",softbank:"E02C",google:"FE026",image:"1f558.png",sheet_x:24,sheet_y:19,short_name:"clock9",short_names:["clock9"],text:null,texts:null,category:"Symbols",sort_order:255,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-sj":{name:"Regional Indicator Symbol Letters Sj",unified:"1F1F8-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ef.png",sheet_x:37,sheet_y:34,short_name:"flag-sj",short_names:["flag-sj"],text:null,texts:null,category:"Flags",sort_order:255,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"flag-ta":{name:"Regional Indicator Symbol Letters Ta",unified:"1F1F9-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e6.png",sheet_x:38,sheet_y:6,short_name:"flag-ta",short_names:["flag-ta"],text:null,texts:null,category:"Flags",sort_order:256,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock10:{name:"Clock Face Ten Oclock",unified:"1F559",variations:[],docomo:"E6BA",au:"E594",softbank:"E02D",google:"FE027",image:"1f559.png",sheet_x:24,sheet_y:20,short_name:"clock10",short_names:["clock10"],text:null,texts:null,category:"Symbols",sort_order:256,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},"flag-um":{name:"Regional Indicator Symbol Letters Um",unified:"1F1FA-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1f2.png",sheet_x:38,sheet_y:25,short_name:"flag-um",short_names:["flag-um"],text:null,texts:null,category:"Flags",sort_order:257,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},clock11:{name:"Clock Face Eleven Oclock",unified:"1F55A",variations:[],docomo:"E6BA",au:"E594",softbank:"E02E",google:"FE028",image:"1f55a.png",sheet_x:24,sheet_y:21,short_name:"clock11",short_names:["clock11"],text:null,texts:null,category:"Symbols",sort_order:257,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock12:{name:"Clock Face Twelve Oclock",unified:"1F55B",variations:[],docomo:"E6BA",au:"E594",softbank:"E02F",google:"FE029",image:"1f55b.png",sheet_x:24,sheet_y:22,short_name:"clock12",short_names:["clock12"],text:null,texts:null,category:"Symbols",sort_order:258,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock130:{name:"Clock Face One-Thirty",unified:"1F55C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55c.png",sheet_x:24,sheet_y:23,short_name:"clock130",short_names:["clock130"],text:null,texts:null,category:"Symbols",sort_order:259,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock230:{name:"Clock Face Two-Thirty",unified:"1F55D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55d.png",sheet_x:24,sheet_y:24,short_name:"clock230",short_names:["clock230"],text:null,texts:null,category:"Symbols",sort_order:260,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock330:{name:"Clock Face Three-Thirty",unified:"1F55E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55e.png",sheet_x:24,sheet_y:25,short_name:"clock330",short_names:["clock330"],text:null,texts:null,category:"Symbols",sort_order:261,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock430:{name:"Clock Face Four-Thirty",unified:"1F55F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55f.png",sheet_x:24,sheet_y:26,short_name:"clock430",short_names:["clock430"],text:null,texts:null,category:"Symbols",sort_order:262,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock530:{name:"Clock Face Five-Thirty",unified:"1F560",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f560.png",sheet_x:24,sheet_y:27,short_name:"clock530",short_names:["clock530"],text:null,texts:null,category:"Symbols",sort_order:263,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock630:{name:"Clock Face Six-Thirty",unified:"1F561",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f561.png",sheet_x:24,sheet_y:28,short_name:"clock630",short_names:["clock630"],text:null,texts:null,category:"Symbols",sort_order:264,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock730:{name:"Clock Face Seven-Thirty",unified:"1F562",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f562.png",sheet_x:24,sheet_y:29,short_name:"clock730",short_names:["clock730"],text:null,texts:null,category:"Symbols",sort_order:265,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock830:{name:"Clock Face Eight-Thirty",unified:"1F563",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f563.png",sheet_x:24,sheet_y:30,short_name:"clock830",short_names:["clock830"],text:null,texts:null,category:"Symbols",sort_order:266,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock930:{name:"Clock Face Nine-Thirty",unified:"1F564",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f564.png",sheet_x:24,sheet_y:31,short_name:"clock930",short_names:["clock930"],text:null,texts:null,category:"Symbols",sort_order:267,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock1030:{name:"Clock Face Ten-Thirty",unified:"1F565",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f565.png",sheet_x:24,sheet_y:32,short_name:"clock1030",short_names:["clock1030"],text:null,texts:null,category:"Symbols",sort_order:268,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock1130:{name:"Clock Face Eleven-Thirty",unified:"1F566",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f566.png",sheet_x:24,sheet_y:33,short_name:"clock1130",short_names:["clock1130"],text:null,texts:null,category:"Symbols",sort_order:269,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0},clock1230:{name:"Clock Face Twelve-Thirty",unified:"1F567",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f567.png",sheet_x:24,sheet_y:34,short_name:"clock1230",short_names:["clock1230"],text:null,texts:null,category:"Symbols",sort_order:270,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0}},skins:{"skin-tone-2":{name:"Emoji Modifier Fitzpatrick Type-1-2",unified:"1F3FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fb.png",sheet_x:12,sheet_y:0,short_name:"skin-tone-2",short_names:["skin-tone-2"],text:null,texts:null,category:"Skin Tones",sort_order:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"skin-tone-3":{name:"Emoji Modifier Fitzpatrick Type-3",unified:"1F3FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fc.png",sheet_x:12,sheet_y:1,short_name:"skin-tone-3",short_names:["skin-tone-3"],text:null,texts:null,category:"Skin Tones",sort_order:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"skin-tone-4":{name:"Emoji Modifier Fitzpatrick Type-4",unified:"1F3FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fd.png",sheet_x:12,sheet_y:2,short_name:"skin-tone-4",short_names:["skin-tone-4"],text:null,texts:null,category:"Skin Tones",sort_order:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"skin-tone-5":{name:"Emoji Modifier Fitzpatrick Type-5",unified:"1F3FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fe.png",sheet_x:12,sheet_y:3,short_name:"skin-tone-5",short_names:["skin-tone-5"],text:null,texts:null,category:"Skin Tones",sort_order:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"skin-tone-6":{name:"Emoji Modifier Fitzpatrick Type-6",unified:"1F3FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3ff.png",sheet_x:12,sheet_y:4,short_name:"skin-tone-6",short_names:["skin-tone-6"],text:null,texts:null,category:"Skin Tones",sort_order:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}}}},function(e,o,a){"use strict";function t(e){return e&&e.__esModule?e:{"default":e}}function s(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function i(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function _(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var n=function(){function e(e,o){for(var a=0;a(this.scrollTop||0),t=null,s=this.state.categories,i=0,_=s.length;_>i;i++){var n=a?s.length-1-i:i,l=s[n],g=this.refs["category-"+n];if(g){var m=g.handleScroll(o);m&&!t&&(t=l)}}if(t){var r=this.refs.anchors,h=t,u=h.name;r.state.selected!=u&&r.setState({selected:u})}this.scrollTop=o}},{key:"handleSearch",value:function(e){null==e?this.setState({categories:u}):this.setState({categories:[{name:"Search Results",emojis:e}]})}},{key:"handleAnchorClick",value:function(e,o){var a=this.refs["category-"+o],t=this.refs,s=t.scroll;t.anchors;if(a){var i=a.top;0==o?i=0:i+=1,s.scrollTop=i}}},{key:"handleSkinChange",value:function(e){this.setState({skin:e})}},{key:"render",value:function(){var e=this,o=this.props,a=o.perLine,t=o.emojiSize,s=o.sheetURL,i=this.state.skin,_=a*(t+12)+12+2;return g["default"].createElement("div",{style:{width:_},className:"emoji-picker"},g["default"].createElement("div",{className:"emoji-picker-bar"},g["default"].createElement(h.Anchors,{ref:"anchors",categories:u,onAnchorClick:this.handleAnchorClick.bind(this)})),g["default"].createElement("div",{ref:"scroll",className:"emoji-picker-scroll",onScroll:this.handleScroll.bind(this)},g["default"].createElement(h.Search,{onSearch:this.handleSearch.bind(this)}),this.state.categories.map(function(o,a){return g["default"].createElement(h.Category,{ref:"category-"+a,key:o.name,name:o.name,emojis:o.emojis,hasStickyPosition:e.hasStickyPosition,emojiProps:{skin:i,size:t,sheetURL:s,onOver:e.handleEmojiOver.bind(e),onLeave:e.handleEmojiLeave.bind(e),onClick:e.props.onClick}})})),g["default"].createElement("div",{className:"emoji-picker-bar"},g["default"].createElement(h.Preview,{ref:"preview",emojiProps:{size:38,sheetURL:s},skinsProps:{skin:i,onChange:this.handleSkinChange.bind(this)}})))}}]),o}(g["default"].Component);o["default"]=f,f.propTypes={onClick:g["default"].PropTypes.func,skin:g["default"].PropTypes.number,perLine:g["default"].PropTypes.number,emojiSize:g["default"].PropTypes.number,sheetURL:g["default"].PropTypes.string.isRequired},f.defaultProps={onClick:function(){},emojiSize:24,perLine:9,skin:1}},function(e,o){"use strict";!function(){for(var e=0,o=["ms","moz","webkit","o"],a=0;a: `raw` prop works only when `window.DOMParser` exists.");var d=function(e){function o(e){t(this,o),l(Object.getPrototypeOf(o.prototype),"constructor",this).call(this,e),this._extractSVGProps=this._extractSVGProps.bind(this)}return s(o,e),r(o,null,[{key:"defaultProps",value:{element:"i",raw:!1,src:""},enumerable:!0},{key:"propTypes",value:{src:u["default"].PropTypes.string.isRequired,element:u["default"].PropTypes.string,raw:u["default"].PropTypes.bool},enumerable:!0}]),r(o,[{key:"_serializeAttrs",value:function(e){for(var o={},a=void 0,i=0;i0?this._serializeAttrs(o):null}},{key:"_stripSVG",value:function(e){return n(e).documentElement.innerHTML}},{key:"componentWillReceiveProps",value:function(e){var o=e.children;"production"!==c.env.NODE_ENV&&null!=o&&console.info(": `children` prop will be ignored.")}},{key:"render",value:function(){var e=void 0,o=void 0,a=void 0,i=this.props,t=i.element,s=i.raw,n=i.src;return s===!0&&_(n)&&(e="svg",a=this._extractSVGProps(n),o=this._stripSVG(n)),o=o||n,e=e||t,a=a||{},u["default"].createElement(e,m({},a,this.props,{src:null,children:null,dangerouslySetInnerHTML:{__html:o}}))}}]),o}(u["default"].Component);o["default"]=d,e.exports=o["default"]},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(o,"__esModule",{value:!0});var t=a(6);Object.defineProperty(o,"Activity",{enumerable:!0,get:function(){return i(t)["default"]}});var s=a(7);Object.defineProperty(o,"Flags",{enumerable:!0,get:function(){return i(s)["default"]}});var _=a(8);Object.defineProperty(o,"Foods",{enumerable:!0,get:function(){return i(_)["default"]}});var n=a(9);Object.defineProperty(o,"Nature",{enumerable:!0,get:function(){return i(n)["default"]}});var g=a(10);Object.defineProperty(o,"Objects",{enumerable:!0,get:function(){return i(g)["default"]}});var m=a(11);Object.defineProperty(o,"People",{enumerable:!0,get:function(){return i(m)["default"]}});var r=a(12);Object.defineProperty(o,"Places",{enumerable:!0,get:function(){return i(r)["default"]}});var l=a(13);Object.defineProperty(o,"Recent",{enumerable:!0,get:function(){return i(l)["default"]}});var h=a(14);Object.defineProperty(o,"Symbols",{enumerable:!0,get:function(){return i(h)["default"]}})},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o){e.exports=''},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function s(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function _(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var n=Object.assign||function(e){for(var o=1;othis.maxMargin?this.maxMargin:o,o!=this.margin){this.props.name;return this.props.hasStickyPosition||(this.label.style.top=o+"px"),this.margin=o,!0}}},{key:"getEmojis",value:function(){var e=this.props,o=e.name,a=e.emojis,i=e.perLine;if("Recent"==o){var t=l.frequently.get(4*i);t.length&&(a=t)}return a&&(a=a.slice(0)),a}},{key:"updateDisplay",value:function(e){var o=this.getEmojis();(e||o)&&(this.container.style.display=e)}},{key:"render",value:function(){var e=this.props,o=e.name,a=e.hasStickyPosition,i=e.emojiProps,t=this.getEmojis(),s={},_={},g={};return t||(g={display:"none"}),a||(s={height:28},_={position:"absolute"}),r["default"].createElement("div",{ref:"container",className:"emoji-picker-category",style:g},r["default"].createElement("div",{style:s,"data-name":o,className:"emoji-picker-category-label"},r["default"].createElement("span",{style:_,ref:"label"},u[o])),t&&t.map(function(e){return r["default"].createElement(h.Emoji,n({key:e,emoji:e},i))}),t&&!t.length&&r["default"].createElement("div",{className:"emoji-picker-no-results"},r["default"].createElement(h.Emoji,n({},i,{size:22,emoji:"sleuth_or_spy"})),r["default"].createElement("span",{className:"emoji-picker-no-results-label"},"No emoji found")))}}]),o}(r["default"].Component);o["default"]=f,f.propTypes={emojis:r["default"].PropTypes.array,hasStickyPosition:r["default"].PropTypes.bool,name:r["default"].PropTypes.string.isRequired,perLine:r["default"].PropTypes.number.isRequired,emojiProps:r["default"].PropTypes.object.isRequired},f.defaultProps={emojis:[],hasStickyPosition:!0}},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}Object.defineProperty(o,"__esModule",{value:!0});var t=a(17);Object.defineProperty(o,"store",{enumerable:!0,get:function(){return i(t)["default"]}});var s=a(18);Object.defineProperty(o,"emojiIndex",{enumerable:!0,get:function(){return i(s)["default"]}});var _=a(21);Object.defineProperty(o,"frequently",{enumerable:!0,get:function(){return i(_)["default"]}})},function(e,o){"use strict";function a(e){for(var o in e){var a=e[o];i(o,a)}}function i(e,o){"localStorage"in window&&(window.localStorage[s+"."+e]=JSON.stringify(o))}function t(e){if("localStorage"in window){var o=window.localStorage[s+"."+e];return o?JSON.parse(o):void 0}}Object.defineProperty(o,"__esModule",{value:!0});var s="emoji-picker";o["default"]={update:a,set:i,get:t}},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e){var o=arguments.length<=1||void 0===arguments[1]?75:arguments[1],a=null;return e.length&&(a=r.search(s(e)).map(function(e){return e.ref}),a=a.slice(0,o)),a}function s(e){return 0==["-","-1","+","+1"].indexOf(e)?e.split(""):/(:|;|=)-/.test(e)?[e]:e.split(/[-|_|\s]+/)}Object.defineProperty(o,"__esModule",{value:!0});var _=a(19),n=i(_),g=a(20),m=i(g),r=(0,n["default"])(function(){this.pipeline.reset(),this.field("short_name",{boost:2}),this.field("emoticons"),this.field("name"),this.ref("id")});for(var l in m["default"].emojis){var h=m["default"].emojis[l],u=h.short_name,f=h.name,c=h.emoticons;r.add({id:u,emoticons:c,short_name:s(u),name:s(f)})}o["default"]={search:t}},function(e,o,a){var i,t;!function(){var s=function(e){var o=new s.Index;return o.pipeline.add(s.trimmer,s.stopWordFilter,s.stemmer),e&&e.call(o,o),o};s.version="0.7.1",/*! * lunr.utils * Copyright (C) 2016 Oliver Nightingale */ -i.utils={},i.utils.warn=function(e){return function(o){e.console&&console.warn&&console.warn(o)}}(this),i.utils.asString=function(e){return void 0===e||null===e?"":e.toString()},/*! +s.utils={},s.utils.warn=function(e){return function(o){e.console&&console.warn&&console.warn(o)}}(this),s.utils.asString=function(e){return void 0===e||null===e?"":e.toString()},/*! * lunr.EventEmitter * Copyright (C) 2016 Oliver Nightingale */ -i.EventEmitter=function(){this.events={}},i.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),o=e.pop(),a=e;if("function"!=typeof o)throw new TypeError("last argument must be a function");a.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(o)},this)},i.EventEmitter.prototype.removeListener=function(e,o){if(this.hasHandler(e)){var a=this.events[e].indexOf(o);this.events[e].splice(a,1),this.events[e].length||delete this.events[e]}},i.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var o=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,o)})}},i.EventEmitter.prototype.hasHandler=function(e){return e in this.events},/*! +s.EventEmitter=function(){this.events={}},s.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),o=e.pop(),a=e;if("function"!=typeof o)throw new TypeError("last argument must be a function");a.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(o)},this)},s.EventEmitter.prototype.removeListener=function(e,o){if(this.hasHandler(e)){var a=this.events[e].indexOf(o);this.events[e].splice(a,1),this.events[e].length||delete this.events[e]}},s.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var o=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,o)})}},s.EventEmitter.prototype.hasHandler=function(e){return e in this.events},/*! * lunr.tokenizer * Copyright (C) 2016 Oliver Nightingale */ -i.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return i.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(i.tokenizer.seperator):[]},i.tokenizer.seperator=/[\s\-]+/,i.tokenizer.load=function(e){var o=this.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);return o},i.tokenizer.label="default",i.tokenizer.registeredFunctions={"default":i.tokenizer},i.tokenizer.registerFunction=function(e,o){o in this.registeredFunctions&&i.utils.warn("Overwriting existing tokenizer: "+o),e.label=o,this.registeredFunctions[o]=e},/*! +s.tokenizer=function(e){return arguments.length&&null!=e&&void 0!=e?Array.isArray(e)?e.map(function(e){return s.utils.asString(e).toLowerCase()}):e.toString().trim().toLowerCase().split(s.tokenizer.seperator):[]},s.tokenizer.seperator=/[\s\-]+/,s.tokenizer.load=function(e){var o=this.registeredFunctions[e];if(!o)throw new Error("Cannot load un-registered function: "+e);return o},s.tokenizer.label="default",s.tokenizer.registeredFunctions={"default":s.tokenizer},s.tokenizer.registerFunction=function(e,o){o in this.registeredFunctions&&s.utils.warn("Overwriting existing tokenizer: "+o),e.label=o,this.registeredFunctions[o]=e},/*! * lunr.Pipeline * Copyright (C) 2016 Oliver Nightingale */ -i.Pipeline=function(){this._stack=[]},i.Pipeline.registeredFunctions={},i.Pipeline.registerFunction=function(e,o){o in this.registeredFunctions&&i.utils.warn("Overwriting existing registered function: "+o),e.label=o,i.Pipeline.registeredFunctions[e.label]=e},i.Pipeline.warnIfFunctionNotRegistered=function(e){var o=e.label&&e.label in this.registeredFunctions;o||i.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},i.Pipeline.load=function(e){var o=new i.Pipeline;return e.forEach(function(e){var a=i.Pipeline.registeredFunctions[e];if(!a)throw new Error("Cannot load un-registered function: "+e);o.add(a)}),o},i.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){i.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},i.Pipeline.prototype.after=function(e,o){i.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");a+=1,this._stack.splice(a,0,o)},i.Pipeline.prototype.before=function(e,o){i.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");this._stack.splice(a,0,o)},i.Pipeline.prototype.remove=function(e){var o=this._stack.indexOf(e);-1!=o&&this._stack.splice(o,1)},i.Pipeline.prototype.run=function(e){for(var o=[],a=e.length,t=this._stack.length,s=0;a>s;s++){for(var i=e[s],_=0;t>_&&(i=this._stack[_](i,s,e),void 0!==i&&""!==i);_++);void 0!==i&&""!==i&&o.push(i)}return o},i.Pipeline.prototype.reset=function(){this._stack=[]},i.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return i.Pipeline.warnIfFunctionNotRegistered(e),e.label})},/*! +s.Pipeline=function(){this._stack=[]},s.Pipeline.registeredFunctions={},s.Pipeline.registerFunction=function(e,o){o in this.registeredFunctions&&s.utils.warn("Overwriting existing registered function: "+o),e.label=o,s.Pipeline.registeredFunctions[e.label]=e},s.Pipeline.warnIfFunctionNotRegistered=function(e){var o=e.label&&e.label in this.registeredFunctions;o||s.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},s.Pipeline.load=function(e){var o=new s.Pipeline;return e.forEach(function(e){var a=s.Pipeline.registeredFunctions[e];if(!a)throw new Error("Cannot load un-registered function: "+e);o.add(a)}),o},s.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){s.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},s.Pipeline.prototype.after=function(e,o){s.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");a+=1,this._stack.splice(a,0,o)},s.Pipeline.prototype.before=function(e,o){s.Pipeline.warnIfFunctionNotRegistered(o);var a=this._stack.indexOf(e);if(-1==a)throw new Error("Cannot find existingFn");this._stack.splice(a,0,o)},s.Pipeline.prototype.remove=function(e){var o=this._stack.indexOf(e);-1!=o&&this._stack.splice(o,1)},s.Pipeline.prototype.run=function(e){for(var o=[],a=e.length,i=this._stack.length,t=0;a>t;t++){for(var s=e[t],_=0;i>_&&(s=this._stack[_](s,t,e),void 0!==s&&""!==s);_++);void 0!==s&&""!==s&&o.push(s)}return o},s.Pipeline.prototype.reset=function(){this._stack=[]},s.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return s.Pipeline.warnIfFunctionNotRegistered(e),e.label})},/*! * lunr.Vector * Copyright (C) 2016 Oliver Nightingale */ -i.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},i.Vector.Node=function(e,o,a){this.idx=e,this.val=o,this.next=a},i.Vector.prototype.insert=function(e,o){this._magnitude=void 0;var a=this.list;if(!a)return this.list=new i.Vector.Node(e,o,a),this.length++;if(ea.idx?a=a.next:(t+=o.val*a.val,o=o.next,a=a.next);return t},i.Vector.prototype.similarity=function(e){return this.dot(e)/(this.magnitude()*e.magnitude())},/*! +s.Vector=function(){this._magnitude=null,this.list=void 0,this.length=0},s.Vector.Node=function(e,o,a){this.idx=e,this.val=o,this.next=a},s.Vector.prototype.insert=function(e,o){this._magnitude=void 0;var a=this.list;if(!a)return this.list=new s.Vector.Node(e,o,a),this.length++;if(ea.idx?a=a.next:(i+=o.val*a.val,o=o.next,a=a.next);return i},s.Vector.prototype.similarity=function(e){return this.dot(e)/(this.magnitude()*e.magnitude())},/*! * lunr.SortedSet * Copyright (C) 2016 Oliver Nightingale */ -i.SortedSet=function(){this.length=0,this.elements=[]},i.SortedSet.load=function(e){var o=new this;return o.elements=e,o.length=e.length,o},i.SortedSet.prototype.add=function(){var e,o;for(e=0;e1;){if(i===e)return s;e>i&&(o=s),i>e&&(a=s),t=a-o,s=o+Math.floor(t/2),i=this.elements[s]}return i===e?s:-1},i.SortedSet.prototype.locationFor=function(e){for(var o=0,a=this.elements.length,t=a-o,s=o+Math.floor(t/2),i=this.elements[s];t>1;)e>i&&(o=s),i>e&&(a=s),t=a-o,s=o+Math.floor(t/2),i=this.elements[s];return i>e?s:e>i?s+1:void 0},i.SortedSet.prototype.intersect=function(e){for(var o=new i.SortedSet,a=0,t=0,s=this.length,_=e.length,n=this.elements,l=e.elements;;){if(a>s-1||t>_-1)break;n[a]!==l[t]?n[a]l[t]&&t++:(o.add(n[a]),a++,t++)}return o},i.SortedSet.prototype.clone=function(){var e=new i.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},i.SortedSet.prototype.union=function(e){var o,a,t;this.length>=e.length?(o=this,a=e):(o=e,a=this),t=o.clone();for(var s=0,i=a.toArray();s1;){if(s===e)return t;e>s&&(o=t),s>e&&(a=t),i=a-o,t=o+Math.floor(i/2),s=this.elements[t]}return s===e?t:-1},s.SortedSet.prototype.locationFor=function(e){for(var o=0,a=this.elements.length,i=a-o,t=o+Math.floor(i/2),s=this.elements[t];i>1;)e>s&&(o=t),s>e&&(a=t),i=a-o,t=o+Math.floor(i/2),s=this.elements[t];return s>e?t:e>s?t+1:void 0},s.SortedSet.prototype.intersect=function(e){for(var o=new s.SortedSet,a=0,i=0,t=this.length,_=e.length,n=this.elements,g=e.elements;;){if(a>t-1||i>_-1)break;n[a]!==g[i]?n[a]g[i]&&i++:(o.add(n[a]),a++,i++)}return o},s.SortedSet.prototype.clone=function(){var e=new s.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},s.SortedSet.prototype.union=function(e){var o,a,i;this.length>=e.length?(o=this,a=e):(o=e,a=this),i=o.clone();for(var t=0,s=a.toArray();tf;f++)r[f]===n&&u++;l+=u/h*m.boost}}this.tokenStore.add(n,{ref:s,tf:l})}o&&this.eventEmitter.emit("add",e,this)},i.Index.prototype.remove=function(e,o){var a=e[this._ref],o=void 0===o?!0:o;if(this.documentStore.has(a)){var t=this.documentStore.get(a);this.documentStore.remove(a),t.forEach(function(e){this.tokenStore.remove(e,a)},this),o&&this.eventEmitter.emit("remove",e,this)}},i.Index.prototype.update=function(e,o){var o=void 0===o?!0:o;this.remove(e,!1),this.add(e,!1),o&&this.eventEmitter.emit("update",e,this)},i.Index.prototype.idf=function(e){var o="@"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,o))return this._idfCache[o];var a=this.tokenStore.count(e),t=1;return a>0&&(t=1+Math.log(this.documentStore.length/a)),this._idfCache[o]=t},i.Index.prototype.search=function(e){var o=this.pipeline.run(this.tokenizerFn(e)),a=new i.Vector,t=[],s=this._fields.reduce(function(e,o){return e+o.boost},0),_=o.some(function(e){return this.tokenStore.has(e)},this);if(!_)return[];o.forEach(function(e,o,_){var n=1/_.length*this._fields.length*s,l=this,g=this.tokenStore.expand(e).reduce(function(o,t){var s=l.corpusTokens.indexOf(t),_=l.idf(t),g=1,m=new i.SortedSet;if(t!==e){var r=Math.max(3,t.length-e.length);g=1/Math.log(r)}s>-1&&a.insert(s,n*_*g);for(var h=l.tokenStore.get(t),u=Object.keys(h),f=u.length,p=0;f>p;p++)m.add(h[u[p]].ref);return o.union(m)},new i.SortedSet);t.push(g)},this);var n=t.reduce(function(e,o){return e.intersect(o)});return n.map(function(e){return{ref:e,score:a.similarity(this.documentVector(e))}},this).sort(function(e,o){return o.score-e.score})},i.Index.prototype.documentVector=function(e){for(var o=this.documentStore.get(e),a=o.length,t=new i.Vector,s=0;a>s;s++){var _=o.elements[s],n=this.tokenStore.get(_)[e].tf,l=this.idf(_);t.insert(this.corpusTokens.indexOf(_),n*l)}return t},i.Index.prototype.toJSON=function(){return{version:i.version,fields:this._fields,ref:this._ref,tokenizer:this.tokenizerFn.label,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},i.Index.prototype.use=function(e){var o=Array.prototype.slice.call(arguments,1);o.unshift(this),e.apply(this,o)},/*! +s.Index=function(){this._fields=[],this._ref="id",this.pipeline=new s.Pipeline,this.documentStore=new s.Store,this.tokenStore=new s.TokenStore,this.corpusTokens=new s.SortedSet,this.eventEmitter=new s.EventEmitter,this.tokenizerFn=s.tokenizer,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},s.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},s.Index.prototype.off=function(e,o){return this.eventEmitter.removeListener(e,o)},s.Index.load=function(e){e.version!==s.version&&s.utils.warn("version mismatch: current "+s.version+" importing "+e.version);var o=new this;return o._fields=e.fields,o._ref=e.ref,o.tokenizer=s.tokenizer.load(e.tokenizer),o.documentStore=s.Store.load(e.documentStore),o.tokenStore=s.TokenStore.load(e.tokenStore),o.corpusTokens=s.SortedSet.load(e.corpusTokens),o.pipeline=s.Pipeline.load(e.pipeline),o},s.Index.prototype.field=function(e,o){var o=o||{},a={name:e,boost:o.boost||1};return this._fields.push(a),this},s.Index.prototype.ref=function(e){return this._ref=e,this},s.Index.prototype.tokenizer=function(e){var o=e.label&&e.label in s.tokenizer.registeredFunctions;return o||s.utils.warn("Function is not a registered tokenizer. This may cause problems when serialising the index"),this.tokenizerFn=e,this},s.Index.prototype.add=function(e,o){var a={},i=new s.SortedSet,t=e[this._ref],o=void 0===o?!0:o;this._fields.forEach(function(o){var t=this.pipeline.run(this.tokenizerFn(e[o.name]));a[o.name]=t;for(var s=0;sf;f++)l[f]===n&&u++;g+=u/h*r.boost}}this.tokenStore.add(n,{ref:t,tf:g})}o&&this.eventEmitter.emit("add",e,this)},s.Index.prototype.remove=function(e,o){var a=e[this._ref],o=void 0===o?!0:o;if(this.documentStore.has(a)){var i=this.documentStore.get(a);this.documentStore.remove(a),i.forEach(function(e){this.tokenStore.remove(e,a)},this),o&&this.eventEmitter.emit("remove",e,this)}},s.Index.prototype.update=function(e,o){var o=void 0===o?!0:o;this.remove(e,!1),this.add(e,!1),o&&this.eventEmitter.emit("update",e,this)},s.Index.prototype.idf=function(e){var o="@"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,o))return this._idfCache[o];var a=this.tokenStore.count(e),i=1;return a>0&&(i=1+Math.log(this.documentStore.length/a)),this._idfCache[o]=i},s.Index.prototype.search=function(e){var o=this.pipeline.run(this.tokenizerFn(e)),a=new s.Vector,i=[],t=this._fields.reduce(function(e,o){return e+o.boost},0),_=o.some(function(e){return this.tokenStore.has(e)},this);if(!_)return[];o.forEach(function(e,o,_){var n=1/_.length*this._fields.length*t,g=this,m=this.tokenStore.expand(e).reduce(function(o,i){var t=g.corpusTokens.indexOf(i),_=g.idf(i),m=1,r=new s.SortedSet;if(i!==e){var l=Math.max(3,i.length-e.length);m=1/Math.log(l)}t>-1&&a.insert(t,n*_*m);for(var h=g.tokenStore.get(i),u=Object.keys(h),f=u.length,c=0;f>c;c++)r.add(h[u[c]].ref);return o.union(r)},new s.SortedSet);i.push(m)},this);var n=i.reduce(function(e,o){return e.intersect(o)});return n.map(function(e){return{ref:e,score:a.similarity(this.documentVector(e))}},this).sort(function(e,o){return o.score-e.score})},s.Index.prototype.documentVector=function(e){for(var o=this.documentStore.get(e),a=o.length,i=new s.Vector,t=0;a>t;t++){var _=o.elements[t],n=this.tokenStore.get(_)[e].tf,g=this.idf(_);i.insert(this.corpusTokens.indexOf(_),n*g)}return i},s.Index.prototype.toJSON=function(){return{version:s.version,fields:this._fields,ref:this._ref,tokenizer:this.tokenizerFn.label,documentStore:this.documentStore.toJSON(),tokenStore:this.tokenStore.toJSON(),corpusTokens:this.corpusTokens.toJSON(),pipeline:this.pipeline.toJSON()}},s.Index.prototype.use=function(e){var o=Array.prototype.slice.call(arguments,1);o.unshift(this),e.apply(this,o)},/*! * lunr.Store * Copyright (C) 2016 Oliver Nightingale */ -i.Store=function(){this.store={},this.length=0},i.Store.load=function(e){var o=new this;return o.length=e.length,o.store=Object.keys(e.store).reduce(function(o,a){return o[a]=i.SortedSet.load(e.store[a]),o},{}),o},i.Store.prototype.set=function(e,o){this.has(e)||this.length++,this.store[e]=o},i.Store.prototype.get=function(e){return this.store[e]},i.Store.prototype.has=function(e){return e in this.store},i.Store.prototype.remove=function(e){this.has(e)&&(delete this.store[e],this.length--)},i.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},/*! +s.Store=function(){this.store={},this.length=0},s.Store.load=function(e){var o=new this;return o.length=e.length,o.store=Object.keys(e.store).reduce(function(o,a){return o[a]=s.SortedSet.load(e.store[a]),o},{}),o},s.Store.prototype.set=function(e,o){this.has(e)||this.length++,this.store[e]=o},s.Store.prototype.get=function(e){return this.store[e]},s.Store.prototype.has=function(e){return e in this.store},s.Store.prototype.remove=function(e){this.has(e)&&(delete this.store[e],this.length--)},s.Store.prototype.toJSON=function(){return{store:this.store,length:this.length}},/*! * lunr.stemmer * Copyright (C) 2016 Oliver Nightingale * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt */ -i.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},o={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},a="[^aeiou]",t="[aeiouy]",s=a+"[^aeiouy]*",i=t+"[aeiou]*",_="^("+s+")?"+i+s,n="^("+s+")?"+i+s+"("+i+")?$",l="^("+s+")?"+i+s+i+s,g="^("+s+")?"+t,m=new RegExp(_),r=new RegExp(l),h=new RegExp(n),u=new RegExp(g),f=/^(.+?)(ss|i)es$/,p=/^(.+?)([^s])s$/,c=/^(.+?)eed$/,d=/^(.+?)(ed|ing)$/,F=/.$/,y=/(at|bl|iz)$/,x=new RegExp("([^aeiouylsz])\\1$"),b=new RegExp("^"+s+t+"[^aeiouwxy]$"),E=/^(.+?[^aeiou])y$/,w=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,k=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,v=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,j=/^(.+?)(s|t)(ion)$/,B=/^(.+?)e$/,S=/ll$/,C=new RegExp("^"+s+t+"[^aeiouwxy]$"),A=function(a){var t,s,i,_,n,l,g;if(a.length<3)return a;if(i=a.substr(0,1),"y"==i&&(a=i.toUpperCase()+a.substr(1)),_=f,n=p,_.test(a)?a=a.replace(_,"$1$2"):n.test(a)&&(a=a.replace(n,"$1$2")),_=c,n=d,_.test(a)){var A=_.exec(a);_=m,_.test(A[1])&&(_=F,a=a.replace(_,""))}else if(n.test(a)){var A=n.exec(a);t=A[1],n=u,n.test(t)&&(a=t,n=y,l=x,g=b,n.test(a)?a+="e":l.test(a)?(_=F,a=a.replace(_,"")):g.test(a)&&(a+="e"))}if(_=E,_.test(a)){var A=_.exec(a);t=A[1],a=t+"i"}if(_=w,_.test(a)){var A=_.exec(a);t=A[1],s=A[2],_=m,_.test(t)&&(a=t+e[s])}if(_=k,_.test(a)){var A=_.exec(a);t=A[1],s=A[2],_=m,_.test(t)&&(a=t+o[s])}if(_=v,n=j,_.test(a)){var A=_.exec(a);t=A[1],_=r,_.test(t)&&(a=t)}else if(n.test(a)){var A=n.exec(a);t=A[1]+A[2],n=r,n.test(t)&&(a=t)}if(_=B,_.test(a)){var A=_.exec(a);t=A[1],_=r,n=h,l=C,(_.test(t)||n.test(t)&&!l.test(t))&&(a=t)}return _=S,n=r,_.test(a)&&n.test(a)&&(_=F,a=a.replace(_,"")),"y"==i&&(a=i.toLowerCase()+a.substr(1)),a};return A}(),i.Pipeline.registerFunction(i.stemmer,"stemmer"),/*! +s.stemmer=function(){var e={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},o={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},a="[^aeiou]",i="[aeiouy]",t=a+"[^aeiouy]*",s=i+"[aeiou]*",_="^("+t+")?"+s+t,n="^("+t+")?"+s+t+"("+s+")?$",g="^("+t+")?"+s+t+s+t,m="^("+t+")?"+i,r=new RegExp(_),l=new RegExp(g),h=new RegExp(n),u=new RegExp(m),f=/^(.+?)(ss|i)es$/,c=/^(.+?)([^s])s$/,p=/^(.+?)eed$/,d=/^(.+?)(ed|ing)$/,F=/.$/,y=/(at|bl|iz)$/,b=new RegExp("([^aeiouylsz])\\1$"),E=new RegExp("^"+t+i+"[^aeiouwxy]$"),w=/^(.+?[^aeiou])y$/,k=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,v=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,j=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,x=/^(.+?)(s|t)(ion)$/,B=/^(.+?)e$/,S=/ll$/,C=new RegExp("^"+t+i+"[^aeiouwxy]$"),A=function(a){var i,t,s,_,n,g,m;if(a.length<3)return a;if(s=a.substr(0,1),"y"==s&&(a=s.toUpperCase()+a.substr(1)),_=f,n=c,_.test(a)?a=a.replace(_,"$1$2"):n.test(a)&&(a=a.replace(n,"$1$2")),_=p,n=d,_.test(a)){var A=_.exec(a);_=r,_.test(A[1])&&(_=F,a=a.replace(_,""))}else if(n.test(a)){var A=n.exec(a);i=A[1],n=u,n.test(i)&&(a=i,n=y,g=b,m=E,n.test(a)?a+="e":g.test(a)?(_=F,a=a.replace(_,"")):m.test(a)&&(a+="e"))}if(_=w,_.test(a)){var A=_.exec(a);i=A[1],a=i+"i"}if(_=k,_.test(a)){var A=_.exec(a);i=A[1],t=A[2],_=r,_.test(i)&&(a=i+e[t])}if(_=v,_.test(a)){var A=_.exec(a);i=A[1],t=A[2],_=r,_.test(i)&&(a=i+o[t])}if(_=j,n=x,_.test(a)){var A=_.exec(a);i=A[1],_=l,_.test(i)&&(a=i)}else if(n.test(a)){var A=n.exec(a);i=A[1]+A[2],n=l,n.test(i)&&(a=i)}if(_=B,_.test(a)){var A=_.exec(a);i=A[1],_=l,n=h,g=C,(_.test(i)||n.test(i)&&!g.test(i))&&(a=i)}return _=S,n=l,_.test(a)&&n.test(a)&&(_=F,a=a.replace(_,"")),"y"==s&&(a=s.toLowerCase()+a.substr(1)),a};return A}(),s.Pipeline.registerFunction(s.stemmer,"stemmer"),/*! * lunr.stopWordFilter * Copyright (C) 2016 Oliver Nightingale */ -i.generateStopWordFilter=function(e){var o=e.reduce(function(e,o){return e[o]=o,e},{});return function(e){return e&&o[e]!==e?e:void 0}},i.stopWordFilter=i.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),i.Pipeline.registerFunction(i.stopWordFilter,"stopWordFilter"),/*! +s.generateStopWordFilter=function(e){var o=e.reduce(function(e,o){return e[o]=o,e},{});return function(e){return e&&o[e]!==e?e:void 0}},s.stopWordFilter=s.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),s.Pipeline.registerFunction(s.stopWordFilter,"stopWordFilter"),/*! * lunr.trimmer * Copyright (C) 2016 Oliver Nightingale */ -i.trimmer=function(e){return e.replace(/^\W+/,"").replace(/\W+$/,"")},i.Pipeline.registerFunction(i.trimmer,"trimmer"),/*! +s.trimmer=function(e){return e.replace(/^\W+/,"").replace(/\W+$/,"")},s.Pipeline.registerFunction(s.trimmer,"trimmer"),/*! * lunr.stemmer * Copyright (C) 2016 Oliver Nightingale * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt */ -i.TokenStore=function(){this.root={docs:{}},this.length=0},i.TokenStore.load=function(e){var o=new this;return o.root=e.root,o.length=e.length,o},i.TokenStore.prototype.add=function(e,o,a){var a=a||this.root,t=e.charAt(0),s=e.slice(1);return t in a||(a[t]={docs:{}}),0===s.length?(a[t].docs[o.ref]=o,void(this.length+=1)):this.add(s,o,a[t])},i.TokenStore.prototype.has=function(e){if(!e)return!1;for(var o=this.root,a=0;a",":->"]},koala:{name:"Koala",unified:"1F428",variations:[],docomo:null,au:"EB20",softbank:"E527",google:"FE1CD",image:"1f428.png",sheet_x:13,sheet_y:4,short_name:"koala",short_names:["koala"],category:"Nature",sort_order:8,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-aq":{name:"Regional Indicator Symbol Letters AQ",unified:"1F1E6-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f6.png",sheet_x:33,sheet_y:1,short_name:"flag-aq",short_names:["flag-aq"],category:"Flags",sort_order:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fire_engine:{name:"Fire Engine",unified:"1F692",variations:[],docomo:null,au:"EADF",softbank:"E430",google:"FE7F2",image:"1f692.png",sheet_x:29,sheet_y:30,short_name:"fire_engine",short_names:["fire_engine"],category:"Places",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},revolving_hearts:{name:"Revolving Hearts",unified:"1F49E",variations:[],docomo:"E6ED",au:"E5AF",softbank:"E327",google:"FEB18",image:"1f49e.png",sheet_x:20,sheet_y:5,short_name:"revolving_hearts",short_names:["revolving_hearts"],category:"Symbols",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},golf:{name:"Flag in Hole",unified:"26F3",variations:["26F3-FE0F"],docomo:"E654",au:"E599",softbank:"E014",google:"FE7D2",image:"26f3.png",sheet_x:2,sheet_y:33,short_name:"golf",short_names:["golf"],category:"Activity",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},innocent:{name:"Smiling Face with Halo",unified:"1F607",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f607.png",sheet_x:26,sheet_y:22,short_name:"innocent",short_names:["innocent"],category:"People",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},strawberry:{name:"Strawberry",unified:"1F353",variations:[],docomo:null,au:"E4D4",softbank:"E347",google:"FE053",image:"1f353.png",sheet_x:7,sheet_y:20,short_name:"strawberry",short_names:["strawberry"],category:"Foods",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},trackball:{name:"Trackball",unified:"1F5B2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5b2.png",sheet_x:25,sheet_y:34,short_name:"trackball",short_names:["trackball"],category:"Objects",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tiger:{name:"Tiger Face",unified:"1F42F",variations:[],docomo:null,au:"E5C0",softbank:"E050",google:"FE1C0",image:"1f42f.png",sheet_x:13,sheet_y:11,short_name:"tiger",short_names:["tiger"],category:"Nature",sort_order:9,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lion_face:{name:"Lion Face",unified:"1F981",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f981.png",sheet_x:32,sheet_y:16,short_name:"lion_face",short_names:["lion_face"],category:"Nature",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ag":{name:"Regional Indicator Symbol Letters AG",unified:"1F1E6-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ec.png",sheet_x:32,sheet_y:37,short_name:"flag-ag",short_names:["flag-ag"],category:"Flags",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},minibus:{name:"Minibus",unified:"1F690",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f690.png",sheet_x:29,sheet_y:28,short_name:"minibus",short_names:["minibus"],category:"Places",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},melon:{name:"Melon",unified:"1F348",variations:[],docomo:null,au:"EB32",softbank:null,google:"FE057",image:"1f348.png",sheet_x:7,sheet_y:9,short_name:"melon",short_names:["melon"],category:"Foods",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wink:{name:"Winking Face",unified:"1F609",variations:[],docomo:"E729",au:"E5C3",softbank:"E405",google:"FE347",image:"1f609.png",sheet_x:26,sheet_y:24,short_name:"wink",short_names:["wink"],category:"People",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[";)",";-)"]},golfer:{name:"Golfer",unified:"1F3CC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cc.png",sheet_x:10,sheet_y:38,short_name:"golfer",short_names:["golfer"],category:"Activity",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heartbeat:{name:"Beating Heart",unified:"1F493",variations:[],docomo:"E6ED",au:"EB75",softbank:"E327",google:"FEB0D",image:"1f493.png",sheet_x:19,sheet_y:35,short_name:"heartbeat",short_names:["heartbeat"],category:"Symbols",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},joystick:{name:"Joystick",unified:"1F579",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f579.png",sheet_x:25,sheet_y:7,short_name:"joystick",short_names:["joystick"],category:"Objects",sort_order:10,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heartpulse:{name:"Growing Heart",unified:"1F497",variations:[],docomo:"E6ED",au:"EB75",softbank:"E328",google:"FEB11",image:"1f497.png",sheet_x:19,sheet_y:39,short_name:"heartpulse",short_names:["heartpulse"],category:"Symbols",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ar":{name:"Regional Indicator Symbol Letters AR",unified:"1F1E6-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f7.png",sheet_x:33,sheet_y:2,short_name:"flag-ar",short_names:["flag-ar"],category:"Flags",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},table_tennis_paddle_and_ball:{name:"Table Tennis Paddle and Ball",unified:"1F3D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d3.png",sheet_x:11,sheet_y:4,short_name:"table_tennis_paddle_and_ball",short_names:["table_tennis_paddle_and_ball"],category:"Activity",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cow:{name:"Cow Face",unified:"1F42E",variations:[],docomo:null,au:"EB21",softbank:"E52B",google:"FE1D1",image:"1f42e.png",sheet_x:13,sheet_y:10,short_name:"cow",short_names:["cow"],category:"Nature",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cherries:{name:"Cherries",unified:"1F352",variations:[],docomo:"E742",au:"E4D2",softbank:null,google:"FE04F",image:"1f352.png",sheet_x:7,sheet_y:19,short_name:"cherries",short_names:["cherries"],category:"Foods",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},compression:{name:"Compression",unified:"1F5DC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5dc.png",sheet_x:26,sheet_y:1,short_name:"compression",short_names:["compression"],category:"Objects",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},truck:{name:"Delivery Truck",unified:"1F69A",variations:[],docomo:null,au:"E4B2",softbank:"E42F",google:"FE7F1",image:"1f69a.png",sheet_x:29,sheet_y:38,short_name:"truck",short_names:["truck"],category:"Places",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},blush:{name:"Smiling Face with Smiling Eyes",unified:"1F60A",variations:[],docomo:"E6F0",au:"EACD",softbank:"E056",google:"FE335",image:"1f60a.png",sheet_x:26,sheet_y:25,short_name:"blush",short_names:["blush"],category:"People",sort_order:11,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":)"]},slightly_smiling_face:{name:"Slightly Smiling Face",unified:"1F642",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f642.png",sheet_x:27,sheet_y:40,short_name:"slightly_smiling_face",short_names:["slightly_smiling_face"],category:"People",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":)","(:",":-)"]},pig:{name:"Pig Face",unified:"1F437",variations:[],docomo:"E755",au:"E4DE",softbank:"E10B",google:"FE1BF",image:"1f437.png",sheet_x:13,sheet_y:19,short_name:"pig",short_names:["pig"],category:"Nature",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sparkling_heart:{name:"Sparkling Heart",unified:"1F496",variations:[],docomo:"E6EC",au:"EAA6",softbank:"E327",google:"FEB10",image:"1f496.png",sheet_x:19,sheet_y:38,short_name:"sparkling_heart",short_names:["sparkling_heart"],category:"Symbols",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},badminton_racquet_and_shuttlecock:{name:"Badminton Racquet and Shuttlecock",unified:"1F3F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f8.png",sheet_x:11,sheet_y:38,short_name:"badminton_racquet_and_shuttlecock",short_names:["badminton_racquet_and_shuttlecock"],category:"Activity",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},peach:{name:"Peach",unified:"1F351",variations:[],docomo:null,au:"EB39",softbank:null,google:"FE05A",image:"1f351.png",sheet_x:7,sheet_y:18,short_name:"peach",short_names:["peach"],category:"Foods",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},minidisc:{name:"Minidisc",unified:"1F4BD",variations:[],docomo:null,au:"E582",softbank:"E316",google:"FE53C",image:"1f4bd.png",sheet_x:21,sheet_y:0,short_name:"minidisc",short_names:["minidisc"],category:"Objects",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},articulated_lorry:{name:"Articulated Lorry",unified:"1F69B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69b.png",sheet_x:29,sheet_y:39,short_name:"articulated_lorry",short_names:["articulated_lorry"],category:"Places",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-am":{name:"Regional Indicator Symbol Letters AM",unified:"1F1E6-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f2.png",sheet_x:32,sheet_y:40,short_name:"flag-am",short_names:["flag-am"],category:"Flags",sort_order:12,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ice_hockey_stick_and_puck:{name:"Ice Hockey Stick and Puck",unified:"1F3D2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d2.png",sheet_x:11,sheet_y:3,short_name:"ice_hockey_stick_and_puck",short_names:["ice_hockey_stick_and_puck"],category:"Activity",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pineapple:{name:"Pineapple",unified:"1F34D",variations:[],docomo:null,au:"EB33",softbank:null,google:"FE058",image:"1f34d.png",sheet_x:7,sheet_y:14,short_name:"pineapple",short_names:["pineapple"],category:"Foods",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-aw":{name:"Regional Indicator Symbol Letters AW",unified:"1F1E6-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1fc.png",sheet_x:33,sheet_y:6,short_name:"flag-aw",short_names:["flag-aw"],category:"Flags",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pig_nose:{name:"Pig Nose",unified:"1F43D",variations:[],docomo:"E755",au:"EB48",softbank:"E10B",google:"FE1E0",image:"1f43d.png",sheet_x:13,sheet_y:25,short_name:"pig_nose",short_names:["pig_nose"],category:"Nature",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},floppy_disk:{name:"Floppy Disk",unified:"1F4BE",variations:[],docomo:null,au:"E562",softbank:"E316",google:"FE53D",image:"1f4be.png",sheet_x:21,sheet_y:1,short_name:"floppy_disk",short_names:["floppy_disk"],category:"Objects",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tractor:{name:"Tractor",unified:"1F69C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69c.png",sheet_x:29,sheet_y:40,short_name:"tractor",short_names:["tractor"],category:"Places",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},upside_down_face:{name:"Upside-Down Face",unified:"1F643",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f643.png",sheet_x:28,sheet_y:0,short_name:"upside_down_face",short_names:["upside_down_face"],category:"People",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cupid:{name:"Heart with Arrow",unified:"1F498",variations:[],docomo:"E6EC",au:"E4EA",softbank:"E329",google:"FEB12",image:"1f498.png",sheet_x:19,sheet_y:40,short_name:"cupid",short_names:["cupid"],category:"Symbols",sort_order:13,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cd:{name:"Optical Disc",unified:"1F4BF",variations:[],docomo:"E68C",au:"E50C",softbank:"E126",google:"FE81D",image:"1f4bf.png",sheet_x:21,sheet_y:2,short_name:"cd",short_names:["cd"],category:"Objects",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gift_heart:{name:"Heart with Ribbon",unified:"1F49D",variations:[],docomo:"E6EC",au:"EB54",softbank:"E437",google:"FEB17",image:"1f49d.png",sheet_x:20,sheet_y:4,short_name:"gift_heart",short_names:["gift_heart"],category:"Symbols",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-au":{name:"Regional Indicator Symbol Letters AU",unified:"1F1E6-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1fa.png",sheet_x:33,sheet_y:5,short_name:"flag-au",short_names:["flag-au"],category:"Flags",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},field_hockey_stick_and_ball:{name:"Field Hockey Stick and Ball",unified:"1F3D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d1.png",sheet_x:11,sheet_y:2,short_name:"field_hockey_stick_and_ball",short_names:["field_hockey_stick_and_ball"],category:"Activity",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tomato:{name:"Tomato",unified:"1F345",variations:[],docomo:null,au:"EABB",softbank:"E349",google:"FE055",image:"1f345.png",sheet_x:7,sheet_y:6,short_name:"tomato",short_names:["tomato"],category:"Foods",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},racing_motorcycle:{name:"Racing Motorcycle",unified:"1F3CD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cd.png",sheet_x:10,sheet_y:39,short_name:"racing_motorcycle",short_names:["racing_motorcycle"],category:"Places",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},relaxed:{name:"White Smiling Face",unified:"263A",variations:["263A-FE0F"],docomo:"E6F0",au:"E4FB",softbank:"E414",google:"FE336",image:"263a.png",sheet_x:1,sheet_y:25,short_name:"relaxed",short_names:["relaxed"],category:"People",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},frog:{name:"Frog Face",unified:"1F438",variations:[],docomo:null,au:"E4DA",softbank:"E531",google:"FE1D7",image:"1f438.png",sheet_x:13,sheet_y:20,short_name:"frog",short_names:["frog"],category:"Nature",sort_order:14,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cricket_bat_and_ball:{name:"Cricket Bat and Ball",unified:"1F3CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cf.png",sheet_x:11,sheet_y:0,short_name:"cricket_bat_and_ball",short_names:["cricket_bat_and_ball"],category:"Activity",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dvd:{name:"Dvd",unified:"1F4C0",variations:[],docomo:"E68C",au:"E50C",softbank:"E127",google:"FE81E",image:"1f4c0.png",sheet_x:21,sheet_y:3,short_name:"dvd",short_names:["dvd"],category:"Objects",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},octopus:{name:"Octopus",unified:"1F419",variations:[],docomo:null,au:"E5C7",softbank:"E10A",google:"FE1C5",image:"1f419.png",sheet_x:12,sheet_y:30,short_name:"octopus",short_names:["octopus"],category:"Nature",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bike:{name:"Bicycle",unified:"1F6B2",variations:[],docomo:"E71D",au:"E4AE",softbank:"E136",google:"FE7EB",image:"1f6b2.png",sheet_x:30,sheet_y:26,short_name:"bike",short_names:["bike"],category:"Places",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heart_decoration:{name:"Heart Decoration",unified:"1F49F",variations:[],docomo:"E6F8",au:"E595",softbank:"E204",google:"FEB19",image:"1f49f.png",sheet_x:20,sheet_y:6,short_name:"heart_decoration",short_names:["heart_decoration"],category:"Symbols",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},yum:{name:"Face Savouring Delicious Food",unified:"1F60B",variations:[],docomo:"E752",au:"EACD",softbank:"E056",google:"FE32B",image:"1f60b.png",sheet_x:26,sheet_y:26,short_name:"yum",short_names:["yum"],category:"People",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eggplant:{name:"Aubergine",unified:"1F346",variations:[],docomo:null,au:"EABC",softbank:"E34A",google:"FE056",image:"1f346.png",sheet_x:7,sheet_y:7,short_name:"eggplant",short_names:["eggplant"],category:"Foods",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-at":{name:"Regional Indicator Symbol Letters AT",unified:"1F1E6-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1f9.png",sheet_x:33,sheet_y:4,short_name:"flag-at",short_names:["flag-at"],category:"Flags",sort_order:15,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rotating_light:{name:"Police Cars Revolving Light",unified:"1F6A8",variations:[],docomo:null,au:"EB73",softbank:"E432",google:"FE7F9",image:"1f6a8.png",sheet_x:30,sheet_y:16,short_name:"rotating_light",short_names:["rotating_light"],category:"Places",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},monkey_face:{name:"Monkey Face",unified:"1F435",variations:[],docomo:null,au:"E4D9",softbank:"E109",google:"FE1C4",image:"1f435.png",sheet_x:13,sheet_y:17,short_name:"monkey_face",short_names:["monkey_face"],category:"Nature",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":o)"]},ski:{name:"Ski and Ski Boot",unified:"1F3BF",variations:[],docomo:"E657",au:"EAAC",softbank:"E013",google:"FE7D5",image:"1f3bf.png",sheet_x:10,sheet_y:5,short_name:"ski",short_names:["ski"],category:"Activity",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hot_pepper:{name:"Hot Pepper",unified:"1F336",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f336.png",sheet_x:6,sheet_y:32,short_name:"hot_pepper",short_names:["hot_pepper"],category:"Foods",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},peace_symbol:{name:"Peace Symbol",unified:"262E",variations:["262E-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262e.png",sheet_x:1,sheet_y:21,short_name:"peace_symbol",short_names:["peace_symbol"],category:"Symbols",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-az":{name:"Regional Indicator Symbol Letters AZ",unified:"1F1E6-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ff.png",sheet_x:33,sheet_y:8,short_name:"flag-az",short_names:["flag-az"],category:"Flags",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},relieved:{name:"Relieved Face",unified:"1F60C",variations:[],docomo:"E721",au:"EAC5",softbank:"E40A",google:"FE33E",image:"1f60c.png",sheet_x:26,sheet_y:27,short_name:"relieved",short_names:["relieved"],category:"People",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},vhs:{name:"Videocassette",unified:"1F4FC",variations:[],docomo:null,au:"E580",softbank:"E129",google:"FE820",image:"1f4fc.png",sheet_x:22,sheet_y:22,short_name:"vhs",short_names:["vhs"],category:"Objects",sort_order:16,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oncoming_police_car:{name:"Oncoming Police Car",unified:"1F694",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f694.png",sheet_x:29,sheet_y:32,short_name:"oncoming_police_car",short_names:["oncoming_police_car"],category:"Places",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},corn:{name:"Ear of Maize",unified:"1F33D",variations:[],docomo:null,au:"EB36",softbank:null,google:"FE04A",image:"1f33d.png",sheet_x:6,sheet_y:39,short_name:"corn",short_names:["corn"],category:"Foods",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},latin_cross:{name:"Latin Cross",unified:"271D",variations:["271D-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"271d.png",sheet_x:3,sheet_y:37,short_name:"latin_cross",short_names:["latin_cross"],category:"Symbols",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},camera:{name:"Camera",unified:"1F4F7",variations:[],docomo:"E681",au:"E515",softbank:"E008",google:"FE4EF",image:"1f4f7.png",sheet_x:22,sheet_y:17,short_name:"camera",short_names:["camera"],category:"Objects",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},see_no_evil:{name:"See-No-Evil Monkey",unified:"1F648",variations:[],docomo:null,au:"EB50",softbank:null,google:"FE354",image:"1f648.png",sheet_x:28,sheet_y:20,short_name:"see_no_evil",short_names:["see_no_evil"],category:"Nature",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heart_eyes:{name:"Smiling Face with Heart-Shaped Eyes",unified:"1F60D",variations:[],docomo:"E726",au:"E5C4",softbank:"E106",google:"FE327",image:"1f60d.png",sheet_x:26,sheet_y:28,short_name:"heart_eyes",short_names:["heart_eyes"],category:"People",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bs":{name:"Regional Indicator Symbol Letters BS",unified:"1F1E7-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f8.png",sheet_x:33,sheet_y:24,short_name:"flag-bs",short_names:["flag-bs"],category:"Flags",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},skier:{name:"Skier",unified:"26F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f7.png",sheet_x:2,sheet_y:36,short_name:"skier",short_names:["skier"],category:"Activity",sort_order:17,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oncoming_bus:{name:"Oncoming Bus",unified:"1F68D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68d.png",sheet_x:29,sheet_y:25,short_name:"oncoming_bus",short_names:["oncoming_bus"],category:"Places",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snowboarder:{name:"Snowboarder",unified:"1F3C2",variations:[],docomo:"E712",au:"E4B8",softbank:null,google:"FE7D8",image:"1f3c2.png",sheet_x:10,sheet_y:8,short_name:"snowboarder",short_names:["snowboarder"],category:"Activity",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sweet_potato:{name:"Roasted Sweet Potato",unified:"1F360",variations:[],docomo:null,au:"EB3A",softbank:null,google:"FE974",image:"1f360.png",sheet_x:7,sheet_y:33, +short_name:"sweet_potato",short_names:["sweet_potato"],category:"Foods",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hear_no_evil:{name:"Hear-No-Evil Monkey",unified:"1F649",variations:[],docomo:null,au:"EB52",softbank:null,google:"FE356",image:"1f649.png",sheet_x:28,sheet_y:21,short_name:"hear_no_evil",short_names:["hear_no_evil"],category:"Nature",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bh":{name:"Regional Indicator Symbol Letters BH",unified:"1F1E7-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ed.png",sheet_x:33,sheet_y:15,short_name:"flag-bh",short_names:["flag-bh"],category:"Flags",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},star_and_crescent:{name:"Star and Crescent",unified:"262A",variations:["262A-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262a.png",sheet_x:1,sheet_y:20,short_name:"star_and_crescent",short_names:["star_and_crescent"],category:"Symbols",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing_heart:{name:"Face Throwing a Kiss",unified:"1F618",variations:[],docomo:"E726",au:"EACF",softbank:"E418",google:"FE32C",image:"1f618.png",sheet_x:26,sheet_y:39,short_name:"kissing_heart",short_names:["kissing_heart"],category:"People",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},camera_with_flash:{name:"Camera with Flash",unified:"1F4F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f8.png",sheet_x:22,sheet_y:18,short_name:"camera_with_flash",short_names:["camera_with_flash"],category:"Objects",sort_order:18,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ice_skate:{name:"Ice Skate",unified:"26F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f8.png",sheet_x:2,sheet_y:37,short_name:"ice_skate",short_names:["ice_skate"],category:"Activity",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oncoming_automobile:{name:"Oncoming Automobile",unified:"1F698",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f698.png",sheet_x:29,sheet_y:36,short_name:"oncoming_automobile",short_names:["oncoming_automobile"],category:"Places",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speak_no_evil:{name:"Speak-No-Evil Monkey",unified:"1F64A",variations:[],docomo:null,au:"EB51",softbank:null,google:"FE355",image:"1f64a.png",sheet_x:28,sheet_y:22,short_name:"speak_no_evil",short_names:["speak_no_evil"],category:"Nature",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},honey_pot:{name:"Honey Pot",unified:"1F36F",variations:[],docomo:null,au:"EB59",softbank:null,google:"FE97E",image:"1f36f.png",sheet_x:8,sheet_y:7,short_name:"honey_pot",short_names:["honey_pot"],category:"Foods",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing:{name:"Kissing Face",unified:"1F617",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f617.png",sheet_x:26,sheet_y:38,short_name:"kissing",short_names:["kissing"],category:"People",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},video_camera:{name:"Video Camera",unified:"1F4F9",variations:[],docomo:"E677",au:"E57E",softbank:"E03D",google:"FE4F9",image:"1f4f9.png",sheet_x:22,sheet_y:19,short_name:"video_camera",short_names:["video_camera"],category:"Objects",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},om_symbol:{name:"Om Symbol",unified:"1F549",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f549.png",sheet_x:24,sheet_y:5,short_name:"om_symbol",short_names:["om_symbol"],category:"Symbols",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bd":{name:"Regional Indicator Symbol Letters BD",unified:"1F1E7-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e9.png",sheet_x:33,sheet_y:11,short_name:"flag-bd",short_names:["flag-bd"],category:"Flags",sort_order:19,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},monkey:{name:"Monkey",unified:"1F412",variations:[],docomo:null,au:"E4D9",softbank:"E528",google:"FE1CE",image:"1f412.png",sheet_x:12,sheet_y:23,short_name:"monkey",short_names:["monkey"],category:"Nature",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},movie_camera:{name:"Movie Camera",unified:"1F3A5",variations:[],docomo:"E677",au:"E517",softbank:"E03D",google:"FE801",image:"1f3a5.png",sheet_x:9,sheet_y:20,short_name:"movie_camera",short_names:["movie_camera"],category:"Objects",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oncoming_taxi:{name:"Oncoming Taxi",unified:"1F696",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f696.png",sheet_x:29,sheet_y:34,short_name:"oncoming_taxi",short_names:["oncoming_taxi"],category:"Places",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bb":{name:"Regional Indicator Symbol Letters BB",unified:"1F1E7-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e7.png",sheet_x:33,sheet_y:10,short_name:"flag-bb",short_names:["flag-bb"],category:"Flags",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing_smiling_eyes:{name:"Kissing Face with Smiling Eyes",unified:"1F619",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f619.png",sheet_x:26,sheet_y:40,short_name:"kissing_smiling_eyes",short_names:["kissing_smiling_eyes"],category:"People",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bread:{name:"Bread",unified:"1F35E",variations:[],docomo:"E74D",au:"EAAF",softbank:"E339",google:"FE964",image:"1f35e.png",sheet_x:7,sheet_y:31,short_name:"bread",short_names:["bread"],category:"Foods",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bow_and_arrow:{name:"Bow and Arrow",unified:"1F3F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f9.png",sheet_x:11,sheet_y:39,short_name:"bow_and_arrow",short_names:["bow_and_arrow"],category:"Activity",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wheel_of_dharma:{name:"Wheel of Dharma",unified:"2638",variations:["2638-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2638.png",sheet_x:1,sheet_y:23,short_name:"wheel_of_dharma",short_names:["wheel_of_dharma"],category:"Symbols",sort_order:20,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},aerial_tramway:{name:"Aerial Tramway",unified:"1F6A1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a1.png",sheet_x:30,sheet_y:4,short_name:"aerial_tramway",short_names:["aerial_tramway"],category:"Places",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cheese_wedge:{name:"Cheese Wedge",unified:"1F9C0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f9c0.png",sheet_x:32,sheet_y:20,short_name:"cheese_wedge",short_names:["cheese_wedge"],category:"Foods",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},film_projector:{name:"Film Projector",unified:"1F4FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4fd.png",sheet_x:22,sheet_y:23,short_name:"film_projector",short_names:["film_projector"],category:"Objects",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fishing_pole_and_fish:{name:"Fishing Pole and Fish",unified:"1F3A3",variations:[],docomo:"E751",au:"EB42",softbank:"E019",google:"FE7FF",image:"1f3a3.png",sheet_x:9,sheet_y:18,short_name:"fishing_pole_and_fish",short_names:["fishing_pole_and_fish"],category:"Activity",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing_closed_eyes:{name:"Kissing Face with Closed Eyes",unified:"1F61A",variations:[],docomo:"E726",au:"EACE",softbank:"E417",google:"FE32D",image:"1f61a.png",sheet_x:27,sheet_y:0,short_name:"kissing_closed_eyes",short_names:["kissing_closed_eyes"],category:"People",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},star_of_david:{name:"Star of David",unified:"2721",variations:["2721-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2721.png",sheet_x:3,sheet_y:38,short_name:"star_of_david",short_names:["star_of_david"],category:"Symbols",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chicken:{name:"Chicken",unified:"1F414",variations:[],docomo:null,au:"EB23",softbank:"E52E",google:"FE1D4",image:"1f414.png",sheet_x:12,sheet_y:25,short_name:"chicken",short_names:["chicken"],category:"Nature",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-by":{name:"Regional Indicator Symbol Letters BY",unified:"1F1E7-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fe.png",sheet_x:33,sheet_y:28,short_name:"flag-by",short_names:["flag-by"],category:"Flags",sort_order:21,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},six_pointed_star:{name:"Six Pointed Star with Middle Dot",unified:"1F52F",variations:[],docomo:null,au:"EA8F",softbank:"E23E",google:"FE4F8",image:"1f52f.png",sheet_x:23,sheet_y:31,short_name:"six_pointed_star",short_names:["six_pointed_star"],category:"Symbols",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},penguin:{name:"Penguin",unified:"1F427",variations:[],docomo:"E750",au:"E4DC",softbank:"E055",google:"FE1BC",image:"1f427.png",sheet_x:13,sheet_y:3,short_name:"penguin",short_names:["penguin"],category:"Nature",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain_cableway:{name:"Mountain Cableway",unified:"1F6A0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a0.png",sheet_x:30,sheet_y:3,short_name:"mountain_cableway",short_names:["mountain_cableway"],category:"Places",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stuck_out_tongue_winking_eye:{name:"Face with Stuck-out Tongue and Winking Eye",unified:"1F61C",variations:[],docomo:"E728",au:"E4E7",softbank:"E105",google:"FE329",image:"1f61c.png",sheet_x:27,sheet_y:2,short_name:"stuck_out_tongue_winking_eye",short_names:["stuck_out_tongue_winking_eye"],category:"People",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[";p",";-p",";b",";-b",";P",";-P"]},"flag-be":{name:"Regional Indicator Symbol Letters BE",unified:"1F1E7-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ea.png",sheet_x:33,sheet_y:12,short_name:"flag-be",short_names:["flag-be"],category:"Flags",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},film_frames:{name:"Film Frames",unified:"1F39E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39e.png",sheet_x:9,sheet_y:13,short_name:"film_frames",short_names:["film_frames"],category:"Objects",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},poultry_leg:{name:"Poultry Leg",unified:"1F357",variations:[],docomo:null,au:"EB3C",softbank:null,google:"FE976",image:"1f357.png",sheet_x:7,sheet_y:24,short_name:"poultry_leg",short_names:["poultry_leg"],category:"Foods",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rowboat:{name:"Rowboat",unified:"1F6A3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a3.png",sheet_x:30,sheet_y:6,short_name:"rowboat",short_names:["rowboat"],category:"Activity",sort_order:22,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6A3-1F3FB":{unified:"1F6A3-1F3FB",image:"1f6a3-1f3fb.png",sheet_x:30,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FC":{unified:"1F6A3-1F3FC",image:"1f6a3-1f3fc.png",sheet_x:30,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FD":{unified:"1F6A3-1F3FD",image:"1f6a3-1f3fd.png",sheet_x:30,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FE":{unified:"1F6A3-1F3FE",image:"1f6a3-1f3fe.png",sheet_x:30,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6A3-1F3FF":{unified:"1F6A3-1F3FF",image:"1f6a3-1f3ff.png",sheet_x:30,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},menorah_with_nine_branches:{name:"Menorah with Nine Branches",unified:"1F54E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54e.png",sheet_x:24,sheet_y:10,short_name:"menorah_with_nine_branches",short_names:["menorah_with_nine_branches"],category:"Symbols",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stuck_out_tongue_closed_eyes:{name:"Face with Stuck-out Tongue and Tightly-Closed Eyes",unified:"1F61D",variations:[],docomo:"E728",au:"E4E7",softbank:"E409",google:"FE32A",image:"1f61d.png",sheet_x:27,sheet_y:3,short_name:"stuck_out_tongue_closed_eyes",short_names:["stuck_out_tongue_closed_eyes"],category:"People",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bz":{name:"Regional Indicator Symbol Letters BZ",unified:"1F1E7-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ff.png",sheet_x:33,sheet_y:29,short_name:"flag-bz",short_names:["flag-bz"],category:"Flags",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},swimmer:{name:"Swimmer",unified:"1F3CA",variations:[],docomo:null,au:"EADE",softbank:"E42D",google:"FE7DE",image:"1f3ca.png",sheet_x:10,sheet_y:26,short_name:"swimmer",short_names:["swimmer"],category:"Activity",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3CA-1F3FB":{unified:"1F3CA-1F3FB",image:"1f3ca-1f3fb.png",sheet_x:10,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FC":{unified:"1F3CA-1F3FC",image:"1f3ca-1f3fc.png",sheet_x:10,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FD":{unified:"1F3CA-1F3FD",image:"1f3ca-1f3fd.png",sheet_x:10,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FE":{unified:"1F3CA-1F3FE",image:"1f3ca-1f3fe.png",sheet_x:10,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CA-1F3FF":{unified:"1F3CA-1F3FF",image:"1f3ca-1f3ff.png",sheet_x:10,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},bird:{name:"Bird",unified:"1F426",variations:[],docomo:"E74F",au:"E4E0",softbank:"E521",google:"FE1C8",image:"1f426.png",sheet_x:13,sheet_y:2,short_name:"bird",short_names:["bird"],category:"Nature",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},telephone_receiver:{name:"Telephone Receiver",unified:"1F4DE",variations:[],docomo:"E687",au:"E51E",softbank:"E009",google:"FE524",image:"1f4de.png",sheet_x:21,sheet_y:33,short_name:"telephone_receiver",short_names:["telephone_receiver"],category:"Objects",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},meat_on_bone:{name:"Meat on Bone",unified:"1F356",variations:[],docomo:null,au:"E4C4",softbank:null,google:"FE972",image:"1f356.png",sheet_x:7,sheet_y:23,short_name:"meat_on_bone",short_names:["meat_on_bone"],category:"Foods",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},suspension_railway:{name:"Suspension Railway",unified:"1F69F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69f.png",sheet_x:30,sheet_y:2,short_name:"suspension_railway",short_names:["suspension_railway"],category:"Places",sort_order:23,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bj":{name:"Regional Indicator Symbol Letters BJ",unified:"1F1E7-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ef.png",sheet_x:33,sheet_y:17,short_name:"flag-bj",short_names:["flag-bj"],category:"Flags",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},yin_yang:{name:"Yin Yang",unified:"262F",variations:["262F-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"262f.png",sheet_x:1,sheet_y:22,short_name:"yin_yang",short_names:["yin_yang"],category:"Symbols",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stuck_out_tongue:{name:"Face with Stuck-out Tongue",unified:"1F61B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f61b.png",sheet_x:27,sheet_y:1,short_name:"stuck_out_tongue",short_names:["stuck_out_tongue"],category:"People",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":p",":-p",":P",":-P",":b",":-b"]},phone:{name:"Black Telephone",unified:"260E",variations:["260E-FE0F"],docomo:"E687",au:"E596",softbank:"E009",google:"FE523",image:"260e.png",sheet_x:1,sheet_y:5,short_name:"phone",short_names:["phone","telephone"],category:"Objects",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},railway_car:{name:"Railway Car",unified:"1F683",variations:[],docomo:"E65B",au:"E4B5",softbank:"E01E",google:"FE7DF",image:"1f683.png",sheet_x:29,sheet_y:15,short_name:"railway_car",short_names:["railway_car"],category:"Places",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fried_shrimp:{name:"Fried Shrimp",unified:"1F364",variations:[],docomo:null,au:"EB70",softbank:null,google:"FE97F",image:"1f364.png",sheet_x:7,sheet_y:37,short_name:"fried_shrimp",short_names:["fried_shrimp"],category:"Foods",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},surfer:{name:"Surfer",unified:"1F3C4",variations:[],docomo:"E712",au:"EB41",softbank:"E017",google:"FE7DA",image:"1f3c4.png",sheet_x:10,sheet_y:15,short_name:"surfer",short_names:["surfer"],category:"Activity",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3C4-1F3FB":{unified:"1F3C4-1F3FB",image:"1f3c4-1f3fb.png",sheet_x:10,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FC":{unified:"1F3C4-1F3FC",image:"1f3c4-1f3fc.png",sheet_x:10,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FD":{unified:"1F3C4-1F3FD",image:"1f3c4-1f3fd.png",sheet_x:10,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FE":{unified:"1F3C4-1F3FE",image:"1f3c4-1f3fe.png",sheet_x:10,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C4-1F3FF":{unified:"1F3C4-1F3FF",image:"1f3c4-1f3ff.png",sheet_x:10,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},baby_chick:{name:"Baby Chick",unified:"1F424",variations:[],docomo:"E74F",au:"E4E0",softbank:"E523",google:"FE1BA",image:"1f424.png",sheet_x:13,sheet_y:0,short_name:"baby_chick",short_names:["baby_chick"],category:"Nature",sort_order:24,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},egg:{name:"Cooking",unified:"1F373",variations:[],docomo:null,au:"E4D1",softbank:"E147",google:"FE965",image:"1f373.png",sheet_x:8,sheet_y:11,short_name:"egg",short_names:["egg"],category:"Foods",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bm":{name:"Regional Indicator Symbol Letters BM",unified:"1F1E7-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f2.png",sheet_x:33,sheet_y:19,short_name:"flag-bm",short_names:["flag-bm"],category:"Flags",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hatching_chick:{name:"Hatching Chick",unified:"1F423",variations:[],docomo:"E74F",au:"E5DB",softbank:"E523",google:"FE1DD",image:"1f423.png",sheet_x:12,sheet_y:40,short_name:"hatching_chick",short_names:["hatching_chick"],category:"Nature",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},train:{name:"Tram Car",unified:"1F68B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68b.png",sheet_x:29,sheet_y:23,short_name:"train",short_names:["train"],category:"Places",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pager:{name:"Pager",unified:"1F4DF",variations:[],docomo:"E65A",au:"E59B",softbank:null,google:"FE522",image:"1f4df.png",sheet_x:21,sheet_y:34,short_name:"pager",short_names:["pager"],category:"Objects",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bath:{name:"Bath",unified:"1F6C0",variations:[],docomo:"E6F7",au:"E5D8",softbank:"E13F",google:"FE505",image:"1f6c0.png",sheet_x:31,sheet_y:14,short_name:"bath",short_names:["bath"],category:"Activity",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6C0-1F3FB":{unified:"1F6C0-1F3FB",image:"1f6c0-1f3fb.png",sheet_x:31,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FC":{unified:"1F6C0-1F3FC",image:"1f6c0-1f3fc.png",sheet_x:31,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FD":{unified:"1F6C0-1F3FD",image:"1f6c0-1f3fd.png",sheet_x:31,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FE":{unified:"1F6C0-1F3FE",image:"1f6c0-1f3fe.png",sheet_x:31,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6C0-1F3FF":{unified:"1F6C0-1F3FF",image:"1f6c0-1f3ff.png",sheet_x:31,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},money_mouth_face:{name:"Money-Mouth Face",unified:"1F911",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f911.png",sheet_x:32,sheet_y:2,short_name:"money_mouth_face",short_names:["money_mouth_face"],category:"People",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},orthodox_cross:{name:"Orthodox Cross",unified:"2626",variations:["2626-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2626.png",sheet_x:1,sheet_y:19,short_name:"orthodox_cross",short_names:["orthodox_cross"],category:"Symbols",sort_order:25,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hatched_chick:{name:"Front-Facing Baby Chick",unified:"1F425",variations:[],docomo:"E74F",au:"EB76",softbank:"E523",google:"FE1BB",image:"1f425.png",sheet_x:13,sheet_y:1,short_name:"hatched_chick",short_names:["hatched_chick"],category:"Nature",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},place_of_worship:{name:"Place of Worship",unified:"1F6D0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6d0.png",sheet_x:31,sheet_y:30,short_name:"place_of_worship",short_names:["place_of_worship"],category:"Symbols",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hamburger:{name:"Hamburger",unified:"1F354",variations:[],docomo:"E673",au:"E4D6",softbank:"E120",google:"FE960",image:"1f354.png",sheet_x:7,sheet_y:21,short_name:"hamburger",short_names:["hamburger"],category:"Foods",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bt":{name:"Regional Indicator Symbol Letters BT",unified:"1F1E7-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f9.png",sheet_x:33,sheet_y:25,short_name:"flag-bt",short_names:["flag-bt"],category:"Flags",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fax:{name:"Fax Machine",unified:"1F4E0",variations:[],docomo:"E6D0",au:"E520",softbank:"E00B",google:"FE528",image:"1f4e0.png",sheet_x:21,sheet_y:35,short_name:"fax",short_names:["fax"],category:"Objects",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},nerd_face:{name:"Nerd Face",unified:"1F913",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f913.png",sheet_x:32,sheet_y:4,short_name:"nerd_face",short_names:["nerd_face"],category:"People",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},monorail:{name:"Monorail",unified:"1F69D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69d.png",sheet_x:30,sheet_y:0,short_name:"monorail",short_names:["monorail"],category:"Places",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},person_with_ball:{name:"Person with Ball",unified:"26F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f9.png",sheet_x:2,sheet_y:38,short_name:"person_with_ball",short_names:["person_with_ball"],category:"Activity",sort_order:26,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"26F9-1F3FB":{unified:"26F9-1F3FB",image:"26f9-1f3fb.png",sheet_x:2,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FC":{unified:"26F9-1F3FC",image:"26f9-1f3fc.png",sheet_x:2,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FD":{unified:"26F9-1F3FD",image:"26f9-1f3fd.png",sheet_x:3,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FE":{unified:"26F9-1F3FE",image:"26f9-1f3fe.png",sheet_x:3,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"26F9-1F3FF":{unified:"26F9-1F3FF",image:"26f9-1f3ff.png",sheet_x:3,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},weight_lifter:{name:"Weight Lifter",unified:"1F3CB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3cb.png",sheet_x:10,sheet_y:32,short_name:"weight_lifter",short_names:["weight_lifter"],category:"Activity",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3CB-1F3FB":{unified:"1F3CB-1F3FB",image:"1f3cb-1f3fb.png",sheet_x:10,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FC":{unified:"1F3CB-1F3FC",image:"1f3cb-1f3fc.png",sheet_x:10,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FD":{unified:"1F3CB-1F3FD",image:"1f3cb-1f3fd.png",sheet_x:10,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FE":{unified:"1F3CB-1F3FE",image:"1f3cb-1f3fe.png",sheet_x:10,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3CB-1F3FF":{unified:"1F3CB-1F3FF",image:"1f3cb-1f3ff.png",sheet_x:10,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},sunglasses:{name:"Smiling Face with Sunglasses",unified:"1F60E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f60e.png",sheet_x:26,sheet_y:29,short_name:"sunglasses",short_names:["sunglasses"],category:"People",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:["8)"]},wolf:{name:"Wolf Face",unified:"1F43A",variations:[],docomo:"E6A1",au:"E4E1",softbank:"E52A",google:"FE1D0",image:"1f43a.png",sheet_x:13,sheet_y:22,short_name:"wolf",short_names:["wolf"],category:"Nature",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bullettrain_side:{name:"High-Speed Train",unified:"1F684",variations:[],docomo:"E65D",au:"E4B0",softbank:"E435",google:"FE7E2",image:"1f684.png",sheet_x:29,sheet_y:16,short_name:"bullettrain_side",short_names:["bullettrain_side"],category:"Places",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ophiuchus:{name:"Ophiuchus",unified:"26CE",variations:[],docomo:null,au:"E49B",softbank:"E24B",google:"FE037",image:"26ce.png",sheet_x:2,sheet_y:23,short_name:"ophiuchus",short_names:["ophiuchus"],category:"Symbols",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bo":{name:"Regional Indicator Symbol Letters BO",unified:"1F1E7-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f4.png",sheet_x:33,sheet_y:21,short_name:"flag-bo",short_names:["flag-bo"],category:"Flags",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tv:{name:"Television",unified:"1F4FA",variations:[],docomo:"E68A",au:"E502",softbank:"E12A",google:"FE81C",image:"1f4fa.png",sheet_x:22,sheet_y:20,short_name:"tv",short_names:["tv"],category:"Objects",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fries:{name:"French Fries",unified:"1F35F",variations:[],docomo:null,au:"EAB1",softbank:"E33B",google:"FE967",image:"1f35f.png",sheet_x:7,sheet_y:32,short_name:"fries",short_names:["fries"],category:"Foods",sort_order:27,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bicyclist:{name:"Bicyclist",unified:"1F6B4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b4.png",sheet_x:30,sheet_y:28,short_name:"bicyclist",short_names:["bicyclist"],category:"Activity",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B4-1F3FB":{unified:"1F6B4-1F3FB",image:"1f6b4-1f3fb.png",sheet_x:30,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FC":{unified:"1F6B4-1F3FC",image:"1f6b4-1f3fc.png",sheet_x:30,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FD":{unified:"1F6B4-1F3FD",image:"1f6b4-1f3fd.png",sheet_x:30,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FE":{unified:"1F6B4-1F3FE",image:"1f6b4-1f3fe.png",sheet_x:30,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B4-1F3FF":{unified:"1F6B4-1F3FF",image:"1f6b4-1f3ff.png",sheet_x:30,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},aries:{name:"Aries",unified:"2648",variations:["2648-FE0F"],docomo:"E646",au:"E48F",softbank:"E23F", +google:"FE02B",image:"2648.png",sheet_x:1,sheet_y:26,short_name:"aries",short_names:["aries"],category:"Symbols",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hugging_face:{name:"Hugging Face",unified:"1F917",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f917.png",sheet_x:32,sheet_y:8,short_name:"hugging_face",short_names:["hugging_face"],category:"People",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bq":{name:"Regional Indicator Symbol Letters BQ",unified:"1F1E7-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f6.png",sheet_x:33,sheet_y:22,short_name:"flag-bq",short_names:["flag-bq"],category:"Flags",sort_order:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bullettrain_front:{name:"High-Speed Train with Bullet Nose",unified:"1F685",variations:[],docomo:"E65D",au:"E4B0",softbank:"E01F",google:"FE7E3",image:"1f685.png",sheet_x:29,sheet_y:17,short_name:"bullettrain_front",short_names:["bullettrain_front"],category:"Places",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},radio:{name:"Radio",unified:"1F4FB",variations:[],docomo:null,au:"E5B9",softbank:"E128",google:"FE81F",image:"1f4fb.png",sheet_x:22,sheet_y:21,short_name:"radio",short_names:["radio"],category:"Objects",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hotdog:{name:"Hot Dog",unified:"1F32D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32d.png",sheet_x:6,sheet_y:23,short_name:"hotdog",short_names:["hotdog"],category:"Foods",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boar:{name:"Boar",unified:"1F417",variations:[],docomo:null,au:"EB24",softbank:"E52F",google:"FE1D5",image:"1f417.png",sheet_x:12,sheet_y:28,short_name:"boar",short_names:["boar"],category:"Nature",sort_order:28,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},studio_microphone:{name:"Studio Microphone",unified:"1F399",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f399.png",sheet_x:9,sheet_y:10,short_name:"studio_microphone",short_names:["studio_microphone"],category:"Objects",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pizza:{name:"Slice of Pizza",unified:"1F355",variations:[],docomo:null,au:"EB3B",softbank:null,google:"FE975",image:"1f355.png",sheet_x:7,sheet_y:22,short_name:"pizza",short_names:["pizza"],category:"Foods",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ba":{name:"Regional Indicator Symbol Letters BA",unified:"1F1E7-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1e6.png",sheet_x:33,sheet_y:9,short_name:"flag-ba",short_names:["flag-ba"],category:"Flags",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain_bicyclist:{name:"Mountain Bicyclist",unified:"1F6B5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b5.png",sheet_x:30,sheet_y:34,short_name:"mountain_bicyclist",short_names:["mountain_bicyclist"],category:"Activity",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B5-1F3FB":{unified:"1F6B5-1F3FB",image:"1f6b5-1f3fb.png",sheet_x:30,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FC":{unified:"1F6B5-1F3FC",image:"1f6b5-1f3fc.png",sheet_x:30,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FD":{unified:"1F6B5-1F3FD",image:"1f6b5-1f3fd.png",sheet_x:30,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FE":{unified:"1F6B5-1F3FE",image:"1f6b5-1f3fe.png",sheet_x:30,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B5-1F3FF":{unified:"1F6B5-1F3FF",image:"1f6b5-1f3ff.png",sheet_x:30,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},smirk:{name:"Smirking Face",unified:"1F60F",variations:[],docomo:"E72C",au:"EABF",softbank:"E402",google:"FE343",image:"1f60f.png",sheet_x:26,sheet_y:30,short_name:"smirk",short_names:["smirk"],category:"People",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},light_rail:{name:"Light Rail",unified:"1F688",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f688.png",sheet_x:29,sheet_y:20,short_name:"light_rail",short_names:["light_rail"],category:"Places",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},horse:{name:"Horse Face",unified:"1F434",variations:[],docomo:"E754",au:"E4D8",softbank:"E01A",google:"FE1BE",image:"1f434.png",sheet_x:13,sheet_y:16,short_name:"horse",short_names:["horse"],category:"Nature",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},taurus:{name:"Taurus",unified:"2649",variations:["2649-FE0F"],docomo:"E647",au:"E490",softbank:"E240",google:"FE02C",image:"2649.png",sheet_x:1,sheet_y:27,short_name:"taurus",short_names:["taurus"],category:"Symbols",sort_order:29,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gemini:{name:"Gemini",unified:"264A",variations:["264A-FE0F"],docomo:"E648",au:"E491",softbank:"E241",google:"FE02D",image:"264a.png",sheet_x:1,sheet_y:28,short_name:"gemini",short_names:["gemini"],category:"Symbols",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},horse_racing:{name:"Horse Racing",unified:"1F3C7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3c7.png",sheet_x:10,sheet_y:23,short_name:"horse_racing",short_names:["horse_racing"],category:"Activity",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},level_slider:{name:"Level Slider",unified:"1F39A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39a.png",sheet_x:9,sheet_y:11,short_name:"level_slider",short_names:["level_slider"],category:"Objects",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bw":{name:"Regional Indicator Symbol Letters BW",unified:"1F1E7-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fc.png",sheet_x:33,sheet_y:27,short_name:"flag-bw",short_names:["flag-bw"],category:"Flags",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},unicorn_face:{name:"Unicorn Face",unified:"1F984",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f984.png",sheet_x:32,sheet_y:19,short_name:"unicorn_face",short_names:["unicorn_face"],category:"Nature",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain_railway:{name:"Mountain Railway",unified:"1F69E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f69e.png",sheet_x:30,sheet_y:1,short_name:"mountain_railway",short_names:["mountain_railway"],category:"Places",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spaghetti:{name:"Spaghetti",unified:"1F35D",variations:[],docomo:null,au:"EAB5",softbank:"E33F",google:"FE96B",image:"1f35d.png",sheet_x:7,sheet_y:30,short_name:"spaghetti",short_names:["spaghetti"],category:"Foods",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_mouth:{name:"Face Without Mouth",unified:"1F636",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f636.png",sheet_x:27,sheet_y:28,short_name:"no_mouth",short_names:["no_mouth"],category:"People",sort_order:30,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-br":{name:"Regional Indicator Symbol Letters BR",unified:"1F1E7-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f7.png",sheet_x:33,sheet_y:23,short_name:"flag-br",short_names:["flag-br"],category:"Flags",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},man_in_business_suit_levitating:{name:"Man in Business Suit Levitating",unified:"1F574",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f574.png",sheet_x:24,sheet_y:38,short_name:"man_in_business_suit_levitating",short_names:["man_in_business_suit_levitating"],category:"Activity",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},control_knobs:{name:"Control Knobs",unified:"1F39B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39b.png",sheet_x:9,sheet_y:12,short_name:"control_knobs",short_names:["control_knobs"],category:"Objects",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bee:{name:"Honeybee",unified:"1F41D",variations:[],docomo:null,au:"EB57",softbank:null,google:"FE1E1",image:"1f41d.png",sheet_x:12,sheet_y:34,short_name:"bee",short_names:["bee","honeybee"],category:"Nature",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},neutral_face:{name:"Neutral Face",unified:"1F610",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f610.png",sheet_x:26,sheet_y:31,short_name:"neutral_face",short_names:["neutral_face"],category:"People",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":|",":-|"]},steam_locomotive:{name:"Steam Locomotive",unified:"1F682",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f682.png",sheet_x:29,sheet_y:14,short_name:"steam_locomotive",short_names:["steam_locomotive"],category:"Places",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cancer:{name:"Cancer",unified:"264B",variations:["264B-FE0F"],docomo:"E649",au:"E492",softbank:"E242",google:"FE02E",image:"264b.png",sheet_x:1,sheet_y:29,short_name:"cancer",short_names:["cancer"],category:"Symbols",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},taco:{name:"Taco",unified:"1F32E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32e.png",sheet_x:6,sheet_y:24,short_name:"taco",short_names:["taco"],category:"Foods",sort_order:31,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},burrito:{name:"Burrito",unified:"1F32F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32f.png",sheet_x:6,sheet_y:25,short_name:"burrito",short_names:["burrito"],category:"Foods",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},expressionless:{name:"Expressionless Face",unified:"1F611",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f611.png",sheet_x:26,sheet_y:32,short_name:"expressionless",short_names:["expressionless"],category:"People",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},trophy:{name:"Trophy",unified:"1F3C6",variations:[],docomo:null,au:"E5D3",softbank:"E131",google:"FE7DB",image:"1f3c6.png",sheet_x:10,sheet_y:22,short_name:"trophy",short_names:["trophy"],category:"Activity",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},train2:{name:"Train",unified:"1F686",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f686.png",sheet_x:29,sheet_y:18,short_name:"train2",short_names:["train2"],category:"Places",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-io":{name:"Regional Indicator Symbol Letters IO",unified:"1F1EE-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f4.png",sheet_x:35,sheet_y:21,short_name:"flag-io",short_names:["flag-io"],category:"Flags",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bug:{name:"Bug",unified:"1F41B",variations:[],docomo:null,au:"EB1E",softbank:"E525",google:"FE1CB",image:"1f41b.png",sheet_x:12,sheet_y:32,short_name:"bug",short_names:["bug"],category:"Nature",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stopwatch:{name:"Stopwatch",unified:"23F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f1.png",sheet_x:0,sheet_y:26,short_name:"stopwatch",short_names:["stopwatch"],category:"Objects",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},leo:{name:"Leo",unified:"264C",variations:["264C-FE0F"],docomo:"E64A",au:"E493",softbank:"E243",google:"FE02F",image:"264c.png",sheet_x:1,sheet_y:30,short_name:"leo",short_names:["leo"],category:"Symbols",sort_order:32,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},virgo:{name:"Virgo",unified:"264D",variations:["264D-FE0F"],docomo:"E64B",au:"E494",softbank:"E244",google:"FE030",image:"264d.png",sheet_x:1,sheet_y:31,short_name:"virgo",short_names:["virgo"],category:"Symbols",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},running_shirt_with_sash:{name:"Running Shirt with Sash",unified:"1F3BD",variations:[],docomo:"E652",au:null,softbank:null,google:"FE7D0",image:"1f3bd.png",sheet_x:10,sheet_y:3,short_name:"running_shirt_with_sash",short_names:["running_shirt_with_sash"],category:"Activity",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vg":{name:"Regional Indicator Symbol Letters VG",unified:"1F1FB-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ec.png",sheet_x:38,sheet_y:32,short_name:"flag-vg",short_names:["flag-vg"],category:"Flags",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},metro:{name:"Metro",unified:"1F687",variations:[],docomo:"E65C",au:"E5BC",softbank:"E434",google:"FE7E0",image:"1f687.png",sheet_x:29,sheet_y:19,short_name:"metro",short_names:["metro"],category:"Places",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},unamused:{name:"Unamused Face",unified:"1F612",variations:[],docomo:"E725",au:"EAC9",softbank:"E40E",google:"FE326",image:"1f612.png",sheet_x:26,sheet_y:33,short_name:"unamused",short_names:["unamused"],category:"People",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":("]},snail:{name:"Snail",unified:"1F40C",variations:[],docomo:"E74E",au:"EB7E",softbank:null,google:"FE1B9",image:"1f40c.png",sheet_x:12,sheet_y:17,short_name:"snail",short_names:["snail"],category:"Nature",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},timer_clock:{name:"Timer Clock",unified:"23F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f2.png",sheet_x:0,sheet_y:27,short_name:"timer_clock",short_names:["timer_clock"],category:"Objects",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ramen:{name:"Steaming Bowl",unified:"1F35C",variations:[],docomo:"E74C",au:"E5B4",softbank:"E340",google:"FE963",image:"1f35c.png",sheet_x:7,sheet_y:29,short_name:"ramen",short_names:["ramen"],category:"Foods",sort_order:33,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beetle:{name:"Lady Beetle",unified:"1F41E",variations:[],docomo:null,au:"EB58",softbank:null,google:"FE1E2",image:"1f41e.png",sheet_x:12,sheet_y:35,short_name:"beetle",short_names:["beetle"],category:"Nature",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},face_with_rolling_eyes:{name:"Face with Rolling Eyes",unified:"1F644",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f644.png",sheet_x:28,sheet_y:1,short_name:"face_with_rolling_eyes",short_names:["face_with_rolling_eyes"],category:"People",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},libra:{name:"Libra",unified:"264E",variations:["264E-FE0F"],docomo:"E64C",au:"E495",softbank:"E245",google:"FE031",image:"264e.png",sheet_x:1,sheet_y:32,short_name:"libra",short_names:["libra"],category:"Symbols",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stew:{name:"Pot of Food",unified:"1F372",variations:[],docomo:null,au:"EABE",softbank:"E34D",google:"FE970",image:"1f372.png",sheet_x:8,sheet_y:10,short_name:"stew",short_names:["stew"],category:"Foods",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sports_medal:{name:"Sports Medal",unified:"1F3C5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3c5.png",sheet_x:10,sheet_y:21,short_name:"sports_medal",short_names:["sports_medal"],category:"Activity",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bn":{name:"Regional Indicator Symbol Letters BN",unified:"1F1E7-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f3.png",sheet_x:33,sheet_y:20,short_name:"flag-bn",short_names:["flag-bn"],category:"Flags",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},alarm_clock:{name:"Alarm Clock",unified:"23F0",variations:[],docomo:"E6BA",au:"E594",softbank:"E02D",google:"FE02A",image:"23f0.png",sheet_x:0,sheet_y:25,short_name:"alarm_clock",short_names:["alarm_clock"],category:"Objects",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tram:{name:"Tram",unified:"1F68A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f68a.png",sheet_x:29,sheet_y:22,short_name:"tram",short_names:["tram"],category:"Places",sort_order:34,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fish_cake:{name:"Fish Cake with Swirl Design",unified:"1F365",variations:[],docomo:"E643",au:"E4ED",softbank:null,google:"FE973",image:"1f365.png",sheet_x:7,sheet_y:38,short_name:"fish_cake",short_names:["fish_cake"],category:"Foods",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},thinking_face:{name:"Thinking Face",unified:"1F914",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f914.png",sheet_x:32,sheet_y:5,short_name:"thinking_face",short_names:["thinking_face"],category:"People",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},medal:{name:"Military Medal",unified:"1F396",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f396.png",sheet_x:9,sheet_y:8,short_name:"medal",short_names:["medal"],category:"Activity",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mantelpiece_clock:{name:"Mantelpiece Clock",unified:"1F570",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f570.png",sheet_x:24,sheet_y:36,short_name:"mantelpiece_clock",short_names:["mantelpiece_clock"],category:"Objects",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},station:{name:"Station",unified:"1F689",variations:[],docomo:null,au:"EB6D",softbank:"E039",google:"FE7EC",image:"1f689.png",sheet_x:29,sheet_y:21,short_name:"station",short_names:["station"],category:"Places",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bg":{name:"Regional Indicator Symbol Letters BG",unified:"1F1E7-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ec.png",sheet_x:33,sheet_y:14,short_name:"flag-bg",short_names:["flag-bg"],category:"Flags",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ant:{name:"Ant",unified:"1F41C",variations:[],docomo:null,au:"E4DD",softbank:null,google:"FE1DA",image:"1f41c.png",sheet_x:12,sheet_y:33,short_name:"ant",short_names:["ant"],category:"Nature",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scorpius:{name:"Scorpius",unified:"264F",variations:["264F-FE0F"],docomo:"E64D",au:"E496",softbank:"E246",google:"FE032",image:"264f.png",sheet_x:1,sheet_y:33,short_name:"scorpius",short_names:["scorpius"],category:"Symbols",sort_order:35,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sushi:{name:"Sushi",unified:"1F363",variations:[],docomo:null,au:"EAB8",softbank:"E344",google:"FE96E",image:"1f363.png",sheet_x:7,sheet_y:36,short_name:"sushi",short_names:["sushi"],category:"Foods",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},flushed:{name:"Flushed Face",unified:"1F633",variations:[],docomo:"E72A",au:"EAC8",softbank:"E40D",google:"FE32F",image:"1f633.png",sheet_x:27,sheet_y:25,short_name:"flushed",short_names:["flushed"],category:"People",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spider:{name:"Spider",unified:"1F577",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f577.png",sheet_x:25,sheet_y:5,short_name:"spider",short_names:["spider"],category:"Nature",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},reminder_ribbon:{name:"Reminder Ribbon",unified:"1F397",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f397.png",sheet_x:9,sheet_y:9,short_name:"reminder_ribbon",short_names:["reminder_ribbon"],category:"Activity",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},helicopter:{name:"Helicopter",unified:"1F681",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f681.png",sheet_x:29,sheet_y:13,short_name:"helicopter",short_names:["helicopter"],category:"Places",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sagittarius:{name:"Sagittarius",unified:"2650",variations:["2650-FE0F"],docomo:"E64E",au:"E497",softbank:"E247",google:"FE033",image:"2650.png",sheet_x:1,sheet_y:34,short_name:"sagittarius",short_names:["sagittarius"],category:"Symbols",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bf":{name:"Regional Indicator Symbol Letters BF",unified:"1F1E7-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1eb.png",sheet_x:33,sheet_y:13,short_name:"flag-bf",short_names:["flag-bf"],category:"Flags",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hourglass_flowing_sand:{name:"Hourglass with Flowing Sand",unified:"23F3",variations:[],docomo:"E71C",au:"E47C",softbank:null,google:"FE01B",image:"23f3.png",sheet_x:0,sheet_y:28,short_name:"hourglass_flowing_sand",short_names:["hourglass_flowing_sand"],category:"Objects",sort_order:36,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_airplane:{name:"Small Airplane",unified:"1F6E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e9.png",sheet_x:31,sheet_y:37,short_name:"small_airplane",short_names:["small_airplane"],category:"Places",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rosette:{name:"Rosette",unified:"1F3F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f5.png",sheet_x:11,sheet_y:36,short_name:"rosette",short_names:["rosette"],category:"Activity",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bento:{name:"Bento Box",unified:"1F371",variations:[],docomo:null,au:"EABD",softbank:"E34C",google:"FE96F",image:"1f371.png",sheet_x:8,sheet_y:9,short_name:"bento",short_names:["bento"],category:"Foods",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},capricorn:{name:"Capricorn",unified:"2651",variations:["2651-FE0F"],docomo:"E64F",au:"E498",softbank:"E248",google:"FE034",image:"2651.png",sheet_x:1,sheet_y:35,short_name:"capricorn",short_names:["capricorn"],category:"Symbols",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bi":{name:"Regional Indicator Symbol Letters BI",unified:"1F1E7-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1ee.png",sheet_x:33,sheet_y:16,short_name:"flag-bi",short_names:["flag-bi"],category:"Flags",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},disappointed:{name:"Disappointed Face",unified:"1F61E",variations:[],docomo:"E6F2",au:"EAC0",softbank:"E058",google:"FE323",image:"1f61e.png",sheet_x:27,sheet_y:4,short_name:"disappointed",short_names:["disappointed"],category:"People",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:["):",":(",":-("]},scorpion:{name:"Scorpion",unified:"1F982",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f982.png",sheet_x:32,sheet_y:17,short_name:"scorpion",short_names:["scorpion"],category:"Nature",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hourglass:{name:"Hourglass",unified:"231B",variations:["231B-FE0F"],docomo:"E71C",au:"E57B",softbank:null,google:"FE01C",image:"231b.png",sheet_x:0,sheet_y:15,short_name:"hourglass",short_names:["hourglass"],category:"Objects",sort_order:37,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crab:{name:"Crab",unified:"1F980",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f980.png",sheet_x:32,sheet_y:15,short_name:"crab",short_names:["crab"],category:"Nature",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},satellite_antenna:{name:"Satellite Antenna",unified:"1F4E1",variations:[],docomo:null,au:"E4A8",softbank:"E14B",google:"FE531",image:"1f4e1.png",sheet_x:21,sheet_y:36,short_name:"satellite_antenna",short_names:["satellite_antenna"],category:"Objects",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},airplane:{name:"Airplane",unified:"2708",variations:["2708-FE0F"],docomo:"E662",au:"E4B3",softbank:"E01D",google:"FE7E9",image:"2708.png",sheet_x:3,sheet_y:7,short_name:"airplane",short_names:["airplane"],category:"Places",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},aquarius:{name:"Aquarius",unified:"2652",variations:["2652-FE0F"],docomo:"E650",au:"E499",softbank:"E249",google:"FE035",image:"2652.png",sheet_x:1,sheet_y:36,short_name:"aquarius",short_names:["aquarius"],category:"Symbols",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ticket:{name:"Ticket",unified:"1F3AB",variations:[],docomo:"E67E",au:"E49E",softbank:"E125",google:"FE807",image:"1f3ab.png",sheet_x:9,sheet_y:26,short_name:"ticket",short_names:["ticket"],category:"Activity",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},worried:{name:"Worried Face",unified:"1F61F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f61f.png",sheet_x:27,sheet_y:5,short_name:"worried",short_names:["worried"],category:"People",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cv":{name:"Regional Indicator Symbol Letters CV",unified:"1F1E8-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fb.png",sheet_x:34,sheet_y:4,short_name:"flag-cv",short_names:["flag-cv"],category:"Flags",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},curry:{name:"Curry and Rice",unified:"1F35B",variations:[],docomo:null,au:"EAB6",softbank:"E341",google:"FE96C",image:"1f35b.png",sheet_x:7,sheet_y:28,short_name:"curry",short_names:["curry"],category:"Foods",sort_order:38,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pisces:{name:"Pisces",unified:"2653",variations:["2653-FE0F"],docomo:"E651",au:"E49A",softbank:"E24A",google:"FE036",image:"2653.png",sheet_x:1,sheet_y:37,short_name:"pisces",short_names:["pisces"],category:"Symbols",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},airplane_departure:{name:"Airplane Departure",unified:"1F6EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6eb.png",sheet_x:31,sheet_y:38,short_name:"airplane_departure",short_names:["airplane_departure"],category:"Places",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kh":{name:"Regional Indicator Symbol Letters KH",unified:"1F1F0-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ed.png",sheet_x:35,sheet_y:32,short_name:"flag-kh",short_names:["flag-kh"],category:"Flags",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},battery:{name:"Battery",unified:"1F50B",variations:[],docomo:null,au:"E584",softbank:null,google:"FE4FC",image:"1f50b.png",sheet_x:22,sheet_y:36,short_name:"battery",short_names:["battery"],category:"Objects",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snake:{name:"Snake",unified:"1F40D",variations:[],docomo:null,au:"EB22",softbank:"E52D",google:"FE1D3",image:"1f40d.png",sheet_x:12,sheet_y:18,short_name:"snake",short_names:["snake"],category:"Nature",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},angry:{name:"Angry Face",unified:"1F620",variations:[],docomo:"E6F1",au:"E472",softbank:"E059",google:"FE320",image:"1f620.png",sheet_x:27,sheet_y:6,short_name:"angry",short_names:["angry"],category:"People",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[">:(",">:-("]},rice_ball:{name:"Rice Ball",unified:"1F359",variations:[],docomo:"E749",au:"E4D5",softbank:"E342",google:"FE961",image:"1f359.png",sheet_x:7,sheet_y:26,short_name:"rice_ball",short_names:["rice_ball"],category:"Foods",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},admission_tickets:{name:"Admission Tickets",unified:"1F39F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f39f.png",sheet_x:9,sheet_y:14,short_name:"admission_tickets",short_names:["admission_tickets"],category:"Activity",sort_order:39,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},performing_arts:{name:"Performing Arts",unified:"1F3AD",variations:[],docomo:null,au:"E59D",softbank:"E503",google:"FE809",image:"1f3ad.png",sheet_x:9,sheet_y:28,short_name:"performing_arts",short_names:["performing_arts"],category:"Activity",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rage:{name:"Pouting Face",unified:"1F621", +variations:[],docomo:"E724",au:"EB5D",softbank:"E416",google:"FE33D",image:"1f621.png",sheet_x:27,sheet_y:7,short_name:"rage",short_names:["rage"],category:"People",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rice:{name:"Cooked Rice",unified:"1F35A",variations:[],docomo:"E74C",au:"EAB4",softbank:"E33E",google:"FE96A",image:"1f35a.png",sheet_x:7,sheet_y:27,short_name:"rice",short_names:["rice"],category:"Foods",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},airplane_arriving:{name:"Airplane Arriving",unified:"1F6EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ec.png",sheet_x:31,sheet_y:39,short_name:"airplane_arriving",short_names:["airplane_arriving"],category:"Places",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},id:{name:"Squared Id",unified:"1F194",variations:[],docomo:"E6D8",au:"EA88",softbank:"E229",google:"FEB81",image:"1f194.png",sheet_x:4,sheet_y:40,short_name:"id",short_names:["id"],category:"Symbols",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cm":{name:"Regional Indicator Symbol Letters CM",unified:"1F1E8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f2.png",sheet_x:33,sheet_y:39,short_name:"flag-cm",short_names:["flag-cm"],category:"Flags",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},turtle:{name:"Turtle",unified:"1F422",variations:[],docomo:null,au:"E5D4",softbank:null,google:"FE1DC",image:"1f422.png",sheet_x:12,sheet_y:39,short_name:"turtle",short_names:["turtle"],category:"Nature",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},electric_plug:{name:"Electric Plug",unified:"1F50C",variations:[],docomo:null,au:"E589",softbank:null,google:"FE4FE",image:"1f50c.png",sheet_x:22,sheet_y:37,short_name:"electric_plug",short_names:["electric_plug"],category:"Objects",sort_order:40,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tropical_fish:{name:"Tropical Fish",unified:"1F420",variations:[],docomo:"E751",au:"EB1D",softbank:"E522",google:"FE1C9",image:"1f420.png",sheet_x:12,sheet_y:37,short_name:"tropical_fish",short_names:["tropical_fish"],category:"Nature",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bulb:{name:"Electric Light Bulb",unified:"1F4A1",variations:[],docomo:"E6FB",au:"E476",softbank:"E10F",google:"FEB56",image:"1f4a1.png",sheet_x:20,sheet_y:8,short_name:"bulb",short_names:["bulb"],category:"Objects",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pensive:{name:"Pensive Face",unified:"1F614",variations:[],docomo:"E720",au:"EAC0",softbank:"E403",google:"FE340",image:"1f614.png",sheet_x:26,sheet_y:35,short_name:"pensive",short_names:["pensive"],category:"People",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rice_cracker:{name:"Rice Cracker",unified:"1F358",variations:[],docomo:null,au:"EAB3",softbank:"E33D",google:"FE969",image:"1f358.png",sheet_x:7,sheet_y:25,short_name:"rice_cracker",short_names:["rice_cracker"],category:"Foods",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},art:{name:"Artist Palette",unified:"1F3A8",variations:[],docomo:"E67B",au:"E59C",softbank:"E502",google:"FE804",image:"1f3a8.png",sheet_x:9,sheet_y:23,short_name:"art",short_names:["art"],category:"Activity",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boat:{name:"Sailboat",unified:"26F5",variations:["26F5-FE0F"],docomo:"E6A3",au:"E4B4",softbank:"E01C",google:"FE7EA",image:"26f5.png",sheet_x:2,sheet_y:35,short_name:"boat",short_names:["boat","sailboat"],category:"Places",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},atom_symbol:{name:"Atom Symbol",unified:"269B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"269b.png",sheet_x:2,sheet_y:10,short_name:"atom_symbol",short_names:["atom_symbol"],category:"Symbols",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ca":{name:"Regional Indicator Symbol Letters CA",unified:"1F1E8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e6.png",sheet_x:33,sheet_y:30,short_name:"flag-ca",short_names:["flag-ca"],category:"Flags",sort_order:41,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oden:{name:"Oden",unified:"1F362",variations:[],docomo:null,au:"EAB7",softbank:"E343",google:"FE96D",image:"1f362.png",sheet_x:7,sheet_y:35,short_name:"oden",short_names:["oden"],category:"Foods",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},flashlight:{name:"Electric Torch",unified:"1F526",variations:[],docomo:"E6FB",au:"E583",softbank:null,google:"FE4FB",image:"1f526.png",sheet_x:23,sheet_y:22,short_name:"flashlight",short_names:["flashlight"],category:"Objects",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},confused:{name:"Confused Face",unified:"1F615",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f615.png",sheet_x:26,sheet_y:36,short_name:"confused",short_names:["confused"],category:"People",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":\\",":-\\",":/",":-/"]},u7a7a:{name:"Squared Cjk Unified Ideograph-7a7a",unified:"1F233",variations:[],docomo:"E739",au:"EA8A",softbank:"E22B",google:"FEB2F",image:"1f233.png",sheet_x:5,sheet_y:11,short_name:"u7a7a",short_names:["u7a7a"],category:"Symbols",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},circus_tent:{name:"Circus Tent",unified:"1F3AA",variations:[],docomo:"E67D",au:"E59E",softbank:null,google:"FE806",image:"1f3aa.png",sheet_x:9,sheet_y:25,short_name:"circus_tent",short_names:["circus_tent"],category:"Activity",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},motor_boat:{name:"Motor Boat",unified:"1F6E5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e5.png",sheet_x:31,sheet_y:36,short_name:"motor_boat",short_names:["motor_boat"],category:"Places",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ic":{name:"Regional Indicator Symbol Letters IC",unified:"1F1EE-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1e8.png",sheet_x:35,sheet_y:15,short_name:"flag-ic",short_names:["flag-ic"],category:"Flags",sort_order:42,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fish:{name:"Fish",unified:"1F41F",variations:[],docomo:"E751",au:"E49A",softbank:"E019",google:"FE1BD",image:"1f41f.png",sheet_x:12,sheet_y:36,short_name:"fish",short_names:["fish"],category:"Nature",sort_order:42,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},microphone:{name:"Microphone",unified:"1F3A4",variations:[],docomo:"E676",au:"E503",softbank:"E03C",google:"FE800",image:"1f3a4.png",sheet_x:9,sheet_y:19,short_name:"microphone",short_names:["microphone"],category:"Activity",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ky":{name:"Regional Indicator Symbol Letters KY",unified:"1F1F0-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1fe.png",sheet_x:35,sheet_y:39,short_name:"flag-ky",short_names:["flag-ky"],category:"Flags",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},candle:{name:"Candle",unified:"1F56F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f56f.png",sheet_x:24,sheet_y:35,short_name:"candle",short_names:["candle"],category:"Objects",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dango:{name:"Dango",unified:"1F361",variations:[],docomo:null,au:"EAB2",softbank:"E33C",google:"FE968",image:"1f361.png",sheet_x:7,sheet_y:34,short_name:"dango",short_names:["dango"],category:"Foods",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},slightly_frowning_face:{name:"Slightly Frowning Face",unified:"1F641",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f641.png",sheet_x:27,sheet_y:39,short_name:"slightly_frowning_face",short_names:["slightly_frowning_face"],category:"People",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},blowfish:{name:"Blowfish",unified:"1F421",variations:[],docomo:"E751",au:"E4D3",softbank:"E019",google:"FE1D9",image:"1f421.png",sheet_x:12,sheet_y:38,short_name:"blowfish",short_names:["blowfish"],category:"Nature",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u5272:{name:"Squared Cjk Unified Ideograph-5272",unified:"1F239",variations:[],docomo:null,au:"EA86",softbank:"E227",google:"FEB3E",image:"1f239.png",sheet_x:5,sheet_y:17,short_name:"u5272",short_names:["u5272"],category:"Symbols",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speedboat:{name:"Speedboat",unified:"1F6A4",variations:[],docomo:"E6A3",au:"E4B4",softbank:"E135",google:"FE7EE",image:"1f6a4.png",sheet_x:30,sheet_y:12,short_name:"speedboat",short_names:["speedboat"],category:"Places",sort_order:43,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_frowning_face:{name:"White Frowning Face",unified:"2639",variations:["2639-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2639.png",sheet_x:1,sheet_y:24,short_name:"white_frowning_face",short_names:["white_frowning_face"],category:"People",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dolphin:{name:"Dolphin",unified:"1F42C",variations:[],docomo:null,au:"EB1B",softbank:"E520",google:"FE1C7",image:"1f42c.png",sheet_x:13,sheet_y:8,short_name:"dolphin",short_names:["dolphin","flipper"],category:"Nature",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},radioactive_sign:{name:"Radioactive Sign",unified:"2622",variations:["2622-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2622.png",sheet_x:1,sheet_y:17,short_name:"radioactive_sign",short_names:["radioactive_sign"],category:"Symbols",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},headphones:{name:"Headphone",unified:"1F3A7",variations:[],docomo:"E67A",au:"E508",softbank:"E30A",google:"FE803",image:"1f3a7.png",sheet_x:9,sheet_y:22,short_name:"headphones",short_names:["headphones"],category:"Activity",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cf":{name:"Regional Indicator Symbol Letters CF",unified:"1F1E8-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1eb.png",sheet_x:33,sheet_y:33,short_name:"flag-cf",short_names:["flag-cf"],category:"Flags",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ferry:{name:"Ferry",unified:"26F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f4.png",sheet_x:2,sheet_y:34,short_name:"ferry",short_names:["ferry"],category:"Places",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wastebasket:{name:"Wastebasket",unified:"1F5D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d1.png",sheet_x:25,sheet_y:39,short_name:"wastebasket",short_names:["wastebasket"],category:"Objects",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shaved_ice:{name:"Shaved Ice",unified:"1F367",variations:[],docomo:null,au:"EAEA",softbank:"E43F",google:"FE971",image:"1f367.png",sheet_x:7,sheet_y:40,short_name:"shaved_ice",short_names:["shaved_ice"],category:"Foods",sort_order:44,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},whale:{name:"Spouting Whale",unified:"1F433",variations:[],docomo:null,au:"E470",softbank:"E054",google:"FE1C3",image:"1f433.png",sheet_x:13,sheet_y:15,short_name:"whale",short_names:["whale"],category:"Nature",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},oil_drum:{name:"Oil Drum",unified:"1F6E2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e2.png",sheet_x:31,sheet_y:33,short_name:"oil_drum",short_names:["oil_drum"],category:"Objects",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ice_cream:{name:"Ice Cream",unified:"1F368",variations:[],docomo:null,au:"EB4A",softbank:null,google:"FE977",image:"1f368.png",sheet_x:8,sheet_y:0,short_name:"ice_cream",short_names:["ice_cream"],category:"Foods",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},passenger_ship:{name:"Passenger Ship",unified:"1F6F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6f3.png",sheet_x:32,sheet_y:0,short_name:"passenger_ship",short_names:["passenger_ship"],category:"Places",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},biohazard_sign:{name:"Biohazard Sign",unified:"2623",variations:["2623-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2623.png",sheet_x:1,sheet_y:18,short_name:"biohazard_sign",short_names:["biohazard_sign"],category:"Symbols",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},musical_score:{name:"Musical Score",unified:"1F3BC",variations:[],docomo:"E6FF",au:"EACC",softbank:"E326",google:"FE81A",image:"1f3bc.png",sheet_x:10,sheet_y:2,short_name:"musical_score",short_names:["musical_score"],category:"Activity",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},persevere:{name:"Persevering Face",unified:"1F623",variations:[],docomo:"E72B",au:"EAC2",softbank:"E406",google:"FE33C",image:"1f623.png",sheet_x:27,sheet_y:9,short_name:"persevere",short_names:["persevere"],category:"People",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-td":{name:"Regional Indicator Symbol Letters TD",unified:"1F1F9-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e9.png",sheet_x:38,sheet_y:8,short_name:"flag-td",short_names:["flag-td"],category:"Flags",sort_order:45,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},icecream:{name:"Soft Ice Cream",unified:"1F366",variations:[],docomo:null,au:"EAB0",softbank:"E33A",google:"FE966",image:"1f366.png",sheet_x:7,sheet_y:39,short_name:"icecream",short_names:["icecream"],category:"Foods",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},whale2:{name:"Whale",unified:"1F40B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40b.png",sheet_x:12,sheet_y:16,short_name:"whale2",short_names:["whale2"],category:"Nature",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},musical_keyboard:{name:"Musical Keyboard",unified:"1F3B9",variations:[],docomo:null,au:"EB40",softbank:null,google:"FE817",image:"1f3b9.png",sheet_x:9,sheet_y:40,short_name:"musical_keyboard",short_names:["musical_keyboard"],category:"Activity",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},money_with_wings:{name:"Money with Wings",unified:"1F4B8",variations:[],docomo:null,au:"EB5B",softbank:null,google:"FE4E4",image:"1f4b8.png",sheet_x:20,sheet_y:36,short_name:"money_with_wings",short_names:["money_with_wings"],category:"Objects",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},confounded:{name:"Confounded Face",unified:"1F616",variations:[],docomo:"E6F3",au:"EAC3",softbank:"E407",google:"FE33F",image:"1f616.png",sheet_x:26,sheet_y:37,short_name:"confounded",short_names:["confounded"],category:"People",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rocket:{name:"Rocket",unified:"1F680",variations:[],docomo:null,au:"E5C8",softbank:"E10D",google:"FE7ED",image:"1f680.png",sheet_x:29,sheet_y:12,short_name:"rocket",short_names:["rocket"],category:"Places",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mobile_phone_off:{name:"Mobile Phone off",unified:"1F4F4",variations:[],docomo:null,au:"EA91",softbank:"E251",google:"FE83A",image:"1f4f4.png",sheet_x:22,sheet_y:14,short_name:"mobile_phone_off",short_names:["mobile_phone_off"],category:"Symbols",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cl":{name:"Regional Indicator Symbol Letters CL",unified:"1F1E8-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f1.png",sheet_x:33,sheet_y:38,short_name:"flag-cl",short_names:["flag-cl"],category:"Flags",sort_order:46,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},satellite:{name:"Satellite",unified:"1F6F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6f0.png",sheet_x:31,sheet_y:40,short_name:"satellite",short_names:["satellite"],category:"Places",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cn":{name:"Regional Indicator Symbol Letters CN",unified:"1F1E8-1F1F3",variations:[],docomo:null,au:"EB11",softbank:"E513",google:"FE4ED",image:"1f1e8-1f1f3.png",sheet_x:33,sheet_y:40,short_name:"flag-cn",short_names:["flag-cn","cn"],category:"Flags",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crocodile:{name:"Crocodile",unified:"1F40A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40a.png",sheet_x:12,sheet_y:15,short_name:"crocodile",short_names:["crocodile"],category:"Nature",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cake:{name:"Shortcake",unified:"1F370",variations:[],docomo:"E74A",au:"E4D0",softbank:"E046",google:"FE962",image:"1f370.png",sheet_x:8,sheet_y:8,short_name:"cake",short_names:["cake"],category:"Foods",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dollar:{name:"Banknote with Dollar Sign",unified:"1F4B5",variations:[],docomo:"E715",au:"E585",softbank:"E12F",google:"FE4E3",image:"1f4b5.png",sheet_x:20,sheet_y:33,short_name:"dollar",short_names:["dollar"],category:"Objects",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},vibration_mode:{name:"Vibration Mode",unified:"1F4F3",variations:[],docomo:null,au:"EA90",softbank:"E250",google:"FE839",image:"1f4f3.png",sheet_x:22,sheet_y:13,short_name:"vibration_mode",short_names:["vibration_mode"],category:"Symbols",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tired_face:{name:"Tired Face",unified:"1F62B",variations:[],docomo:"E72B",au:"E474",softbank:"E406",google:"FE346",image:"1f62b.png",sheet_x:27,sheet_y:17,short_name:"tired_face",short_names:["tired_face"],category:"People",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},saxophone:{name:"Saxophone",unified:"1F3B7",variations:[],docomo:null,au:null,softbank:"E040",google:"FE815",image:"1f3b7.png",sheet_x:9,sheet_y:38,short_name:"saxophone",short_names:["saxophone"],category:"Activity",sort_order:47,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cx":{name:"Regional Indicator Symbol Letters CX",unified:"1F1E8-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fd.png",sheet_x:34,sheet_y:6,short_name:"flag-cx",short_names:["flag-cx"],category:"Flags",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},seat:{name:"Seat",unified:"1F4BA",variations:[],docomo:"E6B2",au:null,softbank:"E11F",google:"FE537",image:"1f4ba.png",sheet_x:20,sheet_y:38,short_name:"seat",short_names:["seat"],category:"Places",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},trumpet:{name:"Trumpet",unified:"1F3BA",variations:[],docomo:null,au:"EADC",softbank:"E042",google:"FE818",image:"1f3ba.png",sheet_x:10,sheet_y:0,short_name:"trumpet",short_names:["trumpet"],category:"Activity",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},yen:{name:"Banknote with Yen Sign",unified:"1F4B4",variations:[],docomo:"E6D6",au:"E57D",softbank:null,google:"FE4E2",image:"1f4b4.png",sheet_x:20,sheet_y:32,short_name:"yen",short_names:["yen"],category:"Objects",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},leopard:{name:"Leopard",unified:"1F406",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f406.png",sheet_x:12,sheet_y:11,short_name:"leopard",short_names:["leopard"],category:"Nature",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u6709:{name:"Squared Cjk Unified Ideograph-6709",unified:"1F236",variations:[],docomo:null,au:null,softbank:"E215",google:"FEB39",image:"1f236.png",sheet_x:5,sheet_y:14,short_name:"u6709",short_names:["u6709"],category:"Symbols",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},birthday:{name:"Birthday Cake",unified:"1F382",variations:[],docomo:"E686",au:"E5A0",softbank:"E34B",google:"FE511",image:"1f382.png",sheet_x:8,sheet_y:26,short_name:"birthday",short_names:["birthday"],category:"Foods",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},weary:{name:"Weary Face",unified:"1F629",variations:[],docomo:"E6F3",au:"EB67",softbank:"E403",google:"FE321",image:"1f629.png",sheet_x:27,sheet_y:15,short_name:"weary",short_names:["weary"],category:"People",sort_order:48,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tiger2:{name:"Tiger",unified:"1F405",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f405.png",sheet_x:12,sheet_y:10,short_name:"tiger2",short_names:["tiger2"],category:"Nature",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cc":{name:"Regional Indicator Symbol Letters CC",unified:"1F1E8-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e8.png",sheet_x:33,sheet_y:31,short_name:"flag-cc",short_names:["flag-cc"],category:"Flags",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u7121:{name:"Squared Cjk Unified Ideograph-7121",unified:"1F21A",variations:["1F21A-FE0F"],docomo:null,au:null,softbank:"E216",google:"FEB3A",image:"1f21a.png",sheet_x:5,sheet_y:8,short_name:"u7121",short_names:["u7121"],category:"Symbols",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},euro:{name:"Banknote with Euro Sign",unified:"1F4B6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4b6.png",sheet_x:20,sheet_y:34,short_name:"euro",short_names:["euro"],category:"Objects",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},custard:{name:"Custard",unified:"1F36E",variations:[],docomo:null,au:"EB56",softbank:null,google:"FE97D",image:"1f36e.png",sheet_x:8,sheet_y:6,short_name:"custard",short_names:["custard"],category:"Foods",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},triumph:{name:"Face with Look of Triumph",unified:"1F624",variations:[],docomo:"E753",au:"EAC1",softbank:"E404",google:"FE328",image:"1f624.png",sheet_x:27,sheet_y:10,short_name:"triumph",short_names:["triumph"],category:"People",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},anchor:{name:"Anchor",unified:"2693",variations:["2693-FE0F"],docomo:"E661",au:"E4A9",softbank:"E202",google:"FE4C1",image:"2693.png",sheet_x:2,sheet_y:5,short_name:"anchor",short_names:["anchor"],category:"Places",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},guitar:{name:"Guitar",unified:"1F3B8",variations:[],docomo:null,au:"E506",softbank:"E041",google:"FE816",image:"1f3b8.png",sheet_x:9,sheet_y:39,short_name:"guitar",short_names:["guitar"],category:"Activity",sort_order:49,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},violin:{name:"Violin",unified:"1F3BB",variations:[],docomo:null,au:"E507",softbank:null,google:"FE819",image:"1f3bb.png",sheet_x:10,sheet_y:1,short_name:"violin",short_names:["violin"],category:"Activity",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},construction:{name:"Construction Sign",unified:"1F6A7",variations:[],docomo:null,au:"E5D7",softbank:"E137",google:"FE7F8",image:"1f6a7.png",sheet_x:30,sheet_y:15,short_name:"construction",short_names:["construction"],category:"Places",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},water_buffalo:{name:"Water Buffalo",unified:"1F403",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f403.png",sheet_x:12,sheet_y:8,short_name:"water_buffalo",short_names:["water_buffalo"],category:"Nature",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},candy:{name:"Candy",unified:"1F36C",variations:[],docomo:null,au:"EB4E",softbank:null,google:"FE97B",image:"1f36c.png",sheet_x:8,sheet_y:4,short_name:"candy",short_names:["candy"],category:"Foods",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pound:{name:"Banknote with Pound Sign",unified:"1F4B7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4b7.png",sheet_x:20,sheet_y:35,short_name:"pound",short_names:["pound"],category:"Objects",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-co":{name:"Regional Indicator Symbol Letters CO",unified:"1F1E8-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f4.png",sheet_x:34,sheet_y:0,short_name:"flag-co",short_names:["flag-co"],category:"Flags",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},open_mouth:{name:"Face with Open Mouth",unified:"1F62E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f62e.png",sheet_x:27,sheet_y:20,short_name:"open_mouth",short_names:["open_mouth"],category:"People",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":o",":-o",":O",":-O"]},u7533:{name:"Squared Cjk Unified Ideograph-7533",unified:"1F238",variations:[],docomo:null,au:null,softbank:"E218",google:"FEB3C",image:"1f238.png",sheet_x:5,sheet_y:16,short_name:"u7533",short_names:["u7533"],category:"Symbols",sort_order:50,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ox:{name:"Ox",unified:"1F402",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f402.png",sheet_x:12,sheet_y:7,short_name:"ox",short_names:["ox"],category:"Nature",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scream:{name:"Face Screaming in Fear",unified:"1F631",variations:[],docomo:"E757",au:"E5C5",softbank:"E107",google:"FE341",image:"1f631.png",sheet_x:27,sheet_y:23,short_name:"scream",short_names:["scream"],category:"People",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-km":{name:"Regional Indicator Symbol Letters KM",unified:"1F1F0-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f2.png",sheet_x:35,sheet_y:34,short_name:"flag-km",short_names:["flag-km"],category:"Flags",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clapper:{name:"Clapper Board",unified:"1F3AC",variations:[],docomo:"E6AC",au:"E4BE",softbank:"E324",google:"FE808",image:"1f3ac.png",sheet_x:9,sheet_y:27,short_name:"clapper",short_names:["clapper"],category:"Activity",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u55b6:{name:"Squared Cjk Unified Ideograph-55b6",unified:"1F23A",variations:[],docomo:null,au:"EA8C",softbank:"E22D",google:"FEB41",image:"1f23a.png",sheet_x:5,sheet_y:18,short_name:"u55b6",short_names:["u55b6"],category:"Symbols",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fuelpump:{name:"Fuel Pump",unified:"26FD",variations:["26FD-FE0F"],docomo:"E66B",au:"E571",softbank:"E03A",google:"FE7F5",image:"26fd.png",sheet_x:3,sheet_y:4,short_name:"fuelpump",short_names:["fuelpump"],category:"Places",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},moneybag:{name:"Money Bag",unified:"1F4B0",variations:[],docomo:"E715",au:"E4C7",softbank:"E12F",google:"FE4DD",image:"1f4b0.png",sheet_x:20,sheet_y:28,short_name:"moneybag",short_names:["moneybag"],category:"Objects",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lollipop:{name:"Lollipop",unified:"1F36D",variations:[],docomo:null,au:"EB4F",softbank:null,google:"FE97C",image:"1f36d.png",sheet_x:8,sheet_y:5,short_name:"lollipop",short_names:["lollipop"],category:"Foods",sort_order:51,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},credit_card:{name:"Credit Card",unified:"1F4B3",variations:[],docomo:null,au:"E57C",softbank:null,google:"FE4E1",image:"1f4b3.png",sheet_x:20,sheet_y:31,short_name:"credit_card",short_names:["credit_card"],category:"Objects",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cow2:{name:"Cow",unified:"1F404",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f404.png",sheet_x:12,sheet_y:9,short_name:"cow2",short_names:["cow2"],category:"Nature",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},video_game:{name:"Video Game",unified:"1F3AE",variations:[],docomo:"E68B",au:"E4C6",softbank:null,google:"FE80A",image:"1f3ae.png",sheet_x:9,sheet_y:29,short_name:"video_game",short_names:["video_game"],category:"Activity",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},busstop:{name:"Bus Stop",unified:"1F68F",variations:[],docomo:null,au:"E4A7",softbank:"E150",google:"FE7E7",image:"1f68f.png",sheet_x:29,sheet_y:27,short_name:"busstop",short_names:["busstop"],category:"Places",sort_order:52, +has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chocolate_bar:{name:"Chocolate Bar",unified:"1F36B",variations:[],docomo:null,au:"EB4D",softbank:null,google:"FE97A",image:"1f36b.png",sheet_x:8,sheet_y:3,short_name:"chocolate_bar",short_names:["chocolate_bar"],category:"Foods",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u6708:{name:"Squared Cjk Unified Ideograph-6708",unified:"1F237",variations:["1F237-FE0F"],docomo:null,au:null,softbank:"E217",google:"FEB3B",image:"1f237.png",sheet_x:5,sheet_y:15,short_name:"u6708",short_names:["u6708"],category:"Symbols",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fearful:{name:"Fearful Face",unified:"1F628",variations:[],docomo:"E757",au:"EAC6",softbank:"E40B",google:"FE33B",image:"1f628.png",sheet_x:27,sheet_y:14,short_name:"fearful",short_names:["fearful"],category:"People",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cg":{name:"Regional Indicator Symbol Letters CG",unified:"1F1E8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ec.png",sheet_x:33,sheet_y:34,short_name:"flag-cg",short_names:["flag-cg"],category:"Flags",sort_order:52,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dromedary_camel:{name:"Dromedary Camel",unified:"1F42A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f42a.png",sheet_x:13,sheet_y:6,short_name:"dromedary_camel",short_names:["dromedary_camel"],category:"Nature",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},popcorn:{name:"Popcorn",unified:"1F37F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37f.png",sheet_x:8,sheet_y:23,short_name:"popcorn",short_names:["popcorn"],category:"Foods",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eight_pointed_black_star:{name:"Eight Pointed Black Star",unified:"2734",variations:["2734-FE0F"],docomo:"E6F8",au:"E479",softbank:"E205",google:"FEB61",image:"2734.png",sheet_x:4,sheet_y:0,short_name:"eight_pointed_black_star",short_names:["eight_pointed_black_star"],category:"Symbols",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gem:{name:"Gem Stone",unified:"1F48E",variations:[],docomo:"E71B",au:"E514",softbank:"E035",google:"FE826",image:"1f48e.png",sheet_x:19,sheet_y:30,short_name:"gem",short_names:["gem"],category:"Objects",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},space_invader:{name:"Alien Monster",unified:"1F47E",variations:[],docomo:null,au:"E4EC",softbank:"E12B",google:"FE1B1",image:"1f47e.png",sheet_x:18,sheet_y:25,short_name:"space_invader",short_names:["space_invader"],category:"Activity",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},vertical_traffic_light:{name:"Vertical Traffic Light",unified:"1F6A6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6a6.png",sheet_x:30,sheet_y:14,short_name:"vertical_traffic_light",short_names:["vertical_traffic_light"],category:"Places",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cold_sweat:{name:"Face with Open Mouth and Cold Sweat",unified:"1F630",variations:[],docomo:"E723",au:"EACB",softbank:"E40F",google:"FE325",image:"1f630.png",sheet_x:27,sheet_y:22,short_name:"cold_sweat",short_names:["cold_sweat"],category:"People",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cd":{name:"Regional Indicator Symbol Letters CD",unified:"1F1E8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1e9.png",sheet_x:33,sheet_y:32,short_name:"flag-cd",short_names:["flag-cd"],category:"Flags",sort_order:53,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ck":{name:"Regional Indicator Symbol Letters CK",unified:"1F1E8-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f0.png",sheet_x:33,sheet_y:37,short_name:"flag-ck",short_names:["flag-ck"],category:"Flags",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hushed:{name:"Hushed Face",unified:"1F62F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f62f.png",sheet_x:27,sheet_y:21,short_name:"hushed",short_names:["hushed"],category:"People",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},traffic_light:{name:"Horizontal Traffic Light",unified:"1F6A5",variations:[],docomo:"E66D",au:"E46A",softbank:"E14E",google:"FE7F7",image:"1f6a5.png",sheet_x:30,sheet_y:13,short_name:"traffic_light",short_names:["traffic_light"],category:"Places",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},doughnut:{name:"Doughnut",unified:"1F369",variations:[],docomo:null,au:"EB4B",softbank:null,google:"FE978",image:"1f369.png",sheet_x:8,sheet_y:1,short_name:"doughnut",short_names:["doughnut"],category:"Foods",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},camel:{name:"Bactrian Camel",unified:"1F42B",variations:[],docomo:null,au:"EB25",softbank:"E530",google:"FE1D6",image:"1f42b.png",sheet_x:13,sheet_y:7,short_name:"camel",short_names:["camel"],category:"Nature",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dart:{name:"Direct Hit",unified:"1F3AF",variations:[],docomo:null,au:"E4C5",softbank:"E130",google:"FE80C",image:"1f3af.png",sheet_x:9,sheet_y:30,short_name:"dart",short_names:["dart"],category:"Activity",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scales:{name:"Scales",unified:"2696",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2696.png",sheet_x:2,sheet_y:7,short_name:"scales",short_names:["scales"],category:"Objects",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},vs:{name:"Squared Vs",unified:"1F19A",variations:[],docomo:null,au:"E5D2",softbank:"E12E",google:"FEB32",image:"1f19a.png",sheet_x:5,sheet_y:5,short_name:"vs",short_names:["vs"],category:"Symbols",sort_order:54,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},elephant:{name:"Elephant",unified:"1F418",variations:[],docomo:null,au:"EB1F",softbank:"E526",google:"FE1CC",image:"1f418.png",sheet_x:12,sheet_y:29,short_name:"elephant",short_names:["elephant"],category:"Nature",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wrench:{name:"Wrench",unified:"1F527",variations:[],docomo:"E718",au:"E587",softbank:null,google:"FE4C9",image:"1f527.png",sheet_x:23,sheet_y:23,short_name:"wrench",short_names:["wrench"],category:"Objects",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},game_die:{name:"Game Die",unified:"1F3B2",variations:[],docomo:null,au:"E4C8",softbank:null,google:"FE80F",image:"1f3b2.png",sheet_x:9,sheet_y:33,short_name:"game_die",short_names:["game_die"],category:"Activity",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},accept:{name:"Circled Ideograph Accept",unified:"1F251",variations:[],docomo:null,au:"EB01",softbank:null,google:"FEB50",image:"1f251.png",sheet_x:5,sheet_y:20,short_name:"accept",short_names:["accept"],category:"Symbols",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cookie:{name:"Cookie",unified:"1F36A",variations:[],docomo:null,au:"EB4C",softbank:null,google:"FE979",image:"1f36a.png",sheet_x:8,sheet_y:2,short_name:"cookie",short_names:["cookie"],category:"Foods",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cr":{name:"Regional Indicator Symbol Letters CR",unified:"1F1E8-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f7.png",sheet_x:34,sheet_y:2,short_name:"flag-cr",short_names:["flag-cr"],category:"Flags",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},checkered_flag:{name:"Chequered Flag",unified:"1F3C1",variations:[],docomo:"E659",au:"E4B9",softbank:"E132",google:"FE7D7",image:"1f3c1.png",sheet_x:10,sheet_y:7,short_name:"checkered_flag",short_names:["checkered_flag"],category:"Places",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},frowning:{name:"Frowning Face with Open Mouth",unified:"1F626",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f626.png",sheet_x:27,sheet_y:12,short_name:"frowning",short_names:["frowning"],category:"People",sort_order:55,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_flower:{name:"White Flower",unified:"1F4AE",variations:[],docomo:null,au:"E4F0",softbank:null,google:"FEB7A",image:"1f4ae.png",sheet_x:20,sheet_y:26,short_name:"white_flower",short_names:["white_flower"],category:"Symbols",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ship:{name:"Ship",unified:"1F6A2",variations:[],docomo:"E661",au:"EA82",softbank:"E202",google:"FE7E8",image:"1f6a2.png",sheet_x:30,sheet_y:5,short_name:"ship",short_names:["ship"],category:"Places",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hammer:{name:"Hammer",unified:"1F528",variations:[],docomo:null,au:"E5CB",softbank:"E116",google:"FE4CA",image:"1f528.png",sheet_x:23,sheet_y:24,short_name:"hammer",short_names:["hammer"],category:"Objects",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-hr":{name:"Regional Indicator Symbol Letters HR",unified:"1F1ED-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f7.png",sheet_x:35,sheet_y:12,short_name:"flag-hr",short_names:["flag-hr"],category:"Flags",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},anguished:{name:"Anguished Face",unified:"1F627",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f627.png",sheet_x:27,sheet_y:13,short_name:"anguished",short_names:["anguished"],category:"People",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:["D:"]},goat:{name:"Goat",unified:"1F410",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f410.png",sheet_x:12,sheet_y:21,short_name:"goat",short_names:["goat"],category:"Nature",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beer:{name:"Beer Mug",unified:"1F37A",variations:[],docomo:"E672",au:"E4C3",softbank:"E047",google:"FE983",image:"1f37a.png",sheet_x:8,sheet_y:18,short_name:"beer",short_names:["beer"],category:"Foods",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},slot_machine:{name:"Slot Machine",unified:"1F3B0",variations:[],docomo:null,au:"E46E",softbank:"E133",google:"FE80D",image:"1f3b0.png",sheet_x:9,sheet_y:31,short_name:"slot_machine",short_names:["slot_machine"],category:"Activity",sort_order:56,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cu":{name:"Regional Indicator Symbol Letters CU",unified:"1F1E8-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fa.png",sheet_x:34,sheet_y:3,short_name:"flag-cu",short_names:["flag-cu"],category:"Flags",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hammer_and_pick:{name:"Hammer and Pick",unified:"2692",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2692.png",sheet_x:2,sheet_y:4,short_name:"hammer_and_pick",short_names:["hammer_and_pick"],category:"Objects",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beers:{name:"Clinking Beer Mugs",unified:"1F37B",variations:[],docomo:"E672",au:"EA98",softbank:"E30C",google:"FE987",image:"1f37b.png",sheet_x:8,sheet_y:19,short_name:"beers",short_names:["beers"],category:"Foods",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ferris_wheel:{name:"Ferris Wheel",unified:"1F3A1",variations:[],docomo:null,au:"E46D",softbank:"E124",google:"FE7FD",image:"1f3a1.png",sheet_x:9,sheet_y:16,short_name:"ferris_wheel",short_names:["ferris_wheel"],category:"Places",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ideograph_advantage:{name:"Circled Ideograph Advantage",unified:"1F250",variations:[],docomo:null,au:"E4F7",softbank:"E226",google:"FEB3D",image:"1f250.png",sheet_x:5,sheet_y:19,short_name:"ideograph_advantage",short_names:["ideograph_advantage"],category:"Symbols",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ram:{name:"Ram",unified:"1F40F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f40f.png",sheet_x:12,sheet_y:20,short_name:"ram",short_names:["ram"],category:"Nature",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cry:{name:"Crying Face",unified:"1F622",variations:[],docomo:"E72E",au:"EB69",softbank:"E413",google:"FE339",image:"1f622.png",sheet_x:27,sheet_y:8,short_name:"cry",short_names:["cry"],category:"People",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":'("]},bowling:{name:"Bowling",unified:"1F3B3",variations:[],docomo:null,au:"EB43",softbank:null,google:"FE810",image:"1f3b3.png",sheet_x:9,sheet_y:34,short_name:"bowling",short_names:["bowling"],category:"Activity",sort_order:57,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cw":{name:"Regional Indicator Symbol Letters CW",unified:"1F1E8-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fc.png",sheet_x:34,sheet_y:5,short_name:"flag-cw",short_names:["flag-cw"],category:"Flags",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},secret:{name:"Circled Ideograph Secret",unified:"3299",variations:["3299-FE0F"],docomo:"E734",au:"E4F1",softbank:"E315",google:"FEB2B",image:"3299.png",sheet_x:4,sheet_y:29,short_name:"secret",short_names:["secret"],category:"Symbols",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},disappointed_relieved:{name:"Disappointed but Relieved Face",unified:"1F625",variations:[],docomo:"E723",au:"E5C6",softbank:"E401",google:"FE345",image:"1f625.png",sheet_x:27,sheet_y:11,short_name:"disappointed_relieved",short_names:["disappointed_relieved"],category:"People",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hammer_and_wrench:{name:"Hammer and Wrench",unified:"1F6E0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e0.png",sheet_x:31,sheet_y:31,short_name:"hammer_and_wrench",short_names:["hammer_and_wrench"],category:"Objects",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},roller_coaster:{name:"Roller Coaster",unified:"1F3A2",variations:[],docomo:null,au:"EAE2",softbank:"E433",google:"FE7FE",image:"1f3a2.png",sheet_x:9,sheet_y:17,short_name:"roller_coaster",short_names:["roller_coaster"],category:"Places",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sheep:{name:"Sheep",unified:"1F411",variations:[],docomo:null,au:"E48F",softbank:"E529",google:"FE1CF",image:"1f411.png",sheet_x:12,sheet_y:22,short_name:"sheep",short_names:["sheep"],category:"Nature",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wine_glass:{name:"Wine Glass",unified:"1F377",variations:[],docomo:"E756",au:"E4C1",softbank:"E044",google:"FE986",image:"1f377.png",sheet_x:8,sheet_y:15,short_name:"wine_glass",short_names:["wine_glass"],category:"Foods",sort_order:58,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},congratulations:{name:"Circled Ideograph Congratulation",unified:"3297",variations:["3297-FE0F"],docomo:null,au:"EA99",softbank:"E30D",google:"FEB43",image:"3297.png",sheet_x:4,sheet_y:28,short_name:"congratulations",short_names:["congratulations"],category:"Symbols",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sleepy:{name:"Sleepy Face",unified:"1F62A",variations:[],docomo:"E701",au:"EAC4",softbank:"E408",google:"FE342",image:"1f62a.png",sheet_x:27,sheet_y:16,short_name:"sleepy",short_names:["sleepy"],category:"People",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},carousel_horse:{name:"Carousel Horse",unified:"1F3A0",variations:[],docomo:"E679",au:null,softbank:null,google:"FE7FC",image:"1f3a0.png",sheet_x:9,sheet_y:15,short_name:"carousel_horse",short_names:["carousel_horse"],category:"Places",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pick:{name:"Pick",unified:"26CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26cf.png",sheet_x:2,sheet_y:24,short_name:"pick",short_names:["pick"],category:"Objects",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cy":{name:"Regional Indicator Symbol Letters CY",unified:"1F1E8-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1fe.png",sheet_x:34,sheet_y:7,short_name:"flag-cy",short_names:["flag-cy"],category:"Flags",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cocktail:{name:"Cocktail Glass",unified:"1F378",variations:[],docomo:"E671",au:"E4C2",softbank:"E044",google:"FE982",image:"1f378.png",sheet_x:8,sheet_y:16,short_name:"cocktail",short_names:["cocktail"],category:"Foods",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},racehorse:{name:"Horse",unified:"1F40E",variations:[],docomo:"E754",au:"E4D8",softbank:"E134",google:"FE7DC",image:"1f40e.png",sheet_x:12,sheet_y:19,short_name:"racehorse",short_names:["racehorse"],category:"Nature",sort_order:59,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cz":{name:"Regional Indicator Symbol Letters CZ",unified:"1F1E8-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ff.png",sheet_x:34,sheet_y:8,short_name:"flag-cz",short_names:["flag-cz"],category:"Flags",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tropical_drink:{name:"Tropical Drink",unified:"1F379",variations:[],docomo:"E671",au:"EB3E",softbank:"E044",google:"FE988",image:"1f379.png",sheet_x:8,sheet_y:17,short_name:"tropical_drink",short_names:["tropical_drink"],category:"Foods",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u5408:{name:"Squared Cjk Unified Ideograph-5408",unified:"1F234",variations:[],docomo:"E73A",au:null,softbank:null,google:"FEB30",image:"1f234.png",sheet_x:5,sheet_y:12,short_name:"u5408",short_names:["u5408"],category:"Symbols",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},nut_and_bolt:{name:"Nut and Bolt",unified:"1F529",variations:[],docomo:null,au:"E581",softbank:null,google:"FE4CB",image:"1f529.png",sheet_x:23,sheet_y:25,short_name:"nut_and_bolt",short_names:["nut_and_bolt"],category:"Objects",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sweat:{name:"Face with Cold Sweat",unified:"1F613",variations:[],docomo:"E723",au:"E5C6",softbank:"E108",google:"FE344",image:"1f613.png",sheet_x:26,sheet_y:34,short_name:"sweat",short_names:["sweat"],category:"People",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},building_construction:{name:"Building Construction",unified:"1F3D7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d7.png",sheet_x:11,sheet_y:8,short_name:"building_construction",short_names:["building_construction"],category:"Places",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pig2:{name:"Pig",unified:"1F416",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f416.png",sheet_x:12,sheet_y:27,short_name:"pig2",short_names:["pig2"],category:"Nature",sort_order:60,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sob:{name:"Loudly Crying Face",unified:"1F62D",variations:[],docomo:"E72D",au:"E473",softbank:"E411",google:"FE33A",image:"1f62d.png",sheet_x:27,sheet_y:19,short_name:"sob",short_names:["sob"],category:"People",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":'("]},u6e80:{name:"Squared Cjk Unified Ideograph-6e80",unified:"1F235",variations:[],docomo:"E73B",au:"EA89",softbank:"E22A",google:"FEB31",image:"1f235.png",sheet_x:5,sheet_y:13,short_name:"u6e80",short_names:["u6e80"],category:"Symbols",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-dk":{name:"Regional Indicator Symbol Letters DK",unified:"1F1E9-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f0.png",sheet_x:34,sheet_y:12,short_name:"flag-dk",short_names:["flag-dk"],category:"Flags",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gear:{name:"Gear",unified:"2699",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2699.png",sheet_x:2,sheet_y:9,short_name:"gear",short_names:["gear"],category:"Objects",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rat:{name:"Rat",unified:"1F400",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f400.png",sheet_x:12,sheet_y:5,short_name:"rat",short_names:["rat"],category:"Nature",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},champagne:{name:"Bottle with Popping Cork",unified:"1F37E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37e.png",sheet_x:8,sheet_y:22,short_name:"champagne",short_names:["champagne"],category:"Foods",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},foggy:{name:"Foggy",unified:"1F301",variations:[],docomo:"E644",au:"E598",softbank:null,google:"FE006",image:"1f301.png",sheet_x:5,sheet_y:22,short_name:"foggy",short_names:["foggy"],category:"Places",sort_order:61,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tokyo_tower:{name:"Tokyo Tower",unified:"1F5FC",variations:[],docomo:null,au:"E4C0",softbank:"E509",google:"FE4C4",image:"1f5fc.png",sheet_x:26,sheet_y:11,short_name:"tokyo_tower",short_names:["tokyo_tower"],category:"Places",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dizzy_face:{name:"Dizzy Face",unified:"1F635",variations:[],docomo:"E6F4",au:"E5AE",softbank:"E406",google:"FE324",image:"1f635.png",sheet_x:27,sheet_y:27,short_name:"dizzy_face",short_names:["dizzy_face"],category:"People",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sake:{name:"Sake Bottle and Cup",unified:"1F376",variations:[],docomo:"E74B",au:"EA97",softbank:"E30B",google:"FE985",image:"1f376.png",sheet_x:8,sheet_y:14,short_name:"sake",short_names:["sake"],category:"Foods",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u7981:{name:"Squared Cjk Unified Ideograph-7981",unified:"1F232",variations:[],docomo:"E738",au:null,softbank:null,google:"FEB2E",image:"1f232.png",sheet_x:5,sheet_y:10,short_name:"u7981",short_names:["u7981"],category:"Symbols",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mouse2:{name:"Mouse",unified:"1F401",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f401.png",sheet_x:12,sheet_y:6,short_name:"mouse2",short_names:["mouse2"],category:"Nature",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-dj":{name:"Regional Indicator Symbol Letters DJ",unified:"1F1E9-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ef.png",sheet_x:34,sheet_y:11,short_name:"flag-dj",short_names:["flag-dj"],category:"Flags",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chains:{name:"Chains",unified:"26D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d3.png",sheet_x:2,sheet_y:26,short_name:"chains",short_names:["chains"],category:"Objects",sort_order:62,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},a:{name:"Negative Squared Latin Capital Letter a",unified:"1F170",variations:["1F170-FE0F"],docomo:null,au:"EB26",softbank:"E532",google:"FE50B",image:"1f170.png",sheet_x:4,sheet_y:32,short_name:"a",short_names:["a"],category:"Symbols",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tea:{name:"Teacup Without Handle",unified:"1F375",variations:[],docomo:"E71E",au:"EAAE",softbank:"E338",google:"FE984",image:"1f375.png",sheet_x:8,sheet_y:13,short_name:"tea",short_names:["tea"],category:"Foods",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gun:{name:"Pistol",unified:"1F52B",variations:[],docomo:null,au:"E50A",softbank:"E113",google:"FE4F5",image:"1f52b.png",sheet_x:23,sheet_y:27,short_name:"gun",short_names:["gun"],category:"Objects",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},astonished:{name:"Astonished Face",unified:"1F632",variations:[],docomo:"E6F4",au:"EACA",softbank:"E410",google:"FE322",image:"1f632.png",sheet_x:27,sheet_y:24,short_name:"astonished",short_names:["astonished"],category:"People",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-dm":{name:"Regional Indicator Symbol Letters DM",unified:"1F1E9-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f2.png",sheet_x:34,sheet_y:13,short_name:"flag-dm",short_names:["flag-dm"],category:"Flags",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rooster:{name:"Rooster",unified:"1F413",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f413.png",sheet_x:12,sheet_y:24,short_name:"rooster",short_names:["rooster"],category:"Nature",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},factory:{name:"Factory",unified:"1F3ED",variations:[],docomo:null,au:"EAF9",softbank:"E508",google:"FE4C0",image:"1f3ed.png",sheet_x:11,sheet_y:30,short_name:"factory",short_names:["factory"],category:"Places",sort_order:63,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},coffee:{name:"Hot Beverage",unified:"2615",variations:["2615-FE0F"],docomo:"E670",au:"E597",softbank:"E045",google:"FE981",image:"2615.png",sheet_x:1,sheet_y:8,short_name:"coffee",short_names:["coffee"],category:"Foods",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bomb:{name:"Bomb",unified:"1F4A3",variations:[],docomo:"E6FE",au:"E47A",softbank:"E311",google:"FEB58",image:"1f4a3.png",sheet_x:20,sheet_y:10,short_name:"bomb",short_names:["bomb"],category:"Objects",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-do":{name:"Regional Indicator Symbol Letters DO",unified:"1F1E9-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1f4.png",sheet_x:34,sheet_y:14,short_name:"flag-do",short_names:["flag-do"],category:"Flags",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fountain:{name:"Fountain",unified:"26F2",variations:["26F2-FE0F"],docomo:null,au:"E5CF",softbank:"E121",google:"FE4BC",image:"26f2.png",sheet_x:2,sheet_y:32,short_name:"fountain",short_names:["fountain"],category:"Places",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},turkey:{name:"Turkey",unified:"1F983",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f983.png",sheet_x:32,sheet_y:18,short_name:"turkey",short_names:["turkey"],category:"Nature",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},zipper_mouth_face:{name:"Zipper-Mouth Face",unified:"1F910",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f910.png",sheet_x:32,sheet_y:1,short_name:"zipper_mouth_face",short_names:["zipper_mouth_face"],category:"People",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},b:{name:"Negative Squared Latin Capital Letter B",unified:"1F171",variations:["1F171-FE0F"],docomo:null,au:"EB27",softbank:"E533",google:"FE50C",image:"1f171.png",sheet_x:4,sheet_y:33,short_name:"b",short_names:["b"],category:"Symbols",sort_order:64,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mask:{name:"Face with Medical Mask",unified:"1F637",variations:[],docomo:null,au:"EAC7",softbank:"E40C",google:"FE32E",image:"1f637.png",sheet_x:27,sheet_y:29,short_name:"mask",short_names:["mask"],category:"People",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ec":{name:"Regional Indicator Symbol Letters EC",unified:"1F1EA-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1e8.png",sheet_x:34,sheet_y:17,short_name:"flag-ec",short_names:["flag-ec"],category:"Flags",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ab:{name:"Negative Squared Ab",unified:"1F18E",variations:[],docomo:null,au:"EB29",softbank:"E534",google:"FE50D",image:"1f18e.png",sheet_x:4,sheet_y:36,short_name:"ab",short_names:["ab"],category:"Symbols",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rice_scene:{name:"Moon Viewing Ceremony",unified:"1F391",variations:[],docomo:null,au:"EAEF",softbank:"E446",google:"FE017",image:"1f391.png",sheet_x:9,sheet_y:5,short_name:"rice_scene",short_names:["rice_scene"],category:"Places",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},baby_bottle:{name:"Baby Bottle",unified:"1F37C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37c.png",sheet_x:8,sheet_y:20,short_name:"baby_bottle",short_names:["baby_bottle"],category:"Foods",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0, +emoticons:[]},hocho:{name:"Hocho",unified:"1F52A",variations:[],docomo:null,au:"E57F",softbank:null,google:"FE4FA",image:"1f52a.png",sheet_x:23,sheet_y:26,short_name:"hocho",short_names:["hocho","knife"],category:"Objects",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dove_of_peace:{name:"Dove of Peace",unified:"1F54A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54a.png",sheet_x:24,sheet_y:6,short_name:"dove_of_peace",short_names:["dove_of_peace"],category:"Nature",sort_order:65,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cl:{name:"Squared Cl",unified:"1F191",variations:[],docomo:"E6DB",au:"E5AB",softbank:null,google:"FEB84",image:"1f191.png",sheet_x:4,sheet_y:37,short_name:"cl",short_names:["cl"],category:"Symbols",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dog2:{name:"Dog",unified:"1F415",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f415.png",sheet_x:12,sheet_y:26,short_name:"dog2",short_names:["dog2"],category:"Nature",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fork_and_knife:{name:"Fork and Knife",unified:"1F374",variations:[],docomo:"E66F",au:"E4AC",softbank:"E043",google:"FE980",image:"1f374.png",sheet_x:8,sheet_y:12,short_name:"fork_and_knife",short_names:["fork_and_knife"],category:"Foods",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dagger_knife:{name:"Dagger Knife",unified:"1F5E1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e1.png",sheet_x:26,sheet_y:4,short_name:"dagger_knife",short_names:["dagger_knife"],category:"Objects",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mountain:{name:"Mountain",unified:"26F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f0.png",sheet_x:2,sheet_y:30,short_name:"mountain",short_names:["mountain"],category:"Places",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},face_with_thermometer:{name:"Face with Thermometer",unified:"1F912",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f912.png",sheet_x:32,sheet_y:3,short_name:"face_with_thermometer",short_names:["face_with_thermometer"],category:"People",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-eg":{name:"Regional Indicator Symbol Letters EG",unified:"1F1EA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ec.png",sheet_x:34,sheet_y:19,short_name:"flag-eg",short_names:["flag-eg"],category:"Flags",sort_order:66,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},poodle:{name:"Poodle",unified:"1F429",variations:[],docomo:"E6A1",au:"E4DF",softbank:"E052",google:"FE1D8",image:"1f429.png",sheet_x:13,sheet_y:5,short_name:"poodle",short_names:["poodle"],category:"Nature",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sv":{name:"Regional Indicator Symbol Letters SV",unified:"1F1F8-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fb.png",sheet_x:38,sheet_y:2,short_name:"flag-sv",short_names:["flag-sv"],category:"Flags",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snow_capped_mountain:{name:"Snow Capped Mountain",unified:"1F3D4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d4.png",sheet_x:11,sheet_y:5,short_name:"snow_capped_mountain",short_names:["snow_capped_mountain"],category:"Places",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},face_with_head_bandage:{name:"Face with Head-Bandage",unified:"1F915",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f915.png",sheet_x:32,sheet_y:6,short_name:"face_with_head_bandage",short_names:["face_with_head_bandage"],category:"People",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},o2:{name:"Negative Squared Latin Capital Letter O",unified:"1F17E",variations:["1F17E-FE0F"],docomo:null,au:"EB28",softbank:"E535",google:"FE50E",image:"1f17e.png",sheet_x:4,sheet_y:34,short_name:"o2",short_names:["o2"],category:"Symbols",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},knife_fork_plate:{name:"Fork and Knife with Plate",unified:"1F37D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f37d.png",sheet_x:8,sheet_y:21,short_name:"knife_fork_plate",short_names:["knife_fork_plate"],category:"Foods",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crossed_swords:{name:"Crossed Swords",unified:"2694",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2694.png",sheet_x:2,sheet_y:6,short_name:"crossed_swords",short_names:["crossed_swords"],category:"Objects",sort_order:67,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sos:{name:"Squared Sos",unified:"1F198",variations:[],docomo:null,au:"E4E8",softbank:null,google:"FEB4F",image:"1f198.png",sheet_x:5,sheet_y:3,short_name:"sos",short_names:["sos"],category:"Symbols",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gq":{name:"Regional Indicator Symbol Letters GQ",unified:"1F1EC-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f6.png",sheet_x:35,sheet_y:2,short_name:"flag-gq",short_names:["flag-gq"],category:"Flags",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mount_fuji:{name:"Mount Fuji",unified:"1F5FB",variations:[],docomo:"E740",au:"E5BD",softbank:"E03B",google:"FE4C3",image:"1f5fb.png",sheet_x:26,sheet_y:10,short_name:"mount_fuji",short_names:["mount_fuji"],category:"Places",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cat2:{name:"Cat",unified:"1F408",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f408.png",sheet_x:12,sheet_y:13,short_name:"cat2",short_names:["cat2"],category:"Nature",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shield:{name:"Shield",unified:"1F6E1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e1.png",sheet_x:31,sheet_y:32,short_name:"shield",short_names:["shield"],category:"Objects",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sleeping:{name:"Sleeping Face",unified:"1F634",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f634.png",sheet_x:27,sheet_y:26,short_name:"sleeping",short_names:["sleeping"],category:"People",sort_order:68,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},volcano:{name:"Volcano",unified:"1F30B",variations:[],docomo:null,au:"EB53",softbank:null,google:"FE03A",image:"1f30b.png",sheet_x:5,sheet_y:32,short_name:"volcano",short_names:["volcano"],category:"Places",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rabbit2:{name:"Rabbit",unified:"1F407",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f407.png",sheet_x:12,sheet_y:12,short_name:"rabbit2",short_names:["rabbit2"],category:"Nature",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smoking:{name:"Smoking Symbol",unified:"1F6AC",variations:[],docomo:"E67F",au:"E47D",softbank:"E30E",google:"FEB1E",image:"1f6ac.png",sheet_x:30,sheet_y:20,short_name:"smoking",short_names:["smoking"],category:"Objects",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-er":{name:"Regional Indicator Symbol Letters ER",unified:"1F1EA-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1f7.png",sheet_x:34,sheet_y:21,short_name:"flag-er",short_names:["flag-er"],category:"Flags",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},zzz:{name:"Sleeping Symbol",unified:"1F4A4",variations:[],docomo:"E701",au:"E475",softbank:"E13C",google:"FEB59",image:"1f4a4.png",sheet_x:20,sheet_y:11,short_name:"zzz",short_names:["zzz"],category:"People",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_entry:{name:"No Entry",unified:"26D4",variations:["26D4-FE0F"],docomo:"E72F",au:"E484",softbank:"E137",google:"FEB26",image:"26d4.png",sheet_x:2,sheet_y:27,short_name:"no_entry",short_names:["no_entry"],category:"Symbols",sort_order:69,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hankey:{name:"Pile of Poo",unified:"1F4A9",variations:[],docomo:null,au:"E4F5",softbank:"E05A",google:"FE4F4",image:"1f4a9.png",sheet_x:20,sheet_y:16,short_name:"hankey",short_names:["hankey","poop","shit"],category:"People",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ee":{name:"Regional Indicator Symbol Letters EE",unified:"1F1EA-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ea.png",sheet_x:34,sheet_y:18,short_name:"flag-ee",short_names:["flag-ee"],category:"Flags",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},skull_and_crossbones:{name:"Skull and Crossbones",unified:"2620",variations:["2620-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2620.png",sheet_x:1,sheet_y:16,short_name:"skull_and_crossbones",short_names:["skull_and_crossbones"],category:"Objects",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chipmunk:{name:"Chipmunk",unified:"1F43F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f43f.png",sheet_x:13,sheet_y:27,short_name:"chipmunk",short_names:["chipmunk"],category:"Nature",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},japan:{name:"Silhouette of Japan",unified:"1F5FE",variations:[],docomo:null,au:"E572",softbank:null,google:"FE4C7",image:"1f5fe.png",sheet_x:26,sheet_y:13,short_name:"japan",short_names:["japan"],category:"Places",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},name_badge:{name:"Name Badge",unified:"1F4DB",variations:[],docomo:null,au:"E51D",softbank:null,google:"FE504",image:"1f4db.png",sheet_x:21,sheet_y:30,short_name:"name_badge",short_names:["name_badge"],category:"Symbols",sort_order:70,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},coffin:{name:"Coffin",unified:"26B0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26b0.png",sheet_x:2,sheet_y:16,short_name:"coffin",short_names:["coffin"],category:"Objects",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},camping:{name:"Camping",unified:"1F3D5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d5.png",sheet_x:11,sheet_y:6,short_name:"camping",short_names:["camping"],category:"Places",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},feet:{name:"Paw Prints",unified:"1F43E",variations:[],docomo:"E698",au:"E4EE",softbank:"E536",google:"FE1DB",image:"1f43e.png",sheet_x:13,sheet_y:26,short_name:"feet",short_names:["feet","paw_prints"],category:"Nature",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-et":{name:"Regional Indicator Symbol Letters ET",unified:"1F1EA-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1f9.png",sheet_x:34,sheet_y:23,short_name:"flag-et",short_names:["flag-et"],category:"Flags",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_entry_sign:{name:"No Entry Sign",unified:"1F6AB",variations:[],docomo:"E738",au:"E541",softbank:null,google:"FEB48",image:"1f6ab.png",sheet_x:30,sheet_y:19,short_name:"no_entry_sign",short_names:["no_entry_sign"],category:"Symbols",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smiling_imp:{name:"Smiling Face with Horns",unified:"1F608",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f608.png",sheet_x:26,sheet_y:23,short_name:"smiling_imp",short_names:["smiling_imp"],category:"People",sort_order:71,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},imp:{name:"Imp",unified:"1F47F",variations:[],docomo:null,au:"E4EF",softbank:"E11A",google:"FE1B2",image:"1f47f.png",sheet_x:18,sheet_y:26,short_name:"imp",short_names:["imp"],category:"People",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},funeral_urn:{name:"Funeral Urn",unified:"26B1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26b1.png",sheet_x:2,sheet_y:17,short_name:"funeral_urn",short_names:["funeral_urn"],category:"Objects",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tent:{name:"Tent",unified:"26FA",variations:["26FA-FE0F"],docomo:null,au:"E5D0",softbank:"E122",google:"FE7FB",image:"26fa.png",sheet_x:3,sheet_y:3,short_name:"tent",short_names:["tent"],category:"Places",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dragon:{name:"Dragon",unified:"1F409",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f409.png",sheet_x:12,sheet_y:14,short_name:"dragon",short_names:["dragon"],category:"Nature",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},x:{name:"Cross Mark",unified:"274C",variations:[],docomo:null,au:"E550",softbank:"E333",google:"FEB45",image:"274c.png",sheet_x:4,sheet_y:3,short_name:"x",short_names:["x"],category:"Symbols",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-eu":{name:"Regional Indicator Symbol Letters EU",unified:"1F1EA-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1fa.png",sheet_x:34,sheet_y:24,short_name:"flag-eu",short_names:["flag-eu"],category:"Flags",sort_order:72,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},amphora:{name:"Amphora",unified:"1F3FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fa.png",sheet_x:11,sheet_y:40,short_name:"amphora",short_names:["amphora"],category:"Objects",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},o:{name:"Heavy Large Circle",unified:"2B55",variations:["2B55-FE0F"],docomo:"E6A0",au:"EAAD",softbank:"E332",google:"FEB44",image:"2b55.png",sheet_x:4,sheet_y:25,short_name:"o",short_names:["o"],category:"Symbols",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},national_park:{name:"National Park",unified:"1F3DE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3de.png",sheet_x:11,sheet_y:15,short_name:"national_park",short_names:["national_park"],category:"Places",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dragon_face:{name:"Dragon Face",unified:"1F432",variations:[],docomo:null,au:"EB3F",softbank:null,google:"FE1DE",image:"1f432.png",sheet_x:13,sheet_y:14,short_name:"dragon_face",short_names:["dragon_face"],category:"Nature",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fk":{name:"Regional Indicator Symbol Letters FK",unified:"1F1EB-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f0.png",sheet_x:34,sheet_y:27,short_name:"flag-fk",short_names:["flag-fk"],category:"Flags",sort_order:73,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},japanese_ogre:{name:"Japanese Ogre",unified:"1F479",variations:[],docomo:null,au:"EB44",softbank:null,google:"FE1AC",image:"1f479.png",sheet_x:18,sheet_y:15,short_name:"japanese_ogre",short_names:["japanese_ogre"],category:"People",sort_order:73,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},japanese_goblin:{name:"Japanese Goblin",unified:"1F47A",variations:[],docomo:null,au:"EB45",softbank:null,google:"FE1AD",image:"1f47a.png",sheet_x:18,sheet_y:16,short_name:"japanese_goblin",short_names:["japanese_goblin"],category:"People",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fo":{name:"Regional Indicator Symbol Letters FO",unified:"1F1EB-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f4.png",sheet_x:34,sheet_y:29,short_name:"flag-fo",short_names:["flag-fo"],category:"Flags",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},motorway:{name:"Motorway",unified:"1F6E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e3.png",sheet_x:31,sheet_y:34,short_name:"motorway",short_names:["motorway"],category:"Places",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cactus:{name:"Cactus",unified:"1F335",variations:[],docomo:null,au:"EA96",softbank:"E308",google:"FE048",image:"1f335.png",sheet_x:6,sheet_y:31,short_name:"cactus",short_names:["cactus"],category:"Nature",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},anger:{name:"Anger Symbol",unified:"1F4A2",variations:[],docomo:"E6FC",au:"E4E5",softbank:"E334",google:"FEB57",image:"1f4a2.png",sheet_x:20,sheet_y:9,short_name:"anger",short_names:["anger"],category:"Symbols",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crystal_ball:{name:"Crystal Ball",unified:"1F52E",variations:[],docomo:null,au:"EA8F",softbank:"E23E",google:"FE4F7",image:"1f52e.png",sheet_x:23,sheet_y:30,short_name:"crystal_ball",short_names:["crystal_ball"],category:"Objects",sort_order:74,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},skull:{name:"Skull",unified:"1F480",variations:[],docomo:null,au:"E4F8",softbank:"E11C",google:"FE1B3",image:"1f480.png",sheet_x:18,sheet_y:27,short_name:"skull",short_names:["skull"],category:"People",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hotsprings:{name:"Hot Springs",unified:"2668",variations:["2668-FE0F"],docomo:"E6F7",au:"E4BC",softbank:"E123",google:"FE7FA",image:"2668.png",sheet_x:2,sheet_y:1,short_name:"hotsprings",short_names:["hotsprings"],category:"Symbols",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fj":{name:"Regional Indicator Symbol Letters FJ",unified:"1F1EB-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1ef.png",sheet_x:34,sheet_y:26,short_name:"flag-fj",short_names:["flag-fj"],category:"Flags",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},prayer_beads:{name:"Prayer Beads",unified:"1F4FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ff.png",sheet_x:22,sheet_y:24,short_name:"prayer_beads",short_names:["prayer_beads"],category:"Objects",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},christmas_tree:{name:"Christmas Tree",unified:"1F384",variations:[],docomo:"E6A4",au:"E4C9",softbank:"E033",google:"FE512",image:"1f384.png",sheet_x:8,sheet_y:28,short_name:"christmas_tree",short_names:["christmas_tree"],category:"Nature",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},railway_track:{name:"Railway Track",unified:"1F6E4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6e4.png",sheet_x:31,sheet_y:35,short_name:"railway_track",short_names:["railway_track"],category:"Places",sort_order:75,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fi":{name:"Regional Indicator Symbol Letters FI",unified:"1F1EB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1ee.png",sheet_x:34,sheet_y:25,short_name:"flag-fi",short_names:["flag-fi"],category:"Flags",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},barber:{name:"Barber Pole",unified:"1F488",variations:[],docomo:null,au:"EAA2",softbank:"E320",google:"FE199",image:"1f488.png",sheet_x:19,sheet_y:24,short_name:"barber",short_names:["barber"],category:"Objects",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ghost:{name:"Ghost",unified:"1F47B",variations:[],docomo:null,au:"E4CB",softbank:"E11B",google:"FE1AE",image:"1f47b.png",sheet_x:18,sheet_y:17,short_name:"ghost",short_names:["ghost"],category:"People",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sunrise:{name:"Sunrise",unified:"1F305",variations:[],docomo:"E63E",au:"EAF4",softbank:"E449",google:"FE00A",image:"1f305.png",sheet_x:5,sheet_y:26,short_name:"sunrise",short_names:["sunrise"],category:"Places",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},evergreen_tree:{name:"Evergreen Tree",unified:"1F332",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f332.png",sheet_x:6,sheet_y:28,short_name:"evergreen_tree",short_names:["evergreen_tree"],category:"Nature",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_pedestrians:{name:"No Pedestrians",unified:"1F6B7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b7.png",sheet_x:31,sheet_y:5,short_name:"no_pedestrians",short_names:["no_pedestrians"],category:"Symbols",sort_order:76,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sunrise_over_mountains:{name:"Sunrise over Mountains",unified:"1F304",variations:[],docomo:"E63E",au:"EAF4",softbank:"E04D",google:"FE009",image:"1f304.png",sheet_x:5,sheet_y:25,short_name:"sunrise_over_mountains",short_names:["sunrise_over_mountains"],category:"Places",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},alembic:{name:"Alembic",unified:"2697",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2697.png",sheet_x:2,sheet_y:8,short_name:"alembic",short_names:["alembic"],category:"Objects",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},alien:{name:"Extraterrestrial Alien",unified:"1F47D",variations:[],docomo:null,au:"E50E",softbank:"E10C",google:"FE1B0",image:"1f47d.png",sheet_x:18,sheet_y:24,short_name:"alien",short_names:["alien"],category:"People",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},deciduous_tree:{name:"Deciduous Tree",unified:"1F333",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f333.png",sheet_x:6,sheet_y:29,short_name:"deciduous_tree",short_names:["deciduous_tree"],category:"Nature",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},do_not_litter:{name:"Do Not Litter Symbol",unified:"1F6AF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6af.png",sheet_x:30,sheet_y:23,short_name:"do_not_litter",short_names:["do_not_litter"],category:"Symbols",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fr":{name:"Regional Indicator Symbol Letters FR",unified:"1F1EB-1F1F7",variations:[],docomo:null,au:"EAFA",softbank:"E50D",google:"FE4E7",image:"1f1eb-1f1f7.png",sheet_x:34,sheet_y:30,short_name:"flag-fr",short_names:["flag-fr","fr"],category:"Flags",sort_order:77,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},telescope:{name:"Telescope",unified:"1F52D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f52d.png",sheet_x:23,sheet_y:29,short_name:"telescope",short_names:["telescope"],category:"Objects",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},palm_tree:{name:"Palm Tree",unified:"1F334",variations:[],docomo:null,au:"E4E2",softbank:"E307",google:"FE047",image:"1f334.png",sheet_x:6,sheet_y:30,short_name:"palm_tree",short_names:["palm_tree"],category:"Nature",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_bicycles:{name:"No Bicycles",unified:"1F6B3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b3.png",sheet_x:30,sheet_y:27,short_name:"no_bicycles",short_names:["no_bicycles"],category:"Symbols",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},desert:{name:"Desert",unified:"1F3DC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3dc.png",sheet_x:11,sheet_y:13,short_name:"desert",short_names:["desert"],category:"Places",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},robot_face:{name:"Robot Face",unified:"1F916",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f916.png",sheet_x:32,sheet_y:7,short_name:"robot_face",short_names:["robot_face"],category:"People",sort_order:78,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gf":{name:"Regional Indicator Symbol Letters GF",unified:"1F1EC-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1eb.png",sheet_x:34,sheet_y:35,short_name:"flag-gf",short_names:["flag-gf"],category:"Flags",sort_order:78,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"non-potable_water":{name:"Non-Potable Water Symbol",unified:"1F6B1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b1.png",sheet_x:30,sheet_y:25,short_name:"non-potable_water",short_names:["non-potable_water"],category:"Symbols",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beach_with_umbrella:{name:"Beach with Umbrella",unified:"1F3D6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d6.png",sheet_x:11,sheet_y:7,short_name:"beach_with_umbrella",short_names:["beach_with_umbrella"],category:"Places",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},microscope:{name:"Microscope",unified:"1F52C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f52c.png",sheet_x:23,sheet_y:28,short_name:"microscope",short_names:["microscope"],category:"Objects",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},seedling:{name:"Seedling",unified:"1F331",variations:[],docomo:"E746",au:"EB7D",softbank:"E110",google:"FE03E",image:"1f331.png",sheet_x:6,sheet_y:27,short_name:"seedling",short_names:["seedling"],category:"Nature",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smiley_cat:{name:"Smiling Cat Face with Open Mouth",unified:"1F63A",variations:[],docomo:"E6F0",au:"EB61",softbank:"E057",google:"FE348",image:"1f63a.png",sheet_x:27,sheet_y:32,short_name:"smiley_cat",short_names:["smiley_cat"],category:"People",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pf":{name:"Regional Indicator Symbol Letters PF",unified:"1F1F5-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1eb.png",sheet_x:37,sheet_y:8,short_name:"flag-pf",short_names:["flag-pf"],category:"Flags",sort_order:79,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},herb:{name:"Herb",unified:"1F33F",variations:[],docomo:"E741",au:"EB82",softbank:"E110",google:"FE04E",image:"1f33f.png",sheet_x:7,sheet_y:0,short_name:"herb",short_names:["herb"],category:"Nature",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},underage:{name:"No One Under Eighteen Symbol",unified:"1F51E",variations:[],docomo:null,au:"EA83",softbank:"E207",google:"FEB25",image:"1f51e.png",sheet_x:23,sheet_y:14,short_name:"underage",short_names:["underage"],category:"Symbols",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hole:{name:"Hole",unified:"1F573",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f573.png",sheet_x:24,sheet_y:37,short_name:"hole",short_names:["hole"],category:"Objects",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tf":{name:"Regional Indicator Symbol Letters TF",unified:"1F1F9-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1eb.png",sheet_x:38,sheet_y:9,short_name:"flag-tf",short_names:["flag-tf"],category:"Flags",sort_order:80,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},desert_island:{name:"Desert Island",unified:"1F3DD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3dd.png",sheet_x:11,sheet_y:14,short_name:"desert_island",short_names:["desert_island"],category:"Places",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smile_cat:{name:"Grinning Cat Face with Smiling Eyes",unified:"1F638",variations:[],docomo:"E753",au:"EB7F",softbank:"E404",google:"FE349",image:"1f638.png",sheet_x:27,sheet_y:30,short_name:"smile_cat",short_names:["smile_cat"],category:"People",sort_order:80,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pill:{name:"Pill",unified:"1F48A",variations:[],docomo:null,au:"EA9A",softbank:"E30F",google:"FE50A",image:"1f48a.png",sheet_x:19,sheet_y:26,short_name:"pill",short_names:["pill"],category:"Objects",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shamrock:{name:"Shamrock",unified:"2618",variations:[],docomo:null,au:null,softbank:null,google:null,image:"2618.png",sheet_x:1,sheet_y:9,short_name:"shamrock",short_names:["shamrock"],category:"Nature",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ga":{name:"Regional Indicator Symbol Letters GA",unified:"1F1EC-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1e6.png",sheet_x:34,sheet_y:31,short_name:"flag-ga",short_names:["flag-ga"],category:"Flags",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},city_sunrise:{name:"Sunset over Buildings",unified:"1F307",variations:[],docomo:"E63E",au:"E5DA",softbank:"E44A",google:"FE00C",image:"1f307.png",sheet_x:5,sheet_y:28,short_name:"city_sunrise",short_names:["city_sunrise"],category:"Places",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},joy_cat:{name:"Cat Face with Tears of Joy", +unified:"1F639",variations:[],docomo:"E72A",au:"EB63",softbank:"E412",google:"FE34A",image:"1f639.png",sheet_x:27,sheet_y:31,short_name:"joy_cat",short_names:["joy_cat"],category:"People",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_mobile_phones:{name:"No Mobile Phones",unified:"1F4F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4f5.png",sheet_x:22,sheet_y:15,short_name:"no_mobile_phones",short_names:["no_mobile_phones"],category:"Symbols",sort_order:81,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heart_eyes_cat:{name:"Smiling Cat Face with Heart-Shaped Eyes",unified:"1F63B",variations:[],docomo:"E726",au:"EB65",softbank:"E106",google:"FE34C",image:"1f63b.png",sheet_x:27,sheet_y:33,short_name:"heart_eyes_cat",short_names:["heart_eyes_cat"],category:"People",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},syringe:{name:"Syringe",unified:"1F489",variations:[],docomo:null,au:"E510",softbank:"E13B",google:"FE509",image:"1f489.png",sheet_x:19,sheet_y:25,short_name:"syringe",short_names:["syringe"],category:"Objects",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},exclamation:{name:"Heavy Exclamation Mark Symbol",unified:"2757",variations:["2757-FE0F"],docomo:"E702",au:"E482",softbank:"E021",google:"FEB04",image:"2757.png",sheet_x:4,sheet_y:8,short_name:"exclamation",short_names:["exclamation","heavy_exclamation_mark"],category:"Symbols",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},city_sunset:{name:"Cityscape at Dusk",unified:"1F306",variations:[],docomo:null,au:"E5DA",softbank:"E146",google:"FE00B",image:"1f306.png",sheet_x:5,sheet_y:27,short_name:"city_sunset",short_names:["city_sunset"],category:"Places",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gm":{name:"Regional Indicator Symbol Letters GM",unified:"1F1EC-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f2.png",sheet_x:34,sheet_y:40,short_name:"flag-gm",short_names:["flag-gm"],category:"Flags",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},four_leaf_clover:{name:"Four Leaf Clover",unified:"1F340",variations:[],docomo:"E741",au:"E513",softbank:"E110",google:"FE03C",image:"1f340.png",sheet_x:7,sheet_y:1,short_name:"four_leaf_clover",short_names:["four_leaf_clover"],category:"Nature",sort_order:82,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},grey_exclamation:{name:"White Exclamation Mark Ornament",unified:"2755",variations:[],docomo:"E702",au:"E482",softbank:"E337",google:"FEB0B",image:"2755.png",sheet_x:4,sheet_y:7,short_name:"grey_exclamation",short_names:["grey_exclamation"],category:"Symbols",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},smirk_cat:{name:"Cat Face with Wry Smile",unified:"1F63C",variations:[],docomo:"E753",au:"EB6A",softbank:"E404",google:"FE34F",image:"1f63c.png",sheet_x:27,sheet_y:34,short_name:"smirk_cat",short_names:["smirk_cat"],category:"People",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},thermometer:{name:"Thermometer",unified:"1F321",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f321.png",sheet_x:6,sheet_y:13,short_name:"thermometer",short_names:["thermometer"],category:"Objects",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cityscape:{name:"Cityscape",unified:"1F3D9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d9.png",sheet_x:11,sheet_y:10,short_name:"cityscape",short_names:["cityscape"],category:"Places",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ge":{name:"Regional Indicator Symbol Letters GE",unified:"1F1EC-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ea.png",sheet_x:34,sheet_y:34,short_name:"flag-ge",short_names:["flag-ge"],category:"Flags",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bamboo:{name:"Pine Decoration",unified:"1F38D",variations:[],docomo:null,au:"EAE3",softbank:"E436",google:"FE518",image:"1f38d.png",sheet_x:9,sheet_y:1,short_name:"bamboo",short_names:["bamboo"],category:"Nature",sort_order:83,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-de":{name:"Regional Indicator Symbol Letters DE",unified:"1F1E9-1F1EA",variations:[],docomo:null,au:"EB0E",softbank:"E50E",google:"FE4E8",image:"1f1e9-1f1ea.png",sheet_x:34,sheet_y:9,short_name:"flag-de",short_names:["flag-de","de"],category:"Flags",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},night_with_stars:{name:"Night with Stars",unified:"1F303",variations:[],docomo:"E6B3",au:"EAF1",softbank:"E44B",google:"FE008",image:"1f303.png",sheet_x:5,sheet_y:24,short_name:"night_with_stars",short_names:["night_with_stars"],category:"Places",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kissing_cat:{name:"Kissing Cat Face with Closed Eyes",unified:"1F63D",variations:[],docomo:"E726",au:"EB60",softbank:"E418",google:"FE34B",image:"1f63d.png",sheet_x:27,sheet_y:35,short_name:"kissing_cat",short_names:["kissing_cat"],category:"People",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tanabata_tree:{name:"Tanabata Tree",unified:"1F38B",variations:[],docomo:null,au:"EB3D",softbank:null,google:"FE521",image:"1f38b.png",sheet_x:8,sheet_y:40,short_name:"tanabata_tree",short_names:["tanabata_tree"],category:"Nature",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},label:{name:"Label",unified:"1F3F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f7.png",sheet_x:11,sheet_y:37,short_name:"label",short_names:["label"],category:"Objects",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},question:{name:"Black Question Mark Ornament",unified:"2753",variations:[],docomo:null,au:"E483",softbank:"E020",google:"FEB09",image:"2753.png",sheet_x:4,sheet_y:5,short_name:"question",short_names:["question"],category:"Symbols",sort_order:84,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},leaves:{name:"Leaf Fluttering in Wind",unified:"1F343",variations:[],docomo:null,au:"E5CD",softbank:"E447",google:"FE043",image:"1f343.png",sheet_x:7,sheet_y:4,short_name:"leaves",short_names:["leaves"],category:"Nature",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},grey_question:{name:"White Question Mark Ornament",unified:"2754",variations:[],docomo:null,au:"E483",softbank:"E336",google:"FEB0A",image:"2754.png",sheet_x:4,sheet_y:6,short_name:"grey_question",short_names:["grey_question"],category:"Symbols",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scream_cat:{name:"Weary Cat Face",unified:"1F640",variations:[],docomo:"E6F3",au:"EB66",softbank:"E403",google:"FE350",image:"1f640.png",sheet_x:27,sheet_y:38,short_name:"scream_cat",short_names:["scream_cat"],category:"People",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bookmark:{name:"Bookmark",unified:"1F516",variations:[],docomo:null,au:"EB07",softbank:null,google:"FEB8F",image:"1f516.png",sheet_x:23,sheet_y:6,short_name:"bookmark",short_names:["bookmark"],category:"Objects",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bridge_at_night:{name:"Bridge at Night",unified:"1F309",variations:[],docomo:"E6B3",au:"E4BF",softbank:"E44B",google:"FE010",image:"1f309.png",sheet_x:5,sheet_y:30,short_name:"bridge_at_night",short_names:["bridge_at_night"],category:"Places",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gh":{name:"Regional Indicator Symbol Letters GH",unified:"1F1EC-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ed.png",sheet_x:34,sheet_y:37,short_name:"flag-gh",short_names:["flag-gh"],category:"Flags",sort_order:85,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},milky_way:{name:"Milky Way",unified:"1F30C",variations:[],docomo:"E6B3",au:"EB5F",softbank:"E44B",google:"FE03B",image:"1f30c.png",sheet_x:5,sheet_y:33,short_name:"milky_way",short_names:["milky_way"],category:"Places",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},toilet:{name:"Toilet",unified:"1F6BD",variations:[],docomo:"E66E",au:"E4A5",softbank:"E140",google:"FE507",image:"1f6bd.png",sheet_x:31,sheet_y:11,short_name:"toilet",short_names:["toilet"],category:"Objects",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crying_cat_face:{name:"Crying Cat Face",unified:"1F63F",variations:[],docomo:"E72E",au:"EB68",softbank:"E413",google:"FE34D",image:"1f63f.png",sheet_x:27,sheet_y:37,short_name:"crying_cat_face",short_names:["crying_cat_face"],category:"People",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bangbang:{name:"Double Exclamation Mark",unified:"203C",variations:["203C-FE0F"],docomo:"E704",au:"EB30",softbank:null,google:"FEB06",image:"203c.png",sheet_x:0,sheet_y:2,short_name:"bangbang",short_names:["bangbang"],category:"Symbols",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fallen_leaf:{name:"Fallen Leaf",unified:"1F342",variations:[],docomo:"E747",au:"E5CD",softbank:"E119",google:"FE042",image:"1f342.png",sheet_x:7,sheet_y:3,short_name:"fallen_leaf",short_names:["fallen_leaf"],category:"Nature",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gi":{name:"Regional Indicator Symbol Letters GI",unified:"1F1EC-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ee.png",sheet_x:34,sheet_y:38,short_name:"flag-gi",short_names:["flag-gi"],category:"Flags",sort_order:86,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pouting_cat:{name:"Pouting Cat Face",unified:"1F63E",variations:[],docomo:"E724",au:"EB5E",softbank:"E416",google:"FE34E",image:"1f63e.png",sheet_x:27,sheet_y:36,short_name:"pouting_cat",short_names:["pouting_cat"],category:"People",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},maple_leaf:{name:"Maple Leaf",unified:"1F341",variations:[],docomo:"E747",au:"E4CE",softbank:"E118",google:"FE03F",image:"1f341.png",sheet_x:7,sheet_y:2,short_name:"maple_leaf",short_names:["maple_leaf"],category:"Nature",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gr":{name:"Regional Indicator Symbol Letters GR",unified:"1F1EC-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f7.png",sheet_x:35,sheet_y:3,short_name:"flag-gr",short_names:["flag-gr"],category:"Flags",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},interrobang:{name:"Exclamation Question Mark",unified:"2049",variations:["2049-FE0F"],docomo:"E703",au:"EB2F",softbank:null,google:"FEB05",image:"2049.png",sheet_x:0,sheet_y:3,short_name:"interrobang",short_names:["interrobang"],category:"Symbols",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},stars:{name:"Shooting Star",unified:"1F320",variations:[],docomo:null,au:"E468",softbank:null,google:"FEB6A",image:"1f320.png",sheet_x:6,sheet_y:12,short_name:"stars",short_names:["stars"],category:"Places",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shower:{name:"Shower",unified:"1F6BF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6bf.png",sheet_x:31,sheet_y:13,short_name:"shower",short_names:["shower"],category:"Objects",sort_order:87,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},raised_hands:{name:"Person Raising Both Hands in Celebration",unified:"1F64C",variations:[],docomo:null,au:"EB86",softbank:"E427",google:"FE358",image:"1f64c.png",sheet_x:28,sheet_y:29,short_name:"raised_hands",short_names:["raised_hands"],category:"People",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64C-1F3FB":{unified:"1F64C-1F3FB",image:"1f64c-1f3fb.png",sheet_x:28,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FC":{unified:"1F64C-1F3FC",image:"1f64c-1f3fc.png",sheet_x:28,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FD":{unified:"1F64C-1F3FD",image:"1f64c-1f3fd.png",sheet_x:28,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FE":{unified:"1F64C-1F3FE",image:"1f64c-1f3fe.png",sheet_x:28,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64C-1F3FF":{unified:"1F64C-1F3FF",image:"1f64c-1f3ff.png",sheet_x:28,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-gl":{name:"Regional Indicator Symbol Letters GL",unified:"1F1EC-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f1.png",sheet_x:34,sheet_y:39,short_name:"flag-gl",short_names:["flag-gl"],category:"Flags",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ear_of_rice:{name:"Ear of Rice",unified:"1F33E",variations:[],docomo:null,au:null,softbank:"E444",google:"FE049",image:"1f33e.png",sheet_x:6,sheet_y:40,short_name:"ear_of_rice",short_names:["ear_of_rice"],category:"Nature",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sparkler:{name:"Firework Sparkler",unified:"1F387",variations:[],docomo:null,au:"EAEB",softbank:"E440",google:"FE51D",image:"1f387.png",sheet_x:8,sheet_y:36,short_name:"sparkler",short_names:["sparkler"],category:"Places",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bathtub:{name:"Bathtub",unified:"1F6C1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c1.png",sheet_x:31,sheet_y:20,short_name:"bathtub",short_names:["bathtub"],category:"Objects",sort_order:88,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hibiscus:{name:"Hibiscus",unified:"1F33A",variations:[],docomo:null,au:"EA94",softbank:"E303",google:"FE045",image:"1f33a.png",sheet_x:6,sheet_y:36,short_name:"hibiscus",short_names:["hibiscus"],category:"Nature",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gd":{name:"Regional Indicator Symbol Letters GD",unified:"1F1EC-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1e9.png",sheet_x:34,sheet_y:33,short_name:"flag-gd",short_names:["flag-gd"],category:"Flags",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},key:{name:"Key",unified:"1F511",variations:[],docomo:"E6D9",au:"E519",softbank:"E03F",google:"FEB82",image:"1f511.png",sheet_x:23,sheet_y:1,short_name:"key",short_names:["key"],category:"Objects",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},low_brightness:{name:"Low Brightness Symbol",unified:"1F505",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f505.png",sheet_x:22,sheet_y:30,short_name:"low_brightness",short_names:["low_brightness"],category:"Symbols",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fireworks:{name:"Fireworks",unified:"1F386",variations:[],docomo:null,au:"E5CC",softbank:"E117",google:"FE515",image:"1f386.png",sheet_x:8,sheet_y:35,short_name:"fireworks",short_names:["fireworks"],category:"Places",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clap:{name:"Clapping Hands Sign",unified:"1F44F",variations:[],docomo:null,au:"EAD3",softbank:"E41F",google:"FEB9E",image:"1f44f.png",sheet_x:15,sheet_y:16,short_name:"clap",short_names:["clap"],category:"People",sort_order:89,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44F-1F3FB":{unified:"1F44F-1F3FB",image:"1f44f-1f3fb.png",sheet_x:15,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FC":{unified:"1F44F-1F3FC",image:"1f44f-1f3fc.png",sheet_x:15,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FD":{unified:"1F44F-1F3FD",image:"1f44f-1f3fd.png",sheet_x:15,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FE":{unified:"1F44F-1F3FE",image:"1f44f-1f3fe.png",sheet_x:15,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44F-1F3FF":{unified:"1F44F-1F3FF",image:"1f44f-1f3ff.png",sheet_x:15,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-gp":{name:"Regional Indicator Symbol Letters GP",unified:"1F1EC-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f5.png",sheet_x:35,sheet_y:1,short_name:"flag-gp",short_names:["flag-gp"],category:"Flags",sort_order:90,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},old_key:{name:"Old Key",unified:"1F5DD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5dd.png",sheet_x:26,sheet_y:2,short_name:"old_key",short_names:["old_key"],category:"Objects",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},high_brightness:{name:"High Brightness Symbol",unified:"1F506",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f506.png",sheet_x:22,sheet_y:31,short_name:"high_brightness",short_names:["high_brightness"],category:"Symbols",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rainbow:{name:"Rainbow",unified:"1F308",variations:[],docomo:null,au:"EAF2",softbank:"E44C",google:"FE00D",image:"1f308.png",sheet_x:5,sheet_y:29,short_name:"rainbow",short_names:["rainbow"],category:"Places",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wave:{name:"Waving Hand Sign",unified:"1F44B",variations:[],docomo:"E695",au:"EAD6",softbank:"E41E",google:"FEB9D",image:"1f44b.png",sheet_x:14,sheet_y:33,short_name:"wave",short_names:["wave"],category:"People",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44B-1F3FB":{unified:"1F44B-1F3FB",image:"1f44b-1f3fb.png",sheet_x:14,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FC":{unified:"1F44B-1F3FC",image:"1f44b-1f3fc.png",sheet_x:14,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FD":{unified:"1F44B-1F3FD",image:"1f44b-1f3fd.png",sheet_x:14,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FE":{unified:"1F44B-1F3FE",image:"1f44b-1f3fe.png",sheet_x:14,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44B-1F3FF":{unified:"1F44B-1F3FF",image:"1f44b-1f3ff.png",sheet_x:14,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},sunflower:{name:"Sunflower",unified:"1F33B",variations:[],docomo:null,au:"E4E3",softbank:"E305",google:"FE046",image:"1f33b.png",sheet_x:6,sheet_y:37,short_name:"sunflower",short_names:["sunflower"],category:"Nature",sort_order:90,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"+1":{name:"Thumbs Up Sign",unified:"1F44D",variations:[],docomo:"E727",au:"E4F9",softbank:"E00E",google:"FEB97",image:"1f44d.png",sheet_x:15,sheet_y:4,short_name:"+1",short_names:["+1","thumbsup"],category:"People",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44D-1F3FB":{unified:"1F44D-1F3FB",image:"1f44d-1f3fb.png",sheet_x:15,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FC":{unified:"1F44D-1F3FC",image:"1f44d-1f3fc.png",sheet_x:15,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FD":{unified:"1F44D-1F3FD",image:"1f44d-1f3fd.png",sheet_x:15,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FE":{unified:"1F44D-1F3FE",image:"1f44d-1f3fe.png",sheet_x:15,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44D-1F3FF":{unified:"1F44D-1F3FF",image:"1f44d-1f3ff.png",sheet_x:15,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},couch_and_lamp:{name:"Couch and Lamp",unified:"1F6CB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cb.png",sheet_x:31,sheet_y:25,short_name:"couch_and_lamp",short_names:["couch_and_lamp"],category:"Objects",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},house_buildings:{name:"House Buildings",unified:"1F3D8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3d8.png",sheet_x:11,sheet_y:9,short_name:"house_buildings",short_names:["house_buildings"],category:"Places",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rose:{name:"Rose",unified:"1F339",variations:[],docomo:null,au:"E5BA",softbank:"E032",google:"FE041",image:"1f339.png",sheet_x:6,sheet_y:35,short_name:"rose",short_names:["rose"],category:"Nature",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},trident:{name:"Trident Emblem",unified:"1F531",variations:[],docomo:"E71A",au:"E5C9",softbank:"E031",google:"FE4D2",image:"1f531.png",sheet_x:23,sheet_y:33,short_name:"trident",short_names:["trident"],category:"Symbols",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gu":{name:"Regional Indicator Symbol Letters GU",unified:"1F1EC-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fa.png",sheet_x:35,sheet_y:6,short_name:"flag-gu",short_names:["flag-gu"],category:"Flags",sort_order:91,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},european_castle:{name:"European Castle",unified:"1F3F0",variations:[],docomo:null,au:"EAF8",softbank:"E506",google:"FE4BF",image:"1f3f0.png",sheet_x:11,sheet_y:33,short_name:"european_castle",short_names:["european_castle"],category:"Places",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"-1":{name:"Thumbs Down Sign",unified:"1F44E",variations:[],docomo:"E700",au:"EAD5",softbank:"E421",google:"FEBA0",image:"1f44e.png",sheet_x:15,sheet_y:10,short_name:"-1",short_names:["-1","thumbsdown"],category:"People",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44E-1F3FB":{unified:"1F44E-1F3FB",image:"1f44e-1f3fb.png",sheet_x:15,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FC":{unified:"1F44E-1F3FC",image:"1f44e-1f3fc.png",sheet_x:15,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FD":{unified:"1F44E-1F3FD",image:"1f44e-1f3fd.png",sheet_x:15,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FE":{unified:"1F44E-1F3FE",image:"1f44e-1f3fe.png",sheet_x:15,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44E-1F3FF":{unified:"1F44E-1F3FF",image:"1f44e-1f3ff.png",sheet_x:15,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},fleur_de_lis:{name:"Fleur-De-Lis",unified:"269C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"269c.png",sheet_x:2,sheet_y:11,short_name:"fleur_de_lis",short_names:["fleur_de_lis"],category:"Symbols",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tulip:{name:"Tulip",unified:"1F337",variations:[],docomo:"E743",au:"E4E4",softbank:"E304",google:"FE03D",image:"1f337.png",sheet_x:6,sheet_y:33,short_name:"tulip",short_names:["tulip"],category:"Nature",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sleeping_accommodation:{name:"Sleeping Accommodation",unified:"1F6CC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cc.png",sheet_x:31,sheet_y:26,short_name:"sleeping_accommodation",short_names:["sleeping_accommodation"],category:"Objects",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gt":{name:"Regional Indicator Symbol Letters GT",unified:"1F1EC-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f9.png",sheet_x:35,sheet_y:5,short_name:"flag-gt",short_names:["flag-gt"],category:"Flags",sort_order:92,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},part_alternation_mark:{name:"Part Alternation Mark",unified:"303D",variations:["303D-FE0F"],docomo:null,au:null,softbank:"E12C",google:"FE81B",image:"303d.png",sheet_x:4,sheet_y:27,short_name:"part_alternation_mark",short_names:["part_alternation_mark"],category:"Symbols",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},blossom:{name:"Blossom",unified:"1F33C",variations:[],docomo:null,au:"EB49",softbank:"E305",google:"FE04D",image:"1f33c.png",sheet_x:6,sheet_y:38,short_name:"blossom",short_names:["blossom"],category:"Nature",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bed:{name:"Bed",unified:"1F6CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cf.png",sheet_x:31,sheet_y:29,short_name:"bed",short_names:["bed"],category:"Objects",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gg":{name:"Regional Indicator Symbol Letters GG",unified:"1F1EC-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1ec.png",sheet_x:34,sheet_y:36,short_name:"flag-gg",short_names:["flag-gg"],category:"Flags",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},japanese_castle:{name:"Japanese Castle",unified:"1F3EF",variations:[],docomo:null,au:"EAF7",softbank:"E505",google:"FE4BE",image:"1f3ef.png",sheet_x:11,sheet_y:32,short_name:"japanese_castle",short_names:["japanese_castle"],category:"Places",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},facepunch:{name:"Fisted Hand Sign",unified:"1F44A",variations:[],docomo:"E6FD",au:"E4F3",softbank:"E00D",google:"FEB96",image:"1f44a.png",sheet_x:14,sheet_y:27,short_name:"facepunch",short_names:["facepunch","punch"],category:"People",sort_order:93,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44A-1F3FB":{unified:"1F44A-1F3FB",image:"1f44a-1f3fb.png",sheet_x:14,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FC":{unified:"1F44A-1F3FC",image:"1f44a-1f3fc.png",sheet_x:14,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FD":{unified:"1F44A-1F3FD",image:"1f44a-1f3fd.png",sheet_x:14,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FE":{unified:"1F44A-1F3FE",image:"1f44a-1f3fe.png",sheet_x:14,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44A-1F3FF":{unified:"1F44A-1F3FF",image:"1f44a-1f3ff.png",sheet_x:14,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},stadium:{name:"Stadium",unified:"1F3DF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3df.png",sheet_x:11,sheet_y:16,short_name:"stadium",short_names:["stadium"],category:"Places",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gn":{name:"Regional Indicator Symbol Letters GN",unified:"1F1EC-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f3.png",sheet_x:35,sheet_y:0,short_name:"flag-gn",short_names:["flag-gn"],category:"Flags",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},warning:{name:"Warning Sign",unified:"26A0",variations:["26A0-FE0F"],docomo:"E737",au:"E481",softbank:"E252",google:"FEB23",image:"26a0.png",sheet_x:2,sheet_y:12,short_name:"warning",short_names:["warning"],category:"Symbols",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},door:{name:"Door",unified:"1F6AA",variations:[],docomo:"E714",au:null,softbank:null,google:"FE4F3",image:"1f6aa.png",sheet_x:30,sheet_y:18,short_name:"door",short_names:["door"],category:"Objects",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cherry_blossom:{name:"Cherry Blossom",unified:"1F338",variations:[],docomo:"E748",au:"E4CA",softbank:"E030",google:"FE040",image:"1f338.png",sheet_x:6,sheet_y:34,short_name:"cherry_blossom",short_names:["cherry_blossom"],category:"Nature",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fist:{name:"Raised Fist",unified:"270A",variations:[],docomo:"E693",au:"EB83",softbank:"E010",google:"FEB93",image:"270a.png",sheet_x:3,sheet_y:9,short_name:"fist",short_names:["fist"],category:"People",sort_order:94,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270A-1F3FB":{unified:"270A-1F3FB",image:"270a-1f3fb.png",sheet_x:3,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FC":{unified:"270A-1F3FC",image:"270a-1f3fc.png",sheet_x:3,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FD":{unified:"270A-1F3FD",image:"270a-1f3fd.png",sheet_x:3,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FE":{unified:"270A-1F3FE",image:"270a-1f3fe.png",sheet_x:3,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270A-1F3FF":{unified:"270A-1F3FF",image:"270a-1f3ff.png",sheet_x:3,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},statue_of_liberty:{name:"Statue of Liberty",unified:"1F5FD",variations:[],docomo:null,au:null,softbank:"E51D",google:"FE4C6",image:"1f5fd.png",sheet_x:26,sheet_y:12,short_name:"statue_of_liberty",short_names:["statue_of_liberty"],category:"Places", +sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},v:{name:"Victory Hand",unified:"270C",variations:["270C-FE0F"],docomo:"E694",au:"E5A6",softbank:"E011",google:"FEB94",image:"270c.png",sheet_x:3,sheet_y:21,short_name:"v",short_names:["v"],category:"People",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270C-1F3FB":{unified:"270C-1F3FB",image:"270c-1f3fb.png",sheet_x:3,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FC":{unified:"270C-1F3FC",image:"270c-1f3fc.png",sheet_x:3,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FD":{unified:"270C-1F3FD",image:"270c-1f3fd.png",sheet_x:3,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FE":{unified:"270C-1F3FE",image:"270c-1f3fe.png",sheet_x:3,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270C-1F3FF":{unified:"270C-1F3FF",image:"270c-1f3ff.png",sheet_x:3,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},children_crossing:{name:"Children Crossing",unified:"1F6B8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b8.png",sheet_x:31,sheet_y:6,short_name:"children_crossing",short_names:["children_crossing"],category:"Symbols",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bouquet:{name:"Bouquet",unified:"1F490",variations:[],docomo:null,au:"EA95",softbank:"E306",google:"FE828",image:"1f490.png",sheet_x:19,sheet_y:32,short_name:"bouquet",short_names:["bouquet"],category:"Nature",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bellhop_bell:{name:"Bellhop Bell",unified:"1F6CE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ce.png",sheet_x:31,sheet_y:28,short_name:"bellhop_bell",short_names:["bellhop_bell"],category:"Objects",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gw":{name:"Regional Indicator Symbol Letters GW",unified:"1F1EC-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fc.png",sheet_x:35,sheet_y:7,short_name:"flag-gw",short_names:["flag-gw"],category:"Flags",sort_order:95,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},beginner:{name:"Japanese Symbol for Beginner",unified:"1F530",variations:[],docomo:null,au:"E480",softbank:"E209",google:"FE044",image:"1f530.png",sheet_x:23,sheet_y:32,short_name:"beginner",short_names:["beginner"],category:"Symbols",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},house:{name:"House Building",unified:"1F3E0",variations:[],docomo:"E663",au:"E4AB",softbank:"E036",google:"FE4B0",image:"1f3e0.png",sheet_x:11,sheet_y:17,short_name:"house",short_names:["house"],category:"Places",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mushroom:{name:"Mushroom",unified:"1F344",variations:[],docomo:null,au:"EB37",softbank:null,google:"FE04B",image:"1f344.png",sheet_x:7,sheet_y:5,short_name:"mushroom",short_names:["mushroom"],category:"Nature",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},frame_with_picture:{name:"Frame with Picture",unified:"1F5BC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5bc.png",sheet_x:25,sheet_y:35,short_name:"frame_with_picture",short_names:["frame_with_picture"],category:"Objects",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ok_hand:{name:"Ok Hand Sign",unified:"1F44C",variations:[],docomo:"E70B",au:"EAD4",softbank:"E420",google:"FEB9F",image:"1f44c.png",sheet_x:14,sheet_y:39,short_name:"ok_hand",short_names:["ok_hand"],category:"People",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F44C-1F3FB":{unified:"1F44C-1F3FB",image:"1f44c-1f3fb.png",sheet_x:14,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FC":{unified:"1F44C-1F3FC",image:"1f44c-1f3fc.png",sheet_x:15,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FD":{unified:"1F44C-1F3FD",image:"1f44c-1f3fd.png",sheet_x:15,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FE":{unified:"1F44C-1F3FE",image:"1f44c-1f3fe.png",sheet_x:15,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F44C-1F3FF":{unified:"1F44C-1F3FF",image:"1f44c-1f3ff.png",sheet_x:15,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-gy":{name:"Regional Indicator Symbol Letters GY",unified:"1F1EC-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1fe.png",sheet_x:35,sheet_y:8,short_name:"flag-gy",short_names:["flag-gy"],category:"Flags",sort_order:96,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ht":{name:"Regional Indicator Symbol Letters HT",unified:"1F1ED-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f9.png",sheet_x:35,sheet_y:13,short_name:"flag-ht",short_names:["flag-ht"],category:"Flags",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},house_with_garden:{name:"House with Garden",unified:"1F3E1",variations:[],docomo:"E663",au:"EB09",softbank:"E036",google:"FE4B1",image:"1f3e1.png",sheet_x:11,sheet_y:18,short_name:"house_with_garden",short_names:["house_with_garden"],category:"Places",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},world_map:{name:"World Map",unified:"1F5FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5fa.png",sheet_x:26,sheet_y:9,short_name:"world_map",short_names:["world_map"],category:"Objects",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chestnut:{name:"Chestnut",unified:"1F330",variations:[],docomo:null,au:"EB38",softbank:null,google:"FE04C",image:"1f330.png",sheet_x:6,sheet_y:26,short_name:"chestnut",short_names:["chestnut"],category:"Nature",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hand:{name:"Raised Hand",unified:"270B",variations:[],docomo:"E695",au:"E5A7",softbank:"E012",google:"FEB95",image:"270b.png",sheet_x:3,sheet_y:15,short_name:"hand",short_names:["hand","raised_hand"],category:"People",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270B-1F3FB":{unified:"270B-1F3FB",image:"270b-1f3fb.png",sheet_x:3,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FC":{unified:"270B-1F3FC",image:"270b-1f3fc.png",sheet_x:3,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FD":{unified:"270B-1F3FD",image:"270b-1f3fd.png",sheet_x:3,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FE":{unified:"270B-1F3FE",image:"270b-1f3fe.png",sheet_x:3,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270B-1F3FF":{unified:"270B-1F3FF",image:"270b-1f3ff.png",sheet_x:3,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},recycle:{name:"Black Universal Recycling Symbol",unified:"267B",variations:["267B-FE0F"],docomo:"E735",au:"EB79",softbank:null,google:"FEB2C",image:"267b.png",sheet_x:2,sheet_y:2,short_name:"recycle",short_names:["recycle"],category:"Symbols",sort_order:97,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},umbrella_on_ground:{name:"Umbrella on Ground",unified:"26F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26f1.png",sheet_x:2,sheet_y:31,short_name:"umbrella_on_ground",short_names:["umbrella_on_ground"],category:"Objects",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},jack_o_lantern:{name:"Jack-O-Lantern",unified:"1F383",variations:[],docomo:null,au:"EAEE",softbank:"E445",google:"FE51F",image:"1f383.png",sheet_x:8,sheet_y:27,short_name:"jack_o_lantern",short_names:["jack_o_lantern"],category:"Nature",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},open_hands:{name:"Open Hands Sign",unified:"1F450",variations:[],docomo:"E695",au:"EAD6",softbank:"E422",google:"FEBA1",image:"1f450.png",sheet_x:15,sheet_y:22,short_name:"open_hands",short_names:["open_hands"],category:"People",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F450-1F3FB":{unified:"1F450-1F3FB",image:"1f450-1f3fb.png",sheet_x:15,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FC":{unified:"1F450-1F3FC",image:"1f450-1f3fc.png",sheet_x:15,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FD":{unified:"1F450-1F3FD",image:"1f450-1f3fd.png",sheet_x:15,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FE":{unified:"1F450-1F3FE",image:"1f450-1f3fe.png",sheet_x:15,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F450-1F3FF":{unified:"1F450-1F3FF",image:"1f450-1f3ff.png",sheet_x:15,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},derelict_house_building:{name:"Derelict House Building",unified:"1F3DA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3da.png",sheet_x:11,sheet_y:11,short_name:"derelict_house_building",short_names:["derelict_house_building"],category:"Places",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},u6307:{name:"Squared Cjk Unified Ideograph-6307",unified:"1F22F",variations:["1F22F-FE0F"],docomo:null,au:"EA8B",softbank:"E22C",google:"FEB40",image:"1f22f.png",sheet_x:5,sheet_y:9,short_name:"u6307",short_names:["u6307"],category:"Symbols",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-hn":{name:"Regional Indicator Symbol Letters HN",unified:"1F1ED-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f3.png",sheet_x:35,sheet_y:11,short_name:"flag-hn",short_names:["flag-hn"],category:"Flags",sort_order:98,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shell:{name:"Spiral Shell",unified:"1F41A",variations:[],docomo:null,au:"EAEC",softbank:"E441",google:"FE1C6",image:"1f41a.png",sheet_x:12,sheet_y:31,short_name:"shell",short_names:["shell"],category:"Nature",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-hk":{name:"Regional Indicator Symbol Letters HK",unified:"1F1ED-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f0.png",sheet_x:35,sheet_y:9,short_name:"flag-hk",short_names:["flag-hk"],category:"Flags",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},moyai:{name:"Moyai",unified:"1F5FF",variations:[],docomo:null,au:"EB6C",softbank:null,google:"FE4C8",image:"1f5ff.png",sheet_x:26,sheet_y:14,short_name:"moyai",short_names:["moyai"],category:"Objects",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},muscle:{name:"Flexed Biceps",unified:"1F4AA",variations:[],docomo:null,au:"E4E9",softbank:"E14C",google:"FEB5E",image:"1f4aa.png",sheet_x:20,sheet_y:17,short_name:"muscle",short_names:["muscle"],category:"People",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F4AA-1F3FB":{unified:"1F4AA-1F3FB",image:"1f4aa-1f3fb.png",sheet_x:20,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FC":{unified:"1F4AA-1F3FC",image:"1f4aa-1f3fc.png",sheet_x:20,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FD":{unified:"1F4AA-1F3FD",image:"1f4aa-1f3fd.png",sheet_x:20,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FE":{unified:"1F4AA-1F3FE",image:"1f4aa-1f3fe.png",sheet_x:20,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F4AA-1F3FF":{unified:"1F4AA-1F3FF",image:"1f4aa-1f3ff.png",sheet_x:20,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},chart:{name:"Chart with Upwards Trend and Yen Sign",unified:"1F4B9",variations:[],docomo:null,au:"E5DC",softbank:"E14A",google:"FE4DF",image:"1f4b9.png",sheet_x:20,sheet_y:37,short_name:"chart",short_names:["chart"],category:"Symbols",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},office:{name:"Office Building",unified:"1F3E2",variations:[],docomo:"E664",au:"E4AD",softbank:"E038",google:"FE4B2",image:"1f3e2.png",sheet_x:11,sheet_y:19,short_name:"office",short_names:["office"],category:"Places",sort_order:99,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shopping_bags:{name:"Shopping Bags",unified:"1F6CD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6cd.png",sheet_x:31,sheet_y:27,short_name:"shopping_bags",short_names:["shopping_bags"],category:"Objects",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},department_store:{name:"Department Store",unified:"1F3EC",variations:[],docomo:null,au:"EAF6",softbank:"E504",google:"FE4BD",image:"1f3ec.png",sheet_x:11,sheet_y:29,short_name:"department_store",short_names:["department_store"],category:"Places",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pray:{name:"Person with Folded Hands",unified:"1F64F",variations:[],docomo:null,au:"EAD2",softbank:"E41D",google:"FE35B",image:"1f64f.png",sheet_x:29,sheet_y:6,short_name:"pray",short_names:["pray"],category:"People",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64F-1F3FB":{unified:"1F64F-1F3FB",image:"1f64f-1f3fb.png",sheet_x:29,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FC":{unified:"1F64F-1F3FC",image:"1f64f-1f3fc.png",sheet_x:29,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FD":{unified:"1F64F-1F3FD",image:"1f64f-1f3fd.png",sheet_x:29,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FE":{unified:"1F64F-1F3FE",image:"1f64f-1f3fe.png",sheet_x:29,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64F-1F3FF":{unified:"1F64F-1F3FF",image:"1f64f-1f3ff.png",sheet_x:29,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-hu":{name:"Regional Indicator Symbol Letters HU",unified:"1F1ED-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1fa.png",sheet_x:35,sheet_y:14,short_name:"flag-hu",short_names:["flag-hu"],category:"Flags",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sparkle:{name:"Sparkle",unified:"2747",variations:["2747-FE0F"],docomo:"E6FA",au:"E46C",softbank:"E32E",google:"FEB77",image:"2747.png",sheet_x:4,sheet_y:2,short_name:"sparkle",short_names:["sparkle"],category:"Symbols",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spider_web:{name:"Spider Web",unified:"1F578",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f578.png",sheet_x:25,sheet_y:6,short_name:"spider_web",short_names:["spider_web"],category:"Nature",sort_order:100,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},point_up:{name:"White Up Pointing Index",unified:"261D",variations:["261D-FE0F"],docomo:null,au:"E4F6",softbank:"E00F",google:"FEB98",image:"261d.png",sheet_x:1,sheet_y:10,short_name:"point_up",short_names:["point_up"],category:"People",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"261D-1F3FB":{unified:"261D-1F3FB",image:"261d-1f3fb.png",sheet_x:1,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FC":{unified:"261D-1F3FC",image:"261d-1f3fc.png",sheet_x:1,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FD":{unified:"261D-1F3FD",image:"261d-1f3fd.png",sheet_x:1,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FE":{unified:"261D-1F3FE",image:"261d-1f3fe.png",sheet_x:1,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"261D-1F3FF":{unified:"261D-1F3FF",image:"261d-1f3ff.png",sheet_x:1,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},eight_spoked_asterisk:{name:"Eight Spoked Asterisk",unified:"2733",variations:["2733-FE0F"],docomo:"E6F8",au:"E53E",softbank:"E206",google:"FEB62",image:"2733.png",sheet_x:3,sheet_y:40,short_name:"eight_spoked_asterisk",short_names:["eight_spoked_asterisk"],category:"Symbols",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-is":{name:"Regional Indicator Symbol Letters IS",unified:"1F1EE-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f8.png",sheet_x:35,sheet_y:24,short_name:"flag-is",short_names:["flag-is"],category:"Flags",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},post_office:{name:"Japanese Post Office",unified:"1F3E3",variations:[],docomo:"E665",au:"E5DE",softbank:"E153",google:"FE4B3",image:"1f3e3.png",sheet_x:11,sheet_y:20,short_name:"post_office",short_names:["post_office"],category:"Places",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},earth_americas:{name:"Earth Globe Americas",unified:"1F30E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f30e.png",sheet_x:5,sheet_y:35,short_name:"earth_americas",short_names:["earth_americas"],category:"Nature",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},balloon:{name:"Balloon",unified:"1F388",variations:[],docomo:null,au:"EA9B",softbank:"E310",google:"FE516",image:"1f388.png",sheet_x:8,sheet_y:37,short_name:"balloon",short_names:["balloon"],category:"Objects",sort_order:101,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},european_post_office:{name:"European Post Office",unified:"1F3E4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3e4.png",sheet_x:11,sheet_y:21,short_name:"european_post_office",short_names:["european_post_office"],category:"Places",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},point_up_2:{name:"White Up Pointing Backhand Index",unified:"1F446",variations:[],docomo:null,au:"EA8D",softbank:"E22E",google:"FEB99",image:"1f446.png",sheet_x:14,sheet_y:3,short_name:"point_up_2",short_names:["point_up_2"],category:"People",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F446-1F3FB":{unified:"1F446-1F3FB",image:"1f446-1f3fb.png",sheet_x:14,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FC":{unified:"1F446-1F3FC",image:"1f446-1f3fc.png",sheet_x:14,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FD":{unified:"1F446-1F3FD",image:"1f446-1f3fd.png",sheet_x:14,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FE":{unified:"1F446-1F3FE",image:"1f446-1f3fe.png",sheet_x:14,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F446-1F3FF":{unified:"1F446-1F3FF",image:"1f446-1f3ff.png",sheet_x:14,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},earth_africa:{name:"Earth Globe Europe-Africa",unified:"1F30D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f30d.png",sheet_x:5,sheet_y:34,short_name:"earth_africa",short_names:["earth_africa"],category:"Nature",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},negative_squared_cross_mark:{name:"Negative Squared Cross Mark",unified:"274E",variations:[],docomo:null,au:"E551",softbank:"E333",google:"FEB46",image:"274e.png",sheet_x:4,sheet_y:4,short_name:"negative_squared_cross_mark",short_names:["negative_squared_cross_mark"],category:"Symbols",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},flags:{name:"Carp Streamer",unified:"1F38F",variations:[],docomo:null,au:"EAE7",softbank:"E43B",google:"FE51C",image:"1f38f.png",sheet_x:9,sheet_y:3,short_name:"flags",short_names:["flags"],category:"Objects",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-in":{name:"Regional Indicator Symbol Letters IN",unified:"1F1EE-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f3.png",sheet_x:35,sheet_y:20,short_name:"flag-in",short_names:["flag-in"],category:"Flags",sort_order:102,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hospital:{name:"Hospital",unified:"1F3E5",variations:[],docomo:"E666",au:"E5DF",softbank:"E155",google:"FE4B4",image:"1f3e5.png",sheet_x:11,sheet_y:22,short_name:"hospital",short_names:["hospital"],category:"Places",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},point_down:{name:"White Down Pointing Backhand Index",unified:"1F447",variations:[],docomo:null,au:"EA8E",softbank:"E22F",google:"FEB9A",image:"1f447.png",sheet_x:14,sheet_y:9,short_name:"point_down",short_names:["point_down"],category:"People",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F447-1F3FB":{unified:"1F447-1F3FB",image:"1f447-1f3fb.png",sheet_x:14,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FC":{unified:"1F447-1F3FC",image:"1f447-1f3fc.png",sheet_x:14,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FD":{unified:"1F447-1F3FD",image:"1f447-1f3fd.png",sheet_x:14,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FE":{unified:"1F447-1F3FE",image:"1f447-1f3fe.png",sheet_x:14,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F447-1F3FF":{unified:"1F447-1F3FF",image:"1f447-1f3ff.png",sheet_x:14,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},white_check_mark:{name:"White Heavy Check Mark",unified:"2705",variations:[],docomo:null,au:"E55E",softbank:null,google:"FEB4A",image:"2705.png",sheet_x:3,sheet_y:6,short_name:"white_check_mark",short_names:["white_check_mark"],category:"Symbols",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ribbon:{name:"Ribbon",unified:"1F380",variations:[],docomo:"E684",au:"E59F",softbank:"E314",google:"FE50F",image:"1f380.png",sheet_x:8,sheet_y:24,short_name:"ribbon",short_names:["ribbon"],category:"Objects",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},earth_asia:{name:"Earth Globe Asia-Australia",unified:"1F30F",variations:[],docomo:null,au:"E5B3",softbank:null,google:"FE039",image:"1f30f.png",sheet_x:5,sheet_y:36,short_name:"earth_asia",short_names:["earth_asia"],category:"Nature",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-id":{name:"Regional Indicator Symbol Letters ID",unified:"1F1EE-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1e9.png",sheet_x:35,sheet_y:16,short_name:"flag-id",short_names:["flag-id"],category:"Flags",sort_order:103,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},full_moon:{name:"Full Moon Symbol",unified:"1F315",variations:[],docomo:"E6A0",au:null,softbank:null,google:"FE015",image:"1f315.png",sheet_x:6,sheet_y:1,short_name:"full_moon",short_names:["full_moon"],category:"Nature",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},point_left:{name:"White Left Pointing Backhand Index",unified:"1F448",variations:[],docomo:null,au:"E4FF",softbank:"E230",google:"FEB9B",image:"1f448.png",sheet_x:14,sheet_y:15,short_name:"point_left",short_names:["point_left"],category:"People",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F448-1F3FB":{unified:"1F448-1F3FB",image:"1f448-1f3fb.png",sheet_x:14,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FC":{unified:"1F448-1F3FC",image:"1f448-1f3fc.png",sheet_x:14,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FD":{unified:"1F448-1F3FD",image:"1f448-1f3fd.png",sheet_x:14,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FE":{unified:"1F448-1F3FE",image:"1f448-1f3fe.png",sheet_x:14,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F448-1F3FF":{unified:"1F448-1F3FF",image:"1f448-1f3ff.png",sheet_x:14,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-ir":{name:"Regional Indicator Symbol Letters IR",unified:"1F1EE-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f7.png",sheet_x:35,sheet_y:23,short_name:"flag-ir",short_names:["flag-ir"],category:"Flags",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},gift:{name:"Wrapped Present",unified:"1F381",variations:[],docomo:"E685",au:"E4CF",softbank:"E112",google:"FE510",image:"1f381.png",sheet_x:8,sheet_y:25,short_name:"gift",short_names:["gift"],category:"Objects",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bank:{name:"Bank",unified:"1F3E6",variations:[],docomo:"E667",au:"E4AA",softbank:"E14D",google:"FE4B5",image:"1f3e6.png",sheet_x:11,sheet_y:23,short_name:"bank",short_names:["bank"],category:"Places",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},diamond_shape_with_a_dot_inside:{name:"Diamond Shape with a Dot Inside",unified:"1F4A0",variations:[],docomo:"E6F8",au:null,softbank:null,google:"FEB55",image:"1f4a0.png",sheet_x:20,sheet_y:7,short_name:"diamond_shape_with_a_dot_inside",short_names:["diamond_shape_with_a_dot_inside"],category:"Symbols",sort_order:104,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-iq":{name:"Regional Indicator Symbol Letters IQ",unified:"1F1EE-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f6.png",sheet_x:35,sheet_y:22,short_name:"flag-iq",short_names:["flag-iq"],category:"Flags",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},confetti_ball:{name:"Confetti Ball",unified:"1F38A",variations:[],docomo:null,au:"E46F",softbank:null,google:"FE520",image:"1f38a.png",sheet_x:8,sheet_y:39,short_name:"confetti_ball",short_names:["confetti_ball"],category:"Objects",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},point_right:{name:"White Right Pointing Backhand Index",unified:"1F449",variations:[],docomo:null,au:"E500",softbank:"E231",google:"FEB9C",image:"1f449.png",sheet_x:14,sheet_y:21,short_name:"point_right",short_names:["point_right"],category:"People",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F449-1F3FB":{unified:"1F449-1F3FB",image:"1f449-1f3fb.png",sheet_x:14,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FC":{unified:"1F449-1F3FC",image:"1f449-1f3fc.png",sheet_x:14,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FD":{unified:"1F449-1F3FD",image:"1f449-1f3fd.png",sheet_x:14,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FE":{unified:"1F449-1F3FE",image:"1f449-1f3fe.png",sheet_x:14,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F449-1F3FF":{unified:"1F449-1F3FF",image:"1f449-1f3ff.png",sheet_x:14,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},cyclone:{name:"Cyclone",unified:"1F300",variations:[],docomo:"E643",au:"E469",softbank:"E443",google:"FE005",image:"1f300.png",sheet_x:5,sheet_y:21,short_name:"cyclone",short_names:["cyclone"],category:"Symbols",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waning_gibbous_moon:{name:"Waning Gibbous Moon Symbol",unified:"1F316",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f316.png",sheet_x:6,sheet_y:2,short_name:"waning_gibbous_moon",short_names:["waning_gibbous_moon"],category:"Nature",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hotel:{name:"Hotel",unified:"1F3E8",variations:[],docomo:"E669",au:"EA81",softbank:"E158",google:"FE4B7",image:"1f3e8.png",sheet_x:11,sheet_y:25,short_name:"hotel",short_names:["hotel"],category:"Places",sort_order:105,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loop:{name:"Double Curly Loop",unified:"27BF",variations:[],docomo:"E6DF",au:null,softbank:"E211",google:"FE82B",image:"27bf.png",sheet_x:4,sheet_y:16,short_name:"loop",short_names:["loop"],category:"Symbols",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},convenience_store:{name:"Convenience Store",unified:"1F3EA",variations:[],docomo:"E66A",au:"E4A4",softbank:"E156",google:"FE4B9",image:"1f3ea.png",sheet_x:11,sheet_y:27,short_name:"convenience_store",short_names:["convenience_store"],category:"Places",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},last_quarter_moon:{name:"Last Quarter Moon Symbol",unified:"1F317",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f317.png",sheet_x:6,sheet_y:3,short_name:"last_quarter_moon",short_names:["last_quarter_moon"],category:"Nature",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tada:{name:"Party Popper",unified:"1F389",variations:[],docomo:null,au:"EA9C",softbank:"E312",google:"FE517",image:"1f389.png",sheet_x:8,sheet_y:38,short_name:"tada",short_names:["tada"],category:"Objects",sort_order:106,has_img_apple:!0, +has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},middle_finger:{name:"Reversed Hand with Middle Finger Extended",unified:"1F595",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f595.png",sheet_x:25,sheet_y:19,short_name:"middle_finger",short_names:["middle_finger","reversed_hand_with_middle_finger_extended"],category:"People",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F595-1F3FB":{unified:"1F595-1F3FB",image:"1f595-1f3fb.png",sheet_x:25,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FC":{unified:"1F595-1F3FC",image:"1f595-1f3fc.png",sheet_x:25,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FD":{unified:"1F595-1F3FD",image:"1f595-1f3fd.png",sheet_x:25,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FE":{unified:"1F595-1F3FE",image:"1f595-1f3fe.png",sheet_x:25,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F595-1F3FF":{unified:"1F595-1F3FF",image:"1f595-1f3ff.png",sheet_x:25,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-ie":{name:"Regional Indicator Symbol Letters IE",unified:"1F1EE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1ea.png",sheet_x:35,sheet_y:17,short_name:"flag-ie",short_names:["flag-ie"],category:"Flags",sort_order:106,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dolls:{name:"Japanese Dolls",unified:"1F38E",variations:[],docomo:null,au:"EAE4",softbank:"E438",google:"FE519",image:"1f38e.png",sheet_x:9,sheet_y:2,short_name:"dolls",short_names:["dolls"],category:"Objects",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},globe_with_meridians:{name:"Globe with Meridians",unified:"1F310",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f310.png",sheet_x:5,sheet_y:37,short_name:"globe_with_meridians",short_names:["globe_with_meridians"],category:"Symbols",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-im":{name:"Regional Indicator Symbol Letters IM",unified:"1F1EE-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f2.png",sheet_x:35,sheet_y:19,short_name:"flag-im",short_names:["flag-im"],category:"Flags",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waning_crescent_moon:{name:"Waning Crescent Moon Symbol",unified:"1F318",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f318.png",sheet_x:6,sheet_y:4,short_name:"waning_crescent_moon",short_names:["waning_crescent_moon"],category:"Nature",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},raised_hand_with_fingers_splayed:{name:"Raised Hand with Fingers Splayed",unified:"1F590",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f590.png",sheet_x:25,sheet_y:13,short_name:"raised_hand_with_fingers_splayed",short_names:["raised_hand_with_fingers_splayed"],category:"People",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F590-1F3FB":{unified:"1F590-1F3FB",image:"1f590-1f3fb.png",sheet_x:25,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FC":{unified:"1F590-1F3FC",image:"1f590-1f3fc.png",sheet_x:25,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FD":{unified:"1F590-1F3FD",image:"1f590-1f3fd.png",sheet_x:25,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FE":{unified:"1F590-1F3FE",image:"1f590-1f3fe.png",sheet_x:25,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F590-1F3FF":{unified:"1F590-1F3FF",image:"1f590-1f3ff.png",sheet_x:25,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},school:{name:"School",unified:"1F3EB",variations:[],docomo:"E73E",au:"EA80",softbank:"E157",google:"FE4BA",image:"1f3eb.png",sheet_x:11,sheet_y:28,short_name:"school",short_names:["school"],category:"Places",sort_order:107,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},new_moon:{name:"New Moon Symbol",unified:"1F311",variations:[],docomo:"E69C",au:"E5A8",softbank:null,google:"FE011",image:"1f311.png",sheet_x:5,sheet_y:38,short_name:"new_moon",short_names:["new_moon"],category:"Nature",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},the_horns:{name:"Sign of the Horns",unified:"1F918",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f918.png",sheet_x:32,sheet_y:9,short_name:"the_horns",short_names:["the_horns","sign_of_the_horns"],category:"People",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F918-1F3FB":{unified:"1F918-1F3FB",image:"1f918-1f3fb.png",sheet_x:32,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FC":{unified:"1F918-1F3FC",image:"1f918-1f3fc.png",sheet_x:32,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FD":{unified:"1F918-1F3FD",image:"1f918-1f3fd.png",sheet_x:32,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FE":{unified:"1F918-1F3FE",image:"1f918-1f3fe.png",sheet_x:32,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F918-1F3FF":{unified:"1F918-1F3FF",image:"1f918-1f3ff.png",sheet_x:32,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},love_hotel:{name:"Love Hotel",unified:"1F3E9",variations:[],docomo:"E669-E6EF",au:"EAF3",softbank:"E501",google:"FE4B8",image:"1f3e9.png",sheet_x:11,sheet_y:26,short_name:"love_hotel",short_names:["love_hotel"],category:"Places",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},m:{name:"Circled Latin Capital Letter M",unified:"24C2",variations:["24C2-FE0F"],docomo:"E65C",au:"E5BC",softbank:"E434",google:"FE7E1",image:"24c2.png",sheet_x:0,sheet_y:32,short_name:"m",short_names:["m"],category:"Symbols",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-il":{name:"Regional Indicator Symbol Letters IL",unified:"1F1EE-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ee-1f1f1.png",sheet_x:35,sheet_y:18,short_name:"flag-il",short_names:["flag-il"],category:"Flags",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wind_chime:{name:"Wind Chime",unified:"1F390",variations:[],docomo:null,au:"EAED",softbank:"E442",google:"FE51E",image:"1f390.png",sheet_x:9,sheet_y:4,short_name:"wind_chime",short_names:["wind_chime"],category:"Objects",sort_order:108,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"spock-hand":{name:"Raised Hand with Part Between Middle and Ring Fingers",unified:"1F596",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f596.png",sheet_x:25,sheet_y:25,short_name:"spock-hand",short_names:["spock-hand"],category:"People",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F596-1F3FB":{unified:"1F596-1F3FB",image:"1f596-1f3fb.png",sheet_x:25,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FC":{unified:"1F596-1F3FC",image:"1f596-1f3fc.png",sheet_x:25,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FD":{unified:"1F596-1F3FD",image:"1f596-1f3fd.png",sheet_x:25,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FE":{unified:"1F596-1F3FE",image:"1f596-1f3fe.png",sheet_x:25,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F596-1F3FF":{unified:"1F596-1F3FF",image:"1f596-1f3ff.png",sheet_x:25,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},wedding:{name:"Wedding",unified:"1F492",variations:[],docomo:null,au:"E5BB",softbank:"E43D",google:"FE82A",image:"1f492.png",sheet_x:19,sheet_y:34,short_name:"wedding",short_names:["wedding"],category:"Places",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},atm:{name:"Automated Teller Machine",unified:"1F3E7",variations:[],docomo:"E668",au:"E4A3",softbank:"E154",google:"FE4B6",image:"1f3e7.png",sheet_x:11,sheet_y:24,short_name:"atm",short_names:["atm"],category:"Symbols",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crossed_flags:{name:"Crossed Flags",unified:"1F38C",variations:[],docomo:null,au:"E5D9",softbank:"E143",google:"FE514",image:"1f38c.png",sheet_x:9,sheet_y:0,short_name:"crossed_flags",short_names:["crossed_flags"],category:"Objects",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-it":{name:"Regional Indicator Symbol Letters IT",unified:"1F1EE-1F1F9",variations:[],docomo:null,au:"EB0F",softbank:"E50F",google:"FE4E9",image:"1f1ee-1f1f9.png",sheet_x:35,sheet_y:25,short_name:"flag-it",short_names:["flag-it","it"],category:"Flags",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waxing_crescent_moon:{name:"Waxing Crescent Moon Symbol",unified:"1F312",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f312.png",sheet_x:5,sheet_y:39,short_name:"waxing_crescent_moon",short_names:["waxing_crescent_moon"],category:"Nature",sort_order:109,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},izakaya_lantern:{name:"Izakaya Lantern",unified:"1F3EE",variations:[],docomo:"E74B",au:"E4BD",softbank:"E30B",google:"FE4C2",image:"1f3ee.png",sheet_x:11,sheet_y:31,short_name:"izakaya_lantern",short_names:["izakaya_lantern","lantern"],category:"Objects",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},first_quarter_moon:{name:"First Quarter Moon Symbol",unified:"1F313",variations:[],docomo:"E69E",au:"E5AA",softbank:"E04C",google:"FE013",image:"1f313.png",sheet_x:5,sheet_y:40,short_name:"first_quarter_moon",short_names:["first_quarter_moon"],category:"Nature",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sa:{name:"Squared Katakana Sa",unified:"1F202",variations:["1F202-FE0F"],docomo:null,au:"EA87",softbank:"E228",google:"FEB3F",image:"1f202.png",sheet_x:5,sheet_y:7,short_name:"sa",short_names:["sa"],category:"Symbols",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},classical_building:{name:"Classical Building",unified:"1F3DB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3db.png",sheet_x:11,sheet_y:12,short_name:"classical_building",short_names:["classical_building"],category:"Places",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},writing_hand:{name:"Writing Hand",unified:"270D",variations:["270D-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"270d.png",sheet_x:3,sheet_y:27,short_name:"writing_hand",short_names:["writing_hand"],category:"People",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"270D-1F3FB":{unified:"270D-1F3FB",image:"270d-1f3fb.png",sheet_x:3,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FC":{unified:"270D-1F3FC",image:"270d-1f3fc.png",sheet_x:3,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FD":{unified:"270D-1F3FD",image:"270d-1f3fd.png",sheet_x:3,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FE":{unified:"270D-1F3FE",image:"270d-1f3fe.png",sheet_x:3,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"270D-1F3FF":{unified:"270D-1F3FF",image:"270d-1f3ff.png",sheet_x:3,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-ci":{name:"Regional Indicator Symbol Letters CI",unified:"1F1E8-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ee.png",sheet_x:33,sheet_y:36,short_name:"flag-ci",short_names:["flag-ci"],category:"Flags",sort_order:110,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},moon:{name:"Waxing Gibbous Moon Symbol",unified:"1F314",variations:[],docomo:"E69D",au:"E5A9",softbank:"E04C",google:"FE012",image:"1f314.png",sheet_x:6,sheet_y:0,short_name:"moon",short_names:["moon","waxing_gibbous_moon"],category:"Nature",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},church:{name:"Church",unified:"26EA",variations:["26EA-FE0F"],docomo:null,au:"E5BB",softbank:"E037",google:"FE4BB",image:"26ea.png",sheet_x:2,sheet_y:29,short_name:"church",short_names:["church"],category:"Places",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},email:{name:"Envelope",unified:"2709",variations:["2709-FE0F"],docomo:"E6D3",au:"E521",softbank:"E103",google:"FE529",image:"2709.png",sheet_x:3,sheet_y:8,short_name:"email",short_names:["email","envelope"],category:"Objects",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},passport_control:{name:"Passport Control",unified:"1F6C2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c2.png",sheet_x:31,sheet_y:21,short_name:"passport_control",short_names:["passport_control"],category:"Symbols",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},nail_care:{name:"Nail Polish",unified:"1F485",variations:[],docomo:null,au:"EAA0",softbank:"E31D",google:"FE196",image:"1f485.png",sheet_x:19,sheet_y:6,short_name:"nail_care",short_names:["nail_care"],category:"People",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F485-1F3FB":{unified:"1F485-1F3FB",image:"1f485-1f3fb.png",sheet_x:19,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FC":{unified:"1F485-1F3FC",image:"1f485-1f3fc.png",sheet_x:19,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FD":{unified:"1F485-1F3FD",image:"1f485-1f3fd.png",sheet_x:19,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FE":{unified:"1F485-1F3FE",image:"1f485-1f3fe.png",sheet_x:19,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F485-1F3FF":{unified:"1F485-1F3FF",image:"1f485-1f3ff.png",sheet_x:19,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-jm":{name:"Regional Indicator Symbol Letters JM",unified:"1F1EF-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1f2.png",sheet_x:35,sheet_y:27,short_name:"flag-jm",short_names:["flag-jm"],category:"Flags",sort_order:111,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lips:{name:"Mouth",unified:"1F444",variations:[],docomo:"E6F9",au:"EAD1",softbank:"E41C",google:"FE193",image:"1f444.png",sheet_x:14,sheet_y:1,short_name:"lips",short_names:["lips"],category:"People",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mosque:{name:"Mosque",unified:"1F54C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54c.png",sheet_x:24,sheet_y:8,short_name:"mosque",short_names:["mosque"],category:"Places",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-jp":{name:"Regional Indicator Symbol Letters JP",unified:"1F1EF-1F1F5",variations:[],docomo:null,au:"E4CC",softbank:"E50B",google:"FE4E5",image:"1f1ef-1f1f5.png",sheet_x:35,sheet_y:29,short_name:"flag-jp",short_names:["flag-jp","jp"],category:"Flags",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},new_moon_with_face:{name:"New Moon with Face",unified:"1F31A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31a.png",sheet_x:6,sheet_y:6,short_name:"new_moon_with_face",short_names:["new_moon_with_face"],category:"Nature",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},customs:{name:"Customs",unified:"1F6C3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c3.png",sheet_x:31,sheet_y:22,short_name:"customs",short_names:["customs"],category:"Symbols",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},envelope_with_arrow:{name:"Envelope with Downwards Arrow Above",unified:"1F4E9",variations:[],docomo:"E6CF",au:"EB62",softbank:"E103",google:"FE52B",image:"1f4e9.png",sheet_x:22,sheet_y:3,short_name:"envelope_with_arrow",short_names:["envelope_with_arrow"],category:"Objects",sort_order:112,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},full_moon_with_face:{name:"Full Moon with Face",unified:"1F31D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31d.png",sheet_x:6,sheet_y:9,short_name:"full_moon_with_face",short_names:["full_moon_with_face"],category:"Nature",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-je":{name:"Regional Indicator Symbol Letters JE",unified:"1F1EF-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1ea.png",sheet_x:35,sheet_y:26,short_name:"flag-je",short_names:["flag-je"],category:"Flags",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},synagogue:{name:"Synagogue",unified:"1F54D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54d.png",sheet_x:24,sheet_y:9,short_name:"synagogue",short_names:["synagogue"],category:"Places",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},baggage_claim:{name:"Baggage Claim",unified:"1F6C4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c4.png",sheet_x:31,sheet_y:23,short_name:"baggage_claim",short_names:["baggage_claim"],category:"Symbols",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tongue:{name:"Tongue",unified:"1F445",variations:[],docomo:"E728",au:"EB47",softbank:"E409",google:"FE194",image:"1f445.png",sheet_x:14,sheet_y:2,short_name:"tongue",short_names:["tongue"],category:"People",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},incoming_envelope:{name:"Incoming Envelope",unified:"1F4E8",variations:[],docomo:"E6CF",au:"E591",softbank:"E103",google:"FE52A",image:"1f4e8.png",sheet_x:22,sheet_y:2,short_name:"incoming_envelope",short_names:["incoming_envelope"],category:"Objects",sort_order:113,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"e-mail":{name:"E-Mail Symbol",unified:"1F4E7",variations:[],docomo:"E6D3",au:"EB71",softbank:"E103",google:"FEB92",image:"1f4e7.png",sheet_x:22,sheet_y:1,short_name:"e-mail",short_names:["e-mail"],category:"Objects",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ear:{name:"Ear",unified:"1F442",variations:[],docomo:"E692",au:"E5A5",softbank:"E41B",google:"FE191",image:"1f442.png",sheet_x:13,sheet_y:30,short_name:"ear",short_names:["ear"],category:"People",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F442-1F3FB":{unified:"1F442-1F3FB",image:"1f442-1f3fb.png",sheet_x:13,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FC":{unified:"1F442-1F3FC",image:"1f442-1f3fc.png",sheet_x:13,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FD":{unified:"1F442-1F3FD",image:"1f442-1f3fd.png",sheet_x:13,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FE":{unified:"1F442-1F3FE",image:"1f442-1f3fe.png",sheet_x:13,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F442-1F3FF":{unified:"1F442-1F3FF",image:"1f442-1f3ff.png",sheet_x:13,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},first_quarter_moon_with_face:{name:"First Quarter Moon with Face",unified:"1F31B",variations:[],docomo:"E69E",au:"E489",softbank:"E04C",google:"FE016",image:"1f31b.png",sheet_x:6,sheet_y:7,short_name:"first_quarter_moon_with_face",short_names:["first_quarter_moon_with_face"],category:"Nature",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},left_luggage:{name:"Left Luggage",unified:"1F6C5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6c5.png",sheet_x:31,sheet_y:24,short_name:"left_luggage",short_names:["left_luggage"],category:"Symbols",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kaaba:{name:"Kaaba",unified:"1F54B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f54b.png",sheet_x:24,sheet_y:7,short_name:"kaaba",short_names:["kaaba"],category:"Places",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-jo":{name:"Regional Indicator Symbol Letters JO",unified:"1F1EF-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ef-1f1f4.png",sheet_x:35,sheet_y:28,short_name:"flag-jo",short_names:["flag-jo"],category:"Flags",sort_order:114,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kz":{name:"Regional Indicator Symbol Letters KZ",unified:"1F1F0-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ff.png",sheet_x:35,sheet_y:40,short_name:"flag-kz",short_names:["flag-kz"],category:"Flags",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wheelchair:{name:"Wheelchair Symbol",unified:"267F",variations:["267F-FE0F"],docomo:"E69B",au:"E47F",softbank:"E20A",google:"FEB20",image:"267f.png",sheet_x:2,sheet_y:3,short_name:"wheelchair",short_names:["wheelchair"],category:"Symbols",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},last_quarter_moon_with_face:{name:"Last Quarter Moon with Face",unified:"1F31C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31c.png",sheet_x:6,sheet_y:8,short_name:"last_quarter_moon_with_face",short_names:["last_quarter_moon_with_face"],category:"Nature",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},nose:{name:"Nose",unified:"1F443",variations:[],docomo:null,au:"EAD0",softbank:"E41A",google:"FE192",image:"1f443.png",sheet_x:13,sheet_y:36,short_name:"nose",short_names:["nose"],category:"People",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F443-1F3FB":{unified:"1F443-1F3FB",image:"1f443-1f3fb.png",sheet_x:13,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FC":{unified:"1F443-1F3FC",image:"1f443-1f3fc.png",sheet_x:13,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FD":{unified:"1F443-1F3FD",image:"1f443-1f3fd.png",sheet_x:13,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FE":{unified:"1F443-1F3FE",image:"1f443-1f3fe.png",sheet_x:13,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F443-1F3FF":{unified:"1F443-1F3FF",image:"1f443-1f3ff.png",sheet_x:14,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},love_letter:{name:"Love Letter",unified:"1F48C",variations:[],docomo:"E717",au:"EB78",softbank:"E103-E328",google:"FE824",image:"1f48c.png",sheet_x:19,sheet_y:28,short_name:"love_letter",short_names:["love_letter"],category:"Objects",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shinto_shrine:{name:"Shinto Shrine",unified:"26E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26e9.png",sheet_x:2,sheet_y:28,short_name:"shinto_shrine",short_names:["shinto_shrine"],category:"Places",sort_order:115,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_smoking:{name:"No Smoking Symbol",unified:"1F6AD",variations:[],docomo:"E680",au:"E47E",softbank:"E208",google:"FEB1F",image:"1f6ad.png",sheet_x:30,sheet_y:21,short_name:"no_smoking",short_names:["no_smoking"],category:"Symbols",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},postbox:{name:"Postbox",unified:"1F4EE",variations:[],docomo:"E665",au:"E51B",softbank:"E102",google:"FE52E",image:"1f4ee.png",sheet_x:22,sheet_y:8,short_name:"postbox",short_names:["postbox"],category:"Objects",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eye:{name:"Eye",unified:"1F441",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f441.png",sheet_x:13,sheet_y:29,short_name:"eye",short_names:["eye"],category:"People",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sun_with_face:{name:"Sun with Face",unified:"1F31E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f31e.png",sheet_x:6,sheet_y:10,short_name:"sun_with_face",short_names:["sun_with_face"],category:"Nature",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ke":{name:"Regional Indicator Symbol Letters KE",unified:"1F1F0-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ea.png",sheet_x:35,sheet_y:30,short_name:"flag-ke",short_names:["flag-ke"],category:"Flags",sort_order:116,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mailbox_closed:{name:"Closed Mailbox with Lowered Flag",unified:"1F4EA",variations:[],docomo:"E665",au:"E51B",softbank:"E101",google:"FE52C",image:"1f4ea.png",sheet_x:22,sheet_y:4,short_name:"mailbox_closed",short_names:["mailbox_closed"],category:"Objects",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ki":{name:"Regional Indicator Symbol Letters KI",unified:"1F1F0-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ee.png",sheet_x:35,sheet_y:33,short_name:"flag-ki",short_names:["flag-ki"],category:"Flags",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eyes:{name:"Eyes",unified:"1F440",variations:[],docomo:"E691",au:"E5A4",softbank:"E419",google:"FE190",image:"1f440.png",sheet_x:13,sheet_y:28,short_name:"eyes",short_names:["eyes"],category:"People",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wc:{name:"Water Closet",unified:"1F6BE",variations:[],docomo:"E66E",au:"E4A5",softbank:"E309",google:"FE508",image:"1f6be.png",sheet_x:31,sheet_y:12,short_name:"wc",short_names:["wc"],category:"Symbols",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crescent_moon:{name:"Crescent Moon",unified:"1F319",variations:[],docomo:"E69F",au:"E486",softbank:"E04C",google:"FE014",image:"1f319.png",sheet_x:6,sheet_y:5,short_name:"crescent_moon",short_names:["crescent_moon"],category:"Nature",sort_order:117,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mailbox:{name:"Closed Mailbox with Raised Flag",unified:"1F4EB",variations:[],docomo:"E665",au:"EB0A",softbank:"E101",google:"FE52D",image:"1f4eb.png",sheet_x:22,sheet_y:5,short_name:"mailbox",short_names:["mailbox"],category:"Objects",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-xk":{name:"Regional Indicator Symbol Letters XK",unified:"1F1FD-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fd-1f1f0.png",sheet_x:38,sheet_y:38,short_name:"flag-xk",short_names:["flag-xk"],category:"Flags",sort_order:118,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},parking:{name:"Negative Squared Latin Capital Letter P",unified:"1F17F",variations:["1F17F-FE0F"],docomo:"E66C",au:"E4A6",softbank:"E14F",google:"FE7F6",image:"1f17f.png",sheet_x:4,sheet_y:35,short_name:"parking",short_names:["parking"],category:"Symbols",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bust_in_silhouette:{name:"Bust in Silhouette",unified:"1F464",variations:[],docomo:"E6B1",au:null,softbank:null,google:"FE19A",image:"1f464.png",sheet_x:16,sheet_y:6,short_name:"bust_in_silhouette",short_names:["bust_in_silhouette"],category:"People",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},star:{name:"White Medium Star",unified:"2B50",variations:["2B50-FE0F"],docomo:null,au:"E48B",softbank:"E32F",google:"FEB68",image:"2b50.png",sheet_x:4,sheet_y:24,short_name:"star",short_names:["star"],category:"Nature",sort_order:118,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},star2:{name:"Glowing Star",unified:"1F31F",variations:[],docomo:null,au:"E48B",softbank:"E335",google:"FEB69",image:"1f31f.png",sheet_x:6,sheet_y:11,short_name:"star2",short_names:["star2"],category:"Nature",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mailbox_with_mail:{name:"Open Mailbox with Raised Flag",unified:"1F4EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ec.png",sheet_x:22,sheet_y:6,short_name:"mailbox_with_mail",short_names:["mailbox_with_mail"],category:"Objects",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},potable_water:{name:"Potable Water Symbol",unified:"1F6B0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6b0.png",sheet_x:30,sheet_y:24,short_name:"potable_water",short_names:["potable_water"],category:"Symbols",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},busts_in_silhouette:{name:"Busts in Silhouette",unified:"1F465",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f465.png",sheet_x:16,sheet_y:7,short_name:"busts_in_silhouette",short_names:["busts_in_silhouette"],category:"People",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kw":{name:"Regional Indicator Symbol Letters KW",unified:"1F1F0-1F1FC",variations:[],docomo:null,au:null,softbank:null, +google:null,image:"1f1f0-1f1fc.png",sheet_x:35,sheet_y:38,short_name:"flag-kw",short_names:["flag-kw"],category:"Flags",sort_order:119,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mens:{name:"Mens Symbol",unified:"1F6B9",variations:[],docomo:null,au:null,softbank:"E138",google:"FEB33",image:"1f6b9.png",sheet_x:31,sheet_y:7,short_name:"mens",short_names:["mens"],category:"Symbols",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dizzy:{name:"Dizzy Symbol",unified:"1F4AB",variations:[],docomo:null,au:"EB5C",softbank:"E407",google:"FEB5F",image:"1f4ab.png",sheet_x:20,sheet_y:23,short_name:"dizzy",short_names:["dizzy"],category:"Nature",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speaking_head_in_silhouette:{name:"Speaking Head in Silhouette",unified:"1F5E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e3.png",sheet_x:26,sheet_y:5,short_name:"speaking_head_in_silhouette",short_names:["speaking_head_in_silhouette"],category:"People",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kg":{name:"Regional Indicator Symbol Letters KG",unified:"1F1F0-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1ec.png",sheet_x:35,sheet_y:31,short_name:"flag-kg",short_names:["flag-kg"],category:"Flags",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mailbox_with_no_mail:{name:"Open Mailbox with Lowered Flag",unified:"1F4ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ed.png",sheet_x:22,sheet_y:7,short_name:"mailbox_with_no_mail",short_names:["mailbox_with_no_mail"],category:"Objects",sort_order:120,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sparkles:{name:"Sparkles",unified:"2728",variations:[],docomo:"E6FA",au:"EAAB",softbank:"E32E",google:"FEB60",image:"2728.png",sheet_x:3,sheet_y:39,short_name:"sparkles",short_names:["sparkles"],category:"Nature",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},baby:{name:"Baby",unified:"1F476",variations:[],docomo:null,au:"EB18",softbank:"E51A",google:"FE1A9",image:"1f476.png",sheet_x:17,sheet_y:38,short_name:"baby",short_names:["baby"],category:"People",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F476-1F3FB":{unified:"1F476-1F3FB",image:"1f476-1f3fb.png",sheet_x:17,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FC":{unified:"1F476-1F3FC",image:"1f476-1f3fc.png",sheet_x:17,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FD":{unified:"1F476-1F3FD",image:"1f476-1f3fd.png",sheet_x:18,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FE":{unified:"1F476-1F3FE",image:"1f476-1f3fe.png",sheet_x:18,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F476-1F3FF":{unified:"1F476-1F3FF",image:"1f476-1f3ff.png",sheet_x:18,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"package":{name:"Package",unified:"1F4E6",variations:[],docomo:"E685",au:"E51F",softbank:"E112",google:"FE535",image:"1f4e6.png",sheet_x:22,sheet_y:0,short_name:"package",short_names:["package"],category:"Objects",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womens:{name:"Womens Symbol",unified:"1F6BA",variations:[],docomo:null,au:null,softbank:"E139",google:"FEB34",image:"1f6ba.png",sheet_x:31,sheet_y:8,short_name:"womens",short_names:["womens"],category:"Symbols",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-la":{name:"Regional Indicator Symbol Letters LA",unified:"1F1F1-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e6.png",sheet_x:36,sheet_y:0,short_name:"flag-la",short_names:["flag-la"],category:"Flags",sort_order:121,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},baby_symbol:{name:"Baby Symbol",unified:"1F6BC",variations:[],docomo:null,au:"EB18",softbank:"E13A",google:"FEB35",image:"1f6bc.png",sheet_x:31,sheet_y:10,short_name:"baby_symbol",short_names:["baby_symbol"],category:"Symbols",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lv":{name:"Regional Indicator Symbol Letters LV",unified:"1F1F1-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fb.png",sheet_x:36,sheet_y:9,short_name:"flag-lv",short_names:["flag-lv"],category:"Flags",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},postal_horn:{name:"Postal Horn",unified:"1F4EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ef.png",sheet_x:22,sheet_y:9,short_name:"postal_horn",short_names:["postal_horn"],category:"Objects",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},comet:{name:"Comet",unified:"2604",variations:["2604-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2604.png",sheet_x:1,sheet_y:4,short_name:"comet",short_names:["comet"],category:"Nature",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boy:{name:"Boy",unified:"1F466",variations:[],docomo:"E6F0",au:"E4FC",softbank:"E001",google:"FE19B",image:"1f466.png",sheet_x:16,sheet_y:8,short_name:"boy",short_names:["boy"],category:"People",sort_order:122,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F466-1F3FB":{unified:"1F466-1F3FB",image:"1f466-1f3fb.png",sheet_x:16,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FC":{unified:"1F466-1F3FC",image:"1f466-1f3fc.png",sheet_x:16,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FD":{unified:"1F466-1F3FD",image:"1f466-1f3fd.png",sheet_x:16,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FE":{unified:"1F466-1F3FE",image:"1f466-1f3fe.png",sheet_x:16,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F466-1F3FF":{unified:"1F466-1F3FF",image:"1f466-1f3ff.png",sheet_x:16,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},restroom:{name:"Restroom",unified:"1F6BB",variations:[],docomo:"E66E",au:"E4A5",softbank:"E151",google:"FE506",image:"1f6bb.png",sheet_x:31,sheet_y:9,short_name:"restroom",short_names:["restroom"],category:"Symbols",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lb":{name:"Regional Indicator Symbol Letters LB",unified:"1F1F1-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e7.png",sheet_x:36,sheet_y:1,short_name:"flag-lb",short_names:["flag-lb"],category:"Flags",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},inbox_tray:{name:"Inbox Tray",unified:"1F4E5",variations:[],docomo:null,au:"E593",softbank:null,google:"FE534",image:"1f4e5.png",sheet_x:21,sheet_y:40,short_name:"inbox_tray",short_names:["inbox_tray"],category:"Objects",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sunny:{name:"Black Sun with Rays",unified:"2600",variations:["2600-FE0F"],docomo:"E63E",au:"E488",softbank:"E04A",google:"FE000",image:"2600.png",sheet_x:1,sheet_y:0,short_name:"sunny",short_names:["sunny"],category:"Nature",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},girl:{name:"Girl",unified:"1F467",variations:[],docomo:"E6F0",au:"E4FA",softbank:"E002",google:"FE19C",image:"1f467.png",sheet_x:16,sheet_y:14,short_name:"girl",short_names:["girl"],category:"People",sort_order:123,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F467-1F3FB":{unified:"1F467-1F3FB",image:"1f467-1f3fb.png",sheet_x:16,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FC":{unified:"1F467-1F3FC",image:"1f467-1f3fc.png",sheet_x:16,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FD":{unified:"1F467-1F3FD",image:"1f467-1f3fd.png",sheet_x:16,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FE":{unified:"1F467-1F3FE",image:"1f467-1f3fe.png",sheet_x:16,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F467-1F3FF":{unified:"1F467-1F3FF",image:"1f467-1f3ff.png",sheet_x:16,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},man:{name:"Man",unified:"1F468",variations:[],docomo:"E6F0",au:"E4FC",softbank:"E004",google:"FE19D",image:"1f468.png",sheet_x:16,sheet_y:20,short_name:"man",short_names:["man"],category:"People",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F468-1F3FB":{unified:"1F468-1F3FB",image:"1f468-1f3fb.png",sheet_x:16,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FC":{unified:"1F468-1F3FC",image:"1f468-1f3fc.png",sheet_x:16,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FD":{unified:"1F468-1F3FD",image:"1f468-1f3fd.png",sheet_x:16,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FE":{unified:"1F468-1F3FE",image:"1f468-1f3fe.png",sheet_x:16,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F468-1F3FF":{unified:"1F468-1F3FF",image:"1f468-1f3ff.png",sheet_x:16,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},put_litter_in_its_place:{name:"Put Litter in Its Place Symbol",unified:"1F6AE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f6ae.png",sheet_x:30,sheet_y:22,short_name:"put_litter_in_its_place",short_names:["put_litter_in_its_place"],category:"Symbols",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mostly_sunny:{name:"White Sun with Small Cloud",unified:"1F324",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f324.png",sheet_x:6,sheet_y:14,short_name:"mostly_sunny",short_names:["mostly_sunny","sun_small_cloud"],category:"Nature",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ls":{name:"Regional Indicator Symbol Letters LS",unified:"1F1F1-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f8.png",sheet_x:36,sheet_y:6,short_name:"flag-ls",short_names:["flag-ls"],category:"Flags",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},outbox_tray:{name:"Outbox Tray",unified:"1F4E4",variations:[],docomo:null,au:"E592",softbank:null,google:"FE533",image:"1f4e4.png",sheet_x:21,sheet_y:39,short_name:"outbox_tray",short_names:["outbox_tray"],category:"Objects",sort_order:124,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cinema:{name:"Cinema",unified:"1F3A6",variations:[],docomo:"E677",au:"E517",softbank:"E507",google:"FE802",image:"1f3a6.png",sheet_x:9,sheet_y:21,short_name:"cinema",short_names:["cinema"],category:"Symbols",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lr":{name:"Regional Indicator Symbol Letters LR",unified:"1F1F1-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f7.png",sheet_x:36,sheet_y:5,short_name:"flag-lr",short_names:["flag-lr"],category:"Flags",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scroll:{name:"Scroll",unified:"1F4DC",variations:[],docomo:"E70A",au:"E55F",softbank:null,google:"FE4FD",image:"1f4dc.png",sheet_x:21,sheet_y:31,short_name:"scroll",short_names:["scroll"],category:"Objects",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},partly_sunny:{name:"Sun Behind Cloud",unified:"26C5",variations:["26C5-FE0F"],docomo:"E63E-E63F",au:"E48E",softbank:"E04A-E049",google:"FE00F",image:"26c5.png",sheet_x:2,sheet_y:21,short_name:"partly_sunny",short_names:["partly_sunny"],category:"Nature",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},woman:{name:"Woman",unified:"1F469",variations:[],docomo:"E6F0",au:"E4FA",softbank:"E005",google:"FE19E",image:"1f469.png",sheet_x:16,sheet_y:26,short_name:"woman",short_names:["woman"],category:"People",sort_order:125,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F469-1F3FB":{unified:"1F469-1F3FB",image:"1f469-1f3fb.png",sheet_x:16,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FC":{unified:"1F469-1F3FC",image:"1f469-1f3fc.png",sheet_x:16,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FD":{unified:"1F469-1F3FD",image:"1f469-1f3fd.png",sheet_x:16,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FE":{unified:"1F469-1F3FE",image:"1f469-1f3fe.png",sheet_x:16,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F469-1F3FF":{unified:"1F469-1F3FF",image:"1f469-1f3ff.png",sheet_x:16,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},signal_strength:{name:"Antenna with Bars",unified:"1F4F6",variations:[],docomo:null,au:"EA84",softbank:"E20B",google:"FE838",image:"1f4f6.png",sheet_x:22,sheet_y:16,short_name:"signal_strength",short_names:["signal_strength"],category:"Symbols",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},person_with_blond_hair:{name:"Person with Blond Hair",unified:"1F471",variations:[],docomo:null,au:"EB13",softbank:"E515",google:"FE1A4",image:"1f471.png",sheet_x:17,sheet_y:8,short_name:"person_with_blond_hair",short_names:["person_with_blond_hair"],category:"People",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F471-1F3FB":{unified:"1F471-1F3FB",image:"1f471-1f3fb.png",sheet_x:17,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FC":{unified:"1F471-1F3FC",image:"1f471-1f3fc.png",sheet_x:17,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FD":{unified:"1F471-1F3FD",image:"1f471-1f3fd.png",sheet_x:17,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FE":{unified:"1F471-1F3FE",image:"1f471-1f3fe.png",sheet_x:17,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F471-1F3FF":{unified:"1F471-1F3FF",image:"1f471-1f3ff.png",sheet_x:17,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},barely_sunny:{name:"White Sun Behind Cloud",unified:"1F325",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f325.png",sheet_x:6,sheet_y:15,short_name:"barely_sunny",short_names:["barely_sunny","sun_behind_cloud"],category:"Nature",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},page_with_curl:{name:"Page with Curl",unified:"1F4C3",variations:[],docomo:"E689",au:"E561",softbank:"E301",google:"FE540",image:"1f4c3.png",sheet_x:21,sheet_y:6,short_name:"page_with_curl",short_names:["page_with_curl"],category:"Objects",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ly":{name:"Regional Indicator Symbol Letters LY",unified:"1F1F1-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fe.png",sheet_x:36,sheet_y:10,short_name:"flag-ly",short_names:["flag-ly"],category:"Flags",sort_order:126,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bookmark_tabs:{name:"Bookmark Tabs",unified:"1F4D1",variations:[],docomo:"E689",au:"EB0B",softbank:"E301",google:"FE552",image:"1f4d1.png",sheet_x:21,sheet_y:20,short_name:"bookmark_tabs",short_names:["bookmark_tabs"],category:"Objects",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-li":{name:"Regional Indicator Symbol Letters LI",unified:"1F1F1-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1ee.png",sheet_x:36,sheet_y:3,short_name:"flag-li",short_names:["flag-li"],category:"Flags",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},older_man:{name:"Older Man",unified:"1F474",variations:[],docomo:null,au:"EB16",softbank:"E518",google:"FE1A7",image:"1f474.png",sheet_x:17,sheet_y:26,short_name:"older_man",short_names:["older_man"],category:"People",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F474-1F3FB":{unified:"1F474-1F3FB",image:"1f474-1f3fb.png",sheet_x:17,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FC":{unified:"1F474-1F3FC",image:"1f474-1f3fc.png",sheet_x:17,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FD":{unified:"1F474-1F3FD",image:"1f474-1f3fd.png",sheet_x:17,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FE":{unified:"1F474-1F3FE",image:"1f474-1f3fe.png",sheet_x:17,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F474-1F3FF":{unified:"1F474-1F3FF",image:"1f474-1f3ff.png",sheet_x:17,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},partly_sunny_rain:{name:"White Sun Behind Cloud with Rain",unified:"1F326",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f326.png",sheet_x:6,sheet_y:16,short_name:"partly_sunny_rain",short_names:["partly_sunny_rain","sun_behind_rain_cloud"],category:"Nature",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},koko:{name:"Squared Katakana Koko",unified:"1F201",variations:[],docomo:null,au:null,softbank:"E203",google:"FEB24",image:"1f201.png",sheet_x:5,sheet_y:6,short_name:"koko",short_names:["koko"],category:"Symbols",sort_order:127,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bar_chart:{name:"Bar Chart",unified:"1F4CA",variations:[],docomo:null,au:"E574",softbank:"E14A",google:"FE54A",image:"1f4ca.png",sheet_x:21,sheet_y:13,short_name:"bar_chart",short_names:["bar_chart"],category:"Objects",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cloud:{name:"Cloud",unified:"2601",variations:["2601-FE0F"],docomo:"E63F",au:"E48D",softbank:"E049",google:"FE001",image:"2601.png",sheet_x:1,sheet_y:1,short_name:"cloud",short_names:["cloud"],category:"Nature",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ng:{name:"Squared Ng",unified:"1F196",variations:[],docomo:"E72F",au:null,softbank:null,google:"FEB28",image:"1f196.png",sheet_x:5,sheet_y:1,short_name:"ng",short_names:["ng"],category:"Symbols",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lt":{name:"Regional Indicator Symbol Letters LT",unified:"1F1F1-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f9.png",sheet_x:36,sheet_y:7,short_name:"flag-lt",short_names:["flag-lt"],category:"Flags",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},older_woman:{name:"Older Woman",unified:"1F475",variations:[],docomo:null,au:"EB17",softbank:"E519",google:"FE1A8",image:"1f475.png",sheet_x:17,sheet_y:32,short_name:"older_woman",short_names:["older_woman"],category:"People",sort_order:128,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F475-1F3FB":{unified:"1F475-1F3FB",image:"1f475-1f3fb.png",sheet_x:17,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FC":{unified:"1F475-1F3FC",image:"1f475-1f3fc.png",sheet_x:17,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FD":{unified:"1F475-1F3FD",image:"1f475-1f3fd.png",sheet_x:17,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FE":{unified:"1F475-1F3FE",image:"1f475-1f3fe.png",sheet_x:17,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F475-1F3FF":{unified:"1F475-1F3FF",image:"1f475-1f3ff.png",sheet_x:17,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},rain_cloud:{name:"Cloud with Rain",unified:"1F327",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f327.png",sheet_x:6,sheet_y:17,short_name:"rain_cloud",short_names:["rain_cloud"],category:"Nature",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lu":{name:"Regional Indicator Symbol Letters LU",unified:"1F1F1-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1fa.png",sheet_x:36,sheet_y:8,short_name:"flag-lu",short_names:["flag-lu"],category:"Flags",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},chart_with_upwards_trend:{name:"Chart with Upwards Trend",unified:"1F4C8",variations:[],docomo:null,au:"E575",softbank:"E14A",google:"FE54B",image:"1f4c8.png",sheet_x:21,sheet_y:11,short_name:"chart_with_upwards_trend",short_names:["chart_with_upwards_trend"],category:"Objects",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ok:{name:"Squared Ok",unified:"1F197",variations:[],docomo:"E70B",au:"E5AD",softbank:"E24D",google:"FEB27",image:"1f197.png",sheet_x:5,sheet_y:2,short_name:"ok",short_names:["ok"],category:"Symbols",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},man_with_gua_pi_mao:{name:"Man with Gua Pi Mao",unified:"1F472",variations:[],docomo:null,au:"EB14",softbank:"E516",google:"FE1A5",image:"1f472.png",sheet_x:17,sheet_y:14,short_name:"man_with_gua_pi_mao",short_names:["man_with_gua_pi_mao"],category:"People",sort_order:129,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F472-1F3FB":{unified:"1F472-1F3FB",image:"1f472-1f3fb.png",sheet_x:17,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FC":{unified:"1F472-1F3FC",image:"1f472-1f3fc.png",sheet_x:17,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FD":{unified:"1F472-1F3FD",image:"1f472-1f3fd.png",sheet_x:17,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FE":{unified:"1F472-1F3FE",image:"1f472-1f3fe.png",sheet_x:17,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F472-1F3FF":{unified:"1F472-1F3FF",image:"1f472-1f3ff.png",sheet_x:17,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},thunder_cloud_and_rain:{name:"Thunder Cloud and Rain",unified:"26C8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26c8.png",sheet_x:2,sheet_y:22,short_name:"thunder_cloud_and_rain",short_names:["thunder_cloud_and_rain"],category:"Nature",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},up:{name:"Squared Up with Exclamation Mark",unified:"1F199",variations:[],docomo:null,au:"E50F",softbank:"E213",google:"FEB37",image:"1f199.png",sheet_x:5,sheet_y:4,short_name:"up",short_names:["up"],category:"Symbols",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},man_with_turban:{name:"Man with Turban",unified:"1F473",variations:[],docomo:null,au:"EB15",softbank:"E517",google:"FE1A6",image:"1f473.png",sheet_x:17,sheet_y:20,short_name:"man_with_turban",short_names:["man_with_turban"],category:"People",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F473-1F3FB":{unified:"1F473-1F3FB",image:"1f473-1f3fb.png",sheet_x:17,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FC":{unified:"1F473-1F3FC",image:"1f473-1f3fc.png",sheet_x:17,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FD":{unified:"1F473-1F3FD",image:"1f473-1f3fd.png",sheet_x:17,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FE":{unified:"1F473-1F3FE",image:"1f473-1f3fe.png",sheet_x:17,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F473-1F3FF":{unified:"1F473-1F3FF",image:"1f473-1f3ff.png",sheet_x:17,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},chart_with_downwards_trend:{name:"Chart with Downwards Trend",unified:"1F4C9",variations:[],docomo:null,au:"E576",softbank:null,google:"FE54C",image:"1f4c9.png",sheet_x:21,sheet_y:12,short_name:"chart_with_downwards_trend",short_names:["chart_with_downwards_trend"],category:"Objects",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mo":{name:"Regional Indicator Symbol Letters MO",unified:"1F1F2-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f4.png",sheet_x:36,sheet_y:22,short_name:"flag-mo",short_names:["flag-mo"],category:"Flags",sort_order:130,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},page_facing_up:{name:"Page Facing Up",unified:"1F4C4",variations:[],docomo:"E689",au:"E569",softbank:"E301",google:"FE541",image:"1f4c4.png",sheet_x:21,sheet_y:7,short_name:"page_facing_up",short_names:["page_facing_up"],category:"Objects",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cool:{name:"Squared Cool",unified:"1F192",variations:[],docomo:null,au:"EA85",softbank:"E214",google:"FEB38",image:"1f192.png",sheet_x:4,sheet_y:38,short_name:"cool",short_names:["cool"],category:"Symbols",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lightning:{name:"Cloud with Lightning",unified:"1F329",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f329.png",sheet_x:6,sheet_y:19,short_name:"lightning",short_names:["lightning","lightning_cloud"],category:"Nature",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mk":{name:"Regional Indicator Symbol Letters MK",unified:"1F1F2-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f0.png",sheet_x:36,sheet_y:18,short_name:"flag-mk",short_names:["flag-mk"],category:"Flags",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},cop:{name:"Police Officer",unified:"1F46E",variations:[],docomo:null,au:"E5DD",softbank:"E152",google:"FE1A1",image:"1f46e.png",sheet_x:16,sheet_y:36,short_name:"cop",short_names:["cop"],category:"People",sort_order:131,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F46E-1F3FB":{unified:"1F46E-1F3FB",image:"1f46e-1f3fb.png",sheet_x:16,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FC":{unified:"1F46E-1F3FC",image:"1f46e-1f3fc.png",sheet_x:16,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FD":{unified:"1F46E-1F3FD",image:"1f46e-1f3fd.png",sheet_x:16,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FE":{unified:"1F46E-1F3FE",image:"1f46e-1f3fe.png",sheet_x:16,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F46E-1F3FF":{unified:"1F46E-1F3FF",image:"1f46e-1f3ff.png",sheet_x:17,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-mg":{name:"Regional Indicator Symbol Letters MG",unified:"1F1F2-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ec.png",sheet_x:36,sheet_y:16,short_name:"flag-mg",short_names:["flag-mg"],category:"Flags",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},date:{name:"Calendar",unified:"1F4C5",variations:[],docomo:null,au:"E563",softbank:null,google:"FE542",image:"1f4c5.png",sheet_x:21,sheet_y:8,short_name:"date",short_names:["date"],category:"Objects",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"new":{name:"Squared New",unified:"1F195",variations:[],docomo:"E6DD",au:"E5B5",softbank:"E212",google:"FEB36",image:"1f195.png",sheet_x:5,sheet_y:0,short_name:"new",short_names:["new"],category:"Symbols",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},zap:{name:"High Voltage Sign",unified:"26A1",variations:["26A1-FE0F"],docomo:"E642",au:"E487",softbank:"E13D",google:"FE004",image:"26a1.png",sheet_x:2,sheet_y:13,short_name:"zap",short_names:["zap"],category:"Nature",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},construction_worker:{name:"Construction Worker",unified:"1F477",variations:[],docomo:null,au:"EB19",softbank:"E51B",google:"FE1AA",image:"1f477.png",sheet_x:18,sheet_y:3,short_name:"construction_worker",short_names:["construction_worker"],category:"People",sort_order:132,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F477-1F3FB":{unified:"1F477-1F3FB",image:"1f477-1f3fb.png",sheet_x:18,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FC":{unified:"1F477-1F3FC",image:"1f477-1f3fc.png",sheet_x:18,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FD":{unified:"1F477-1F3FD",image:"1f477-1f3fd.png",sheet_x:18,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FE":{unified:"1F477-1F3FE",image:"1f477-1f3fe.png",sheet_x:18,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F477-1F3FF":{unified:"1F477-1F3FF",image:"1f477-1f3ff.png",sheet_x:18,sheet_y:8,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},guardsman:{name:"Guardsman",unified:"1F482",variations:[],docomo:null,au:null,softbank:"E51E",google:"FE1B5",image:"1f482.png",sheet_x:18,sheet_y:34,short_name:"guardsman",short_names:["guardsman"],category:"People",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F482-1F3FB":{unified:"1F482-1F3FB",image:"1f482-1f3fb.png", +sheet_x:18,sheet_y:35,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FC":{unified:"1F482-1F3FC",image:"1f482-1f3fc.png",sheet_x:18,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FD":{unified:"1F482-1F3FD",image:"1f482-1f3fd.png",sheet_x:18,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FE":{unified:"1F482-1F3FE",image:"1f482-1f3fe.png",sheet_x:18,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F482-1F3FF":{unified:"1F482-1F3FF",image:"1f482-1f3ff.png",sheet_x:18,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},fire:{name:"Fire",unified:"1F525",variations:[],docomo:null,au:"E47B",softbank:"E11D",google:"FE4F6",image:"1f525.png",sheet_x:23,sheet_y:21,short_name:"fire",short_names:["fire"],category:"Nature",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},free:{name:"Squared Free",unified:"1F193",variations:[],docomo:"E6D7",au:"E578",softbank:null,google:"FEB21",image:"1f193.png",sheet_x:4,sheet_y:39,short_name:"free",short_names:["free"],category:"Symbols",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mw":{name:"Regional Indicator Symbol Letters MW",unified:"1F1F2-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fc.png",sheet_x:36,sheet_y:30,short_name:"flag-mw",short_names:["flag-mw"],category:"Flags",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},calendar:{name:"Tear-off Calendar",unified:"1F4C6",variations:[],docomo:null,au:"E56A",softbank:null,google:"FE549",image:"1f4c6.png",sheet_x:21,sheet_y:9,short_name:"calendar",short_names:["calendar"],category:"Objects",sort_order:133,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spiral_calendar_pad:{name:"Spiral Calendar Pad",unified:"1F5D3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d3.png",sheet_x:26,sheet_y:0,short_name:"spiral_calendar_pad",short_names:["spiral_calendar_pad"],category:"Objects",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boom:{name:"Collision Symbol",unified:"1F4A5",variations:[],docomo:"E705",au:"E5B0",softbank:null,google:"FEB5A",image:"1f4a5.png",sheet_x:20,sheet_y:12,short_name:"boom",short_names:["boom","collision"],category:"Nature",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-my":{name:"Regional Indicator Symbol Letters MY",unified:"1F1F2-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fe.png",sheet_x:36,sheet_y:32,short_name:"flag-my",short_names:["flag-my"],category:"Flags",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},zero:{name:"Keycap 0",unified:"0030-20E3",variations:["0030-FE0F-20E3"],docomo:"E6EB",au:"E5AC",softbank:"E225",google:"FE837",image:"0030-20e3.png",sheet_x:32,sheet_y:23,short_name:"zero",short_names:["zero"],category:"Symbols",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sleuth_or_spy:{name:"Sleuth or Spy",unified:"1F575",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f575.png",sheet_x:24,sheet_y:39,short_name:"sleuth_or_spy",short_names:["sleuth_or_spy"],category:"People",sort_order:134,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F575-1F3FB":{unified:"1F575-1F3FB",image:"1f575-1f3fb.png",sheet_x:24,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FC":{unified:"1F575-1F3FC",image:"1f575-1f3fc.png",sheet_x:25,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FD":{unified:"1F575-1F3FD",image:"1f575-1f3fd.png",sheet_x:25,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FE":{unified:"1F575-1F3FE",image:"1f575-1f3fe.png",sheet_x:25,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0},"1F575-1F3FF":{unified:"1F575-1F3FF",image:"1f575-1f3ff.png",sheet_x:25,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!1,has_img_emojione:!0}},emoticons:[]},one:{name:"Keycap 1",unified:"0031-20E3",variations:["0031-FE0F-20E3"],docomo:"E6E2",au:"E522",softbank:"E21C",google:"FE82E",image:"0031-20e3.png",sheet_x:32,sheet_y:24,short_name:"one",short_names:["one"],category:"Symbols",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},santa:{name:"Father Christmas",unified:"1F385",variations:[],docomo:null,au:"EAF0",softbank:"E448",google:"FE513",image:"1f385.png",sheet_x:8,sheet_y:29,short_name:"santa",short_names:["santa"],category:"People",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F385-1F3FB":{unified:"1F385-1F3FB",image:"1f385-1f3fb.png",sheet_x:8,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FC":{unified:"1F385-1F3FC",image:"1f385-1f3fc.png",sheet_x:8,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FD":{unified:"1F385-1F3FD",image:"1f385-1f3fd.png",sheet_x:8,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FE":{unified:"1F385-1F3FE",image:"1f385-1f3fe.png",sheet_x:8,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F385-1F3FF":{unified:"1F385-1F3FF",image:"1f385-1f3ff.png",sheet_x:8,sheet_y:34,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},card_index:{name:"Card Index",unified:"1F4C7",variations:[],docomo:"E683",au:"E56C",softbank:"E148",google:"FE54D",image:"1f4c7.png",sheet_x:21,sheet_y:10,short_name:"card_index",short_names:["card_index"],category:"Objects",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snowflake:{name:"Snowflake",unified:"2744",variations:["2744-FE0F"],docomo:null,au:"E48A",softbank:null,google:"FE00E",image:"2744.png",sheet_x:4,sheet_y:1,short_name:"snowflake",short_names:["snowflake"],category:"Nature",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mv":{name:"Regional Indicator Symbol Letters MV",unified:"1F1F2-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fb.png",sheet_x:36,sheet_y:29,short_name:"flag-mv",short_names:["flag-mv"],category:"Flags",sort_order:135,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snow_cloud:{name:"Cloud with Snow",unified:"1F328",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f328.png",sheet_x:6,sheet_y:18,short_name:"snow_cloud",short_names:["snow_cloud"],category:"Nature",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},angel:{name:"Baby Angel",unified:"1F47C",variations:[],docomo:null,au:"E5BF",softbank:"E04E",google:"FE1AF",image:"1f47c.png",sheet_x:18,sheet_y:18,short_name:"angel",short_names:["angel"],category:"People",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F47C-1F3FB":{unified:"1F47C-1F3FB",image:"1f47c-1f3fb.png",sheet_x:18,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FC":{unified:"1F47C-1F3FC",image:"1f47c-1f3fc.png",sheet_x:18,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FD":{unified:"1F47C-1F3FD",image:"1f47c-1f3fd.png",sheet_x:18,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FE":{unified:"1F47C-1F3FE",image:"1f47c-1f3fe.png",sheet_x:18,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F47C-1F3FF":{unified:"1F47C-1F3FF",image:"1f47c-1f3ff.png",sheet_x:18,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},two:{name:"Keycap 2",unified:"0032-20E3",variations:["0032-FE0F-20E3"],docomo:"E6E3",au:"E523",softbank:"E21D",google:"FE82F",image:"0032-20e3.png",sheet_x:32,sheet_y:25,short_name:"two",short_names:["two"],category:"Symbols",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},card_file_box:{name:"Card File Box",unified:"1F5C3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c3.png",sheet_x:25,sheet_y:37,short_name:"card_file_box",short_names:["card_file_box"],category:"Objects",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ml":{name:"Regional Indicator Symbol Letters ML",unified:"1F1F2-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f1.png",sheet_x:36,sheet_y:19,short_name:"flag-ml",short_names:["flag-ml"],category:"Flags",sort_order:136,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},three:{name:"Keycap 3",unified:"0033-20E3",variations:["0033-FE0F-20E3"],docomo:"E6E4",au:"E524",softbank:"E21E",google:"FE830",image:"0033-20e3.png",sheet_x:32,sheet_y:26,short_name:"three",short_names:["three"],category:"Symbols",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},princess:{name:"Princess",unified:"1F478",variations:[],docomo:null,au:"EB1A",softbank:"E51C",google:"FE1AB",image:"1f478.png",sheet_x:18,sheet_y:9,short_name:"princess",short_names:["princess"],category:"People",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F478-1F3FB":{unified:"1F478-1F3FB",image:"1f478-1f3fb.png",sheet_x:18,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FC":{unified:"1F478-1F3FC",image:"1f478-1f3fc.png",sheet_x:18,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FD":{unified:"1F478-1F3FD",image:"1f478-1f3fd.png",sheet_x:18,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FE":{unified:"1F478-1F3FE",image:"1f478-1f3fe.png",sheet_x:18,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F478-1F3FF":{unified:"1F478-1F3FF",image:"1f478-1f3ff.png",sheet_x:18,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},snowman:{name:"Snowman",unified:"2603",variations:["2603-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2603.png",sheet_x:1,sheet_y:3,short_name:"snowman",short_names:["snowman"],category:"Nature",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ballot_box_with_ballot:{name:"Ballot Box with Ballot",unified:"1F5F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5f3.png",sheet_x:26,sheet_y:8,short_name:"ballot_box_with_ballot",short_names:["ballot_box_with_ballot"],category:"Objects",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mt":{name:"Regional Indicator Symbol Letters MT",unified:"1F1F2-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f9.png",sheet_x:36,sheet_y:27,short_name:"flag-mt",short_names:["flag-mt"],category:"Flags",sort_order:137,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},file_cabinet:{name:"File Cabinet",unified:"1F5C4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c4.png",sheet_x:25,sheet_y:38,short_name:"file_cabinet",short_names:["file_cabinet"],category:"Objects",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bride_with_veil:{name:"Bride with Veil",unified:"1F470",variations:[],docomo:null,au:"EAE9",softbank:null,google:"FE1A3",image:"1f470.png",sheet_x:17,sheet_y:2,short_name:"bride_with_veil",short_names:["bride_with_veil"],category:"People",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F470-1F3FB":{unified:"1F470-1F3FB",image:"1f470-1f3fb.png",sheet_x:17,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FC":{unified:"1F470-1F3FC",image:"1f470-1f3fc.png",sheet_x:17,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FD":{unified:"1F470-1F3FD",image:"1f470-1f3fd.png",sheet_x:17,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FE":{unified:"1F470-1F3FE",image:"1f470-1f3fe.png",sheet_x:17,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F470-1F3FF":{unified:"1F470-1F3FF",image:"1f470-1f3ff.png",sheet_x:17,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-mh":{name:"Regional Indicator Symbol Letters MH",unified:"1F1F2-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ed.png",sheet_x:36,sheet_y:17,short_name:"flag-mh",short_names:["flag-mh"],category:"Flags",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},snowman_without_snow:{name:"Snowman Without Snow",unified:"26C4",variations:["26C4-FE0F"],docomo:"E641",au:"E485",softbank:"E048",google:"FE003",image:"26c4.png",sheet_x:2,sheet_y:20,short_name:"snowman_without_snow",short_names:["snowman_without_snow"],category:"Nature",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},four:{name:"Keycap 4",unified:"0034-20E3",variations:["0034-FE0F-20E3"],docomo:"E6E5",au:"E525",softbank:"E21F",google:"FE831",image:"0034-20e3.png",sheet_x:32,sheet_y:27,short_name:"four",short_names:["four"],category:"Symbols",sort_order:138,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clipboard:{name:"Clipboard",unified:"1F4CB",variations:[],docomo:"E689",au:"E564",softbank:"E301",google:"FE548",image:"1f4cb.png",sheet_x:21,sheet_y:14,short_name:"clipboard",short_names:["clipboard"],category:"Objects",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wind_blowing_face:{name:"Wind Blowing Face",unified:"1F32C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32c.png",sheet_x:6,sheet_y:22,short_name:"wind_blowing_face",short_names:["wind_blowing_face"],category:"Nature",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},five:{name:"Keycap 5",unified:"0035-20E3",variations:["0035-FE0F-20E3"],docomo:"E6E6",au:"E526",softbank:"E220",google:"FE832",image:"0035-20e3.png",sheet_x:32,sheet_y:28,short_name:"five",short_names:["five"],category:"Symbols",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},walking:{name:"Pedestrian",unified:"1F6B6",variations:[],docomo:"E733",au:"EB72",softbank:"E201",google:"FE7F0",image:"1f6b6.png",sheet_x:30,sheet_y:40,short_name:"walking",short_names:["walking"],category:"People",sort_order:139,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F6B6-1F3FB":{unified:"1F6B6-1F3FB",image:"1f6b6-1f3fb.png",sheet_x:31,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FC":{unified:"1F6B6-1F3FC",image:"1f6b6-1f3fc.png",sheet_x:31,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FD":{unified:"1F6B6-1F3FD",image:"1f6b6-1f3fd.png",sheet_x:31,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FE":{unified:"1F6B6-1F3FE",image:"1f6b6-1f3fe.png",sheet_x:31,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F6B6-1F3FF":{unified:"1F6B6-1F3FF",image:"1f6b6-1f3ff.png",sheet_x:31,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-mq":{name:"Regional Indicator Symbol Letters MQ",unified:"1F1F2-1F1F6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f6.png",sheet_x:36,sheet_y:24,short_name:"flag-mq",short_names:["flag-mq"],category:"Flags",sort_order:139,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},six:{name:"Keycap 6",unified:"0036-20E3",variations:["0036-FE0F-20E3"],docomo:"E6E7",au:"E527",softbank:"E221",google:"FE833",image:"0036-20e3.png",sheet_x:32,sheet_y:29,short_name:"six",short_names:["six"],category:"Symbols",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dash:{name:"Dash Symbol",unified:"1F4A8",variations:[],docomo:"E708",au:"E4F4",softbank:"E330",google:"FEB5D",image:"1f4a8.png",sheet_x:20,sheet_y:15,short_name:"dash",short_names:["dash"],category:"Nature",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mr":{name:"Regional Indicator Symbol Letters MR",unified:"1F1F2-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f7.png",sheet_x:36,sheet_y:25,short_name:"flag-mr",short_names:["flag-mr"],category:"Flags",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},runner:{name:"Runner",unified:"1F3C3",variations:[],docomo:"E733",au:"E46B",softbank:"E115",google:"FE7D9",image:"1f3c3.png",sheet_x:10,sheet_y:9,short_name:"runner",short_names:["runner","running"],category:"People",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F3C3-1F3FB":{unified:"1F3C3-1F3FB",image:"1f3c3-1f3fb.png",sheet_x:10,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FC":{unified:"1F3C3-1F3FC",image:"1f3c3-1f3fc.png",sheet_x:10,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FD":{unified:"1F3C3-1F3FD",image:"1f3c3-1f3fd.png",sheet_x:10,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FE":{unified:"1F3C3-1F3FE",image:"1f3c3-1f3fe.png",sheet_x:10,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F3C3-1F3FF":{unified:"1F3C3-1F3FF",image:"1f3c3-1f3ff.png",sheet_x:10,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},spiral_note_pad:{name:"Spiral Note Pad",unified:"1F5D2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5d2.png",sheet_x:25,sheet_y:40,short_name:"spiral_note_pad",short_names:["spiral_note_pad"],category:"Objects",sort_order:140,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},seven:{name:"Keycap 7",unified:"0037-20E3",variations:["0037-FE0F-20E3"],docomo:"E6E8",au:"E528",softbank:"E222",google:"FE834",image:"0037-20e3.png",sheet_x:32,sheet_y:30,short_name:"seven",short_names:["seven"],category:"Symbols",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tornado:{name:"Cloud with Tornado",unified:"1F32A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32a.png",sheet_x:6,sheet_y:20,short_name:"tornado",short_names:["tornado","tornado_cloud"],category:"Nature",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},file_folder:{name:"File Folder",unified:"1F4C1",variations:[],docomo:null,au:"E58F",softbank:null,google:"FE543",image:"1f4c1.png",sheet_x:21,sheet_y:4,short_name:"file_folder",short_names:["file_folder"],category:"Objects",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mu":{name:"Regional Indicator Symbol Letters MU",unified:"1F1F2-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fa.png",sheet_x:36,sheet_y:28,short_name:"flag-mu",short_names:["flag-mu"],category:"Flags",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dancer:{name:"Dancer",unified:"1F483",variations:[],docomo:null,au:"EB1C",softbank:"E51F",google:"FE1B6",image:"1f483.png",sheet_x:18,sheet_y:40,short_name:"dancer",short_names:["dancer"],category:"People",sort_order:141,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F483-1F3FB":{unified:"1F483-1F3FB",image:"1f483-1f3fb.png",sheet_x:19,sheet_y:0,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FC":{unified:"1F483-1F3FC",image:"1f483-1f3fc.png",sheet_x:19,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FD":{unified:"1F483-1F3FD",image:"1f483-1f3fd.png",sheet_x:19,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FE":{unified:"1F483-1F3FE",image:"1f483-1f3fe.png",sheet_x:19,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F483-1F3FF":{unified:"1F483-1F3FF",image:"1f483-1f3ff.png",sheet_x:19,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},open_file_folder:{name:"Open File Folder",unified:"1F4C2",variations:[],docomo:null,au:"E590",softbank:null,google:"FE544",image:"1f4c2.png",sheet_x:21,sheet_y:5,short_name:"open_file_folder",short_names:["open_file_folder"],category:"Objects",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eight:{name:"Keycap 8",unified:"0038-20E3",variations:["0038-FE0F-20E3"],docomo:"E6E9",au:"E529",softbank:"E223",google:"FE835",image:"0038-20e3.png",sheet_x:32,sheet_y:31,short_name:"eight",short_names:["eight"],category:"Symbols",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fog:{name:"Fog",unified:"1F32B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f32b.png",sheet_x:6,sheet_y:21,short_name:"fog",short_names:["fog"],category:"Nature",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dancers:{name:"Woman with Bunny Ears",unified:"1F46F",variations:[],docomo:null,au:"EADB",softbank:"E429",google:"FE1A2",image:"1f46f.png",sheet_x:17,sheet_y:1,short_name:"dancers",short_names:["dancers"],category:"People",sort_order:142,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-yt":{name:"Regional Indicator Symbol Letters YT",unified:"1F1FE-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fe-1f1f9.png",sheet_x:38,sheet_y:40,short_name:"flag-yt",short_names:["flag-yt"],category:"Flags",sort_order:142,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mx":{name:"Regional Indicator Symbol Letters MX",unified:"1F1F2-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1fd.png",sheet_x:36,sheet_y:31,short_name:"flag-mx",short_names:["flag-mx"],category:"Flags",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},card_index_dividers:{name:"Card Index Dividers",unified:"1F5C2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5c2.png",sheet_x:25,sheet_y:36,short_name:"card_index_dividers",short_names:["card_index_dividers"],category:"Objects",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},couple:{name:"Man and Woman Holding Hands",unified:"1F46B",variations:[],docomo:null,au:null,softbank:"E428",google:"FE1A0",image:"1f46b.png",sheet_x:16,sheet_y:33,short_name:"couple",short_names:["couple","man_and_woman_holding_hands"],category:"People",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},umbrella:{name:"Umbrella",unified:"2602",variations:["2602-FE0F"],docomo:null,au:null,softbank:null,google:null,image:"2602.png",sheet_x:1,sheet_y:2,short_name:"umbrella",short_names:["umbrella"],category:"Nature",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},nine:{name:"Keycap 9",unified:"0039-20E3",variations:["0039-FE0F-20E3"],docomo:"E6EA",au:"E52A",softbank:"E224",google:"FE836",image:"0039-20e3.png",sheet_x:32,sheet_y:32,short_name:"nine",short_names:["nine"],category:"Symbols",sort_order:143,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rolled_up_newspaper:{name:"Rolled-Up Newspaper",unified:"1F5DE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5de.png",sheet_x:26,sheet_y:3,short_name:"rolled_up_newspaper",short_names:["rolled_up_newspaper"],category:"Objects",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-fm":{name:"Regional Indicator Symbol Letters FM",unified:"1F1EB-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1eb-1f1f2.png",sheet_x:34,sheet_y:28,short_name:"flag-fm",short_names:["flag-fm"],category:"Flags",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},umbrella_with_rain_drops:{name:"Umbrella with Rain Drops",unified:"2614",variations:["2614-FE0F"],docomo:"E640",au:"E48C",softbank:"E04B",google:"FE002",image:"2614.png",sheet_x:1,sheet_y:7,short_name:"umbrella_with_rain_drops",short_names:["umbrella_with_rain_drops"],category:"Nature",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},two_men_holding_hands:{name:"Two Men Holding Hands",unified:"1F46C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f46c.png",sheet_x:16,sheet_y:34,short_name:"two_men_holding_hands",short_names:["two_men_holding_hands"],category:"People",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},keycap_ten:{name:"Keycap Ten",unified:"1F51F",variations:[],docomo:null,au:"E52B",softbank:null,google:"FE83B",image:"1f51f.png",sheet_x:23,sheet_y:15,short_name:"keycap_ten",short_names:["keycap_ten"],category:"Symbols",sort_order:144,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},newspaper:{name:"Newspaper",unified:"1F4F0",variations:[],docomo:null,au:"E58B",softbank:null,google:"FE822",image:"1f4f0.png",sheet_x:22,sheet_y:10,short_name:"newspaper",short_names:["newspaper"],category:"Objects",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},keycap_star:{name:"Keycap Star",unified:"002A-20E3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"002a-20e3.png",sheet_x:32,sheet_y:22,short_name:"keycap_star",short_names:["keycap_star"],category:"Symbols",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-md":{name:"Regional Indicator Symbol Letters MD",unified:"1F1F2-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e9.png",sheet_x:36,sheet_y:13,short_name:"flag-md",short_names:["flag-md"],category:"Flags",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},two_women_holding_hands:{name:"Two Women Holding Hands",unified:"1F46D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f46d.png",sheet_x:16,sheet_y:35,short_name:"two_women_holding_hands",short_names:["two_women_holding_hands"],category:"People",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},droplet:{name:"Droplet",unified:"1F4A7",variations:[],docomo:"E707",au:"E4E6",softbank:"E331",google:"FEB5C",image:"1f4a7.png",sheet_x:20,sheet_y:14,short_name:"droplet",short_names:["droplet"],category:"Nature",sort_order:145,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bow:{name:"Person Bowing Deeply",unified:"1F647",variations:[],docomo:null,au:"EAD9",softbank:"E426",google:"FE353",image:"1f647.png",sheet_x:28,sheet_y:14,short_name:"bow",short_names:["bow"],category:"People",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F647-1F3FB":{unified:"1F647-1F3FB",image:"1f647-1f3fb.png",sheet_x:28,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FC":{unified:"1F647-1F3FC",image:"1f647-1f3fc.png",sheet_x:28,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FD":{unified:"1F647-1F3FD",image:"1f647-1f3fd.png",sheet_x:28,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FE":{unified:"1F647-1F3FE",image:"1f647-1f3fe.png",sheet_x:28,sheet_y:18,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F647-1F3FF":{unified:"1F647-1F3FF",image:"1f647-1f3ff.png",sheet_x:28,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},notebook:{name:"Notebook",unified:"1F4D3",variations:[],docomo:"E683",au:"E56B",softbank:"E148",google:"FE545",image:"1f4d3.png",sheet_x:21,sheet_y:22,short_name:"notebook",short_names:["notebook"],category:"Objects",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sweat_drops:{name:"Splashing Sweat Symbol",unified:"1F4A6",variations:[],docomo:"E706",au:"E5B1",softbank:"E331",google:"FEB5B",image:"1f4a6.png",sheet_x:20,sheet_y:13,short_name:"sweat_drops",short_names:["sweat_drops"],category:"Nature",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mc":{name:"Regional Indicator Symbol Letters MC",unified:"1F1F2-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e8.png",sheet_x:36,sheet_y:12,short_name:"flag-mc",short_names:["flag-mc"],category:"Flags",sort_order:146,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_book:{name:"Closed Book",unified:"1F4D5",variations:[],docomo:"E683",au:"E568",softbank:"E148",google:"FE502",image:"1f4d5.png",sheet_x:21,sheet_y:24,short_name:"closed_book",short_names:["closed_book"],category:"Objects",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mn":{name:"Regional Indicator Symbol Letters MN",unified:"1F1F2-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f3.png",sheet_x:36,sheet_y:21,short_name:"flag-mn",short_names:["flag-mn"],category:"Flags",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_forward:{name:"Black Right-Pointing Triangle",unified:"25B6",variations:["25B6-FE0F"],docomo:null,au:"E52E",softbank:"E23A",google:"FEAFC",image:"25b6.png",sheet_x:0,sheet_y:35,short_name:"arrow_forward",short_names:["arrow_forward"],category:"Symbols",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},information_desk_person:{name:"Information Desk Person",unified:"1F481",variations:[],docomo:null,au:null,softbank:"E253",google:"FE1B4",image:"1f481.png",sheet_x:18,sheet_y:28,short_name:"information_desk_person", +short_names:["information_desk_person"],category:"People",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F481-1F3FB":{unified:"1F481-1F3FB",image:"1f481-1f3fb.png",sheet_x:18,sheet_y:29,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FC":{unified:"1F481-1F3FC",image:"1f481-1f3fc.png",sheet_x:18,sheet_y:30,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FD":{unified:"1F481-1F3FD",image:"1f481-1f3fd.png",sheet_x:18,sheet_y:31,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FE":{unified:"1F481-1F3FE",image:"1f481-1f3fe.png",sheet_x:18,sheet_y:32,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F481-1F3FF":{unified:"1F481-1F3FF",image:"1f481-1f3ff.png",sheet_x:18,sheet_y:33,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},ocean:{name:"Water Wave",unified:"1F30A",variations:[],docomo:"E73F",au:"EB7C",softbank:"E43E",google:"FE038",image:"1f30a.png",sheet_x:5,sheet_y:31,short_name:"ocean",short_names:["ocean"],category:"Nature",sort_order:147,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},double_vertical_bar:{name:"Double Vertical Bar",unified:"23F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f8.png",sheet_x:0,sheet_y:29,short_name:"double_vertical_bar",short_names:["double_vertical_bar"],category:"Symbols",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},green_book:{name:"Green Book",unified:"1F4D7",variations:[],docomo:"E683",au:"E565",softbank:"E148",google:"FE4FF",image:"1f4d7.png",sheet_x:21,sheet_y:26,short_name:"green_book",short_names:["green_book"],category:"Objects",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_good:{name:"Face with No Good Gesture",unified:"1F645",variations:[],docomo:"E72F",au:"EAD7",softbank:"E423",google:"FE351",image:"1f645.png",sheet_x:28,sheet_y:2,short_name:"no_good",short_names:["no_good"],category:"People",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F645-1F3FB":{unified:"1F645-1F3FB",image:"1f645-1f3fb.png",sheet_x:28,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FC":{unified:"1F645-1F3FC",image:"1f645-1f3fc.png",sheet_x:28,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FD":{unified:"1F645-1F3FD",image:"1f645-1f3fd.png",sheet_x:28,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FE":{unified:"1F645-1F3FE",image:"1f645-1f3fe.png",sheet_x:28,sheet_y:6,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F645-1F3FF":{unified:"1F645-1F3FF",image:"1f645-1f3ff.png",sheet_x:28,sheet_y:7,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},"flag-me":{name:"Regional Indicator Symbol Letters ME",unified:"1F1F2-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ea.png",sheet_x:36,sheet_y:14,short_name:"flag-me",short_names:["flag-me"],category:"Flags",sort_order:148,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ms":{name:"Regional Indicator Symbol Letters MS",unified:"1F1F2-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f8.png",sheet_x:36,sheet_y:26,short_name:"flag-ms",short_names:["flag-ms"],category:"Flags",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ok_woman:{name:"Face with Ok Gesture",unified:"1F646",variations:[],docomo:"E70B",au:"EAD8",softbank:"E424",google:"FE352",image:"1f646.png",sheet_x:28,sheet_y:8,short_name:"ok_woman",short_names:["ok_woman"],category:"People",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F646-1F3FB":{unified:"1F646-1F3FB",image:"1f646-1f3fb.png",sheet_x:28,sheet_y:9,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FC":{unified:"1F646-1F3FC",image:"1f646-1f3fc.png",sheet_x:28,sheet_y:10,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FD":{unified:"1F646-1F3FD",image:"1f646-1f3fd.png",sheet_x:28,sheet_y:11,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FE":{unified:"1F646-1F3FE",image:"1f646-1f3fe.png",sheet_x:28,sheet_y:12,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F646-1F3FF":{unified:"1F646-1F3FF",image:"1f646-1f3ff.png",sheet_x:28,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},blue_book:{name:"Blue Book",unified:"1F4D8",variations:[],docomo:"E683",au:"E566",softbank:"E148",google:"FE500",image:"1f4d8.png",sheet_x:21,sheet_y:27,short_name:"blue_book",short_names:["blue_book"],category:"Objects",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_right_pointing_triangle_with_double_vertical_bar:{name:"Black Right-Pointing Triangle with Double Vertical Bar",unified:"23EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ef.png",sheet_x:0,sheet_y:24,short_name:"black_right_pointing_triangle_with_double_vertical_bar",short_names:["black_right_pointing_triangle_with_double_vertical_bar"],category:"Symbols",sort_order:149,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},raising_hand:{name:"Happy Person Raising One Hand",unified:"1F64B",variations:[],docomo:null,au:"EB85",softbank:"E012",google:"FE357",image:"1f64b.png",sheet_x:28,sheet_y:23,short_name:"raising_hand",short_names:["raising_hand"],category:"People",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64B-1F3FB":{unified:"1F64B-1F3FB",image:"1f64b-1f3fb.png",sheet_x:28,sheet_y:24,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FC":{unified:"1F64B-1F3FC",image:"1f64b-1f3fc.png",sheet_x:28,sheet_y:25,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FD":{unified:"1F64B-1F3FD",image:"1f64b-1f3fd.png",sheet_x:28,sheet_y:26,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FE":{unified:"1F64B-1F3FE",image:"1f64b-1f3fe.png",sheet_x:28,sheet_y:27,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64B-1F3FF":{unified:"1F64B-1F3FF",image:"1f64b-1f3ff.png",sheet_x:28,sheet_y:28,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},black_square_for_stop:{name:"Black Square for Stop",unified:"23F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23f9.png",sheet_x:0,sheet_y:30,short_name:"black_square_for_stop",short_names:["black_square_for_stop"],category:"Symbols",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},orange_book:{name:"Orange Book",unified:"1F4D9",variations:[],docomo:"E683",au:"E567",softbank:"E148",google:"FE501",image:"1f4d9.png",sheet_x:21,sheet_y:28,short_name:"orange_book",short_names:["orange_book"],category:"Objects",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ma":{name:"Regional Indicator Symbol Letters MA",unified:"1F1F2-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1e6.png",sheet_x:36,sheet_y:11,short_name:"flag-ma",short_names:["flag-ma"],category:"Flags",sort_order:150,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mz":{name:"Regional Indicator Symbol Letters MZ",unified:"1F1F2-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1ff.png",sheet_x:36,sheet_y:33,short_name:"flag-mz",short_names:["flag-mz"],category:"Flags",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},notebook_with_decorative_cover:{name:"Notebook with Decorative Cover",unified:"1F4D4",variations:[],docomo:"E683",au:"E49D",softbank:"E148",google:"FE547",image:"1f4d4.png",sheet_x:21,sheet_y:23,short_name:"notebook_with_decorative_cover",short_names:["notebook_with_decorative_cover"],category:"Objects",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},person_with_pouting_face:{name:"Person with Pouting Face",unified:"1F64E",variations:[],docomo:"E6F1",au:"EB88",softbank:"E416",google:"FE35A",image:"1f64e.png",sheet_x:29,sheet_y:0,short_name:"person_with_pouting_face",short_names:["person_with_pouting_face"],category:"People",sort_order:151,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64E-1F3FB":{unified:"1F64E-1F3FB",image:"1f64e-1f3fb.png",sheet_x:29,sheet_y:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FC":{unified:"1F64E-1F3FC",image:"1f64e-1f3fc.png",sheet_x:29,sheet_y:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FD":{unified:"1F64E-1F3FD",image:"1f64e-1f3fd.png",sheet_x:29,sheet_y:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FE":{unified:"1F64E-1F3FE",image:"1f64e-1f3fe.png",sheet_x:29,sheet_y:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64E-1F3FF":{unified:"1F64E-1F3FF",image:"1f64e-1f3ff.png",sheet_x:29,sheet_y:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},eject:{name:"Eject Symbol",unified:"23CF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23cf.png",sheet_x:0,sheet_y:17,short_name:"eject",short_names:["eject"],category:"Symbols",sort_order:151,has_img_apple:!1,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!1,emoticons:[]},black_circle_for_record:{name:"Black Circle for Record",unified:"23FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23fa.png",sheet_x:0,sheet_y:31,short_name:"black_circle_for_record",short_names:["black_circle_for_record"],category:"Symbols",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mm":{name:"Regional Indicator Symbol Letters MM",unified:"1F1F2-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f2.png",sheet_x:36,sheet_y:20,short_name:"flag-mm",short_names:["flag-mm"],category:"Flags",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},person_frowning:{name:"Person Frowning",unified:"1F64D",variations:[],docomo:"E6F3",au:"EB87",softbank:"E403",google:"FE359",image:"1f64d.png",sheet_x:28,sheet_y:35,short_name:"person_frowning",short_names:["person_frowning"],category:"People",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F64D-1F3FB":{unified:"1F64D-1F3FB",image:"1f64d-1f3fb.png",sheet_x:28,sheet_y:36,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FC":{unified:"1F64D-1F3FC",image:"1f64d-1f3fc.png",sheet_x:28,sheet_y:37,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FD":{unified:"1F64D-1F3FD",image:"1f64d-1f3fd.png",sheet_x:28,sheet_y:38,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FE":{unified:"1F64D-1F3FE",image:"1f64d-1f3fe.png",sheet_x:28,sheet_y:39,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F64D-1F3FF":{unified:"1F64D-1F3FF",image:"1f64d-1f3ff.png",sheet_x:28,sheet_y:40,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},ledger:{name:"Ledger",unified:"1F4D2",variations:[],docomo:"E683",au:"E56E",softbank:"E148",google:"FE54F",image:"1f4d2.png",sheet_x:21,sheet_y:21,short_name:"ledger",short_names:["ledger"],category:"Objects",sort_order:152,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-na":{name:"Regional Indicator Symbol Letters NA",unified:"1F1F3-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1e6.png",sheet_x:36,sheet_y:34,short_name:"flag-na",short_names:["flag-na"],category:"Flags",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},haircut:{name:"Haircut",unified:"1F487",variations:[],docomo:"E675",au:"EAA1",softbank:"E31F",google:"FE198",image:"1f487.png",sheet_x:19,sheet_y:18,short_name:"haircut",short_names:["haircut"],category:"People",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F487-1F3FB":{unified:"1F487-1F3FB",image:"1f487-1f3fb.png",sheet_x:19,sheet_y:19,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FC":{unified:"1F487-1F3FC",image:"1f487-1f3fc.png",sheet_x:19,sheet_y:20,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FD":{unified:"1F487-1F3FD",image:"1f487-1f3fd.png",sheet_x:19,sheet_y:21,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FE":{unified:"1F487-1F3FE",image:"1f487-1f3fe.png",sheet_x:19,sheet_y:22,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F487-1F3FF":{unified:"1F487-1F3FF",image:"1f487-1f3ff.png",sheet_x:19,sheet_y:23,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},books:{name:"Books",unified:"1F4DA",variations:[],docomo:"E683",au:"E56F",softbank:"E148",google:"FE503",image:"1f4da.png",sheet_x:21,sheet_y:29,short_name:"books",short_names:["books"],category:"Objects",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_right_pointing_double_triangle_with_vertical_bar:{name:"Black Right-Pointing Double Triangle with Vertical Bar",unified:"23ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ed.png",sheet_x:0,sheet_y:22,short_name:"black_right_pointing_double_triangle_with_vertical_bar",short_names:["black_right_pointing_double_triangle_with_vertical_bar"],category:"Symbols",sort_order:153,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},book:{name:"Open Book",unified:"1F4D6",variations:[],docomo:"E683",au:"E49F",softbank:"E148",google:"FE546",image:"1f4d6.png",sheet_x:21,sheet_y:25,short_name:"book",short_names:["book","open_book"],category:"Objects",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-nr":{name:"Regional Indicator Symbol Letters NR",unified:"1F1F3-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f7.png",sheet_x:37,sheet_y:2,short_name:"flag-nr",short_names:["flag-nr"],category:"Flags",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_left_pointing_double_triangle_with_vertical_bar:{name:"Black Left-Pointing Double Triangle with Vertical Bar",unified:"23EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"23ee.png",sheet_x:0,sheet_y:23,short_name:"black_left_pointing_double_triangle_with_vertical_bar",short_names:["black_left_pointing_double_triangle_with_vertical_bar"],category:"Symbols",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},massage:{name:"Face Massage",unified:"1F486",variations:[],docomo:null,au:"E50B",softbank:"E31E",google:"FE197",image:"1f486.png",sheet_x:19,sheet_y:12,short_name:"massage",short_names:["massage"],category:"People",sort_order:154,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,skin_variations:{"1F486-1F3FB":{unified:"1F486-1F3FB",image:"1f486-1f3fb.png",sheet_x:19,sheet_y:13,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FC":{unified:"1F486-1F3FC",image:"1f486-1f3fc.png",sheet_x:19,sheet_y:14,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FD":{unified:"1F486-1F3FD",image:"1f486-1f3fd.png",sheet_x:19,sheet_y:15,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FE":{unified:"1F486-1F3FE",image:"1f486-1f3fe.png",sheet_x:19,sheet_y:16,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0},"1F486-1F3FF":{unified:"1F486-1F3FF",image:"1f486-1f3ff.png",sheet_x:19,sheet_y:17,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0}},emoticons:[]},couple_with_heart:{name:"Couple with Heart",unified:"1F491",variations:[],docomo:"E6ED",au:"EADA",softbank:"E425",google:"FE829",image:"1f491.png",sheet_x:19,sheet_y:33,short_name:"couple_with_heart",short_names:["couple_with_heart"],category:"People",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},fast_forward:{name:"Black Right-Pointing Double Triangle",unified:"23E9",variations:[],docomo:null,au:"E530",softbank:"E23C",google:"FEAFE",image:"23e9.png",sheet_x:0,sheet_y:18,short_name:"fast_forward",short_names:["fast_forward"],category:"Symbols",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-np":{name:"Regional Indicator Symbol Letters NP",unified:"1F1F3-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f5.png",sheet_x:37,sheet_y:1,short_name:"flag-np",short_names:["flag-np"],category:"Flags",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},link:{name:"Link Symbol",unified:"1F517",variations:[],docomo:null,au:"E58A",softbank:null,google:"FEB4B",image:"1f517.png",sheet_x:23,sheet_y:7,short_name:"link",short_names:["link"],category:"Objects",sort_order:155,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},paperclip:{name:"Paperclip",unified:"1F4CE",variations:[],docomo:"E730",au:"E4A0",softbank:null,google:"FE53A",image:"1f4ce.png",sheet_x:21,sheet_y:17,short_name:"paperclip",short_names:["paperclip"],category:"Objects",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},rewind:{name:"Black Left-Pointing Double Triangle",unified:"23EA",variations:[],docomo:null,au:"E52F",softbank:"E23D",google:"FEAFF",image:"23ea.png",sheet_x:0,sheet_y:19,short_name:"rewind",short_names:["rewind"],category:"Symbols",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-heart-woman":{name:"Woman Heart Woman",unified:"1F469-200D-2764-FE0F-200D-1F469",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-2764-fe0f-200d-1f469.png",sheet_x:39,sheet_y:19,short_name:"woman-heart-woman",short_names:["woman-heart-woman"],category:"People",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},"flag-nl":{name:"Regional Indicator Symbol Letters NL",unified:"1F1F3-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f1.png",sheet_x:36,sheet_y:40,short_name:"flag-nl",short_names:["flag-nl"],category:"Flags",sort_order:156,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},linked_paperclips:{name:"Linked Paperclips",unified:"1F587",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f587.png",sheet_x:25,sheet_y:8,short_name:"linked_paperclips",short_names:["linked_paperclips"],category:"Objects",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-heart-man":{name:"Man Heart Man",unified:"1F468-200D-2764-FE0F-200D-1F468",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-2764-fe0f-200d-1f468.png",sheet_x:39,sheet_y:12,short_name:"man-heart-man",short_names:["man-heart-man"],category:"People",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},"flag-nc":{name:"Regional Indicator Symbol Letters NC",unified:"1F1F3-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1e8.png",sheet_x:36,sheet_y:35,short_name:"flag-nc",short_names:["flag-nc"],category:"Flags",sort_order:157,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},twisted_rightwards_arrows:{name:"Twisted Rightwards Arrows",unified:"1F500",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f500.png",sheet_x:22,sheet_y:25,short_name:"twisted_rightwards_arrows",short_names:["twisted_rightwards_arrows"],category:"Symbols",sort_order:157,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},couplekiss:{name:"Kiss",unified:"1F48F",variations:[],docomo:"E6F9",au:"E5CA",softbank:"E111",google:"FE827",image:"1f48f.png",sheet_x:19,sheet_y:31,short_name:"couplekiss",short_names:["couplekiss"],category:"People",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-nz":{name:"Regional Indicator Symbol Letters NZ",unified:"1F1F3-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ff.png",sheet_x:37,sheet_y:4,short_name:"flag-nz",short_names:["flag-nz"],category:"Flags",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},scissors:{name:"Black Scissors",unified:"2702",variations:["2702-FE0F"],docomo:"E675",au:"E516",softbank:"E313",google:"FE53E",image:"2702.png",sheet_x:3,sheet_y:5,short_name:"scissors",short_names:["scissors"],category:"Objects",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},repeat:{name:"Clockwise Rightwards and Leftwards Open Circle Arrows",unified:"1F501",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f501.png",sheet_x:22,sheet_y:26,short_name:"repeat",short_names:["repeat"],category:"Symbols",sort_order:158,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},repeat_one:{name:"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay",unified:"1F502",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f502.png",sheet_x:22,sheet_y:27,short_name:"repeat_one",short_names:["repeat_one"],category:"Symbols",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ni":{name:"Regional Indicator Symbol Letters NI",unified:"1F1F3-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ee.png",sheet_x:36,sheet_y:39,short_name:"flag-ni",short_names:["flag-ni"],category:"Flags",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-kiss-woman":{name:"Woman Kiss Woman",unified:"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png",sheet_x:39,sheet_y:20,short_name:"woman-kiss-woman",short_names:["woman-kiss-woman"],category:"People",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},triangular_ruler:{name:"Triangular Ruler",unified:"1F4D0",variations:[],docomo:null,au:"E4A2",softbank:null,google:"FE551",image:"1f4d0.png",sheet_x:21,sheet_y:19,short_name:"triangular_ruler",short_names:["triangular_ruler"],category:"Objects",sort_order:159,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},straight_ruler:{name:"Straight Ruler",unified:"1F4CF",variations:[],docomo:null,au:"E570",softbank:null,google:"FE550",image:"1f4cf.png",sheet_x:21,sheet_y:18,short_name:"straight_ruler",short_names:["straight_ruler"],category:"Objects",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ne":{name:"Regional Indicator Symbol Letters NE",unified:"1F1F3-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ea.png",sheet_x:36,sheet_y:36,short_name:"flag-ne",short_names:["flag-ne"],category:"Flags",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-kiss-man":{name:"Man Kiss Man",unified:"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png",sheet_x:39,sheet_y:13,short_name:"man-kiss-man",short_names:["man-kiss-man"],category:"People",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},arrow_backward:{name:"Black Left-Pointing Triangle",unified:"25C0",variations:["25C0-FE0F"],docomo:null,au:"E52D",softbank:"E23B",google:"FEAFD",image:"25c0.png",sheet_x:0,sheet_y:36,short_name:"arrow_backward",short_names:["arrow_backward"],category:"Symbols",sort_order:160,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up_small:{name:"Up-Pointing Small Red Triangle",unified:"1F53C",variations:[],docomo:null,au:"E543",softbank:null,google:"FEB01",image:"1f53c.png",sheet_x:24,sheet_y:3,short_name:"arrow_up_small",short_names:["arrow_up_small"],category:"Symbols",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ng":{name:"Regional Indicator Symbol Letters NG",unified:"1F1F3-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1ec.png",sheet_x:36,sheet_y:38,short_name:"flag-ng",short_names:["flag-ng"],category:"Flags",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},family:{name:"Family",unified:"1F46A",variations:["1F468-200D-1F469-200D-1F466"],docomo:null,au:"E501",softbank:null,google:"FE19F",image:"1f46a.png",sheet_x:16,sheet_y:32,short_name:"family",short_names:["family","man-woman-boy"],category:"People",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pushpin:{name:"Pushpin",unified:"1F4CC",variations:[],docomo:null,au:"E56D",softbank:null,google:"FE54E",image:"1f4cc.png",sheet_x:21,sheet_y:15,short_name:"pushpin",short_names:["pushpin"],category:"Objects",sort_order:161,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-woman-girl":{name:"Man Woman Girl",unified:"1F468-200D-1F469-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:9,short_name:"man-woman-girl",short_names:["man-woman-girl"],category:"People",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},round_pushpin:{name:"Round Pushpin",unified:"1F4CD",variations:[],docomo:null,au:"E560",softbank:null,google:"FE53F",image:"1f4cd.png",sheet_x:21,sheet_y:16,short_name:"round_pushpin",short_names:["round_pushpin"],category:"Objects",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_down_small:{name:"Down-Pointing Small Red Triangle",unified:"1F53D",variations:[],docomo:null,au:"E542",softbank:null,google:"FEB00",image:"1f53d.png",sheet_x:24,sheet_y:4,short_name:"arrow_down_small",short_names:["arrow_down_small"],category:"Symbols",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-nu":{name:"Regional Indicator Symbol Letters NU",unified:"1F1F3-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1fa.png",sheet_x:37,sheet_y:3,short_name:"flag-nu",short_names:["flag-nu"],category:"Flags",sort_order:162,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-nf":{name:"Regional Indicator Symbol Letters NF",unified:"1F1F3-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1eb.png",sheet_x:36,sheet_y:37,short_name:"flag-nf",short_names:["flag-nf"],category:"Flags",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},triangular_flag_on_post:{name:"Triangular Flag on Post",unified:"1F6A9",variations:[],docomo:"E6DE",au:"EB2C",softbank:null,google:"FEB22",image:"1f6a9.png",sheet_x:30,sheet_y:17,short_name:"triangular_flag_on_post",short_names:["triangular_flag_on_post"],category:"Objects",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-woman-girl-boy":{name:"Man Woman Girl Boy",unified:"1F468-200D-1F469-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:10,short_name:"man-woman-girl-boy",short_names:["man-woman-girl-boy"],category:"People",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_double_up:{name:"Black Up-Pointing Double Triangle",unified:"23EB",variations:[],docomo:null,au:"E545",softbank:null,google:"FEB03",image:"23eb.png",sheet_x:0,sheet_y:20,short_name:"arrow_double_up",short_names:["arrow_double_up"],category:"Symbols",sort_order:163,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-woman-boy-boy":{name:"Man Woman Boy Boy",unified:"1F468-200D-1F469-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:8,short_name:"man-woman-boy-boy",short_names:["man-woman-boy-boy"],category:"People",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mp":{name:"Regional Indicator Symbol Letters MP",unified:"1F1F2-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1f5.png",sheet_x:36,sheet_y:23,short_name:"flag-mp",short_names:["flag-mp"],category:"Flags",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waving_white_flag:{name:"Waving White Flag",unified:"1F3F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f3.png",sheet_x:11,sheet_y:34,short_name:"waving_white_flag",short_names:["waving_white_flag"],category:"Objects",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_double_down:{name:"Black Down-Pointing Double Triangle",unified:"23EC",variations:[],docomo:null,au:"E544",softbank:null,google:"FEB02",image:"23ec.png",sheet_x:0,sheet_y:21,short_name:"arrow_double_down",short_names:["arrow_double_down"],category:"Symbols",sort_order:164,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-woman-girl-girl":{name:"Man Woman Girl Girl",unified:"1F468-200D-1F469-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f469-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:11,short_name:"man-woman-girl-girl",short_names:["man-woman-girl-girl"],category:"People",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kp":{name:"Regional Indicator Symbol Letters KP",unified:"1F1F0-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f5.png",sheet_x:35,sheet_y:36,short_name:"flag-kp",short_names:["flag-kp"],category:"Flags",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},waving_black_flag:{ +name:"Waving Black Flag",unified:"1F3F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f4.png",sheet_x:11,sheet_y:35,short_name:"waving_black_flag",short_names:["waving_black_flag"],category:"Objects",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_right:{name:"Black Rightwards Arrow",unified:"27A1",variations:["27A1-FE0F"],docomo:null,au:"E552",softbank:"E234",google:"FEAFA",image:"27a1.png",sheet_x:4,sheet_y:14,short_name:"arrow_right",short_names:["arrow_right"],category:"Symbols",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-no":{name:"Regional Indicator Symbol Letters NO",unified:"1F1F3-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f4.png",sheet_x:37,sheet_y:0,short_name:"flag-no",short_names:["flag-no"],category:"Flags",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-boy":{name:"Woman Woman Boy",unified:"1F469-200D-1F469-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466.png",sheet_x:39,sheet_y:14,short_name:"woman-woman-boy",short_names:["woman-woman-boy"],category:"People",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_left:{name:"Leftwards Black Arrow",unified:"2B05",variations:["2B05-FE0F"],docomo:null,au:"E553",softbank:"E235",google:"FEAFB",image:"2b05.png",sheet_x:4,sheet_y:19,short_name:"arrow_left",short_names:["arrow_left"],category:"Symbols",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_lock_with_key:{name:"Closed Lock with Key",unified:"1F510",variations:[],docomo:"E6D9",au:"EAFC",softbank:"E144",google:"FEB8A",image:"1f510.png",sheet_x:23,sheet_y:0,short_name:"closed_lock_with_key",short_names:["closed_lock_with_key"],category:"Objects",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-om":{name:"Regional Indicator Symbol Letters OM",unified:"1F1F4-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f4-1f1f2.png",sheet_x:37,sheet_y:5,short_name:"flag-om",short_names:["flag-om"],category:"Flags",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lock:{name:"Lock",unified:"1F512",variations:[],docomo:"E6D9",au:"E51C",softbank:"E144",google:"FEB86",image:"1f512.png",sheet_x:23,sheet_y:2,short_name:"lock",short_names:["lock"],category:"Objects",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up:{name:"Upwards Black Arrow",unified:"2B06",variations:["2B06-FE0F"],docomo:null,au:"E53F",softbank:"E232",google:"FEAF8",image:"2b06.png",sheet_x:4,sheet_y:20,short_name:"arrow_up",short_names:["arrow_up"],category:"Symbols",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl":{name:"Woman Woman Girl",unified:"1F469-200D-1F469-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:16,short_name:"woman-woman-girl",short_names:["woman-woman-girl"],category:"People",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_down:{name:"Downwards Black Arrow",unified:"2B07",variations:["2B07-FE0F"],docomo:null,au:"E540",softbank:"E233",google:"FEAF9",image:"2b07.png",sheet_x:4,sheet_y:21,short_name:"arrow_down",short_names:["arrow_down"],category:"Symbols",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pk":{name:"Regional Indicator Symbol Letters PK",unified:"1F1F5-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f0.png",sheet_x:37,sheet_y:11,short_name:"flag-pk",short_names:["flag-pk"],category:"Flags",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl-boy":{name:"Woman Woman Girl Boy",unified:"1F469-200D-1F469-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:17,short_name:"woman-woman-girl-boy",short_names:["woman-woman-girl-boy"],category:"People",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},unlock:{name:"Open Lock",unified:"1F513",variations:[],docomo:"E6D9",au:"E51C",softbank:"E145",google:"FEB87",image:"1f513.png",sheet_x:23,sheet_y:3,short_name:"unlock",short_names:["unlock"],category:"Objects",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-boy-boy":{name:"Woman Woman Boy Boy",unified:"1F469-200D-1F469-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:15,short_name:"woman-woman-boy-boy",short_names:["woman-woman-boy-boy"],category:"People",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lock_with_ink_pen:{name:"Lock with Ink Pen",unified:"1F50F",variations:[],docomo:"E6D9",au:"EB0C",softbank:"E144",google:"FEB90",image:"1f50f.png",sheet_x:22,sheet_y:40,short_name:"lock_with_ink_pen",short_names:["lock_with_ink_pen"],category:"Objects",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pw":{name:"Regional Indicator Symbol Letters PW",unified:"1F1F5-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fc.png",sheet_x:37,sheet_y:18,short_name:"flag-pw",short_names:["flag-pw"],category:"Flags",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_upper_right:{name:"North East Arrow",unified:"2197",variations:["2197-FE0F"],docomo:"E678",au:"E555",softbank:"E236",google:"FEAF0",image:"2197.png",sheet_x:0,sheet_y:9,short_name:"arrow_upper_right",short_names:["arrow_upper_right"],category:"Symbols",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl-girl":{name:"Woman Woman Girl Girl",unified:"1F469-200D-1F469-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:18,short_name:"woman-woman-girl-girl",short_names:["woman-woman-girl-girl"],category:"People",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_lower_right:{name:"South East Arrow",unified:"2198",variations:["2198-FE0F"],docomo:"E696",au:"E54D",softbank:"E238",google:"FEAF1",image:"2198.png",sheet_x:0,sheet_y:10,short_name:"arrow_lower_right",short_names:["arrow_lower_right"],category:"Symbols",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_ballpoint_pen:{name:"Lower Left Ballpoint Pen",unified:"1F58A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58a.png",sheet_x:25,sheet_y:9,short_name:"lower_left_ballpoint_pen",short_names:["lower_left_ballpoint_pen"],category:"Objects",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ps":{name:"Regional Indicator Symbol Letters PS",unified:"1F1F5-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f8.png",sheet_x:37,sheet_y:16,short_name:"flag-ps",short_names:["flag-ps"],category:"Flags",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pa":{name:"Regional Indicator Symbol Letters PA",unified:"1F1F5-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1e6.png",sheet_x:37,sheet_y:6,short_name:"flag-pa",short_names:["flag-pa"],category:"Flags",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_fountain_pen:{name:"Lower Left Fountain Pen",unified:"1F58B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58b.png",sheet_x:25,sheet_y:10,short_name:"lower_left_fountain_pen",short_names:["lower_left_fountain_pen"],category:"Objects",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_lower_left:{name:"South West Arrow",unified:"2199",variations:["2199-FE0F"],docomo:"E6A5",au:"E556",softbank:"E239",google:"FEAF3",image:"2199.png",sheet_x:0,sheet_y:11,short_name:"arrow_lower_left",short_names:["arrow_lower_left"],category:"Symbols",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-boy":{name:"Man Man Boy",unified:"1F468-200D-1F468-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466.png",sheet_x:39,sheet_y:3,short_name:"man-man-boy",short_names:["man-man-boy"],category:"People",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_nib:{name:"Black Nib",unified:"2712",variations:["2712-FE0F"],docomo:"E6AE",au:"EB03",softbank:null,google:"FE536",image:"2712.png",sheet_x:3,sheet_y:34,short_name:"black_nib",short_names:["black_nib"],category:"Objects",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pg":{name:"Regional Indicator Symbol Letters PG",unified:"1F1F5-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ec.png",sheet_x:37,sheet_y:9,short_name:"flag-pg",short_names:["flag-pg"],category:"Flags",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_upper_left:{name:"North West Arrow",unified:"2196",variations:["2196-FE0F"],docomo:"E697",au:"E54C",softbank:"E237",google:"FEAF2",image:"2196.png",sheet_x:0,sheet_y:8,short_name:"arrow_upper_left",short_names:["arrow_upper_left"],category:"Symbols",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl":{name:"Man Man Girl",unified:"1F468-200D-1F468-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467.png",sheet_x:39,sheet_y:5,short_name:"man-man-girl",short_names:["man-man-girl"],category:"People",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl-boy":{name:"Man Man Girl Boy",unified:"1F468-200D-1F468-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:6,short_name:"man-man-girl-boy",short_names:["man-man-girl-boy"],category:"People",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up_down:{name:"Up Down Arrow",unified:"2195",variations:["2195-FE0F"],docomo:"E73D",au:"EB7B",softbank:null,google:"FEAF7",image:"2195.png",sheet_x:0,sheet_y:7,short_name:"arrow_up_down",short_names:["arrow_up_down"],category:"Symbols",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},memo:{name:"Memo",unified:"1F4DD",variations:[],docomo:"E689",au:"EA92",softbank:"E301",google:"FE527",image:"1f4dd.png",sheet_x:21,sheet_y:32,short_name:"memo",short_names:["memo","pencil"],category:"Objects",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-py":{name:"Regional Indicator Symbol Letters PY",unified:"1F1F5-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fe.png",sheet_x:37,sheet_y:19,short_name:"flag-py",short_names:["flag-py"],category:"Flags",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pe":{name:"Regional Indicator Symbol Letters PE",unified:"1F1F5-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ea.png",sheet_x:37,sheet_y:7,short_name:"flag-pe",short_names:["flag-pe"],category:"Flags",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pencil2:{name:"Pencil",unified:"270F",variations:["270F-FE0F"],docomo:"E719",au:"E4A1",softbank:"E301",google:"FE539",image:"270f.png",sheet_x:3,sheet_y:33,short_name:"pencil2",short_names:["pencil2"],category:"Objects",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-boy-boy":{name:"Man Man Boy Boy",unified:"1F468-200D-1F468-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:4,short_name:"man-man-boy-boy",short_names:["man-man-boy-boy"],category:"People",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},left_right_arrow:{name:"Left Right Arrow",unified:"2194",variations:["2194-FE0F"],docomo:"E73C",au:"EB7A",softbank:null,google:"FEAF6",image:"2194.png",sheet_x:0,sheet_y:6,short_name:"left_right_arrow",short_names:["left_right_arrow"],category:"Symbols",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl-girl":{name:"Man Man Girl Girl",unified:"1F468-200D-1F468-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:7,short_name:"man-man-girl-girl",short_names:["man-man-girl-girl"],category:"People",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrows_counterclockwise:{name:"Anticlockwise Downwards and Upwards Open Circle Arrows",unified:"1F504",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f504.png",sheet_x:22,sheet_y:29,short_name:"arrows_counterclockwise",short_names:["arrows_counterclockwise"],category:"Symbols",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ph":{name:"Regional Indicator Symbol Letters PH",unified:"1F1F5-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ed.png",sheet_x:37,sheet_y:10,short_name:"flag-ph",short_names:["flag-ph"],category:"Flags",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_crayon:{name:"Lower Left Crayon",unified:"1F58D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58d.png",sheet_x:25,sheet_y:12,short_name:"lower_left_crayon",short_names:["lower_left_crayon"],category:"Objects",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womans_clothes:{name:"Womans Clothes",unified:"1F45A",variations:[],docomo:"E70E",au:"E50D",softbank:"E006",google:"FE4DB",image:"1f45a.png",sheet_x:15,sheet_y:37,short_name:"womans_clothes",short_names:["womans_clothes"],category:"People",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_paintbrush:{name:"Lower Left Paintbrush",unified:"1F58C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58c.png",sheet_x:25,sheet_y:11,short_name:"lower_left_paintbrush",short_names:["lower_left_paintbrush"],category:"Objects",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pn":{name:"Regional Indicator Symbol Letters PN",unified:"1F1F5-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f3.png",sheet_x:37,sheet_y:14,short_name:"flag-pn",short_names:["flag-pn"],category:"Flags",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_right_hook:{name:"Rightwards Arrow with Hook",unified:"21AA",variations:["21AA-FE0F"],docomo:null,au:"E55C",softbank:null,google:"FEB88",image:"21aa.png",sheet_x:0,sheet_y:13,short_name:"arrow_right_hook",short_names:["arrow_right_hook"],category:"Symbols",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},leftwards_arrow_with_hook:{name:"Leftwards Arrow with Hook",unified:"21A9",variations:["21A9-FE0F"],docomo:"E6DA",au:"E55D",softbank:null,google:"FEB83",image:"21a9.png",sheet_x:0,sheet_y:12,short_name:"leftwards_arrow_with_hook",short_names:["leftwards_arrow_with_hook"],category:"Symbols",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mag:{name:"Left-Pointing Magnifying Glass",unified:"1F50D",variations:[],docomo:"E6DC",au:"E518",softbank:"E114",google:"FEB85",image:"1f50d.png",sheet_x:22,sheet_y:38,short_name:"mag",short_names:["mag"],category:"Objects",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pl":{name:"Regional Indicator Symbol Letters PL",unified:"1F1F5-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f1.png",sheet_x:37,sheet_y:12,short_name:"flag-pl",short_names:["flag-pl"],category:"Flags",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shirt:{name:"T-Shirt",unified:"1F455",variations:[],docomo:"E70E",au:"E5B6",softbank:"E006",google:"FE4CF",image:"1f455.png",sheet_x:15,sheet_y:32,short_name:"shirt",short_names:["shirt","tshirt"],category:"People",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pt":{name:"Regional Indicator Symbol Letters PT",unified:"1F1F5-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f9.png",sheet_x:37,sheet_y:17,short_name:"flag-pt",short_names:["flag-pt"],category:"Flags",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},jeans:{name:"Jeans",unified:"1F456",variations:[],docomo:"E711",au:"EB77",softbank:null,google:"FE4D0",image:"1f456.png",sheet_x:15,sheet_y:33,short_name:"jeans",short_names:["jeans"],category:"People",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mag_right:{name:"Right-Pointing Magnifying Glass",unified:"1F50E",variations:[],docomo:"E6DC",au:"EB05",softbank:"E114",google:"FEB8D",image:"1f50e.png",sheet_x:22,sheet_y:39,short_name:"mag_right",short_names:["mag_right"],category:"Objects",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_heading_up:{name:"Arrow Pointing Rightwards Then Curving Upwards",unified:"2934",variations:["2934-FE0F"],docomo:"E6F5",au:"EB2D",softbank:"E236",google:"FEAF4",image:"2934.png",sheet_x:4,sheet_y:17,short_name:"arrow_heading_up",short_names:["arrow_heading_up"],category:"Symbols",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},necktie:{name:"Necktie",unified:"1F454",variations:[],docomo:null,au:"EA93",softbank:"E302",google:"FE4D3",image:"1f454.png",sheet_x:15,sheet_y:31,short_name:"necktie",short_names:["necktie"],category:"People",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pr":{name:"Regional Indicator Symbol Letters PR",unified:"1F1F5-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f7.png",sheet_x:37,sheet_y:15,short_name:"flag-pr",short_names:["flag-pr"],category:"Flags",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_heading_down:{name:"Arrow Pointing Rightwards Then Curving Downwards",unified:"2935",variations:["2935-FE0F"],docomo:"E700",au:"EB2E",softbank:"E238",google:"FEAF5",image:"2935.png",sheet_x:4,sheet_y:18,short_name:"arrow_heading_down",short_names:["arrow_heading_down"],category:"Symbols",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dress:{name:"Dress",unified:"1F457",variations:[],docomo:null,au:"EB6B",softbank:"E319",google:"FE4D5",image:"1f457.png",sheet_x:15,sheet_y:34,short_name:"dress",short_names:["dress"],category:"People",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-qa":{name:"Regional Indicator Symbol Letters QA",unified:"1F1F6-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f6-1f1e6.png",sheet_x:37,sheet_y:20,short_name:"flag-qa",short_names:["flag-qa"],category:"Flags",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hash:{name:"Hash Key",unified:"0023-20E3",variations:["0023-FE0F-20E3"],docomo:"E6E0",au:"EB84",softbank:"E210",google:"FE82C",image:"0023-20e3.png",sheet_x:32,sheet_y:21,short_name:"hash",short_names:["hash"],category:"Symbols",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-re":{name:"Regional Indicator Symbol Letters RE",unified:"1F1F7-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1ea.png",sheet_x:37,sheet_y:21,short_name:"flag-re",short_names:["flag-re"],category:"Flags",sort_order:181,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bikini:{name:"Bikini",unified:"1F459",variations:[],docomo:null,au:"EAA4",softbank:"E322",google:"FE4DA",image:"1f459.png",sheet_x:15,sheet_y:36,short_name:"bikini",short_names:["bikini"],category:"People",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},information_source:{name:"Information Source",unified:"2139",variations:["2139-FE0F"],docomo:null,au:"E533",softbank:null,google:"FEB47",image:"2139.png",sheet_x:0,sheet_y:5,short_name:"information_source",short_names:["information_source"],category:"Symbols",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kimono:{name:"Kimono",unified:"1F458",variations:[],docomo:null,au:"EAA3",softbank:"E321",google:"FE4D9",image:"1f458.png",sheet_x:15,sheet_y:35,short_name:"kimono",short_names:["kimono"],category:"People",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},abc:{name:"Input Symbol for Latin Letters",unified:"1F524",variations:[],docomo:null,au:"EB55",softbank:null,google:"FEB80",image:"1f524.png",sheet_x:23,sheet_y:20,short_name:"abc",short_names:["abc"],category:"Symbols",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ro":{name:"Regional Indicator Symbol Letters RO",unified:"1F1F7-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f4.png",sheet_x:37,sheet_y:22,short_name:"flag-ro",short_names:["flag-ro"],category:"Flags",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lipstick:{name:"Lipstick",unified:"1F484",variations:[],docomo:"E710",au:"E509",softbank:"E31C",google:"FE195",image:"1f484.png",sheet_x:19,sheet_y:5,short_name:"lipstick",short_names:["lipstick"],category:"People",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ru":{name:"Regional Indicator Symbol Letters RU",unified:"1F1F7-1F1FA",variations:[],docomo:null,au:"E5D6",softbank:"E512",google:"FE4EC",image:"1f1f7-1f1fa.png",sheet_x:37,sheet_y:24,short_name:"flag-ru",short_names:["flag-ru","ru"],category:"Flags",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},abcd:{name:"Input Symbol for Latin Small Letters",unified:"1F521",variations:[],docomo:null,au:"EAFE",softbank:null,google:"FEB7D",image:"1f521.png",sheet_x:23,sheet_y:17,short_name:"abcd",short_names:["abcd"],category:"Symbols",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kiss:{name:"Kiss Mark",unified:"1F48B",variations:[],docomo:"E6F9",au:"E4EB",softbank:"E003",google:"FE823",image:"1f48b.png",sheet_x:19,sheet_y:27,short_name:"kiss",short_names:["kiss"],category:"People",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":*",":-*"]},capital_abcd:{name:"Input Symbol for Latin Capital Letters",unified:"1F520",variations:[],docomo:null,au:"EAFD",softbank:null,google:"FEB7C",image:"1f520.png",sheet_x:23,sheet_y:16,short_name:"capital_abcd",short_names:["capital_abcd"],category:"Symbols",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-rw":{name:"Regional Indicator Symbol Letters RW",unified:"1F1F7-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1fc.png",sheet_x:37,sheet_y:25,short_name:"flag-rw",short_names:["flag-rw"],category:"Flags",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},footprints:{name:"Footprints",unified:"1F463",variations:[],docomo:"E698",au:"EB2A",softbank:"E536",google:"FE553",image:"1f463.png",sheet_x:16,sheet_y:5,short_name:"footprints",short_names:["footprints"],category:"People",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bl":{name:"Regional Indicator Symbol Letters BL",unified:"1F1E7-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f1.png",sheet_x:33,sheet_y:18,short_name:"flag-bl",short_names:["flag-bl"],category:"Flags",sort_order:185,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},symbols:{name:"Input Symbol for Symbols",unified:"1F523",variations:[],docomo:null,au:"EB00",softbank:null,google:"FEB7F",image:"1f523.png",sheet_x:23,sheet_y:19,short_name:"symbols",short_names:["symbols"],category:"Symbols",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},high_heel:{name:"High-Heeled Shoe",unified:"1F460",variations:[],docomo:"E674",au:"E51A",softbank:"E13E",google:"FE4D6",image:"1f460.png",sheet_x:16,sheet_y:2,short_name:"high_heel",short_names:["high_heel"],category:"People",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},musical_note:{name:"Musical Note",unified:"1F3B5",variations:[],docomo:"E6F6",au:"E5BE",softbank:"E03E",google:"FE813",image:"1f3b5.png",sheet_x:9,sheet_y:36,short_name:"musical_note",short_names:["musical_note"],category:"Symbols",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sh":{name:"Regional Indicator Symbol Letters SH",unified:"1F1F8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ed.png",sheet_x:37,sheet_y:32,short_name:"flag-sh",short_names:["flag-sh"],category:"Flags",sort_order:186,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kn":{name:"Regional Indicator Symbol Letters KN",unified:"1F1F0-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f3.png",sheet_x:35,sheet_y:35,short_name:"flag-kn",short_names:["flag-kn"],category:"Flags",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},notes:{name:"Multiple Musical Notes",unified:"1F3B6",variations:[],docomo:"E6FF",au:"E505",softbank:"E326",google:"FE814",image:"1f3b6.png",sheet_x:9,sheet_y:37,short_name:"notes",short_names:["notes"],category:"Symbols",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sandal:{name:"Womans Sandal",unified:"1F461",variations:[],docomo:"E674",au:"E51A",softbank:"E31A",google:"FE4D7",image:"1f461.png",sheet_x:16,sheet_y:3,short_name:"sandal",short_names:["sandal"],category:"People",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boot:{name:"Womans Boots",unified:"1F462",variations:[],docomo:null,au:"EA9F",softbank:"E31B",google:"FE4D8",image:"1f462.png",sheet_x:16,sheet_y:4,short_name:"boot",short_names:["boot"],category:"People",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wavy_dash:{name:"Wavy Dash",unified:"3030",variations:["3030-FE0F"],docomo:"E709",au:null,softbank:null,google:"FEB07",image:"3030.png",sheet_x:4,sheet_y:26,short_name:"wavy_dash",short_names:["wavy_dash"],category:"Symbols",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lc":{name:"Regional Indicator Symbol Letters LC",unified:"1F1F1-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e8.png",sheet_x:36,sheet_y:2,short_name:"flag-lc",short_names:["flag-lc"],category:"Flags",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pm":{name:"Regional Indicator Symbol Letters PM",unified:"1F1F5-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f2.png",sheet_x:37,sheet_y:13,short_name:"flag-pm",short_names:["flag-pm"],category:"Flags",sort_order:189,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mans_shoe:{name:"Mans Shoe",unified:"1F45E",variations:[],docomo:"E699",au:"E5B7",softbank:"E007",google:"FE4CC",image:"1f45e.png",sheet_x:16,sheet_y:0,short_name:"mans_shoe",short_names:["mans_shoe","shoe"],category:"People",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},curly_loop:{name:"Curly Loop",unified:"27B0",variations:[],docomo:"E70A",au:"EB31",softbank:null,google:"FEB08",image:"27b0.png",sheet_x:4,sheet_y:15,short_name:"curly_loop",short_names:["curly_loop"],category:"Symbols",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vc":{name:"Regional Indicator Symbol Letters VC",unified:"1F1FB-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e8.png",sheet_x:38,sheet_y:30,short_name:"flag-vc",short_names:["flag-vc"],category:"Flags",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_check_mark:{name:"Heavy Check Mark",unified:"2714",variations:["2714-FE0F"],docomo:null,au:"E557",softbank:null,google:"FEB49",image:"2714.png",sheet_x:3,sheet_y:35,short_name:"heavy_check_mark",short_names:["heavy_check_mark"],category:"Symbols",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},athletic_shoe:{name:"Athletic Shoe",unified:"1F45F",variations:[],docomo:"E699",au:"EB2B",softbank:"E007",google:"FE4CD",image:"1f45f.png",sheet_x:16,sheet_y:1,short_name:"athletic_shoe",short_names:["athletic_shoe"],category:"People",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womans_hat:{name:"Womans Hat",unified:"1F452",variations:[],docomo:null,au:"EA9E",softbank:"E318",google:"FE4D4",image:"1f452.png",sheet_x:15,sheet_y:29,short_name:"womans_hat",short_names:["womans_hat"],category:"People",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ws":{name:"Regional Indicator Symbol Letters WS",unified:"1F1FC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1f8.png",sheet_x:38,sheet_y:37,short_name:"flag-ws",short_names:["flag-ws"],category:"Flags", +sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrows_clockwise:{name:"Clockwise Downwards and Upwards Open Circle Arrows",unified:"1F503",variations:[],docomo:"E735",au:"EB0D",softbank:null,google:"FEB91",image:"1f503.png",sheet_x:22,sheet_y:28,short_name:"arrows_clockwise",short_names:["arrows_clockwise"],category:"Symbols",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_plus_sign:{name:"Heavy Plus Sign",unified:"2795",variations:[],docomo:null,au:"E53C",softbank:null,google:"FEB51",image:"2795.png",sheet_x:4,sheet_y:11,short_name:"heavy_plus_sign",short_names:["heavy_plus_sign"],category:"Symbols",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tophat:{name:"Top Hat",unified:"1F3A9",variations:[],docomo:"E67C",au:"EAF5",softbank:"E503",google:"FE805",image:"1f3a9.png",sheet_x:9,sheet_y:24,short_name:"tophat",short_names:["tophat"],category:"People",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sm":{name:"Regional Indicator Symbol Letters SM",unified:"1F1F8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f2.png",sheet_x:37,sheet_y:37,short_name:"flag-sm",short_names:["flag-sm"],category:"Flags",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},helmet_with_white_cross:{name:"Helmet with White Cross",unified:"26D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d1.png",sheet_x:2,sheet_y:25,short_name:"helmet_with_white_cross",short_names:["helmet_with_white_cross"],category:"People",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_minus_sign:{name:"Heavy Minus Sign",unified:"2796",variations:[],docomo:null,au:"E53D",softbank:null,google:"FEB52",image:"2796.png",sheet_x:4,sheet_y:12,short_name:"heavy_minus_sign",short_names:["heavy_minus_sign"],category:"Symbols",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-st":{name:"Regional Indicator Symbol Letters ST",unified:"1F1F8-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f9.png",sheet_x:38,sheet_y:1,short_name:"flag-st",short_names:["flag-st"],category:"Flags",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sa":{name:"Regional Indicator Symbol Letters SA",unified:"1F1F8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e6.png",sheet_x:37,sheet_y:26,short_name:"flag-sa",short_names:["flag-sa"],category:"Flags",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_division_sign:{name:"Heavy Division Sign",unified:"2797",variations:[],docomo:null,au:"E554",softbank:null,google:"FEB54",image:"2797.png",sheet_x:4,sheet_y:13,short_name:"heavy_division_sign",short_names:["heavy_division_sign"],category:"Symbols",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mortar_board:{name:"Graduation Cap",unified:"1F393",variations:[],docomo:null,au:"EAE5",softbank:"E439",google:"FE51A",image:"1f393.png",sheet_x:9,sheet_y:7,short_name:"mortar_board",short_names:["mortar_board"],category:"People",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sn":{name:"Regional Indicator Symbol Letters SN",unified:"1F1F8-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f3.png",sheet_x:37,sheet_y:38,short_name:"flag-sn",short_names:["flag-sn"],category:"Flags",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_multiplication_x:{name:"Heavy Multiplication X",unified:"2716",variations:["2716-FE0F"],docomo:null,au:"E54F",softbank:"E333",google:"FEB53",image:"2716.png",sheet_x:3,sheet_y:36,short_name:"heavy_multiplication_x",short_names:["heavy_multiplication_x"],category:"Symbols",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crown:{name:"Crown",unified:"1F451",variations:[],docomo:"E71A",au:"E5C9",softbank:"E10E",google:"FE4D1",image:"1f451.png",sheet_x:15,sheet_y:28,short_name:"crown",short_names:["crown"],category:"People",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},school_satchel:{name:"School Satchel",unified:"1F392",variations:[],docomo:null,au:"EAE6",softbank:"E43A",google:"FE51B",image:"1f392.png",sheet_x:9,sheet_y:6,short_name:"school_satchel",short_names:["school_satchel"],category:"People",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-rs":{name:"Regional Indicator Symbol Letters RS",unified:"1F1F7-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f8.png",sheet_x:37,sheet_y:23,short_name:"flag-rs",short_names:["flag-rs"],category:"Flags",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_dollar_sign:{name:"Heavy Dollar Sign",unified:"1F4B2",variations:[],docomo:"E715",au:"E579",softbank:"E12F",google:"FE4E0",image:"1f4b2.png",sheet_x:20,sheet_y:30,short_name:"heavy_dollar_sign",short_names:["heavy_dollar_sign"],category:"Symbols",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sc":{name:"Regional Indicator Symbol Letters SC",unified:"1F1F8-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e8.png",sheet_x:37,sheet_y:28,short_name:"flag-sc",short_names:["flag-sc"],category:"Flags",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},currency_exchange:{name:"Currency Exchange",unified:"1F4B1",variations:[],docomo:null,au:null,softbank:"E149",google:"FE4DE",image:"1f4b1.png",sheet_x:20,sheet_y:29,short_name:"currency_exchange",short_names:["currency_exchange"],category:"Symbols",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pouch:{name:"Pouch",unified:"1F45D",variations:[],docomo:"E6AD",au:null,softbank:null,google:"FE4F1",image:"1f45d.png",sheet_x:15,sheet_y:40,short_name:"pouch",short_names:["pouch"],category:"People",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},purse:{name:"Purse",unified:"1F45B",variations:[],docomo:"E70F",au:"E504",softbank:null,google:"FE4DC",image:"1f45b.png",sheet_x:15,sheet_y:38,short_name:"purse",short_names:["purse"],category:"People",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sl":{name:"Regional Indicator Symbol Letters SL",unified:"1F1F8-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f1.png",sheet_x:37,sheet_y:36,short_name:"flag-sl",short_names:["flag-sl"],category:"Flags",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},copyright:{name:"Copyright Sign",unified:"00A9",variations:["00A9-FE0F"],docomo:"E731",au:"E558",softbank:"E24E",google:"FEB29",image:"00a9.png",sheet_x:0,sheet_y:0,short_name:"copyright",short_names:["copyright"],category:"Symbols",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},handbag:{name:"Handbag",unified:"1F45C",variations:[],docomo:"E682",au:"E49C",softbank:"E323",google:"FE4F0",image:"1f45c.png",sheet_x:15,sheet_y:39,short_name:"handbag",short_names:["handbag"],category:"People",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sg":{name:"Regional Indicator Symbol Letters SG",unified:"1F1F8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ec.png",sheet_x:37,sheet_y:31,short_name:"flag-sg",short_names:["flag-sg"],category:"Flags",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},registered:{name:"Registered Sign",unified:"00AE",variations:["00AE-FE0F"],docomo:"E736",au:"E559",softbank:"E24F",google:"FEB2D",image:"00ae.png",sheet_x:0,sheet_y:1,short_name:"registered",short_names:["registered"],category:"Symbols",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},briefcase:{name:"Briefcase",unified:"1F4BC",variations:[],docomo:"E682",au:"E5CE",softbank:"E11E",google:"FE53B",image:"1f4bc.png",sheet_x:20,sheet_y:40,short_name:"briefcase",short_names:["briefcase"],category:"People",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sx":{name:"Regional Indicator Symbol Letters SX",unified:"1F1F8-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fd.png",sheet_x:38,sheet_y:3,short_name:"flag-sx",short_names:["flag-sx"],category:"Flags",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tm:{name:"Trade Mark Sign",unified:"2122",variations:["2122-FE0F"],docomo:"E732",au:"E54E",softbank:"E537",google:"FEB2A",image:"2122.png",sheet_x:0,sheet_y:4,short_name:"tm",short_names:["tm"],category:"Symbols",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},"flag-sk":{name:"Regional Indicator Symbol Letters SK",unified:"1F1F8-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f0.png",sheet_x:37,sheet_y:35,short_name:"flag-sk",short_names:["flag-sk"],category:"Flags",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eyeglasses:{name:"Eyeglasses",unified:"1F453",variations:[],docomo:"E69A",au:"E4FE",softbank:null,google:"FE4CE",image:"1f453.png",sheet_x:15,sheet_y:30,short_name:"eyeglasses",short_names:["eyeglasses"],category:"People",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},end:{name:"End with Leftwards Arrow Above",unified:"1F51A",variations:[],docomo:"E6B9",au:null,softbank:null,google:"FE01A",image:"1f51a.png",sheet_x:23,sheet_y:10,short_name:"end",short_names:["end"],category:"Symbols",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dark_sunglasses:{name:"Dark Sunglasses",unified:"1F576",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f576.png",sheet_x:25,sheet_y:4,short_name:"dark_sunglasses",short_names:["dark_sunglasses"],category:"People",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-si":{name:"Regional Indicator Symbol Letters SI",unified:"1F1F8-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ee.png",sheet_x:37,sheet_y:33,short_name:"flag-si",short_names:["flag-si"],category:"Flags",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},back:{name:"Back with Leftwards Arrow Above",unified:"1F519",variations:[],docomo:null,au:"EB06",softbank:"E235",google:"FEB8E",image:"1f519.png",sheet_x:23,sheet_y:9,short_name:"back",short_names:["back"],category:"Symbols",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ring:{name:"Ring",unified:"1F48D",variations:[],docomo:"E71B",au:"E514",softbank:"E034",google:"FE825",image:"1f48d.png",sheet_x:19,sheet_y:29,short_name:"ring",short_names:["ring"],category:"People",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sb":{name:"Regional Indicator Symbol Letters SB",unified:"1F1F8-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e7.png",sheet_x:37,sheet_y:27,short_name:"flag-sb",short_names:["flag-sb"],category:"Flags",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},on:{name:"On with Exclamation Mark with Left Right Arrow Above",unified:"1F51B",variations:[],docomo:"E6B8",au:null,softbank:null,google:"FE019",image:"1f51b.png",sheet_x:23,sheet_y:11,short_name:"on",short_names:["on"],category:"Symbols",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},top:{name:"Top with Upwards Arrow Above",unified:"1F51D",variations:[],docomo:null,au:null,softbank:"E24C",google:"FEB42",image:"1f51d.png",sheet_x:23,sheet_y:13,short_name:"top",short_names:["top"],category:"Symbols",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-so":{name:"Regional Indicator Symbol Letters SO",unified:"1F1F8-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f4.png",sheet_x:37,sheet_y:39,short_name:"flag-so",short_names:["flag-so"],category:"Flags",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_umbrella:{name:"Closed Umbrella",unified:"1F302",variations:[],docomo:"E645",au:"EAE8",softbank:"E43C",google:"FE007",image:"1f302.png",sheet_x:5,sheet_y:23,short_name:"closed_umbrella",short_names:["closed_umbrella"],category:"People",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-za":{name:"Regional Indicator Symbol Letters ZA",unified:"1F1FF-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1e6.png",sheet_x:39,sheet_y:0,short_name:"flag-za",short_names:["flag-za"],category:"Flags",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},soon:{name:"Soon with Rightwards Arrow Above",unified:"1F51C",variations:[],docomo:"E6B7",au:null,softbank:null,google:"FE018",image:"1f51c.png",sheet_x:23,sheet_y:12,short_name:"soon",short_names:["soon"],category:"Symbols",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gs":{name:"Regional Indicator Symbol Letters GS",unified:"1F1EC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f8.png",sheet_x:35,sheet_y:4,short_name:"flag-gs",short_names:["flag-gs"],category:"Flags",sort_order:206,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ballot_box_with_check:{name:"Ballot Box with Check",unified:"2611",variations:["2611-FE0F"],docomo:null,au:"EB02",softbank:null,google:"FEB8B",image:"2611.png",sheet_x:1,sheet_y:6,short_name:"ballot_box_with_check",short_names:["ballot_box_with_check"],category:"Symbols",sort_order:206,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},radio_button:{name:"Radio Button",unified:"1F518",variations:[],docomo:null,au:"EB04",softbank:null,google:"FEB8C",image:"1f518.png",sheet_x:23,sheet_y:8,short_name:"radio_button",short_names:["radio_button"],category:"Symbols",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kr":{name:"Regional Indicator Symbol Letters KR",unified:"1F1F0-1F1F7",variations:[],docomo:null,au:"EB12",softbank:"E514",google:"FE4EE",image:"1f1f0-1f1f7.png",sheet_x:35,sheet_y:37,short_name:"flag-kr",short_names:["flag-kr","kr"],category:"Flags",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ss":{name:"Regional Indicator Symbol Letters SS",unified:"1F1F8-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f8.png",sheet_x:38,sheet_y:0,short_name:"flag-ss",short_names:["flag-ss"],category:"Flags",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_circle:{name:"Medium White Circle",unified:"26AA",variations:["26AA-FE0F"],docomo:"E69C",au:"E53A",softbank:"E219",google:"FEB65",image:"26aa.png",sheet_x:2,sheet_y:14,short_name:"white_circle",short_names:["white_circle"],category:"Symbols",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-es":{name:"Regional Indicator Symbol Letters ES",unified:"1F1EA-1F1F8",variations:[],docomo:null,au:"E5D5",softbank:"E511",google:"FE4EB",image:"1f1ea-1f1f8.png",sheet_x:34,sheet_y:22,short_name:"flag-es",short_names:["flag-es","es"],category:"Flags",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_circle:{name:"Medium Black Circle",unified:"26AB",variations:["26AB-FE0F"],docomo:"E69C",au:"E53B",softbank:"E219",google:"FEB66",image:"26ab.png",sheet_x:2,sheet_y:15,short_name:"black_circle",short_names:["black_circle"],category:"Symbols",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lk":{name:"Regional Indicator Symbol Letters LK",unified:"1F1F1-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f0.png",sheet_x:36,sheet_y:4,short_name:"flag-lk",short_names:["flag-lk"],category:"Flags",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},red_circle:{name:"Large Red Circle",unified:"1F534",variations:[],docomo:"E69C",au:"E54A",softbank:"E219",google:"FEB63",image:"1f534.png",sheet_x:23,sheet_y:36,short_name:"red_circle",short_names:["red_circle"],category:"Symbols",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sd":{name:"Regional Indicator Symbol Letters SD",unified:"1F1F8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e9.png",sheet_x:37,sheet_y:29,short_name:"flag-sd",short_names:["flag-sd"],category:"Flags",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_blue_circle:{name:"Large Blue Circle",unified:"1F535",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f535.png",sheet_x:23,sheet_y:37,short_name:"large_blue_circle",short_names:["large_blue_circle"],category:"Symbols",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_orange_diamond:{name:"Small Orange Diamond",unified:"1F538",variations:[],docomo:null,au:"E536",softbank:"E21B",google:"FEB75",image:"1f538.png",sheet_x:23,sheet_y:40,short_name:"small_orange_diamond",short_names:["small_orange_diamond"],category:"Symbols",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sr":{name:"Regional Indicator Symbol Letters SR",unified:"1F1F8-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f7.png",sheet_x:37,sheet_y:40,short_name:"flag-sr",short_names:["flag-sr"],category:"Flags",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_blue_diamond:{name:"Small Blue Diamond",unified:"1F539",variations:[],docomo:null,au:"E537",softbank:"E21B",google:"FEB76",image:"1f539.png",sheet_x:24,sheet_y:0,short_name:"small_blue_diamond",short_names:["small_blue_diamond"],category:"Symbols",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sz":{name:"Regional Indicator Symbol Letters SZ",unified:"1F1F8-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ff.png",sheet_x:38,sheet_y:5,short_name:"flag-sz",short_names:["flag-sz"],category:"Flags",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_orange_diamond:{name:"Large Orange Diamond",unified:"1F536",variations:[],docomo:null,au:"E546",softbank:"E21B",google:"FEB73",image:"1f536.png",sheet_x:23,sheet_y:38,short_name:"large_orange_diamond",short_names:["large_orange_diamond"],category:"Symbols",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-se":{name:"Regional Indicator Symbol Letters SE",unified:"1F1F8-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ea.png",sheet_x:37,sheet_y:30,short_name:"flag-se",short_names:["flag-se"],category:"Flags",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ch":{name:"Regional Indicator Symbol Letters CH",unified:"1F1E8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ed.png",sheet_x:33,sheet_y:35,short_name:"flag-ch",short_names:["flag-ch"],category:"Flags",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_blue_diamond:{name:"Large Blue Diamond",unified:"1F537",variations:[],docomo:null,au:"E547",softbank:"E21B",google:"FEB74",image:"1f537.png",sheet_x:23,sheet_y:39,short_name:"large_blue_diamond",short_names:["large_blue_diamond"],category:"Symbols",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sy":{name:"Regional Indicator Symbol Letters SY",unified:"1F1F8-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fe.png",sheet_x:38,sheet_y:4,short_name:"flag-sy",short_names:["flag-sy"],category:"Flags",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_red_triangle:{name:"Up-Pointing Red Triangle",unified:"1F53A",variations:[],docomo:null,au:"E55A",softbank:null,google:"FEB78",image:"1f53a.png",sheet_x:24,sheet_y:1,short_name:"small_red_triangle",short_names:["small_red_triangle"],category:"Symbols",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tw":{name:"Regional Indicator Symbol Letters TW",unified:"1F1F9-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fc.png",sheet_x:38,sheet_y:21,short_name:"flag-tw",short_names:["flag-tw"],category:"Flags",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_small_square:{name:"Black Small Square",unified:"25AA",variations:["25AA-FE0F"],docomo:null,au:"E532",softbank:"E21A",google:"FEB6E",image:"25aa.png",sheet_x:0,sheet_y:33,short_name:"black_small_square",short_names:["black_small_square"],category:"Symbols",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_small_square:{name:"White Small Square",unified:"25AB",variations:["25AB-FE0F"],docomo:null,au:"E531",softbank:"E21B",google:"FEB6D",image:"25ab.png",sheet_x:0,sheet_y:34,short_name:"white_small_square",short_names:["white_small_square"],category:"Symbols",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tj":{name:"Regional Indicator Symbol Letters TJ",unified:"1F1F9-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ef.png",sheet_x:38,sheet_y:12,short_name:"flag-tj",short_names:["flag-tj"],category:"Flags",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_large_square:{name:"Black Large Square",unified:"2B1B",variations:["2B1B-FE0F"],docomo:null,au:"E549",softbank:"E21A",google:"FEB6C",image:"2b1b.png",sheet_x:4,sheet_y:22,short_name:"black_large_square",short_names:["black_large_square"],category:"Symbols",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tz":{name:"Regional Indicator Symbol Letters TZ",unified:"1F1F9-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ff.png",sheet_x:38,sheet_y:22,short_name:"flag-tz",short_names:["flag-tz"],category:"Flags",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_large_square:{name:"White Large Square",unified:"2B1C",variations:["2B1C-FE0F"],docomo:null,au:"E548",softbank:"E21B",google:"FEB6B",image:"2b1c.png",sheet_x:4,sheet_y:23,short_name:"white_large_square",short_names:["white_large_square"],category:"Symbols",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-th":{name:"Regional Indicator Symbol Letters TH",unified:"1F1F9-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ed.png",sheet_x:38,sheet_y:11,short_name:"flag-th",short_names:["flag-th"],category:"Flags",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tl":{name:"Regional Indicator Symbol Letters TL",unified:"1F1F9-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f1.png",sheet_x:38,sheet_y:14,short_name:"flag-tl",short_names:["flag-tl"],category:"Flags",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_red_triangle_down:{name:"Down-Pointing Red Triangle",unified:"1F53B",variations:[],docomo:null,au:"E55B",softbank:null,google:"FEB79",image:"1f53b.png",sheet_x:24,sheet_y:2,short_name:"small_red_triangle_down",short_names:["small_red_triangle_down"],category:"Symbols",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tg":{name:"Regional Indicator Symbol Letters TG",unified:"1F1F9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ec.png",sheet_x:38,sheet_y:10,short_name:"flag-tg",short_names:["flag-tg"],category:"Flags",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_medium_square:{name:"Black Medium Square",unified:"25FC",variations:["25FC-FE0F"],docomo:null,au:"E539",softbank:"E21A",google:"FEB72",image:"25fc.png",sheet_x:0,sheet_y:38,short_name:"black_medium_square",short_names:["black_medium_square"],category:"Symbols",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tk":{name:"Regional Indicator Symbol Letters TK",unified:"1F1F9-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f0.png",sheet_x:38,sheet_y:13,short_name:"flag-tk",short_names:["flag-tk"],category:"Flags",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_medium_square:{name:"White Medium Square",unified:"25FB",variations:["25FB-FE0F"],docomo:null,au:"E538",softbank:"E21B",google:"FEB71",image:"25fb.png",sheet_x:0,sheet_y:37,short_name:"white_medium_square",short_names:["white_medium_square"],category:"Symbols",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-to":{name:"Regional Indicator Symbol Letters TO",unified:"1F1F9-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f4.png",sheet_x:38,sheet_y:17,short_name:"flag-to",short_names:["flag-to"],category:"Flags",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_medium_small_square:{name:"Black Medium Small Square",unified:"25FE",variations:["25FE-FE0F"],docomo:null,au:"E535",softbank:"E21A",google:"FEB70",image:"25fe.png",sheet_x:0,sheet_y:40,short_name:"black_medium_small_square",short_names:["black_medium_small_square"],category:"Symbols",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_medium_small_square:{name:"White Medium Small Square",unified:"25FD",variations:["25FD-FE0F"],docomo:null,au:"E534",softbank:"E21B",google:"FEB6F",image:"25fd.png",sheet_x:0,sheet_y:39,short_name:"white_medium_small_square",short_names:["white_medium_small_square"],category:"Symbols",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tt":{name:"Regional Indicator Symbol Letters TT",unified:"1F1F9-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f9.png",sheet_x:38,sheet_y:19,short_name:"flag-tt",short_names:["flag-tt"],category:"Flags",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_square_button:{name:"Black Square Button",unified:"1F532",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f532.png",sheet_x:23,sheet_y:34,short_name:"black_square_button",short_names:["black_square_button"],category:"Symbols",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tn":{name:"Regional Indicator Symbol Letters TN",unified:"1F1F9-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f3.png",sheet_x:38,sheet_y:16,short_name:"flag-tn",short_names:["flag-tn"],category:"Flags",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tr":{name:"Regional Indicator Symbol Letters TR",unified:"1F1F9-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f7.png",sheet_x:38,sheet_y:18,short_name:"flag-tr",short_names:["flag-tr"],category:"Flags",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_square_button:{name:"White Square Button",unified:"1F533",variations:[],docomo:"E69C",au:"E54B",softbank:"E21B",google:"FEB67",image:"1f533.png",sheet_x:23,sheet_y:35,short_name:"white_square_button",short_names:["white_square_button"],category:"Symbols",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tm":{name:"Regional Indicator Symbol Letters TM",unified:"1F1F9-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f2.png",sheet_x:38,sheet_y:15,short_name:"flag-tm",short_names:["flag-tm"],category:"Flags",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speaker:{name:"Speaker",unified:"1F508",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f508.png",sheet_x:22,sheet_y:33,short_name:"speaker",short_names:["speaker"],category:"Symbols",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tc":{name:"Regional Indicator Symbol Letters TC",unified:"1F1F9-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e8.png",sheet_x:38,sheet_y:7,short_name:"flag-tc",short_names:["flag-tc"],category:"Flags",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sound:{name:"Speaker with One Sound Wave",unified:"1F509",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f509.png",sheet_x:22,sheet_y:34,short_name:"sound",short_names:["sound"],category:"Symbols",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tv":{name:"Regional Indicator Symbol Letters TV",unified:"1F1F9-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fb.png",sheet_x:38,sheet_y:20,short_name:"flag-tv",short_names:["flag-tv"],category:"Flags",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loud_sound:{name:"Speaker with Three Sound Waves",unified:"1F50A",variations:[],docomo:null,au:"E511",softbank:"E141",google:"FE821",image:"1f50a.png",sheet_x:22,sheet_y:35,short_name:"loud_sound",short_names:["loud_sound"],category:"Symbols",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0, +emoticons:[]},mute:{name:"Speaker with Cancellation Stroke",unified:"1F507",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f507.png",sheet_x:22,sheet_y:32,short_name:"mute",short_names:["mute"],category:"Symbols",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ug":{name:"Regional Indicator Symbol Letters UG",unified:"1F1FA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ec.png",sheet_x:38,sheet_y:24,short_name:"flag-ug",short_names:["flag-ug"],category:"Flags",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ua":{name:"Regional Indicator Symbol Letters UA",unified:"1F1FA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1e6.png",sheet_x:38,sheet_y:23,short_name:"flag-ua",short_names:["flag-ua"],category:"Flags",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mega:{name:"Cheering Megaphone",unified:"1F4E3",variations:[],docomo:null,au:"E511",softbank:"E317",google:"FE530",image:"1f4e3.png",sheet_x:21,sheet_y:38,short_name:"mega",short_names:["mega"],category:"Symbols",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ae":{name:"Regional Indicator Symbol Letters AE",unified:"1F1E6-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ea.png",sheet_x:32,sheet_y:35,short_name:"flag-ae",short_names:["flag-ae"],category:"Flags",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loudspeaker:{name:"Public Address Loudspeaker",unified:"1F4E2",variations:[],docomo:null,au:"E511",softbank:"E142",google:"FE52F",image:"1f4e2.png",sheet_x:21,sheet_y:37,short_name:"loudspeaker",short_names:["loudspeaker"],category:"Symbols",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bell:{name:"Bell",unified:"1F514",variations:[],docomo:"E713",au:"E512",softbank:"E325",google:"FE4F2",image:"1f514.png",sheet_x:23,sheet_y:4,short_name:"bell",short_names:["bell"],category:"Symbols",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gb":{name:"Regional Indicator Symbol Letters GB",unified:"1F1EC-1F1E7",variations:[],docomo:null,au:"EB10",softbank:"E510",google:"FE4EA",image:"1f1ec-1f1e7.png",sheet_x:34,sheet_y:32,short_name:"flag-gb",short_names:["flag-gb","gb","uk"],category:"Flags",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-us":{name:"Regional Indicator Symbol Letters US",unified:"1F1FA-1F1F8",variations:[],docomo:null,au:"E573",softbank:"E50C",google:"FE4E6",image:"1f1fa-1f1f8.png",sheet_x:38,sheet_y:26,short_name:"flag-us",short_names:["flag-us","us"],category:"Flags",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_bell:{name:"Bell with Cancellation Stroke",unified:"1F515",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f515.png",sheet_x:23,sheet_y:5,short_name:"no_bell",short_names:["no_bell"],category:"Symbols",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vi":{name:"Regional Indicator Symbol Letters VI",unified:"1F1FB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ee.png",sheet_x:38,sheet_y:33,short_name:"flag-vi",short_names:["flag-vi"],category:"Flags",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_joker:{name:"Playing Card Black Joker",unified:"1F0CF",variations:[],docomo:null,au:"EB6F",softbank:null,google:"FE812",image:"1f0cf.png",sheet_x:4,sheet_y:31,short_name:"black_joker",short_names:["black_joker"],category:"Symbols",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mahjong:{name:"Mahjong Tile Red Dragon",unified:"1F004",variations:["1F004-FE0F"],docomo:null,au:"E5D1",softbank:"E12D",google:"FE80B",image:"1f004.png",sheet_x:4,sheet_y:30,short_name:"mahjong",short_names:["mahjong"],category:"Symbols",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-uy":{name:"Regional Indicator Symbol Letters UY",unified:"1F1FA-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1fe.png",sheet_x:38,sheet_y:27,short_name:"flag-uy",short_names:["flag-uy"],category:"Flags",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spades:{name:"Black Spade Suit",unified:"2660",variations:["2660-FE0F"],docomo:"E68E",au:"E5A1",softbank:"E20E",google:"FEB1B",image:"2660.png",sheet_x:1,sheet_y:38,short_name:"spades",short_names:["spades"],category:"Symbols",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-uz":{name:"Regional Indicator Symbol Letters UZ",unified:"1F1FA-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ff.png",sheet_x:38,sheet_y:28,short_name:"flag-uz",short_names:["flag-uz"],category:"Flags",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clubs:{name:"Black Club Suit",unified:"2663",variations:["2663-FE0F"],docomo:"E690",au:"E5A3",softbank:"E20F",google:"FEB1D",image:"2663.png",sheet_x:1,sheet_y:39,short_name:"clubs",short_names:["clubs"],category:"Symbols",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vu":{name:"Regional Indicator Symbol Letters VU",unified:"1F1FB-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1fa.png",sheet_x:38,sheet_y:35,short_name:"flag-vu",short_names:["flag-vu"],category:"Flags",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hearts:{name:"Black Heart Suit",unified:"2665",variations:["2665-FE0F"],docomo:"E68D",au:"EAA5",softbank:"E20C",google:"FEB1A",image:"2665.png",sheet_x:1,sheet_y:40,short_name:"hearts",short_names:["hearts"],category:"Symbols",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-va":{name:"Regional Indicator Symbol Letters VA",unified:"1F1FB-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e6.png",sheet_x:38,sheet_y:29,short_name:"flag-va",short_names:["flag-va"],category:"Flags",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},diamonds:{name:"Black Diamond Suit",unified:"2666",variations:["2666-FE0F"],docomo:"E68F",au:"E5A2",softbank:"E20D",google:"FEB1C",image:"2666.png",sheet_x:2,sheet_y:0,short_name:"diamonds",short_names:["diamonds"],category:"Symbols",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ve":{name:"Regional Indicator Symbol Letters VE",unified:"1F1FB-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ea.png",sheet_x:38,sheet_y:31,short_name:"flag-ve",short_names:["flag-ve"],category:"Flags",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vn":{name:"Regional Indicator Symbol Letters VN",unified:"1F1FB-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1f3.png",sheet_x:38,sheet_y:34,short_name:"flag-vn",short_names:["flag-vn"],category:"Flags",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},flower_playing_cards:{name:"Flower Playing Cards",unified:"1F3B4",variations:[],docomo:null,au:"EB6E",softbank:null,google:"FE811",image:"1f3b4.png",sheet_x:9,sheet_y:35,short_name:"flower_playing_cards",short_names:["flower_playing_cards"],category:"Symbols",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},thought_balloon:{name:"Thought Balloon",unified:"1F4AD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ad.png",sheet_x:20,sheet_y:25,short_name:"thought_balloon",short_names:["thought_balloon"],category:"Symbols",sort_order:243,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-wf":{name:"Regional Indicator Symbol Letters WF",unified:"1F1FC-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1eb.png",sheet_x:38,sheet_y:36,short_name:"flag-wf",short_names:["flag-wf"],category:"Flags",sort_order:243,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-eh":{name:"Regional Indicator Symbol Letters EH",unified:"1F1EA-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ed.png",sheet_x:34,sheet_y:20,short_name:"flag-eh",short_names:["flag-eh"],category:"Flags",sort_order:244,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},right_anger_bubble:{name:"Right Anger Bubble",unified:"1F5EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5ef.png",sheet_x:26,sheet_y:7,short_name:"right_anger_bubble",short_names:["right_anger_bubble"],category:"Symbols",sort_order:244,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speech_balloon:{name:"Speech Balloon",unified:"1F4AC",variations:[],docomo:null,au:"E4FD",softbank:null,google:"FE532",image:"1f4ac.png",sheet_x:20,sheet_y:24,short_name:"speech_balloon",short_names:["speech_balloon"],category:"Symbols",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ye":{name:"Regional Indicator Symbol Letters YE",unified:"1F1FE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fe-1f1ea.png",sheet_x:38,sheet_y:39,short_name:"flag-ye",short_names:["flag-ye"],category:"Flags",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},left_speech_bubble:{name:"Left Speech Bubble",unified:"1F5E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e8.png",sheet_x:26,sheet_y:6,short_name:"left_speech_bubble",short_names:["left_speech_bubble"],category:"Symbols",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},"flag-zm":{name:"Regional Indicator Symbol Letters ZM",unified:"1F1FF-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1f2.png",sheet_x:39,sheet_y:1,short_name:"flag-zm",short_names:["flag-zm"],category:"Flags",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1:{name:"Clock Face One Oclock",unified:"1F550",variations:[],docomo:"E6BA",au:"E594",softbank:"E024",google:"FE01E",image:"1f550.png",sheet_x:24,sheet_y:11,short_name:"clock1",short_names:["clock1"],category:"Symbols",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-zw":{name:"Regional Indicator Symbol Letters ZW",unified:"1F1FF-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1fc.png",sheet_x:39,sheet_y:2,short_name:"flag-zw",short_names:["flag-zw"],category:"Flags",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ac":{name:"Regional Indicator Symbol Letters AC",unified:"1F1E6-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1e8.png",sheet_x:32,sheet_y:33,short_name:"flag-ac",short_names:["flag-ac"],category:"Flags",sort_order:248,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock2:{name:"Clock Face Two Oclock",unified:"1F551",variations:[],docomo:"E6BA",au:"E594",softbank:"E025",google:"FE01F",image:"1f551.png",sheet_x:24,sheet_y:12,short_name:"clock2",short_names:["clock2"],category:"Symbols",sort_order:248,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bv":{name:"Regional Indicator Symbol Letters BV",unified:"1F1E7-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fb.png",sheet_x:33,sheet_y:26,short_name:"flag-bv",short_names:["flag-bv"],category:"Flags",sort_order:249,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock3:{name:"Clock Face Three Oclock",unified:"1F552",variations:[],docomo:"E6BA",au:"E594",softbank:"E026",google:"FE020",image:"1f552.png",sheet_x:24,sheet_y:13,short_name:"clock3",short_names:["clock3"],category:"Symbols",sort_order:249,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cp":{name:"Regional Indicator Symbol Letters CP",unified:"1F1E8-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f5.png",sheet_x:34,sheet_y:1,short_name:"flag-cp",short_names:["flag-cp"],category:"Flags",sort_order:250,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock4:{name:"Clock Face Four Oclock",unified:"1F553",variations:[],docomo:"E6BA",au:"E594",softbank:"E027",google:"FE021",image:"1f553.png",sheet_x:24,sheet_y:14,short_name:"clock4",short_names:["clock4"],category:"Symbols",sort_order:250,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock5:{name:"Clock Face Five Oclock",unified:"1F554",variations:[],docomo:"E6BA",au:"E594",softbank:"E028",google:"FE022",image:"1f554.png",sheet_x:24,sheet_y:15,short_name:"clock5",short_names:["clock5"],category:"Symbols",sort_order:251,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-dg":{name:"Regional Indicator Symbol Letters DG",unified:"1F1E9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ec.png",sheet_x:34,sheet_y:10,short_name:"flag-dg",short_names:["flag-dg"],category:"Flags",sort_order:251,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock6:{name:"Clock Face Six Oclock",unified:"1F555",variations:[],docomo:"E6BA",au:"E594",softbank:"E029",google:"FE023",image:"1f555.png",sheet_x:24,sheet_y:16,short_name:"clock6",short_names:["clock6"],category:"Symbols",sort_order:252,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ea":{name:"Regional Indicator Symbol Letters EA",unified:"1F1EA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1e6.png",sheet_x:34,sheet_y:16,short_name:"flag-ea",short_names:["flag-ea"],category:"Flags",sort_order:252,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-hm":{name:"Regional Indicator Symbol Letters HM",unified:"1F1ED-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f2.png",sheet_x:35,sheet_y:10,short_name:"flag-hm",short_names:["flag-hm"],category:"Flags",sort_order:253,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock7:{name:"Clock Face Seven Oclock",unified:"1F556",variations:[],docomo:"E6BA",au:"E594",softbank:"E02A",google:"FE024",image:"1f556.png",sheet_x:24,sheet_y:17,short_name:"clock7",short_names:["clock7"],category:"Symbols",sort_order:253,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mf":{name:"Regional Indicator Symbol Letters MF",unified:"1F1F2-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1eb.png",sheet_x:36,sheet_y:15,short_name:"flag-mf",short_names:["flag-mf"],category:"Flags",sort_order:254,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock8:{name:"Clock Face Eight Oclock",unified:"1F557",variations:[],docomo:"E6BA",au:"E594",softbank:"E02B",google:"FE025",image:"1f557.png",sheet_x:24,sheet_y:18,short_name:"clock8",short_names:["clock8"],category:"Symbols",sort_order:254,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock9:{name:"Clock Face Nine Oclock",unified:"1F558",variations:[],docomo:"E6BA",au:"E594",softbank:"E02C",google:"FE026",image:"1f558.png",sheet_x:24,sheet_y:19,short_name:"clock9",short_names:["clock9"],category:"Symbols",sort_order:255,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sj":{name:"Regional Indicator Symbol Letters SJ",unified:"1F1F8-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ef.png",sheet_x:37,sheet_y:34,short_name:"flag-sj",short_names:["flag-sj"],category:"Flags",sort_order:255,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ta":{name:"Regional Indicator Symbol Letters TA",unified:"1F1F9-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e6.png",sheet_x:38,sheet_y:6,short_name:"flag-ta",short_names:["flag-ta"],category:"Flags",sort_order:256,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock10:{name:"Clock Face Ten Oclock",unified:"1F559",variations:[],docomo:"E6BA",au:"E594",softbank:"E02D",google:"FE027",image:"1f559.png",sheet_x:24,sheet_y:20,short_name:"clock10",short_names:["clock10"],category:"Symbols",sort_order:256,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-um":{name:"Regional Indicator Symbol Letters UM",unified:"1F1FA-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1f2.png",sheet_x:38,sheet_y:25,short_name:"flag-um",short_names:["flag-um"],category:"Flags",sort_order:257,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock11:{name:"Clock Face Eleven Oclock",unified:"1F55A",variations:[],docomo:"E6BA",au:"E594",softbank:"E02E",google:"FE028",image:"1f55a.png",sheet_x:24,sheet_y:21,short_name:"clock11",short_names:["clock11"],category:"Symbols",sort_order:257,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock12:{name:"Clock Face Twelve Oclock",unified:"1F55B",variations:[],docomo:"E6BA",au:"E594",softbank:"E02F",google:"FE029",image:"1f55b.png",sheet_x:24,sheet_y:22,short_name:"clock12",short_names:["clock12"],category:"Symbols",sort_order:258,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock130:{name:"Clock Face One-Thirty",unified:"1F55C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55c.png",sheet_x:24,sheet_y:23,short_name:"clock130",short_names:["clock130"],category:"Symbols",sort_order:259,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock230:{name:"Clock Face Two-Thirty",unified:"1F55D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55d.png",sheet_x:24,sheet_y:24,short_name:"clock230",short_names:["clock230"],category:"Symbols",sort_order:260,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock330:{name:"Clock Face Three-Thirty",unified:"1F55E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55e.png",sheet_x:24,sheet_y:25,short_name:"clock330",short_names:["clock330"],category:"Symbols",sort_order:261,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock430:{name:"Clock Face Four-Thirty",unified:"1F55F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55f.png",sheet_x:24,sheet_y:26,short_name:"clock430",short_names:["clock430"],category:"Symbols",sort_order:262,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock530:{name:"Clock Face Five-Thirty",unified:"1F560",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f560.png",sheet_x:24,sheet_y:27,short_name:"clock530",short_names:["clock530"],category:"Symbols",sort_order:263,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock630:{name:"Clock Face Six-Thirty",unified:"1F561",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f561.png",sheet_x:24,sheet_y:28,short_name:"clock630",short_names:["clock630"],category:"Symbols",sort_order:264,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock730:{name:"Clock Face Seven-Thirty",unified:"1F562",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f562.png",sheet_x:24,sheet_y:29,short_name:"clock730",short_names:["clock730"],category:"Symbols",sort_order:265,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock830:{name:"Clock Face Eight-Thirty",unified:"1F563",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f563.png",sheet_x:24,sheet_y:30,short_name:"clock830",short_names:["clock830"],category:"Symbols",sort_order:266,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock930:{name:"Clock Face Nine-Thirty",unified:"1F564",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f564.png",sheet_x:24,sheet_y:31,short_name:"clock930",short_names:["clock930"],category:"Symbols",sort_order:267,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1030:{name:"Clock Face Ten-Thirty",unified:"1F565",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f565.png",sheet_x:24,sheet_y:32,short_name:"clock1030",short_names:["clock1030"],category:"Symbols",sort_order:268,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1130:{name:"Clock Face Eleven-Thirty",unified:"1F566",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f566.png",sheet_x:24,sheet_y:33,short_name:"clock1130",short_names:["clock1130"],category:"Symbols",sort_order:269,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1230:{name:"Clock Face Twelve-Thirty",unified:"1F567",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f567.png",sheet_x:24,sheet_y:34,short_name:"clock1230",short_names:["clock1230"],category:"Symbols",sort_order:270,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]}},skins:{"skin-tone-2":{name:"Emoji Modifier Fitzpatrick Type-1-2",unified:"1F3FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fb.png",sheet_x:12,sheet_y:0,short_name:"skin-tone-2",short_names:["skin-tone-2"],category:"Skin Tones",sort_order:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-3":{name:"Emoji Modifier Fitzpatrick Type-3",unified:"1F3FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fc.png",sheet_x:12,sheet_y:1,short_name:"skin-tone-3",short_names:["skin-tone-3"],category:"Skin Tones",sort_order:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-4":{name:"Emoji Modifier Fitzpatrick Type-4",unified:"1F3FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fd.png",sheet_x:12,sheet_y:2,short_name:"skin-tone-4",short_names:["skin-tone-4"],category:"Skin Tones",sort_order:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-5":{name:"Emoji Modifier Fitzpatrick Type-5",unified:"1F3FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fe.png",sheet_x:12,sheet_y:3,short_name:"skin-tone-5",short_names:["skin-tone-5"],category:"Skin Tones",sort_order:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-6":{name:"Emoji Modifier Fitzpatrick Type-6",unified:"1F3FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3ff.png",sheet_x:12,sheet_y:4,short_name:"skin-tone-6",short_names:["skin-tone-6"],category:"Skin Tones",sort_order:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]}}}},function(e,o,a){"use strict";function i(e){var o=e.id;_[o]||(_[o]=0),_[o]+=1,s.store.set("last",o),s.store.set("frequently",_)}function t(e){var o=Object.keys(_).sort(function(e,o){return _[e]-_[o]}).reverse(),a=o.slice(0,e),i=s.store.get("last");return i&&-1==a.indexOf(i)&&(a.pop(),a.push(i)),a}Object.defineProperty(o,"__esModule",{value:!0});var s=a(16),_=s.store.get("frequently")||{};o["default"]={add:i,get:t}},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e){if(Array.isArray(e)){for(var o=0,a=Array(e.length);o1){t=JSON.parse(JSON.stringify(h["default"].emojis[o]));var s=f[a-1],_=t.unified+"-"+s,n=t.skin_variations[_],g=i.match(/(apple|google|twitter|emojione)/),m=g[0];if(n["has_img_"+m]){t.skin_tone=a;for(var r in n){var l=n[r];t[r]=l}}}return t}},{key:"getPosition",value:function(e){var o=e.sheet_x,a=e.sheet_y,i=100/(u-1);return i*o+"% "+i*a+"%"}},{key:"getNative",value:function(e){var o=e.unified,a=o.split("-"),i=a.map(function(e){return"0x"+e});return String.fromCodePoint.apply(String,t(i))}},{key:"handleClick",value:function(e){var o=this.props.onClick,a=e.name,i=e.short_names,t=e.skin_tone,s=e.emoticons,_=(e.unified,i[0]),n=":"+_+":";t&&(n+=":skin-tone-"+t+":"),o({id:_,name:a,colons:n,emoticons:s,skin:t||1,"native":this.getNative(e)})}},{key:"render",value:function(){var e=this,o=this.props,a=o.sheetURL,i=o.size,t=o.onOver,s=o.onLeave,_=this.getEmojiData();return r["default"].createElement("span",{onClick:function(){return e.handleClick(_)},onMouseEnter:function(){return t(_)},onMouseLeave:function(){return s(_)},className:"emoji-picker-emoji"},r["default"].createElement("span",{style:{width:i,height:i,display:"inline-block",backgroundImage:"url("+a+")",backgroundSize:100*u+"%",backgroundPosition:this.getPosition(_)}}))}}]),o}(r["default"].Component);o["default"]=c,c.propTypes={skin:r["default"].PropTypes.number,onOver:r["default"].PropTypes.func,onLeave:r["default"].PropTypes.func,onClick:r["default"].PropTypes.func,size:r["default"].PropTypes.number.isRequired,sheetURL:r["default"].PropTypes.string.isRequired,emoji:r["default"].PropTypes.oneOfType([r["default"].PropTypes.string,r["default"].PropTypes.object]).isRequired},c.defaultProps={skin:1,onOver:function(){},onLeave:function(){},onClick:function(){}}},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}function s(e,o){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!o||"object"!=typeof o&&"function"!=typeof o?e:o}function _(e,o){if("function"!=typeof o&&null!==o)throw new TypeError("Super expression must either be null or a function, not "+typeof o);e.prototype=Object.create(o&&o.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),o&&(Object.setPrototypeOf?Object.setPrototypeOf(e,o):e.__proto__=o)}Object.defineProperty(o,"__esModule",{value:!0});var n=Object.assign||function(e){for(var o=1;o(this.scrollTop||0),i=null,t=0,s=0,_=d.length;_>s;s++){var n=a?d.length-1-s:s,g=d[n],m=this.refs["category-"+n];if((!t||m.top0&&(t=m.top),m){var r=m.handleScroll(o);r&&!i&&(g.anchor&&(g=g.anchor),i=g)}}if(t>o&&(i=c),i){var l=this.refs.anchors,h=i,u=h.name;l.state.selected!=u&&l.setState({selected:u})}this.scrollTop=o}},{key:"handleSearch",value:function(e){p.emojis=e;for(var o=0,a=d.length;a>o;o++){var i=this.refs["category-"+o];if(i&&"Search"!=i.props.name){var t=e?"none":null;i.updateDisplay(t)}}this.forceUpdate()}},{key:"handleAnchorClick",value:function(e,o){var a=this.refs["category-"+o],i=this.refs,t=i.scroll,s=(i.anchors,null);s=function(){if(a){var o=a.top;"Recent"==e.name?o=0:o+=1,t.scrollTop=o}},p.emojis?(this.handleSearch(null),this.refs.search.clear(),window.requestAnimationFrame(s)):s()}},{key:"handleSkinChange",value:function(e){var o={skin:e};this.setState(o),u.store.update(o)}},{key:"updateCategoriesSize",value:function(){for(var e=0,o=d.length;o>e;e++){var a=this.refs["category-"+e];a&&a.memoizeSize()}}},{ +key:"render",value:function(){var e=this,o=this.props,a=o.perLine,i=o.emojiSize,t=o.sheetURL,s=o.style,_=this.state.skin,g=a*(i+12)+12+2;return r["default"].createElement("div",{style:n({},s,{width:g}),className:"emoji-picker"},r["default"].createElement("div",{className:"emoji-picker-bar"},r["default"].createElement(f.Anchors,{ref:"anchors",categories:d,onAnchorClick:this.handleAnchorClick.bind(this)})),r["default"].createElement("div",{ref:"scroll",className:"emoji-picker-scroll",onScroll:this.handleScroll.bind(this)},r["default"].createElement(f.Search,{ref:"search",onSearch:this.handleSearch.bind(this)}),d.map(function(o,s){return r["default"].createElement(f.Category,{ref:"category-"+s,key:o.name,name:o.name,emojis:o.emojis,perLine:a,hasStickyPosition:e.hasStickyPosition,emojiProps:{skin:_,size:i,sheetURL:t,onOver:e.handleEmojiOver.bind(e),onLeave:e.handleEmojiLeave.bind(e),onClick:e.handleEmojiClick.bind(e)}})})),r["default"].createElement("div",{className:"emoji-picker-bar"},r["default"].createElement(f.Preview,{ref:"preview",emojiProps:{size:38,sheetURL:t},skinsProps:{skin:_,onChange:this.handleSkinChange.bind(this)}})))}}]),o}(r["default"].Component);o["default"]=F,F.propTypes={onClick:r["default"].PropTypes.func,skin:r["default"].PropTypes.number,perLine:r["default"].PropTypes.number,emojiSize:r["default"].PropTypes.number,style:r["default"].PropTypes.object,sheetURL:r["default"].PropTypes.string.isRequired},F.defaultProps={onClick:function(){},emojiSize:24,perLine:9,style:{},skin:1}},function(e,o){"use strict";!function(){for(var e=0,o=["ms","moz","webkit","o"],a=0;a: `raw` prop works only when `window.DOMParser` exists.');\n\t}\n\t\n\tfunction isParsable(src) {\n\t // kinda naive but meh, ain't gonna use full-blown parser for this\n\t return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\n\tfunction switchSVGAttrToReactProp(propName) {\n\t switch (propName) {\n\t case 'class':\n\t return 'className';\n\t default:\n\t return propName;\n\t }\n\t}\n\t\n\tvar InlineSVG = (function (_React$Component) {\n\t _inherits(InlineSVG, _React$Component);\n\t\n\t _createClass(InlineSVG, null, [{\n\t key: 'defaultProps',\n\t value: {\n\t element: 'i',\n\t raw: false,\n\t src: ''\n\t },\n\t enumerable: true\n\t }, {\n\t key: 'propTypes',\n\t value: {\n\t src: _react2['default'].PropTypes.string.isRequired,\n\t element: _react2['default'].PropTypes.string,\n\t raw: _react2['default'].PropTypes.bool\n\t },\n\t enumerable: true\n\t }]);\n\t\n\t function InlineSVG(props) {\n\t _classCallCheck(this, InlineSVG);\n\t\n\t _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n\t this._extractSVGProps = this._extractSVGProps.bind(this);\n\t }\n\t\n\t // Serialize `Attr` objects in `NamedNodeMap`\n\t\n\t _createClass(InlineSVG, [{\n\t key: '_serializeAttrs',\n\t value: function _serializeAttrs(map) {\n\t var ret = {};\n\t var prop = undefined;\n\t for (var i = 0; i < map.length; i++) {\n\t prop = switchSVGAttrToReactProp(map[i].name);\n\t ret[prop] = map[i].value;\n\t }\n\t return ret;\n\t }\n\t\n\t // get element props\n\t }, {\n\t key: '_extractSVGProps',\n\t value: function _extractSVGProps(src) {\n\t var map = parseFromSVGString(src).documentElement.attributes;\n\t return map.length > 0 ? this._serializeAttrs(map) : null;\n\t }\n\t\n\t // get content inside element.\n\t }, {\n\t key: '_stripSVG',\n\t value: function _stripSVG(src) {\n\t return parseFromSVGString(src).documentElement.innerHTML;\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(_ref) {\n\t var children = _ref.children;\n\t\n\t if (\"production\" !== process.env.NODE_ENV && children != null) {\n\t console.info(': `children` prop will be ignored.');\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var Element = undefined,\n\t __html = undefined,\n\t svgProps = undefined;\n\t var _props = this.props;\n\t var element = _props.element;\n\t var raw = _props.raw;\n\t var src = _props.src;\n\t\n\t if (raw === true && isParsable(src)) {\n\t Element = 'svg';\n\t svgProps = this._extractSVGProps(src);\n\t __html = this._stripSVG(src);\n\t }\n\t __html = __html || src;\n\t Element = Element || element;\n\t svgProps = svgProps || {};\n\t\n\t return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n\t dangerouslySetInnerHTML: { __html: __html } }));\n\t }\n\t }]);\n\t\n\t return InlineSVG;\n\t})(_react2['default'].Component);\n\t\n\texports['default'] = InlineSVG;\n\tmodule.exports = exports['default'];\n\n/***/ },\n/* 5 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _activity = __webpack_require__(6);\n\t\n\tObject.defineProperty(exports, 'Activity', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_activity).default;\n\t }\n\t});\n\t\n\tvar _flags = __webpack_require__(7);\n\t\n\tObject.defineProperty(exports, 'Flags', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_flags).default;\n\t }\n\t});\n\t\n\tvar _foods = __webpack_require__(8);\n\t\n\tObject.defineProperty(exports, 'Foods', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_foods).default;\n\t }\n\t});\n\t\n\tvar _nature = __webpack_require__(9);\n\t\n\tObject.defineProperty(exports, 'Nature', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_nature).default;\n\t }\n\t});\n\t\n\tvar _objects = __webpack_require__(10);\n\t\n\tObject.defineProperty(exports, 'Objects', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_objects).default;\n\t }\n\t});\n\t\n\tvar _people = __webpack_require__(11);\n\t\n\tObject.defineProperty(exports, 'People', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_people).default;\n\t }\n\t});\n\t\n\tvar _places = __webpack_require__(12);\n\t\n\tObject.defineProperty(exports, 'Places', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_places).default;\n\t }\n\t});\n\t\n\tvar _recent = __webpack_require__(13);\n\t\n\tObject.defineProperty(exports, 'Recent', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_recent).default;\n\t }\n\t});\n\t\n\tvar _symbols = __webpack_require__(14);\n\t\n\tObject.defineProperty(exports, 'Symbols', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_symbols).default;\n\t }\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/***/ },\n/* 6 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 7 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 8 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 9 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 10 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 11 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 12 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 13 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 14 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 15 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Category = function (_React$Component) {\n\t _inherits(Category, _React$Component);\n\t\n\t function Category() {\n\t _classCallCheck(this, Category);\n\t\n\t return _possibleConstructorReturn(this, Object.getPrototypeOf(Category).apply(this, arguments));\n\t }\n\t\n\t _createClass(Category, [{\n\t key: 'componentDidMount',\n\t value: function componentDidMount() {\n\t this.container = this.refs.container;\n\t this.label = this.refs.label;\n\t this.parent = this.container.parentNode;\n\t\n\t this.margin = 0;\n\t this.minMargin = 0;\n\t\n\t this.memoizeSize();\n\t }\n\t }, {\n\t key: 'componentDidUpdate',\n\t value: function componentDidUpdate() {\n\t this.memoizeSize();\n\t }\n\t }, {\n\t key: 'memoizeSize',\n\t value: function memoizeSize() {\n\t var _container$getBoundin = this.container.getBoundingClientRect();\n\t\n\t var top = _container$getBoundin.top;\n\t var height = _container$getBoundin.height;\n\t\n\t var _parent$getBoundingCl = this.parent.getBoundingClientRect();\n\t\n\t var parentTop = _parent$getBoundingCl.top;\n\t\n\t var _label$getBoundingCli = this.label.getBoundingClientRect();\n\t\n\t var labelHeight = _label$getBoundingCli.height;\n\t\n\t\n\t this.top = top - parentTop + this.parent.scrollTop;\n\t if (height > labelHeight) {\n\t this.maxMargin = height - labelHeight;\n\t } else {\n\t this.maxMargin = 1;\n\t }\n\t }\n\t }, {\n\t key: 'handleScroll',\n\t value: function handleScroll(scrollTop) {\n\t var margin = scrollTop - this.top;\n\t margin = margin < this.minMargin ? this.minMargin : margin;\n\t margin = margin > this.maxMargin ? this.maxMargin : margin;\n\t\n\t if (margin == this.margin) return;\n\t var name = this.props.name;\n\t\n\t\n\t if (!this.props.hasStickyPosition) {\n\t this.label.style.top = margin + 'px';\n\t }\n\t\n\t this.margin = margin;\n\t return true;\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props;\n\t var name = _props.name;\n\t var emojis = _props.emojis;\n\t var hasStickyPosition = _props.hasStickyPosition;\n\t var emojiProps = _props.emojiProps;\n\t var emojis = emojis ? emojis.slice(0) : null;\n\t var labelStyles = {};\n\t var labelSpanStyles = {};\n\t var containerStyles = {};\n\t\n\t if (!hasStickyPosition) {\n\t labelStyles = {\n\t height: 28\n\t };\n\t\n\t labelSpanStyles = {\n\t position: 'absolute'\n\t };\n\t }\n\t\n\t if (!emojis) {\n\t containerStyles = {\n\t height: 1,\n\t overflow: 'hidden'\n\t };\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { ref: 'container', className: 'emoji-picker-category', style: containerStyles },\n\t _react2.default.createElement(\n\t 'div',\n\t { style: labelStyles, 'data-name': name, className: 'emoji-picker-category-label' },\n\t _react2.default.createElement(\n\t 'span',\n\t { style: labelSpanStyles, ref: 'label' },\n\t name\n\t )\n\t ),\n\t emojis && emojis.map(function (emoji) {\n\t return _react2.default.createElement(_.Emoji, _extends({\n\t key: emoji,\n\t emoji: emoji\n\t }, emojiProps));\n\t }),\n\t emojis && !emojis.length && _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-no-results' },\n\t _react2.default.createElement(_.Emoji, _extends({}, emojiProps, {\n\t size: 22,\n\t emoji: 'sleuth_or_spy'\n\t })),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-no-results-label' },\n\t 'No emoji found'\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Category;\n\t}(_react2.default.Component);\n\t\n\texports.default = Category;\n\t\n\t\n\tCategory.propTypes = {\n\t emojis: _react2.default.PropTypes.array,\n\t hasStickyPosition: _react2.default.PropTypes.bool,\n\t name: _react2.default.PropTypes.string.isRequired,\n\t emojiProps: _react2.default.PropTypes.object.isRequired\n\t};\n\t\n\tCategory.defaultProps = {\n\t emojis: [],\n\t hasStickyPosition: true\n\t};\n\n/***/ },\n/* 16 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _data = __webpack_require__(17);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar SHEET_SIZE = 2624;\n\tvar EMOJI_SIZE = 64;\n\tvar SKINS = ['1F3FA', '1F3FB', '1F3FC', '1F3FD', '1F3FE', '1F3FF'];\n\t\n\tvar Emoji = function (_React$Component) {\n\t _inherits(Emoji, _React$Component);\n\t\n\t function Emoji(props) {\n\t _classCallCheck(this, Emoji);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Emoji).call(this, props));\n\t\n\t var emojiData = _this.getEmojiData();\n\t _this.hasSkinVariations = !!emojiData.skin_variations;\n\t return _this;\n\t }\n\t\n\t _createClass(Emoji, [{\n\t key: 'shouldComponentUpdate',\n\t value: function shouldComponentUpdate(nextProps) {\n\t return this.hasSkinVariations && nextProps.skin != this.props.skin || nextProps.size != this.props.size || nextProps.sheetURL != this.props.sheetURL;\n\t }\n\t }, {\n\t key: 'getEmojiData',\n\t value: function getEmojiData() {\n\t var _props = this.props;\n\t var emoji = _props.emoji;\n\t var skin = _props.skin;\n\t var sheetURL = _props.sheetURL;\n\t var emojiData = emoji;\n\t\n\t if (typeof emoji == 'string') {\n\t emojiData = _data2.default.emojis[emoji];\n\t }\n\t\n\t if (this.hasSkinVariations && skin > 1) {\n\t emojiData = JSON.parse(JSON.stringify(_data2.default.emojis[emoji]));\n\t\n\t var skinKey = SKINS[skin - 1],\n\t variationKey = emojiData.unified + '-' + skinKey,\n\t variationData = emojiData.skin_variations[variationKey],\n\t kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n\t kit = kitMatches[0];\n\t\n\t if (variationData['has_img_' + kit]) {\n\t emojiData.skin_tone = skin;\n\t\n\t for (var k in variationData) {\n\t var v = variationData[k];\n\t emojiData[k] = v;\n\t }\n\t }\n\t }\n\t\n\t return emojiData;\n\t }\n\t }, {\n\t key: 'getSheetSize',\n\t value: function getSheetSize() {\n\t var size = this.props.size;\n\t var sheetSize = SHEET_SIZE * size / EMOJI_SIZE;\n\t\n\t return sheetSize + 'px ' + sheetSize + 'px';\n\t }\n\t }, {\n\t key: 'getPosition',\n\t value: function getPosition(emojiData) {\n\t var size = this.props.size;\n\t var sheet_x = emojiData.sheet_x;\n\t var sheet_y = emojiData.sheet_y;\n\t var x = sheet_x * size;\n\t var y = sheet_y * size;\n\t\n\t return '-' + x + 'px -' + y + 'px';\n\t }\n\t }, {\n\t key: 'getNative',\n\t value: function getNative(emojiData) {\n\t var unified = emojiData.unified;\n\t var unicodes = unified.split('-');\n\t var codePoints = unicodes.map(function (u) {\n\t return '0x' + u;\n\t });\n\t\n\t return String.fromCodePoint.apply(String, _toConsumableArray(codePoints));\n\t }\n\t }, {\n\t key: 'handleClick',\n\t value: function handleClick(emojiData) {\n\t var onClick = this.props.onClick;\n\t var name = emojiData.name;\n\t var short_names = emojiData.short_names;\n\t var skin_tone = emojiData.skin_tone;\n\t var text = emojiData.text;\n\t var texts = emojiData.texts;\n\t var unified = emojiData.unified;\n\t var id = short_names[0];\n\t var colons = ':' + id + ':';\n\t\n\t texts || (texts = []);\n\t if (text && !texts.length) {\n\t texts = [text];\n\t }\n\t\n\t if (skin_tone) {\n\t colons += ':skin-tone-' + skin_tone + ':';\n\t }\n\t\n\t onClick({\n\t id: id,\n\t name: name,\n\t colons: colons,\n\t skin: skin_tone || 1,\n\t emoticons: texts,\n\t native: this.getNative(emojiData)\n\t });\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props2 = this.props;\n\t var sheetURL = _props2.sheetURL;\n\t var size = _props2.size;\n\t var onOver = _props2.onOver;\n\t var onLeave = _props2.onLeave;\n\t var emojiData = this.getEmojiData();\n\t\n\t return _react2.default.createElement(\n\t 'span',\n\t {\n\t onClick: function onClick() {\n\t return _this2.handleClick(emojiData);\n\t },\n\t onMouseEnter: function onMouseEnter() {\n\t return onOver(emojiData);\n\t },\n\t onMouseLeave: function onMouseLeave() {\n\t return onLeave(emojiData);\n\t },\n\t className: 'emoji-picker-emoji' },\n\t _react2.default.createElement('span', { style: {\n\t width: size,\n\t height: size,\n\t display: 'inline-block',\n\t backgroundImage: 'url(' + sheetURL + ')',\n\t backgroundSize: this.getSheetSize(),\n\t backgroundPosition: this.getPosition(emojiData)\n\t } })\n\t );\n\t }\n\t }]);\n\t\n\t return Emoji;\n\t}(_react2.default.Component);\n\t\n\texports.default = Emoji;\n\t\n\t\n\tEmoji.propTypes = {\n\t skin: _react2.default.PropTypes.number,\n\t onOver: _react2.default.PropTypes.func,\n\t onLeave: _react2.default.PropTypes.func,\n\t onClick: _react2.default.PropTypes.func,\n\t size: _react2.default.PropTypes.number.isRequired,\n\t sheetURL: _react2.default.PropTypes.string.isRequired,\n\t emoji: _react2.default.PropTypes.oneOfType([_react2.default.PropTypes.string, _react2.default.PropTypes.object]).isRequired\n\t};\n\t\n\tEmoji.defaultProps = {\n\t skin: 1,\n\t onOver: function onOver() {},\n\t onLeave: function onLeave() {},\n\t onClick: function onClick() {}\n\t};\n\n/***/ },\n/* 17 */\n/***/ function(module, exports) {\n\n\t\"use strict\";Object.defineProperty(exports,\"__esModule\",{value:true});exports.default={\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-af\",\"flag-ax\",\"flag-al\",\"flag-dz\",\"flag-as\",\"flag-ad\",\"flag-ao\",\"flag-ai\",\"flag-aq\",\"flag-ag\",\"flag-ar\",\"flag-am\",\"flag-aw\",\"flag-au\",\"flag-at\",\"flag-az\",\"flag-bs\",\"flag-bh\",\"flag-bd\",\"flag-bb\",\"flag-by\",\"flag-be\",\"flag-bz\",\"flag-bj\",\"flag-bm\",\"flag-bt\",\"flag-bo\",\"flag-bq\",\"flag-ba\",\"flag-bw\",\"flag-br\",\"flag-io\",\"flag-vg\",\"flag-bn\",\"flag-bg\",\"flag-bf\",\"flag-bi\",\"flag-cv\",\"flag-kh\",\"flag-cm\",\"flag-ca\",\"flag-ic\",\"flag-ky\",\"flag-cf\",\"flag-td\",\"flag-cl\",\"flag-cn\",\"flag-cx\",\"flag-cc\",\"flag-co\",\"flag-km\",\"flag-cg\",\"flag-cd\",\"flag-ck\",\"flag-cr\",\"flag-hr\",\"flag-cu\",\"flag-cw\",\"flag-cy\",\"flag-cz\",\"flag-dk\",\"flag-dj\",\"flag-dm\",\"flag-do\",\"flag-ec\",\"flag-eg\",\"flag-sv\",\"flag-gq\",\"flag-er\",\"flag-ee\",\"flag-et\",\"flag-eu\",\"flag-fk\",\"flag-fo\",\"flag-fj\",\"flag-fi\",\"flag-fr\",\"flag-gf\",\"flag-pf\",\"flag-tf\",\"flag-ga\",\"flag-gm\",\"flag-ge\",\"flag-de\",\"flag-gh\",\"flag-gi\",\"flag-gr\",\"flag-gl\",\"flag-gd\",\"flag-gp\",\"flag-gu\",\"flag-gt\",\"flag-gg\",\"flag-gn\",\"flag-gw\",\"flag-gy\",\"flag-ht\",\"flag-hn\",\"flag-hk\",\"flag-hu\",\"flag-is\",\"flag-in\",\"flag-id\",\"flag-ir\",\"flag-iq\",\"flag-ie\",\"flag-im\",\"flag-il\",\"flag-it\",\"flag-ci\",\"flag-jm\",\"flag-jp\",\"flag-je\",\"flag-jo\",\"flag-kz\",\"flag-ke\",\"flag-ki\",\"flag-xk\",\"flag-kw\",\"flag-kg\",\"flag-la\",\"flag-lv\",\"flag-lb\",\"flag-ls\",\"flag-lr\",\"flag-ly\",\"flag-li\",\"flag-lt\",\"flag-lu\",\"flag-mo\",\"flag-mk\",\"flag-mg\",\"flag-mw\",\"flag-my\",\"flag-mv\",\"flag-ml\",\"flag-mt\",\"flag-mh\",\"flag-mq\",\"flag-mr\",\"flag-mu\",\"flag-yt\",\"flag-mx\",\"flag-fm\",\"flag-md\",\"flag-mc\",\"flag-mn\",\"flag-me\",\"flag-ms\",\"flag-ma\",\"flag-mz\",\"flag-mm\",\"flag-na\",\"flag-nr\",\"flag-np\",\"flag-nl\",\"flag-nc\",\"flag-nz\",\"flag-ni\",\"flag-ne\",\"flag-ng\",\"flag-nu\",\"flag-nf\",\"flag-mp\",\"flag-kp\",\"flag-no\",\"flag-om\",\"flag-pk\",\"flag-pw\",\"flag-ps\",\"flag-pa\",\"flag-pg\",\"flag-py\",\"flag-pe\",\"flag-ph\",\"flag-pn\",\"flag-pl\",\"flag-pt\",\"flag-pr\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-ru\",\"flag-rw\",\"flag-bl\",\"flag-sh\",\"flag-kn\",\"flag-lc\",\"flag-pm\",\"flag-vc\",\"flag-ws\",\"flag-sm\",\"flag-st\",\"flag-sa\",\"flag-sn\",\"flag-rs\",\"flag-sc\",\"flag-sl\",\"flag-sg\",\"flag-sx\",\"flag-sk\",\"flag-si\",\"flag-sb\",\"flag-so\",\"flag-za\",\"flag-gs\",\"flag-kr\",\"flag-ss\",\"flag-es\",\"flag-lk\",\"flag-sd\",\"flag-sr\",\"flag-sz\",\"flag-se\",\"flag-ch\",\"flag-sy\",\"flag-tw\",\"flag-tj\",\"flag-tz\",\"flag-th\",\"flag-tl\",\"flag-tg\",\"flag-tk\",\"flag-to\",\"flag-tt\",\"flag-tn\",\"flag-tr\",\"flag-tm\",\"flag-tc\",\"flag-tv\",\"flag-ug\",\"flag-ua\",\"flag-ae\",\"flag-gb\",\"flag-us\",\"flag-vi\",\"flag-uy\",\"flag-uz\",\"flag-vu\",\"flag-va\",\"flag-ve\",\"flag-vn\",\"flag-wf\",\"flag-eh\",\"flag-ye\",\"flag-zm\",\"flag-zw\",\"flag-ac\",\"flag-bv\",\"flag-cp\",\"flag-dg\",\"flag-ea\",\"flag-hm\",\"flag-mf\",\"flag-sj\",\"flag-ta\",\"flag-um\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"text\":\":D\",\"texts\":null,\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"text\":\"<3\",\"texts\":[\"<3\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters Af\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters Ax\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters Al\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters Dz\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters As\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"text\":\":)\",\"texts\":[\"=)\",\"=-)\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"text\":\":)\",\"texts\":[\"C:\",\"c:\",\":D\",\":-D\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters Ad\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"text\":\"\",\":->\"],\"category\":\"People\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters Aq\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters Ag\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"text\":\";)\",\"texts\":[\";)\",\";-)\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters Ar\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"text\":\":)\",\"texts\":null,\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"text\":null,\"texts\":[\":)\",\"(:\",\":-)\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters Am\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters Aw\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters Au\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters at\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"text\":null,\"texts\":[\":o)\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters Az\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters Bs\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters Bh\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters Bd\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters Bb\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters by\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"text\":\";p\",\"texts\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters Be\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters Bz\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters Bj\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"text\":\":p\",\"texts\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters Bm\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters Bt\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"text\":null,\"texts\":[\"8)\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters Bo\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters Bq\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters Ba\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters Bw\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters Br\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"text\":null,\"texts\":[\":|\",\":-|\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters Io\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters Vg\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"text\":\":(\",\"texts\":null,\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters Bn\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters Bg\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters Bf\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters Bi\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"text\":\":(\",\"texts\":[\"):\",\":(\",\":-(\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters Cv\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters Kh\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"text\":null,\"texts\":[\">:(\",\">:-(\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters Cm\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters Ca\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"text\":null,\"texts\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters Ic\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters Ky\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters Cf\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters Td\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters Cl\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters Cn\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters Cx\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters Cc\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters Co\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"text\":null,\"texts\":[\":o\",\":-o\",\":O\",\":-O\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters Km\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters Cg\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters Cd\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters Ck\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters Cr\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters Hr\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"text\":null,\"texts\":[\"D:\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters Cu\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"text\":\":'(\",\"texts\":[\":'(\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters Cw\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters Cy\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters Cz\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"text\":\":'(\",\"texts\":null,\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters Dk\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters Dj\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters Dm\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters Do\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters Ec\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters Eg\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters Sv\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters Gq\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters Er\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters Ee\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters Et\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters Eu\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters Fk\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters Fo\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters Fj\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters Fi\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters Fr\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters Gf\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters Pf\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters Tf\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters Ga\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters Gm\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters Ge\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters De\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters Gh\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters Gi\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters Gr\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters Gl\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters Gd\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters Gp\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters Gu\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters Gt\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters Gg\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters Gn\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters Gw\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters Gy\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters Ht\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters Hn\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters Hk\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters Hu\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters Is\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters in\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters Id\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters Ir\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters Iq\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters Ie\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters Im\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters Il\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters It\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters Ci\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters Jm\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters Jp\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters Je\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters Jo\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters Kz\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters Ke\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters Ki\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters Xk\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters Kw\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters Kg\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters La\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters Lv\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters Lb\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters Ls\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters Lr\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters Ly\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters Li\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters Lt\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters Lu\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters Mo\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters Mk\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters Mg\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters Mw\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters My\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}}},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters Mv\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters Ml\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters Mt\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters Mh\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters Mq\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters Mr\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters Mu\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters Yt\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters Mx\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters Fm\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters Md\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters Mc\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters Mn\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters Me\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters Ms\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters Ma\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters Mz\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters Mm\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters Na\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters Nr\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters Np\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters Nl\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters Nc\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters Nz\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters Ni\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters Ne\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters Ng\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters Nu\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters Nf\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters Mp\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters Kp\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters No\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters Om\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters Pk\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters Pw\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters Ps\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters Pa\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters Pg\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters Py\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters Pe\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters Ph\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters Pn\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters Pl\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters Pt\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters Pr\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters Qa\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters Re\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters Ro\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters Ru\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"text\":null,\"texts\":[\":*\",\":-*\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters Rw\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters Bl\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters Sh\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters Kn\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters Lc\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters Pm\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters Vc\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters Ws\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters Sm\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters St\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters Sa\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters Sn\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters Rs\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters Sc\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters Sl\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters Sg\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters Sx\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters Sk\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters Si\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters Sb\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters so\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters Za\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters Gs\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters Kr\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters Ss\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters Es\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters Lk\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters Sd\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters Sr\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters Sz\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters Se\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters Ch\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters Sy\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters Tw\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters Tj\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters Tz\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters Th\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters Tl\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters Tg\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters Tk\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters to\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters Tt\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters Tn\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters Tr\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters Tm\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters Tc\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters Tv\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters Ug\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters Ua\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters Ae\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters Gb\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters Us\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters Vi\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters Uy\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters Uz\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters Vu\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters Va\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters Ve\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters Vn\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters Wf\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters Eh\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters Ye\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters Zm\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters Zw\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters Ac\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters Bv\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters Cp\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters Dg\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters Ea\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters Hm\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters Mf\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters Sj\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters Ta\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters Um\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}};\n\n/***/ },\n/* 18 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\t__webpack_require__(19);\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _data = __webpack_require__(17);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar DEFAULT_CATEGORIES = [{ name: 'Recent', emojis: null }].concat(_data2.default.categories);\n\t\n\tvar Picker = function (_React$Component) {\n\t _inherits(Picker, _React$Component);\n\t\n\t function Picker(props) {\n\t _classCallCheck(this, Picker);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Picker).call(this, props));\n\t\n\t _this.testStickyPosition();\n\t\n\t _this.state = {\n\t categories: DEFAULT_CATEGORIES,\n\t skin: props.skin\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(Picker, [{\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(props) {\n\t this.setState({ skin: props.skin });\n\t }\n\t }, {\n\t key: 'componentDidUpdate',\n\t value: function componentDidUpdate() {\n\t this.handleScroll();\n\t }\n\t }, {\n\t key: 'testStickyPosition',\n\t value: function testStickyPosition() {\n\t var stickyTestElement = document.createElement('div');\n\t var _arr = ['', '-webkit-', '-ms-', '-moz-', '-o-'];\n\t for (var _i = 0; _i < _arr.length; _i++) {\n\t var prefix = _arr[_i];\n\t stickyTestElement.style.position = prefix + 'sticky';\n\t }\n\t\n\t this.hasStickyPosition = !!stickyTestElement.style.position.length;\n\t }\n\t }, {\n\t key: 'handleEmojiOver',\n\t value: function handleEmojiOver(emoji) {\n\t var preview = this.refs.preview;\n\t\n\t preview.setState({ emoji: emoji });\n\t clearTimeout(this.leaveTimeout);\n\t }\n\t }, {\n\t key: 'handleEmojiLeave',\n\t value: function handleEmojiLeave(emoji) {\n\t var _this2 = this;\n\t\n\t this.leaveTimeout = setTimeout(function () {\n\t var preview = _this2.refs.preview;\n\t\n\t preview.setState({ emoji: null });\n\t }, 16);\n\t }\n\t }, {\n\t key: 'handleScroll',\n\t value: function handleScroll() {\n\t if (!this.waitingForPaint) {\n\t this.waitingForPaint = true;\n\t window.requestAnimationFrame(this.handleScrollPaint.bind(this));\n\t }\n\t }\n\t }, {\n\t key: 'handleScrollPaint',\n\t value: function handleScrollPaint() {\n\t this.waitingForPaint = false;\n\t\n\t var target = this.refs.scroll;\n\t var scrollTop = target.scrollTop;\n\t var scrollingDown = scrollTop > (this.scrollTop || 0);\n\t var activeCategory = null;\n\t var categories = this.state.categories;\n\t\n\t\n\t for (var i = 0, l = categories.length; i < l; i++) {\n\t var ii = scrollingDown ? categories.length - 1 - i : i,\n\t category = categories[ii],\n\t component = this.refs['category-' + ii];\n\t\n\t if (component) {\n\t var active = component.handleScroll(scrollTop);\n\t if (active && !activeCategory) {\n\t activeCategory = category;\n\t }\n\t }\n\t }\n\t\n\t if (activeCategory) {\n\t var anchors = this.refs.anchors;\n\t var _activeCategory = activeCategory;\n\t var categoryName = _activeCategory.name;\n\t\n\t\n\t if (anchors.state.selected != categoryName) {\n\t anchors.setState({ selected: categoryName });\n\t }\n\t }\n\t\n\t this.scrollTop = scrollTop;\n\t }\n\t }, {\n\t key: 'handleSearch',\n\t value: function handleSearch(emojis) {\n\t if (emojis == null) {\n\t this.setState({ categories: DEFAULT_CATEGORIES });\n\t } else {\n\t this.setState({ categories: [{\n\t name: 'Search Results',\n\t emojis: emojis\n\t }] });\n\t }\n\t }\n\t }, {\n\t key: 'handleAnchorClick',\n\t value: function handleAnchorClick(category, i) {\n\t var component = this.refs['category-' + i];\n\t var _refs = this.refs;\n\t var scroll = _refs.scroll;\n\t var anchors = _refs.anchors;\n\t\n\t\n\t if (component) {\n\t var top = component.top;\n\t\n\t\n\t if (i == 0) {\n\t top = 0;\n\t } else {\n\t top += 1;\n\t }\n\t\n\t scroll.scrollTop = top;\n\t }\n\t }\n\t }, {\n\t key: 'handleSkinChange',\n\t value: function handleSkinChange(skin) {\n\t this.setState({ skin: skin });\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this3 = this;\n\t\n\t var _props = this.props;\n\t var perLine = _props.perLine;\n\t var emojiSize = _props.emojiSize;\n\t var sheetURL = _props.sheetURL;\n\t var skin = this.state.skin;\n\t var width = perLine * (emojiSize + 12) + 12 + 2;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { style: { width: width }, className: 'emoji-picker' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-bar' },\n\t _react2.default.createElement(_.Anchors, {\n\t ref: 'anchors',\n\t categories: DEFAULT_CATEGORIES,\n\t onAnchorClick: this.handleAnchorClick.bind(this)\n\t })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { ref: 'scroll', className: 'emoji-picker-scroll', onScroll: this.handleScroll.bind(this) },\n\t _react2.default.createElement(_.Search, {\n\t onSearch: this.handleSearch.bind(this)\n\t }),\n\t this.state.categories.map(function (category, i) {\n\t return _react2.default.createElement(_.Category, {\n\t ref: 'category-' + i,\n\t key: category.name,\n\t name: category.name,\n\t emojis: category.emojis,\n\t hasStickyPosition: _this3.hasStickyPosition,\n\t emojiProps: {\n\t skin: skin,\n\t size: emojiSize,\n\t sheetURL: sheetURL,\n\t onOver: _this3.handleEmojiOver.bind(_this3),\n\t onLeave: _this3.handleEmojiLeave.bind(_this3),\n\t onClick: _this3.props.onClick\n\t }\n\t });\n\t })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-bar' },\n\t _react2.default.createElement(_.Preview, {\n\t ref: 'preview',\n\t emojiProps: {\n\t size: 38,\n\t sheetURL: sheetURL\n\t },\n\t skinsProps: {\n\t skin: skin,\n\t onChange: this.handleSkinChange.bind(this)\n\t }\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Picker;\n\t}(_react2.default.Component);\n\t\n\texports.default = Picker;\n\t\n\t\n\tPicker.propTypes = {\n\t onClick: _react2.default.PropTypes.func,\n\t skin: _react2.default.PropTypes.number,\n\t perLine: _react2.default.PropTypes.number,\n\t emojiSize: _react2.default.PropTypes.number,\n\t sheetURL: _react2.default.PropTypes.string.isRequired\n\t};\n\t\n\tPicker.defaultProps = {\n\t onClick: function onClick() {},\n\t emojiSize: 24,\n\t perLine: 9,\n\t skin: 1\n\t};\n\n/***/ },\n/* 19 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\t// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n\t// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\t\n\t// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\t\n\t// MIT license\n\t\n\t(function () {\n\t var lastTime = 0;\n\t var vendors = ['ms', 'moz', 'webkit', 'o'];\n\t for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n\t window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];\n\t window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];\n\t }\n\t\n\t if (!window.requestAnimationFrame) window.requestAnimationFrame = function (callback, element) {\n\t var currTime = new Date().getTime();\n\t var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n\t var id = window.setTimeout(function () {\n\t callback(currTime + timeToCall);\n\t }, timeToCall);\n\t lastTime = currTime + timeToCall;\n\t return id;\n\t };\n\t\n\t if (!window.cancelAnimationFrame) window.cancelAnimationFrame = function (id) {\n\t clearTimeout(id);\n\t };\n\t})();\n\n/***/ },\n/* 20 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Preview = function (_React$Component) {\n\t _inherits(Preview, _React$Component);\n\t\n\t function Preview(props) {\n\t _classCallCheck(this, Preview);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Preview).call(this, props));\n\t\n\t _this.state = { emoji: null };\n\t return _this;\n\t }\n\t\n\t _createClass(Preview, [{\n\t key: 'render',\n\t value: function render() {\n\t var emoji = this.state.emoji;\n\t var _props = this.props;\n\t var emojiProps = _props.emojiProps;\n\t var skinsProps = _props.skinsProps;\n\t\n\t\n\t if (emoji) {\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-emoji' },\n\t _react2.default.createElement(_.Emoji, _extends({\n\t key: emoji.short_name || emoji,\n\t emoji: emoji\n\t }, emojiProps))\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-data' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-preview-name' },\n\t emoji.name\n\t ),\n\t _react2.default.createElement('br', null),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-preview-shortnames' },\n\t emoji.short_names.map(function (short_name) {\n\t return _react2.default.createElement(\n\t 'span',\n\t { key: short_name, className: 'emoji-picker-preview-shortname' },\n\t ':',\n\t short_name,\n\t ':'\n\t );\n\t })\n\t )\n\t )\n\t );\n\t } else {\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-emoji' },\n\t _react2.default.createElement(_.Emoji, _extends({\n\t emoji: 'tophat'\n\t }, emojiProps))\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-data' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-title-label' },\n\t 'EmojiPicker'\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-skins' },\n\t _react2.default.createElement(_.Skins, skinsProps)\n\t )\n\t );\n\t }\n\t }\n\t }]);\n\t\n\t return Preview;\n\t}(_react2.default.Component);\n\t\n\texports.default = Preview;\n\t\n\t\n\tPreview.propTypes = {\n\t emojiProps: _react2.default.PropTypes.object.isRequired,\n\t skinsProps: _react2.default.PropTypes.object.isRequired\n\t};\n\n/***/ },\n/* 21 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _lunr = __webpack_require__(22);\n\t\n\tvar _lunr2 = _interopRequireDefault(_lunr);\n\t\n\tvar _data = __webpack_require__(17);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Search = function (_React$Component) {\n\t _inherits(Search, _React$Component);\n\t\n\t function Search(props) {\n\t _classCallCheck(this, Search);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Search).call(this, props));\n\t\n\t _this.buildIndex();\n\t return _this;\n\t }\n\t\n\t _createClass(Search, [{\n\t key: 'buildIndex',\n\t value: function buildIndex() {\n\t this.index = (0, _lunr2.default)(function () {\n\t this.field('short_name', { boost: 2 });\n\t this.field('name');\n\t\n\t this.ref('short_name');\n\t });\n\t\n\t for (var emoji in _data2.default.emojis) {\n\t var emojiData = _data2.default.emojis[emoji];\n\t var short_name = emojiData.short_name;\n\t var name = emojiData.name;\n\t\n\t\n\t this.index.add({ short_name: short_name, name: name });\n\t }\n\t }\n\t }, {\n\t key: 'handleChange',\n\t value: function handleChange() {\n\t var input = this.refs.input;\n\t var value = input.value;\n\t var results = null;\n\t\n\t if (value.length) {\n\t results = this.index.search(value).map(function (result) {\n\t return result.ref;\n\t });\n\t }\n\t\n\t this.props.onSearch(results);\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t return _react2.default.createElement('input', {\n\t ref: 'input',\n\t type: 'text',\n\t onChange: this.handleChange.bind(this),\n\t placeholder: 'Search',\n\t className: 'emoji-picker-search'\n\t });\n\t }\n\t }]);\n\t\n\t return Search;\n\t}(_react2.default.Component);\n\t\n\texports.default = Search;\n\t\n\t\n\tSearch.propTypes = {\n\t onSearch: _react2.default.PropTypes.func\n\t};\n\t\n\tSearch.defaultProps = {\n\t onSearch: function onSearch() {}\n\t};\n\n/***/ },\n/* 22 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**\n\t * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * @license MIT\n\t */\n\t\n\t;(function(){\n\t\n\t/**\n\t * Convenience function for instantiating a new lunr index and configuring it\n\t * with the default pipeline functions and the passed config function.\n\t *\n\t * When using this convenience function a new index will be created with the\n\t * following functions already in the pipeline:\n\t *\n\t * lunr.StopWordFilter - filters out any stop words before they enter the\n\t * index\n\t *\n\t * lunr.stemmer - stems the tokens before entering the index.\n\t *\n\t * Example:\n\t *\n\t * var idx = lunr(function () {\n\t * this.field('title', 10)\n\t * this.field('tags', 100)\n\t * this.field('body')\n\t * \n\t * this.ref('cid')\n\t * \n\t * this.pipeline.add(function () {\n\t * // some custom pipeline function\n\t * })\n\t * \n\t * })\n\t *\n\t * @param {Function} config A function that will be called with the new instance\n\t * of the lunr.Index as both its context and first parameter. It can be used to\n\t * customize the instance of new lunr.Index.\n\t * @namespace\n\t * @module\n\t * @returns {lunr.Index}\n\t *\n\t */\n\tvar lunr = function (config) {\n\t var idx = new lunr.Index\n\t\n\t idx.pipeline.add(\n\t lunr.trimmer,\n\t lunr.stopWordFilter,\n\t lunr.stemmer\n\t )\n\t\n\t if (config) config.call(idx, idx)\n\t\n\t return idx\n\t}\n\t\n\tlunr.version = \"0.7.1\"\n\t/*!\n\t * lunr.utils\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * A namespace containing utils for the rest of the lunr library\n\t */\n\tlunr.utils = {}\n\t\n\t/**\n\t * Print a warning message to the console.\n\t *\n\t * @param {String} message The message to be printed.\n\t * @memberOf Utils\n\t */\n\tlunr.utils.warn = (function (global) {\n\t return function (message) {\n\t if (global.console && console.warn) {\n\t console.warn(message)\n\t }\n\t }\n\t})(this)\n\t\n\t/**\n\t * Convert an object to a string.\n\t *\n\t * In the case of `null` and `undefined` the function returns\n\t * the empty string, in all other cases the result of calling\n\t * `toString` on the passed object is returned.\n\t *\n\t * @param {Any} obj The object to convert to a string.\n\t * @return {String} string representation of the passed object.\n\t * @memberOf Utils\n\t */\n\tlunr.utils.asString = function (obj) {\n\t if (obj === void 0 || obj === null) {\n\t return \"\"\n\t } else {\n\t return obj.toString()\n\t }\n\t}\n\t/*!\n\t * lunr.EventEmitter\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n\t *\n\t * @constructor\n\t */\n\tlunr.EventEmitter = function () {\n\t this.events = {}\n\t}\n\t\n\t/**\n\t * Binds a handler function to a specific event(s).\n\t *\n\t * Can bind a single function to many different events in one call.\n\t *\n\t * @param {String} [eventName] The name(s) of events to bind this function to.\n\t * @param {Function} fn The function to call when an event is fired.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.addListener = function () {\n\t var args = Array.prototype.slice.call(arguments),\n\t fn = args.pop(),\n\t names = args\n\t\n\t if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\t\n\t names.forEach(function (name) {\n\t if (!this.hasHandler(name)) this.events[name] = []\n\t this.events[name].push(fn)\n\t }, this)\n\t}\n\t\n\t/**\n\t * Removes a handler function from a specific event.\n\t *\n\t * @param {String} eventName The name of the event to remove this function from.\n\t * @param {Function} fn The function to remove from an event.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n\t if (!this.hasHandler(name)) return\n\t\n\t var fnIndex = this.events[name].indexOf(fn)\n\t this.events[name].splice(fnIndex, 1)\n\t\n\t if (!this.events[name].length) delete this.events[name]\n\t}\n\t\n\t/**\n\t * Calls all functions bound to the given event.\n\t *\n\t * Additional data can be passed to the event handler as arguments to `emit`\n\t * after the event name.\n\t *\n\t * @param {String} eventName The name of the event to emit.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.emit = function (name) {\n\t if (!this.hasHandler(name)) return\n\t\n\t var args = Array.prototype.slice.call(arguments, 1)\n\t\n\t this.events[name].forEach(function (fn) {\n\t fn.apply(undefined, args)\n\t })\n\t}\n\t\n\t/**\n\t * Checks whether a handler has ever been stored against an event.\n\t *\n\t * @param {String} eventName The name of the event to check.\n\t * @private\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.hasHandler = function (name) {\n\t return name in this.events\n\t}\n\t\n\t/*!\n\t * lunr.tokenizer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * A function for splitting a string into tokens ready to be inserted into\n\t * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n\t * the value of this property to change how strings are split into tokens.\n\t *\n\t * @module\n\t * @param {String} obj The string to convert into tokens\n\t * @see lunr.tokenizer.seperator\n\t * @returns {Array}\n\t */\n\tlunr.tokenizer = function (obj) {\n\t if (!arguments.length || obj == null || obj == undefined) return []\n\t if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\t\n\t return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n\t}\n\t\n\t/**\n\t * The sperator used to split a string into tokens. Override this property to change the behaviour of\n\t * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n\t *\n\t * @static\n\t * @see lunr.tokenizer\n\t */\n\tlunr.tokenizer.seperator = /[\\s\\-]+/\n\t\n\t/**\n\t * Loads a previously serialised tokenizer.\n\t *\n\t * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n\t * If the serialised tokenizer has not been registered then an error will be thrown.\n\t *\n\t * @param {String} label The label of the serialised tokenizer.\n\t * @returns {Function}\n\t * @memberOf tokenizer\n\t */\n\tlunr.tokenizer.load = function (label) {\n\t var fn = this.registeredFunctions[label]\n\t\n\t if (!fn) {\n\t throw new Error('Cannot load un-registered function: ' + label)\n\t }\n\t\n\t return fn\n\t}\n\t\n\tlunr.tokenizer.label = 'default'\n\t\n\tlunr.tokenizer.registeredFunctions = {\n\t 'default': lunr.tokenizer\n\t}\n\t\n\t/**\n\t * Register a tokenizer function.\n\t *\n\t * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n\t *\n\t * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n\t *\n\t * @param {Function} fn The function to register.\n\t * @param {String} label The label to register this function with\n\t * @memberOf tokenizer\n\t */\n\tlunr.tokenizer.registerFunction = function (fn, label) {\n\t if (label in this.registeredFunctions) {\n\t lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n\t }\n\t\n\t fn.label = label\n\t this.registeredFunctions[label] = fn\n\t}\n\t/*!\n\t * lunr.Pipeline\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Pipelines maintain an ordered list of functions to be applied to all\n\t * tokens in documents entering the search index and queries being ran against\n\t * the index.\n\t *\n\t * An instance of lunr.Index created with the lunr shortcut will contain a\n\t * pipeline with a stop word filter and an English language stemmer. Extra\n\t * functions can be added before or after either of these functions or these\n\t * default functions can be removed.\n\t *\n\t * When run the pipeline will call each function in turn, passing a token, the\n\t * index of that token in the original list of all tokens and finally a list of\n\t * all the original tokens.\n\t *\n\t * The output of functions in the pipeline will be passed to the next function\n\t * in the pipeline. To exclude a token from entering the index the function\n\t * should return undefined, the rest of the pipeline will not be called with\n\t * this token.\n\t *\n\t * For serialisation of pipelines to work, all functions used in an instance of\n\t * a pipeline should be registered with lunr.Pipeline. Registered functions can\n\t * then be loaded. If trying to load a serialised pipeline that uses functions\n\t * that are not registered an error will be thrown.\n\t *\n\t * If not planning on serialising the pipeline then registering pipeline functions\n\t * is not necessary.\n\t *\n\t * @constructor\n\t */\n\tlunr.Pipeline = function () {\n\t this._stack = []\n\t}\n\t\n\tlunr.Pipeline.registeredFunctions = {}\n\t\n\t/**\n\t * Register a function with the pipeline.\n\t *\n\t * Functions that are used in the pipeline should be registered if the pipeline\n\t * needs to be serialised, or a serialised pipeline needs to be loaded.\n\t *\n\t * Registering a function does not add it to a pipeline, functions must still be\n\t * added to instances of the pipeline for them to be used when running a pipeline.\n\t *\n\t * @param {Function} fn The function to check for.\n\t * @param {String} label The label to register this function with\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.registerFunction = function (fn, label) {\n\t if (label in this.registeredFunctions) {\n\t lunr.utils.warn('Overwriting existing registered function: ' + label)\n\t }\n\t\n\t fn.label = label\n\t lunr.Pipeline.registeredFunctions[fn.label] = fn\n\t}\n\t\n\t/**\n\t * Warns if the function is not registered as a Pipeline function.\n\t *\n\t * @param {Function} fn The function to check for.\n\t * @private\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n\t var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\t\n\t if (!isRegistered) {\n\t lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n\t }\n\t}\n\t\n\t/**\n\t * Loads a previously serialised pipeline.\n\t *\n\t * All functions to be loaded must already be registered with lunr.Pipeline.\n\t * If any function from the serialised data has not been registered then an\n\t * error will be thrown.\n\t *\n\t * @param {Object} serialised The serialised pipeline to load.\n\t * @returns {lunr.Pipeline}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.load = function (serialised) {\n\t var pipeline = new lunr.Pipeline\n\t\n\t serialised.forEach(function (fnName) {\n\t var fn = lunr.Pipeline.registeredFunctions[fnName]\n\t\n\t if (fn) {\n\t pipeline.add(fn)\n\t } else {\n\t throw new Error('Cannot load un-registered function: ' + fnName)\n\t }\n\t })\n\t\n\t return pipeline\n\t}\n\t\n\t/**\n\t * Adds new functions to the end of the pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} functions Any number of functions to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.add = function () {\n\t var fns = Array.prototype.slice.call(arguments)\n\t\n\t fns.forEach(function (fn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\t this._stack.push(fn)\n\t }, this)\n\t}\n\t\n\t/**\n\t * Adds a single function after a function that already exists in the\n\t * pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} existingFn A function that already exists in the pipeline.\n\t * @param {Function} newFn The new function to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\t\n\t var pos = this._stack.indexOf(existingFn)\n\t if (pos == -1) {\n\t throw new Error('Cannot find existingFn')\n\t }\n\t\n\t pos = pos + 1\n\t this._stack.splice(pos, 0, newFn)\n\t}\n\t\n\t/**\n\t * Adds a single function before a function that already exists in the\n\t * pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} existingFn A function that already exists in the pipeline.\n\t * @param {Function} newFn The new function to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\t\n\t var pos = this._stack.indexOf(existingFn)\n\t if (pos == -1) {\n\t throw new Error('Cannot find existingFn')\n\t }\n\t\n\t this._stack.splice(pos, 0, newFn)\n\t}\n\t\n\t/**\n\t * Removes a function from the pipeline.\n\t *\n\t * @param {Function} fn The function to remove from the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.remove = function (fn) {\n\t var pos = this._stack.indexOf(fn)\n\t if (pos == -1) {\n\t return\n\t }\n\t\n\t this._stack.splice(pos, 1)\n\t}\n\t\n\t/**\n\t * Runs the current list of functions that make up the pipeline against the\n\t * passed tokens.\n\t *\n\t * @param {Array} tokens The tokens to run through the pipeline.\n\t * @returns {Array}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.run = function (tokens) {\n\t var out = [],\n\t tokenLength = tokens.length,\n\t stackLength = this._stack.length\n\t\n\t for (var i = 0; i < tokenLength; i++) {\n\t var token = tokens[i]\n\t\n\t for (var j = 0; j < stackLength; j++) {\n\t token = this._stack[j](token, i, tokens)\n\t if (token === void 0 || token === '') break\n\t };\n\t\n\t if (token !== void 0 && token !== '') out.push(token)\n\t };\n\t\n\t return out\n\t}\n\t\n\t/**\n\t * Resets the pipeline by removing any existing processors.\n\t *\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.reset = function () {\n\t this._stack = []\n\t}\n\t\n\t/**\n\t * Returns a representation of the pipeline ready for serialisation.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @returns {Array}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.toJSON = function () {\n\t return this._stack.map(function (fn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\t\n\t return fn.label\n\t })\n\t}\n\t/*!\n\t * lunr.Vector\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Vectors implement vector related operations for\n\t * a series of elements.\n\t *\n\t * @constructor\n\t */\n\tlunr.Vector = function () {\n\t this._magnitude = null\n\t this.list = undefined\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * lunr.Vector.Node is a simple struct for each node\n\t * in a lunr.Vector.\n\t *\n\t * @private\n\t * @param {Number} The index of the node in the vector.\n\t * @param {Object} The data at this node in the vector.\n\t * @param {lunr.Vector.Node} The node directly after this node in the vector.\n\t * @constructor\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.Node = function (idx, val, next) {\n\t this.idx = idx\n\t this.val = val\n\t this.next = next\n\t}\n\t\n\t/**\n\t * Inserts a new value at a position in a vector.\n\t *\n\t * @param {Number} The index at which to insert a value.\n\t * @param {Object} The object to insert in the vector.\n\t * @memberOf Vector.\n\t */\n\tlunr.Vector.prototype.insert = function (idx, val) {\n\t this._magnitude = undefined;\n\t var list = this.list\n\t\n\t if (!list) {\n\t this.list = new lunr.Vector.Node (idx, val, list)\n\t return this.length++\n\t }\n\t\n\t if (idx < list.idx) {\n\t this.list = new lunr.Vector.Node (idx, val, list)\n\t return this.length++\n\t }\n\t\n\t var prev = list,\n\t next = list.next\n\t\n\t while (next != undefined) {\n\t if (idx < next.idx) {\n\t prev.next = new lunr.Vector.Node (idx, val, next)\n\t return this.length++\n\t }\n\t\n\t prev = next, next = next.next\n\t }\n\t\n\t prev.next = new lunr.Vector.Node (idx, val, next)\n\t return this.length++\n\t}\n\t\n\t/**\n\t * Calculates the magnitude of this vector.\n\t *\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.magnitude = function () {\n\t if (this._magnitude) return this._magnitude\n\t var node = this.list,\n\t sumOfSquares = 0,\n\t val\n\t\n\t while (node) {\n\t val = node.val\n\t sumOfSquares += val * val\n\t node = node.next\n\t }\n\t\n\t return this._magnitude = Math.sqrt(sumOfSquares)\n\t}\n\t\n\t/**\n\t * Calculates the dot product of this vector and another vector.\n\t *\n\t * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.dot = function (otherVector) {\n\t var node = this.list,\n\t otherNode = otherVector.list,\n\t dotProduct = 0\n\t\n\t while (node && otherNode) {\n\t if (node.idx < otherNode.idx) {\n\t node = node.next\n\t } else if (node.idx > otherNode.idx) {\n\t otherNode = otherNode.next\n\t } else {\n\t dotProduct += node.val * otherNode.val\n\t node = node.next\n\t otherNode = otherNode.next\n\t }\n\t }\n\t\n\t return dotProduct\n\t}\n\t\n\t/**\n\t * Calculates the cosine similarity between this vector and another\n\t * vector.\n\t *\n\t * @param {lunr.Vector} otherVector The other vector to calculate the\n\t * similarity with.\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.similarity = function (otherVector) {\n\t return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n\t}\n\t/*!\n\t * lunr.SortedSet\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n\t * order.\n\t *\n\t * @constructor\n\t */\n\tlunr.SortedSet = function () {\n\t this.length = 0\n\t this.elements = []\n\t}\n\t\n\t/**\n\t * Loads a previously serialised sorted set.\n\t *\n\t * @param {Array} serialisedData The serialised set to load.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.load = function (serialisedData) {\n\t var set = new this\n\t\n\t set.elements = serialisedData\n\t set.length = serialisedData.length\n\t\n\t return set\n\t}\n\t\n\t/**\n\t * Inserts new items into the set in the correct position to maintain the\n\t * order.\n\t *\n\t * @param {Object} The objects to add to this set.\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.add = function () {\n\t var i, element\n\t\n\t for (i = 0; i < arguments.length; i++) {\n\t element = arguments[i]\n\t if (~this.indexOf(element)) continue\n\t this.elements.splice(this.locationFor(element), 0, element)\n\t }\n\t\n\t this.length = this.elements.length\n\t}\n\t\n\t/**\n\t * Converts this sorted set into an array.\n\t *\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.toArray = function () {\n\t return this.elements.slice()\n\t}\n\t\n\t/**\n\t * Creates a new array with the results of calling a provided function on every\n\t * element in this sorted set.\n\t *\n\t * Delegates to Array.prototype.map and has the same signature.\n\t *\n\t * @param {Function} fn The function that is called on each element of the\n\t * set.\n\t * @param {Object} ctx An optional object that can be used as the context\n\t * for the function fn.\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.map = function (fn, ctx) {\n\t return this.elements.map(fn, ctx)\n\t}\n\t\n\t/**\n\t * Executes a provided function once per sorted set element.\n\t *\n\t * Delegates to Array.prototype.forEach and has the same signature.\n\t *\n\t * @param {Function} fn The function that is called on each element of the\n\t * set.\n\t * @param {Object} ctx An optional object that can be used as the context\n\t * @memberOf SortedSet\n\t * for the function fn.\n\t */\n\tlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n\t return this.elements.forEach(fn, ctx)\n\t}\n\t\n\t/**\n\t * Returns the index at which a given element can be found in the\n\t * sorted set, or -1 if it is not present.\n\t *\n\t * @param {Object} elem The object to locate in the sorted set.\n\t * @returns {Number}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.indexOf = function (elem) {\n\t var start = 0,\n\t end = this.elements.length,\n\t sectionLength = end - start,\n\t pivot = start + Math.floor(sectionLength / 2),\n\t pivotElem = this.elements[pivot]\n\t\n\t while (sectionLength > 1) {\n\t if (pivotElem === elem) return pivot\n\t\n\t if (pivotElem < elem) start = pivot\n\t if (pivotElem > elem) end = pivot\n\t\n\t sectionLength = end - start\n\t pivot = start + Math.floor(sectionLength / 2)\n\t pivotElem = this.elements[pivot]\n\t }\n\t\n\t if (pivotElem === elem) return pivot\n\t\n\t return -1\n\t}\n\t\n\t/**\n\t * Returns the position within the sorted set that an element should be\n\t * inserted at to maintain the current order of the set.\n\t *\n\t * This function assumes that the element to search for does not already exist\n\t * in the sorted set.\n\t *\n\t * @param {Object} elem The elem to find the position for in the set\n\t * @returns {Number}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.locationFor = function (elem) {\n\t var start = 0,\n\t end = this.elements.length,\n\t sectionLength = end - start,\n\t pivot = start + Math.floor(sectionLength / 2),\n\t pivotElem = this.elements[pivot]\n\t\n\t while (sectionLength > 1) {\n\t if (pivotElem < elem) start = pivot\n\t if (pivotElem > elem) end = pivot\n\t\n\t sectionLength = end - start\n\t pivot = start + Math.floor(sectionLength / 2)\n\t pivotElem = this.elements[pivot]\n\t }\n\t\n\t if (pivotElem > elem) return pivot\n\t if (pivotElem < elem) return pivot + 1\n\t}\n\t\n\t/**\n\t * Creates a new lunr.SortedSet that contains the elements in the intersection\n\t * of this set and the passed set.\n\t *\n\t * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.intersect = function (otherSet) {\n\t var intersectSet = new lunr.SortedSet,\n\t i = 0, j = 0,\n\t a_len = this.length, b_len = otherSet.length,\n\t a = this.elements, b = otherSet.elements\n\t\n\t while (true) {\n\t if (i > a_len - 1 || j > b_len - 1) break\n\t\n\t if (a[i] === b[j]) {\n\t intersectSet.add(a[i])\n\t i++, j++\n\t continue\n\t }\n\t\n\t if (a[i] < b[j]) {\n\t i++\n\t continue\n\t }\n\t\n\t if (a[i] > b[j]) {\n\t j++\n\t continue\n\t }\n\t };\n\t\n\t return intersectSet\n\t}\n\t\n\t/**\n\t * Makes a copy of this set\n\t *\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.clone = function () {\n\t var clone = new lunr.SortedSet\n\t\n\t clone.elements = this.toArray()\n\t clone.length = clone.elements.length\n\t\n\t return clone\n\t}\n\t\n\t/**\n\t * Creates a new lunr.SortedSet that contains the elements in the union\n\t * of this set and the passed set.\n\t *\n\t * @param {lunr.SortedSet} otherSet The set to union with this set.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.union = function (otherSet) {\n\t var longSet, shortSet, unionSet\n\t\n\t if (this.length >= otherSet.length) {\n\t longSet = this, shortSet = otherSet\n\t } else {\n\t longSet = otherSet, shortSet = this\n\t }\n\t\n\t unionSet = longSet.clone()\n\t\n\t for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n\t unionSet.add(shortSetElements[i])\n\t }\n\t\n\t return unionSet\n\t}\n\t\n\t/**\n\t * Returns a representation of the sorted set ready for serialisation.\n\t *\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.toJSON = function () {\n\t return this.toArray()\n\t}\n\t/*!\n\t * lunr.Index\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Index is object that manages a search index. It contains the indexes\n\t * and stores all the tokens and document lookups. It also provides the main\n\t * user facing API for the library.\n\t *\n\t * @constructor\n\t */\n\tlunr.Index = function () {\n\t this._fields = []\n\t this._ref = 'id'\n\t this.pipeline = new lunr.Pipeline\n\t this.documentStore = new lunr.Store\n\t this.tokenStore = new lunr.TokenStore\n\t this.corpusTokens = new lunr.SortedSet\n\t this.eventEmitter = new lunr.EventEmitter\n\t this.tokenizerFn = lunr.tokenizer\n\t\n\t this._idfCache = {}\n\t\n\t this.on('add', 'remove', 'update', (function () {\n\t this._idfCache = {}\n\t }).bind(this))\n\t}\n\t\n\t/**\n\t * Bind a handler to events being emitted by the index.\n\t *\n\t * The handler can be bound to many events at the same time.\n\t *\n\t * @param {String} [eventName] The name(s) of events to bind the function to.\n\t * @param {Function} fn The serialised set to load.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.on = function () {\n\t var args = Array.prototype.slice.call(arguments)\n\t return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n\t}\n\t\n\t/**\n\t * Removes a handler from an event being emitted by the index.\n\t *\n\t * @param {String} eventName The name of events to remove the function from.\n\t * @param {Function} fn The serialised set to load.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.off = function (name, fn) {\n\t return this.eventEmitter.removeListener(name, fn)\n\t}\n\t\n\t/**\n\t * Loads a previously serialised index.\n\t *\n\t * Issues a warning if the index being imported was serialised\n\t * by a different version of lunr.\n\t *\n\t * @param {Object} serialisedData The serialised set to load.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.load = function (serialisedData) {\n\t if (serialisedData.version !== lunr.version) {\n\t lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n\t }\n\t\n\t var idx = new this\n\t\n\t idx._fields = serialisedData.fields\n\t idx._ref = serialisedData.ref\n\t\n\t idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n\t idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n\t idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n\t idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n\t idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\t\n\t return idx\n\t}\n\t\n\t/**\n\t * Adds a field to the list of fields that will be searchable within documents\n\t * in the index.\n\t *\n\t * An optional boost param can be passed to affect how much tokens in this field\n\t * rank in search results, by default the boost value is 1.\n\t *\n\t * Fields should be added before any documents are added to the index, fields\n\t * that are added after documents are added to the index will only apply to new\n\t * documents added to the index.\n\t *\n\t * @param {String} fieldName The name of the field within the document that\n\t * should be indexed\n\t * @param {Number} boost An optional boost that can be applied to terms in this\n\t * field.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.field = function (fieldName, opts) {\n\t var opts = opts || {},\n\t field = { name: fieldName, boost: opts.boost || 1 }\n\t\n\t this._fields.push(field)\n\t return this\n\t}\n\t\n\t/**\n\t * Sets the property used to uniquely identify documents added to the index,\n\t * by default this property is 'id'.\n\t *\n\t * This should only be changed before adding documents to the index, changing\n\t * the ref property without resetting the index can lead to unexpected results.\n\t *\n\t * The value of ref can be of any type but it _must_ be stably comparable and\n\t * orderable.\n\t *\n\t * @param {String} refName The property to use to uniquely identify the\n\t * documents in the index.\n\t * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.ref = function (refName) {\n\t this._ref = refName\n\t return this\n\t}\n\t\n\t/**\n\t * Sets the tokenizer used for this index.\n\t *\n\t * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n\t * should only be changed before adding documents to the index. Changing the tokenizer\n\t * without re-building the index can lead to unexpected results.\n\t *\n\t * @param {Function} fn The function to use as a tokenizer.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.tokenizer = function (fn) {\n\t var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\t\n\t if (!isRegistered) {\n\t lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n\t }\n\t\n\t this.tokenizerFn = fn\n\t return this\n\t}\n\t\n\t/**\n\t * Add a document to the index.\n\t *\n\t * This is the way new documents enter the index, this function will run the\n\t * fields from the document through the index's pipeline and then add it to\n\t * the index, it will then show up in search results.\n\t *\n\t * An 'add' event is emitted with the document that has been added and the index\n\t * the document has been added to. This event can be silenced by passing false\n\t * as the second argument to add.\n\t *\n\t * @param {Object} doc The document to add to the index.\n\t * @param {Boolean} emitEvent Whether or not to emit events, default true.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.add = function (doc, emitEvent) {\n\t var docTokens = {},\n\t allDocumentTokens = new lunr.SortedSet,\n\t docRef = doc[this._ref],\n\t emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t this._fields.forEach(function (field) {\n\t var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\t\n\t docTokens[field.name] = fieldTokens\n\t\n\t for (var i = 0; i < fieldTokens.length; i++) {\n\t var token = fieldTokens[i]\n\t allDocumentTokens.add(token)\n\t this.corpusTokens.add(token)\n\t }\n\t }, this)\n\t\n\t this.documentStore.set(docRef, allDocumentTokens)\n\t\n\t for (var i = 0; i < allDocumentTokens.length; i++) {\n\t var token = allDocumentTokens.elements[i]\n\t var tf = 0;\n\t\n\t for (var j = 0; j < this._fields.length; j++){\n\t var field = this._fields[j]\n\t var fieldTokens = docTokens[field.name]\n\t var fieldLength = fieldTokens.length\n\t\n\t if (!fieldLength) continue\n\t\n\t var tokenCount = 0\n\t for (var k = 0; k < fieldLength; k++){\n\t if (fieldTokens[k] === token){\n\t tokenCount++\n\t }\n\t }\n\t\n\t tf += (tokenCount / fieldLength * field.boost)\n\t }\n\t\n\t this.tokenStore.add(token, { ref: docRef, tf: tf })\n\t };\n\t\n\t if (emitEvent) this.eventEmitter.emit('add', doc, this)\n\t}\n\t\n\t/**\n\t * Removes a document from the index.\n\t *\n\t * To make sure documents no longer show up in search results they can be\n\t * removed from the index using this method.\n\t *\n\t * The document passed only needs to have the same ref property value as the\n\t * document that was added to the index, they could be completely different\n\t * objects.\n\t *\n\t * A 'remove' event is emitted with the document that has been removed and the index\n\t * the document has been removed from. This event can be silenced by passing false\n\t * as the second argument to remove.\n\t *\n\t * @param {Object} doc The document to remove from the index.\n\t * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.remove = function (doc, emitEvent) {\n\t var docRef = doc[this._ref],\n\t emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t if (!this.documentStore.has(docRef)) return\n\t\n\t var docTokens = this.documentStore.get(docRef)\n\t\n\t this.documentStore.remove(docRef)\n\t\n\t docTokens.forEach(function (token) {\n\t this.tokenStore.remove(token, docRef)\n\t }, this)\n\t\n\t if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n\t}\n\t\n\t/**\n\t * Updates a document in the index.\n\t *\n\t * When a document contained within the index gets updated, fields changed,\n\t * added or removed, to make sure it correctly matched against search queries,\n\t * it should be updated in the index.\n\t *\n\t * This method is just a wrapper around `remove` and `add`\n\t *\n\t * An 'update' event is emitted with the document that has been updated and the index.\n\t * This event can be silenced by passing false as the second argument to update. Only\n\t * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n\t * are silenced.\n\t *\n\t * @param {Object} doc The document to update in the index.\n\t * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n\t * @see Index.prototype.remove\n\t * @see Index.prototype.add\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.update = function (doc, emitEvent) {\n\t var emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t this.remove(doc, false)\n\t this.add(doc, false)\n\t\n\t if (emitEvent) this.eventEmitter.emit('update', doc, this)\n\t}\n\t\n\t/**\n\t * Calculates the inverse document frequency for a token within the index.\n\t *\n\t * @param {String} token The token to calculate the idf of.\n\t * @see Index.prototype.idf\n\t * @private\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.idf = function (term) {\n\t var cacheKey = \"@\" + term\n\t if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\t\n\t var documentFrequency = this.tokenStore.count(term),\n\t idf = 1\n\t\n\t if (documentFrequency > 0) {\n\t idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n\t }\n\t\n\t return this._idfCache[cacheKey] = idf\n\t}\n\t\n\t/**\n\t * Searches the index using the passed query.\n\t *\n\t * Queries should be a string, multiple words are allowed and will lead to an\n\t * AND based query, e.g. `idx.search('foo bar')` will run a search for\n\t * documents containing both 'foo' and 'bar'.\n\t *\n\t * All query tokens are passed through the same pipeline that document tokens\n\t * are passed through, so any language processing involved will be run on every\n\t * query term.\n\t *\n\t * Each query term is expanded, so that the term 'he' might be expanded to\n\t * 'hello' and 'help' if those terms were already included in the index.\n\t *\n\t * Matching documents are returned as an array of objects, each object contains\n\t * the matching document ref, as set for this index, and the similarity score\n\t * for this document against the query.\n\t *\n\t * @param {String} query The query to search the index with.\n\t * @returns {Object}\n\t * @see Index.prototype.idf\n\t * @see Index.prototype.documentVector\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.search = function (query) {\n\t var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n\t queryVector = new lunr.Vector,\n\t documentSets = [],\n\t fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\t\n\t var hasSomeToken = queryTokens.some(function (token) {\n\t return this.tokenStore.has(token)\n\t }, this)\n\t\n\t if (!hasSomeToken) return []\n\t\n\t queryTokens\n\t .forEach(function (token, i, tokens) {\n\t var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n\t self = this\n\t\n\t var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n\t var pos = self.corpusTokens.indexOf(key),\n\t idf = self.idf(key),\n\t similarityBoost = 1,\n\t set = new lunr.SortedSet\n\t\n\t // if the expanded key is not an exact match to the token then\n\t // penalise the score for this key by how different the key is\n\t // to the token.\n\t if (key !== token) {\n\t var diff = Math.max(3, key.length - token.length)\n\t similarityBoost = 1 / Math.log(diff)\n\t }\n\t\n\t // calculate the query tf-idf score for this token\n\t // applying an similarityBoost to ensure exact matches\n\t // these rank higher than expanded terms\n\t if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\t\n\t // add all the documents that have this key into a set\n\t // ensuring that the type of key is preserved\n\t var matchingDocuments = self.tokenStore.get(key),\n\t refs = Object.keys(matchingDocuments),\n\t refsLen = refs.length\n\t\n\t for (var i = 0; i < refsLen; i++) {\n\t set.add(matchingDocuments[refs[i]].ref)\n\t }\n\t\n\t return memo.union(set)\n\t }, new lunr.SortedSet)\n\t\n\t documentSets.push(set)\n\t }, this)\n\t\n\t var documentSet = documentSets.reduce(function (memo, set) {\n\t return memo.intersect(set)\n\t })\n\t\n\t return documentSet\n\t .map(function (ref) {\n\t return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n\t }, this)\n\t .sort(function (a, b) {\n\t return b.score - a.score\n\t })\n\t}\n\t\n\t/**\n\t * Generates a vector containing all the tokens in the document matching the\n\t * passed documentRef.\n\t *\n\t * The vector contains the tf-idf score for each token contained in the\n\t * document with the passed documentRef. The vector will contain an element\n\t * for every token in the indexes corpus, if the document does not contain that\n\t * token the element will be 0.\n\t *\n\t * @param {Object} documentRef The ref to find the document with.\n\t * @returns {lunr.Vector}\n\t * @private\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.documentVector = function (documentRef) {\n\t var documentTokens = this.documentStore.get(documentRef),\n\t documentTokensLength = documentTokens.length,\n\t documentVector = new lunr.Vector\n\t\n\t for (var i = 0; i < documentTokensLength; i++) {\n\t var token = documentTokens.elements[i],\n\t tf = this.tokenStore.get(token)[documentRef].tf,\n\t idf = this.idf(token)\n\t\n\t documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n\t };\n\t\n\t return documentVector\n\t}\n\t\n\t/**\n\t * Returns a representation of the index ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.toJSON = function () {\n\t return {\n\t version: lunr.version,\n\t fields: this._fields,\n\t ref: this._ref,\n\t tokenizer: this.tokenizerFn.label,\n\t documentStore: this.documentStore.toJSON(),\n\t tokenStore: this.tokenStore.toJSON(),\n\t corpusTokens: this.corpusTokens.toJSON(),\n\t pipeline: this.pipeline.toJSON()\n\t }\n\t}\n\t\n\t/**\n\t * Applies a plugin to the current index.\n\t *\n\t * A plugin is a function that is called with the index as its context.\n\t * Plugins can be used to customise or extend the behaviour the index\n\t * in some way. A plugin is just a function, that encapsulated the custom\n\t * behaviour that should be applied to the index.\n\t *\n\t * The plugin function will be called with the index as its argument, additional\n\t * arguments can also be passed when calling use. The function will be called\n\t * with the index as its context.\n\t *\n\t * Example:\n\t *\n\t * var myPlugin = function (idx, arg1, arg2) {\n\t * // `this` is the index to be extended\n\t * // apply any extensions etc here.\n\t * }\n\t *\n\t * var idx = lunr(function () {\n\t * this.use(myPlugin, 'arg1', 'arg2')\n\t * })\n\t *\n\t * @param {Function} plugin The plugin to apply.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.use = function (plugin) {\n\t var args = Array.prototype.slice.call(arguments, 1)\n\t args.unshift(this)\n\t plugin.apply(this, args)\n\t}\n\t/*!\n\t * lunr.Store\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Store is a simple key-value store used for storing sets of tokens for\n\t * documents stored in index.\n\t *\n\t * @constructor\n\t * @module\n\t */\n\tlunr.Store = function () {\n\t this.store = {}\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * Loads a previously serialised store\n\t *\n\t * @param {Object} serialisedData The serialised store to load.\n\t * @returns {lunr.Store}\n\t * @memberOf Store\n\t */\n\tlunr.Store.load = function (serialisedData) {\n\t var store = new this\n\t\n\t store.length = serialisedData.length\n\t store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n\t memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n\t return memo\n\t }, {})\n\t\n\t return store\n\t}\n\t\n\t/**\n\t * Stores the given tokens in the store against the given id.\n\t *\n\t * @param {Object} id The key used to store the tokens against.\n\t * @param {Object} tokens The tokens to store against the key.\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.set = function (id, tokens) {\n\t if (!this.has(id)) this.length++\n\t this.store[id] = tokens\n\t}\n\t\n\t/**\n\t * Retrieves the tokens from the store for a given key.\n\t *\n\t * @param {Object} id The key to lookup and retrieve from the store.\n\t * @returns {Object}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.get = function (id) {\n\t return this.store[id]\n\t}\n\t\n\t/**\n\t * Checks whether the store contains a key.\n\t *\n\t * @param {Object} id The id to look up in the store.\n\t * @returns {Boolean}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.has = function (id) {\n\t return id in this.store\n\t}\n\t\n\t/**\n\t * Removes the value for a key in the store.\n\t *\n\t * @param {Object} id The id to remove from the store.\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.remove = function (id) {\n\t if (!this.has(id)) return\n\t\n\t delete this.store[id]\n\t this.length--\n\t}\n\t\n\t/**\n\t * Returns a representation of the store ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.toJSON = function () {\n\t return {\n\t store: this.store,\n\t length: this.length\n\t }\n\t}\n\t\n\t/*!\n\t * lunr.stemmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n\t */\n\t\n\t/**\n\t * lunr.stemmer is an english language stemmer, this is a JavaScript\n\t * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n\t *\n\t * @module\n\t * @param {String} str The string to stem\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.stemmer = (function(){\n\t var step2list = {\n\t \"ational\" : \"ate\",\n\t \"tional\" : \"tion\",\n\t \"enci\" : \"ence\",\n\t \"anci\" : \"ance\",\n\t \"izer\" : \"ize\",\n\t \"bli\" : \"ble\",\n\t \"alli\" : \"al\",\n\t \"entli\" : \"ent\",\n\t \"eli\" : \"e\",\n\t \"ousli\" : \"ous\",\n\t \"ization\" : \"ize\",\n\t \"ation\" : \"ate\",\n\t \"ator\" : \"ate\",\n\t \"alism\" : \"al\",\n\t \"iveness\" : \"ive\",\n\t \"fulness\" : \"ful\",\n\t \"ousness\" : \"ous\",\n\t \"aliti\" : \"al\",\n\t \"iviti\" : \"ive\",\n\t \"biliti\" : \"ble\",\n\t \"logi\" : \"log\"\n\t },\n\t\n\t step3list = {\n\t \"icate\" : \"ic\",\n\t \"ative\" : \"\",\n\t \"alize\" : \"al\",\n\t \"iciti\" : \"ic\",\n\t \"ical\" : \"ic\",\n\t \"ful\" : \"\",\n\t \"ness\" : \"\"\n\t },\n\t\n\t c = \"[^aeiou]\", // consonant\n\t v = \"[aeiouy]\", // vowel\n\t C = c + \"[^aeiouy]*\", // consonant sequence\n\t V = v + \"[aeiou]*\", // vowel sequence\n\t\n\t mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n\t meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n\t mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n\t s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\t\n\t var re_mgr0 = new RegExp(mgr0);\n\t var re_mgr1 = new RegExp(mgr1);\n\t var re_meq1 = new RegExp(meq1);\n\t var re_s_v = new RegExp(s_v);\n\t\n\t var re_1a = /^(.+?)(ss|i)es$/;\n\t var re2_1a = /^(.+?)([^s])s$/;\n\t var re_1b = /^(.+?)eed$/;\n\t var re2_1b = /^(.+?)(ed|ing)$/;\n\t var re_1b_2 = /.$/;\n\t var re2_1b_2 = /(at|bl|iz)$/;\n\t var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n\t var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\t\n\t var re_1c = /^(.+?[^aeiou])y$/;\n\t var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\t\n\t var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\t\n\t var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n\t var re2_4 = /^(.+?)(s|t)(ion)$/;\n\t\n\t var re_5 = /^(.+?)e$/;\n\t var re_5_1 = /ll$/;\n\t var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\t\n\t var porterStemmer = function porterStemmer(w) {\n\t var stem,\n\t suffix,\n\t firstch,\n\t re,\n\t re2,\n\t re3,\n\t re4;\n\t\n\t if (w.length < 3) { return w; }\n\t\n\t firstch = w.substr(0,1);\n\t if (firstch == \"y\") {\n\t w = firstch.toUpperCase() + w.substr(1);\n\t }\n\t\n\t // Step 1a\n\t re = re_1a\n\t re2 = re2_1a;\n\t\n\t if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n\t else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\t\n\t // Step 1b\n\t re = re_1b;\n\t re2 = re2_1b;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t re = re_mgr0;\n\t if (re.test(fp[1])) {\n\t re = re_1b_2;\n\t w = w.replace(re,\"\");\n\t }\n\t } else if (re2.test(w)) {\n\t var fp = re2.exec(w);\n\t stem = fp[1];\n\t re2 = re_s_v;\n\t if (re2.test(stem)) {\n\t w = stem;\n\t re2 = re2_1b_2;\n\t re3 = re3_1b_2;\n\t re4 = re4_1b_2;\n\t if (re2.test(w)) { w = w + \"e\"; }\n\t else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n\t else if (re4.test(w)) { w = w + \"e\"; }\n\t }\n\t }\n\t\n\t // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n\t re = re_1c;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t w = stem + \"i\";\n\t }\n\t\n\t // Step 2\n\t re = re_2;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t suffix = fp[2];\n\t re = re_mgr0;\n\t if (re.test(stem)) {\n\t w = stem + step2list[suffix];\n\t }\n\t }\n\t\n\t // Step 3\n\t re = re_3;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t suffix = fp[2];\n\t re = re_mgr0;\n\t if (re.test(stem)) {\n\t w = stem + step3list[suffix];\n\t }\n\t }\n\t\n\t // Step 4\n\t re = re_4;\n\t re2 = re2_4;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t re = re_mgr1;\n\t if (re.test(stem)) {\n\t w = stem;\n\t }\n\t } else if (re2.test(w)) {\n\t var fp = re2.exec(w);\n\t stem = fp[1] + fp[2];\n\t re2 = re_mgr1;\n\t if (re2.test(stem)) {\n\t w = stem;\n\t }\n\t }\n\t\n\t // Step 5\n\t re = re_5;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t re = re_mgr1;\n\t re2 = re_meq1;\n\t re3 = re3_5;\n\t if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n\t w = stem;\n\t }\n\t }\n\t\n\t re = re_5_1;\n\t re2 = re_mgr1;\n\t if (re.test(w) && re2.test(w)) {\n\t re = re_1b_2;\n\t w = w.replace(re,\"\");\n\t }\n\t\n\t // and turn initial Y back to y\n\t\n\t if (firstch == \"y\") {\n\t w = firstch.toLowerCase() + w.substr(1);\n\t }\n\t\n\t return w;\n\t };\n\t\n\t return porterStemmer;\n\t})();\n\t\n\tlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n\t/*!\n\t * lunr.stopWordFilter\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n\t * list of stop words.\n\t *\n\t * The built in lunr.stopWordFilter is built using this generator and can be used\n\t * to generate custom stopWordFilters for applications or non English languages.\n\t *\n\t * @module\n\t * @param {Array} token The token to pass through the filter\n\t * @returns {Function}\n\t * @see lunr.Pipeline\n\t * @see lunr.stopWordFilter\n\t */\n\tlunr.generateStopWordFilter = function (stopWords) {\n\t var words = stopWords.reduce(function (memo, stopWord) {\n\t memo[stopWord] = stopWord\n\t return memo\n\t }, {})\n\t\n\t return function (token) {\n\t if (token && words[token] !== token) return token\n\t }\n\t}\n\t\n\t/**\n\t * lunr.stopWordFilter is an English language stop word list filter, any words\n\t * contained in the list will not be passed through the filter.\n\t *\n\t * This is intended to be used in the Pipeline. If the token does not pass the\n\t * filter then undefined will be returned.\n\t *\n\t * @module\n\t * @param {String} token The token to pass through the filter\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.stopWordFilter = lunr.generateStopWordFilter([\n\t 'a',\n\t 'able',\n\t 'about',\n\t 'across',\n\t 'after',\n\t 'all',\n\t 'almost',\n\t 'also',\n\t 'am',\n\t 'among',\n\t 'an',\n\t 'and',\n\t 'any',\n\t 'are',\n\t 'as',\n\t 'at',\n\t 'be',\n\t 'because',\n\t 'been',\n\t 'but',\n\t 'by',\n\t 'can',\n\t 'cannot',\n\t 'could',\n\t 'dear',\n\t 'did',\n\t 'do',\n\t 'does',\n\t 'either',\n\t 'else',\n\t 'ever',\n\t 'every',\n\t 'for',\n\t 'from',\n\t 'get',\n\t 'got',\n\t 'had',\n\t 'has',\n\t 'have',\n\t 'he',\n\t 'her',\n\t 'hers',\n\t 'him',\n\t 'his',\n\t 'how',\n\t 'however',\n\t 'i',\n\t 'if',\n\t 'in',\n\t 'into',\n\t 'is',\n\t 'it',\n\t 'its',\n\t 'just',\n\t 'least',\n\t 'let',\n\t 'like',\n\t 'likely',\n\t 'may',\n\t 'me',\n\t 'might',\n\t 'most',\n\t 'must',\n\t 'my',\n\t 'neither',\n\t 'no',\n\t 'nor',\n\t 'not',\n\t 'of',\n\t 'off',\n\t 'often',\n\t 'on',\n\t 'only',\n\t 'or',\n\t 'other',\n\t 'our',\n\t 'own',\n\t 'rather',\n\t 'said',\n\t 'say',\n\t 'says',\n\t 'she',\n\t 'should',\n\t 'since',\n\t 'so',\n\t 'some',\n\t 'than',\n\t 'that',\n\t 'the',\n\t 'their',\n\t 'them',\n\t 'then',\n\t 'there',\n\t 'these',\n\t 'they',\n\t 'this',\n\t 'tis',\n\t 'to',\n\t 'too',\n\t 'twas',\n\t 'us',\n\t 'wants',\n\t 'was',\n\t 'we',\n\t 'were',\n\t 'what',\n\t 'when',\n\t 'where',\n\t 'which',\n\t 'while',\n\t 'who',\n\t 'whom',\n\t 'why',\n\t 'will',\n\t 'with',\n\t 'would',\n\t 'yet',\n\t 'you',\n\t 'your'\n\t])\n\t\n\tlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n\t/*!\n\t * lunr.trimmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.trimmer is a pipeline function for trimming non word\n\t * characters from the begining and end of tokens before they\n\t * enter the index.\n\t *\n\t * This implementation may not work correctly for non latin\n\t * characters and should either be removed or adapted for use\n\t * with languages with non-latin characters.\n\t *\n\t * @module\n\t * @param {String} token The token to pass through the filter\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.trimmer = function (token) {\n\t return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n\t}\n\t\n\tlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n\t/*!\n\t * lunr.stemmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n\t */\n\t\n\t/**\n\t * lunr.TokenStore is used for efficient storing and lookup of the reverse\n\t * index of token to document ref.\n\t *\n\t * @constructor\n\t */\n\tlunr.TokenStore = function () {\n\t this.root = { docs: {} }\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * Loads a previously serialised token store\n\t *\n\t * @param {Object} serialisedData The serialised token store to load.\n\t * @returns {lunr.TokenStore}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.load = function (serialisedData) {\n\t var store = new this\n\t\n\t store.root = serialisedData.root\n\t store.length = serialisedData.length\n\t\n\t return store\n\t}\n\t\n\t/**\n\t * Adds a new token doc pair to the store.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to store the doc under\n\t * @param {Object} doc The doc to store against the token\n\t * @param {Object} root An optional node at which to start looking for the\n\t * correct place to enter the doc, by default the root of this lunr.TokenStore\n\t * is used.\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.add = function (token, doc, root) {\n\t var root = root || this.root,\n\t key = token.charAt(0),\n\t rest = token.slice(1)\n\t\n\t if (!(key in root)) root[key] = {docs: {}}\n\t\n\t if (rest.length === 0) {\n\t root[key].docs[doc.ref] = doc\n\t this.length += 1\n\t return\n\t } else {\n\t return this.add(rest, doc, root[key])\n\t }\n\t}\n\t\n\t/**\n\t * Checks whether this key is contained within this lunr.TokenStore.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to check for\n\t * @param {Object} root An optional node at which to start\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.has = function (token) {\n\t if (!token) return false\n\t\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!node[token.charAt(i)]) return false\n\t\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t return true\n\t}\n\t\n\t/**\n\t * Retrieve a node from the token store for a given token.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the node for.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @see TokenStore.prototype.get\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.getNode = function (token) {\n\t if (!token) return {}\n\t\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!node[token.charAt(i)]) return {}\n\t\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t return node\n\t}\n\t\n\t/**\n\t * Retrieve the documents for a node for the given token.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the documents for.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.get = function (token, root) {\n\t return this.getNode(token, root).docs || {}\n\t}\n\t\n\tlunr.TokenStore.prototype.count = function (token, root) {\n\t return Object.keys(this.get(token, root)).length\n\t}\n\t\n\t/**\n\t * Remove the document identified by ref from the token in the store.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the documents for.\n\t * @param {String} ref The ref of the document to remove from this token.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.remove = function (token, ref) {\n\t if (!token) return\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!(token.charAt(i) in node)) return\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t delete node.docs[ref]\n\t}\n\t\n\t/**\n\t * Find all the possible suffixes of the passed token using tokens\n\t * currently in the store.\n\t *\n\t * @param {String} token The token to expand.\n\t * @returns {Array}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.expand = function (token, memo) {\n\t var root = this.getNode(token),\n\t docs = root.docs || {},\n\t memo = memo || []\n\t\n\t if (Object.keys(docs).length) memo.push(token)\n\t\n\t Object.keys(root)\n\t .forEach(function (key) {\n\t if (key === 'docs') return\n\t\n\t memo.concat(this.expand(token + key, memo))\n\t }, this)\n\t\n\t return memo\n\t}\n\t\n\t/**\n\t * Returns a representation of the token store ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.toJSON = function () {\n\t return {\n\t root: this.root,\n\t length: this.length\n\t }\n\t}\n\t\n\t /**\n\t * export the module via AMD, CommonJS or as a browser global\n\t * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n\t */\n\t ;(function (root, factory) {\n\t if (true) {\n\t // AMD. Register as an anonymous module.\n\t !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__))\n\t } else if (typeof exports === 'object') {\n\t /**\n\t * Node. Does not work with strict CommonJS, but\n\t * only CommonJS-like enviroments that support module.exports,\n\t * like Node.\n\t */\n\t module.exports = factory()\n\t } else {\n\t // Browser globals (root is window)\n\t root.lunr = factory()\n\t }\n\t }(this, function () {\n\t /**\n\t * Just return a value to define the module export.\n\t * This example returns an object, but the module\n\t * can return a function as the exported value.\n\t */\n\t return lunr\n\t }))\n\t})();\n\n\n/***/ },\n/* 23 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Skins = function (_React$Component) {\n\t _inherits(Skins, _React$Component);\n\t\n\t function Skins(props) {\n\t _classCallCheck(this, Skins);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Skins).call(this, props));\n\t\n\t _this.state = {\n\t opened: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(Skins, [{\n\t key: 'handleClick',\n\t value: function handleClick(skin) {\n\t var onChange = this.props.onChange;\n\t\n\t\n\t if (!this.state.opened) {\n\t this.setState({ opened: true });\n\t } else {\n\t onChange(skin);\n\t this.setState({ opened: false });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var skin = this.props.skin;\n\t var opened = this.state.opened;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-skin-swatches ' + (opened ? 'emoji-picker-skin-swatches-opened' : '') },\n\t Array(6).fill().map(function (_, i) {\n\t var skinTone = i + 1,\n\t selected = skinTone == skin;\n\t\n\t return _react2.default.createElement(\n\t 'span',\n\t { key: 'skin-tone-' + skinTone, className: 'emoji-picker-skin-swatch ' + (selected ? 'emoji-picker-skin-swatch-selected' : '') },\n\t _react2.default.createElement('span', {\n\t onClick: function onClick() {\n\t return _this2.handleClick(skinTone);\n\t },\n\t className: 'emoji-picker-skin emoji-picker-skin-tone-' + skinTone })\n\t );\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Skins;\n\t}(_react2.default.Component);\n\t\n\texports.default = Skins;\n\t\n\t\n\tSkins.propTypes = {\n\t onChange: _react2.default.PropTypes.func,\n\t skin: _react2.default.PropTypes.number.isRequired\n\t};\n\t\n\tSkins.defaultProps = {\n\t onChange: function onChange() {}\n\t};\n\n/***/ }\n/******/ ])\n});\n;\n\n\n/** WEBPACK FOOTER **\n ** emoji-picker.min.js\n **/"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap 0560e98f4ecb79987ba3\n **/","export {\n Picker,\n Emoji,\n} from './components'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/index.js\n **/","import React from 'react'\nimport InlineSVG from 'svg-inline-react'\n\nimport * as SVGs from '../svgs'\n\nexport default class Anchors extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n selected: props.categories[0].name\n }\n }\n\n render() {\n var { categories, onAnchorClick } = this.props,\n { selected } = this.state\n\n return
\n {categories.map((category, i) => {\n var { name } = category\n\n return (\n onAnchorClick(category, i)}\n className={`emoji-picker-anchor ${name == selected ? 'emoji-picker-anchor-selected' : ''}`}\n >\n \n \n \n )\n })}\n
\n }\n}\n\nAnchors.propTypes = {\n categories: React.PropTypes.array,\n onAnchorClick: React.PropTypes.func,\n}\n\nAnchors.defaultProps = {\n categories: [],\n onAnchorClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/anchors.js\n **/","module.exports = __WEBPACK_EXTERNAL_MODULE_3__;\n\n\n/*****************\n ** WEBPACK FOOTER\n ** external \"react\"\n ** module id = 3\n ** module chunks = 0\n **/","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nvar _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar DOMParser = typeof window !== 'undefined' && window.DOMParser;\nvar process = process || {};\nprocess.env = process.env || {};\nvar parserAvailable = typeof DOMParser !== 'undefined' && DOMParser.prototype != null && DOMParser.prototype.parseFromString != null;\n\nif (\"production\" !== process.env.NODE_ENV && !parserAvailable) {\n console.info(': `raw` prop works only when `window.DOMParser` exists.');\n}\n\nfunction isParsable(src) {\n // kinda naive but meh, ain't gonna use full-blown parser for this\n return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\nfunction switchSVGAttrToReactProp(propName) {\n switch (propName) {\n case 'class':\n return 'className';\n default:\n return propName;\n }\n}\n\nvar InlineSVG = (function (_React$Component) {\n _inherits(InlineSVG, _React$Component);\n\n _createClass(InlineSVG, null, [{\n key: 'defaultProps',\n value: {\n element: 'i',\n raw: false,\n src: ''\n },\n enumerable: true\n }, {\n key: 'propTypes',\n value: {\n src: _react2['default'].PropTypes.string.isRequired,\n element: _react2['default'].PropTypes.string,\n raw: _react2['default'].PropTypes.bool\n },\n enumerable: true\n }]);\n\n function InlineSVG(props) {\n _classCallCheck(this, InlineSVG);\n\n _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n this._extractSVGProps = this._extractSVGProps.bind(this);\n }\n\n // Serialize `Attr` objects in `NamedNodeMap`\n\n _createClass(InlineSVG, [{\n key: '_serializeAttrs',\n value: function _serializeAttrs(map) {\n var ret = {};\n var prop = undefined;\n for (var i = 0; i < map.length; i++) {\n prop = switchSVGAttrToReactProp(map[i].name);\n ret[prop] = map[i].value;\n }\n return ret;\n }\n\n // get element props\n }, {\n key: '_extractSVGProps',\n value: function _extractSVGProps(src) {\n var map = parseFromSVGString(src).documentElement.attributes;\n return map.length > 0 ? this._serializeAttrs(map) : null;\n }\n\n // get content inside element.\n }, {\n key: '_stripSVG',\n value: function _stripSVG(src) {\n return parseFromSVGString(src).documentElement.innerHTML;\n }\n }, {\n key: 'componentWillReceiveProps',\n value: function componentWillReceiveProps(_ref) {\n var children = _ref.children;\n\n if (\"production\" !== process.env.NODE_ENV && children != null) {\n console.info(': `children` prop will be ignored.');\n }\n }\n }, {\n key: 'render',\n value: function render() {\n var Element = undefined,\n __html = undefined,\n svgProps = undefined;\n var _props = this.props;\n var element = _props.element;\n var raw = _props.raw;\n var src = _props.src;\n\n if (raw === true && isParsable(src)) {\n Element = 'svg';\n svgProps = this._extractSVGProps(src);\n __html = this._stripSVG(src);\n }\n __html = __html || src;\n Element = Element || element;\n svgProps = svgProps || {};\n\n return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n dangerouslySetInnerHTML: { __html: __html } }));\n }\n }]);\n\n return InlineSVG;\n})(_react2['default'].Component);\n\nexports['default'] = InlineSVG;\nmodule.exports = exports['default'];\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/svg-inline-react/dist/index.js\n ** module id = 4\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/activity.svg\n ** module id = 6\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/flags.svg\n ** module id = 7\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/foods.svg\n ** module id = 8\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/nature.svg\n ** module id = 9\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/objects.svg\n ** module id = 10\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/people.svg\n ** module id = 11\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/places.svg\n ** module id = 12\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/recent.svg\n ** module id = 13\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/symbols.svg\n ** module id = 14\n ** module chunks = 0\n **/","import React from 'react'\nimport {Emoji} from '.'\n\nexport default class Category extends React.Component {\n componentDidMount() {\n this.container = this.refs.container\n this.label = this.refs.label\n this.parent = this.container.parentNode\n\n this.margin = 0\n this.minMargin = 0\n\n this.memoizeSize()\n }\n\n componentDidUpdate() {\n this.memoizeSize()\n }\n\n memoizeSize() {\n var { top, height } = this.container.getBoundingClientRect()\n var { top: parentTop } = this.parent.getBoundingClientRect()\n var { height: labelHeight } = this.label.getBoundingClientRect()\n\n this.top = top - parentTop + this.parent.scrollTop\n if (height > labelHeight) {\n this.maxMargin = height - labelHeight\n } else {\n this.maxMargin = 1\n }\n }\n\n handleScroll(scrollTop) {\n var margin = scrollTop - this.top\n margin = margin < this.minMargin ? this.minMargin : margin\n margin = margin > this.maxMargin ? this.maxMargin : margin\n\n if (margin == this.margin) return\n var { name } = this.props\n\n if (!this.props.hasStickyPosition) {\n this.label.style.top = `${margin}px`\n }\n\n this.margin = margin\n return true\n }\n\n render() {\n var { name, emojis, hasStickyPosition, emojiProps } = this.props,\n emojis = emojis ? emojis.slice(0) : null,\n labelStyles = {},\n labelSpanStyles = {},\n containerStyles = {}\n\n if (!hasStickyPosition) {\n labelStyles = {\n height: 28,\n }\n\n labelSpanStyles = {\n position: 'absolute',\n }\n }\n\n if (!emojis) {\n containerStyles = {\n height: 1,\n overflow: 'hidden',\n }\n }\n\n return
\n
\n {name}\n
\n\n {emojis && emojis.map((emoji) =>\n \n )}\n\n {emojis && !emojis.length &&\n
\n \n\n \n No emoji found\n \n
\n }\n
\n }\n}\n\nCategory.propTypes = {\n emojis: React.PropTypes.array,\n hasStickyPosition: React.PropTypes.bool,\n name: React.PropTypes.string.isRequired,\n emojiProps: React.PropTypes.object.isRequired,\n}\n\nCategory.defaultProps = {\n emojis: [],\n hasStickyPosition: true,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/category.js\n **/","import React from 'react'\nimport data from '../../data'\n\nconst SHEET_SIZE = 2624\nconst EMOJI_SIZE = 64\nconst SKINS = [\n '1F3FA', '1F3FB', '1F3FC',\n '1F3FD', '1F3FE', '1F3FF',\n]\n\nexport default class Emoji extends React.Component {\n constructor(props) {\n super(props)\n\n var emojiData = this.getEmojiData()\n this.hasSkinVariations = !!emojiData.skin_variations\n }\n\n shouldComponentUpdate(nextProps) {\n return (\n this.hasSkinVariations && nextProps.skin != this.props.skin ||\n nextProps.size != this.props.size ||\n nextProps.sheetURL != this.props.sheetURL\n )\n }\n\n getEmojiData() {\n var { emoji, skin, sheetURL } = this.props,\n emojiData = emoji\n\n if (typeof emoji == 'string') {\n emojiData = data.emojis[emoji]\n }\n\n if (this.hasSkinVariations && skin > 1) {\n emojiData = JSON.parse(JSON.stringify(data.emojis[emoji]))\n\n var skinKey = SKINS[skin - 1],\n variationKey = `${emojiData.unified}-${skinKey}`,\n variationData = emojiData.skin_variations[variationKey],\n kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n kit = kitMatches[0]\n\n if (variationData[`has_img_${kit}`]) {\n emojiData.skin_tone = skin\n\n for (let k in variationData) {\n let v = variationData[k]\n emojiData[k] = v\n }\n }\n }\n\n return emojiData\n }\n\n getSheetSize() {\n var { size } = this.props,\n sheetSize = SHEET_SIZE * size / EMOJI_SIZE\n\n return `${sheetSize}px ${sheetSize}px`\n }\n\n getPosition(emojiData) {\n var { size } = this.props,\n { sheet_x, sheet_y } = emojiData,\n x = sheet_x * size,\n y = sheet_y * size\n\n return `-${x}px -${y}px`\n }\n\n getNative(emojiData) {\n var { unified } = emojiData,\n unicodes = unified.split('-'),\n codePoints = unicodes.map((u) => `0x${u}`)\n\n return String.fromCodePoint(...codePoints)\n }\n\n handleClick(emojiData) {\n var { onClick } = this.props,\n { name, short_names, skin_tone, text, texts, unified } = emojiData,\n id = short_names[0],\n colons = `:${id}:`\n\n texts || (texts = [])\n if (text && !texts.length) {\n texts = [text]\n }\n\n if (skin_tone) {\n colons += `:skin-tone-${skin_tone}:`\n }\n\n onClick({\n id,\n name,\n colons,\n skin: skin_tone || 1,\n emoticons: texts,\n native: this.getNative(emojiData),\n })\n }\n\n render() {\n var { sheetURL, size, onOver, onLeave } = this.props,\n emojiData = this.getEmojiData()\n\n return this.handleClick(emojiData)}\n onMouseEnter={() => onOver(emojiData)}\n onMouseLeave={() => onLeave(emojiData)}\n className='emoji-picker-emoji'>\n \n \n \n }\n}\n\nEmoji.propTypes = {\n skin: React.PropTypes.number,\n onOver: React.PropTypes.func,\n onLeave: React.PropTypes.func,\n onClick: React.PropTypes.func,\n size: React.PropTypes.number.isRequired,\n sheetURL: React.PropTypes.string.isRequired,\n emoji: React.PropTypes.oneOfType([\n React.PropTypes.string,\n React.PropTypes.object,\n ]).isRequired,\n}\n\nEmoji.defaultProps = {\n skin: 1,\n onOver: (() => {}),\n onLeave: (() => {}),\n onClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/emoji.js\n **/","export default {\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-af\",\"flag-ax\",\"flag-al\",\"flag-dz\",\"flag-as\",\"flag-ad\",\"flag-ao\",\"flag-ai\",\"flag-aq\",\"flag-ag\",\"flag-ar\",\"flag-am\",\"flag-aw\",\"flag-au\",\"flag-at\",\"flag-az\",\"flag-bs\",\"flag-bh\",\"flag-bd\",\"flag-bb\",\"flag-by\",\"flag-be\",\"flag-bz\",\"flag-bj\",\"flag-bm\",\"flag-bt\",\"flag-bo\",\"flag-bq\",\"flag-ba\",\"flag-bw\",\"flag-br\",\"flag-io\",\"flag-vg\",\"flag-bn\",\"flag-bg\",\"flag-bf\",\"flag-bi\",\"flag-cv\",\"flag-kh\",\"flag-cm\",\"flag-ca\",\"flag-ic\",\"flag-ky\",\"flag-cf\",\"flag-td\",\"flag-cl\",\"flag-cn\",\"flag-cx\",\"flag-cc\",\"flag-co\",\"flag-km\",\"flag-cg\",\"flag-cd\",\"flag-ck\",\"flag-cr\",\"flag-hr\",\"flag-cu\",\"flag-cw\",\"flag-cy\",\"flag-cz\",\"flag-dk\",\"flag-dj\",\"flag-dm\",\"flag-do\",\"flag-ec\",\"flag-eg\",\"flag-sv\",\"flag-gq\",\"flag-er\",\"flag-ee\",\"flag-et\",\"flag-eu\",\"flag-fk\",\"flag-fo\",\"flag-fj\",\"flag-fi\",\"flag-fr\",\"flag-gf\",\"flag-pf\",\"flag-tf\",\"flag-ga\",\"flag-gm\",\"flag-ge\",\"flag-de\",\"flag-gh\",\"flag-gi\",\"flag-gr\",\"flag-gl\",\"flag-gd\",\"flag-gp\",\"flag-gu\",\"flag-gt\",\"flag-gg\",\"flag-gn\",\"flag-gw\",\"flag-gy\",\"flag-ht\",\"flag-hn\",\"flag-hk\",\"flag-hu\",\"flag-is\",\"flag-in\",\"flag-id\",\"flag-ir\",\"flag-iq\",\"flag-ie\",\"flag-im\",\"flag-il\",\"flag-it\",\"flag-ci\",\"flag-jm\",\"flag-jp\",\"flag-je\",\"flag-jo\",\"flag-kz\",\"flag-ke\",\"flag-ki\",\"flag-xk\",\"flag-kw\",\"flag-kg\",\"flag-la\",\"flag-lv\",\"flag-lb\",\"flag-ls\",\"flag-lr\",\"flag-ly\",\"flag-li\",\"flag-lt\",\"flag-lu\",\"flag-mo\",\"flag-mk\",\"flag-mg\",\"flag-mw\",\"flag-my\",\"flag-mv\",\"flag-ml\",\"flag-mt\",\"flag-mh\",\"flag-mq\",\"flag-mr\",\"flag-mu\",\"flag-yt\",\"flag-mx\",\"flag-fm\",\"flag-md\",\"flag-mc\",\"flag-mn\",\"flag-me\",\"flag-ms\",\"flag-ma\",\"flag-mz\",\"flag-mm\",\"flag-na\",\"flag-nr\",\"flag-np\",\"flag-nl\",\"flag-nc\",\"flag-nz\",\"flag-ni\",\"flag-ne\",\"flag-ng\",\"flag-nu\",\"flag-nf\",\"flag-mp\",\"flag-kp\",\"flag-no\",\"flag-om\",\"flag-pk\",\"flag-pw\",\"flag-ps\",\"flag-pa\",\"flag-pg\",\"flag-py\",\"flag-pe\",\"flag-ph\",\"flag-pn\",\"flag-pl\",\"flag-pt\",\"flag-pr\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-ru\",\"flag-rw\",\"flag-bl\",\"flag-sh\",\"flag-kn\",\"flag-lc\",\"flag-pm\",\"flag-vc\",\"flag-ws\",\"flag-sm\",\"flag-st\",\"flag-sa\",\"flag-sn\",\"flag-rs\",\"flag-sc\",\"flag-sl\",\"flag-sg\",\"flag-sx\",\"flag-sk\",\"flag-si\",\"flag-sb\",\"flag-so\",\"flag-za\",\"flag-gs\",\"flag-kr\",\"flag-ss\",\"flag-es\",\"flag-lk\",\"flag-sd\",\"flag-sr\",\"flag-sz\",\"flag-se\",\"flag-ch\",\"flag-sy\",\"flag-tw\",\"flag-tj\",\"flag-tz\",\"flag-th\",\"flag-tl\",\"flag-tg\",\"flag-tk\",\"flag-to\",\"flag-tt\",\"flag-tn\",\"flag-tr\",\"flag-tm\",\"flag-tc\",\"flag-tv\",\"flag-ug\",\"flag-ua\",\"flag-ae\",\"flag-gb\",\"flag-us\",\"flag-vi\",\"flag-uy\",\"flag-uz\",\"flag-vu\",\"flag-va\",\"flag-ve\",\"flag-vn\",\"flag-wf\",\"flag-eh\",\"flag-ye\",\"flag-zm\",\"flag-zw\",\"flag-ac\",\"flag-bv\",\"flag-cp\",\"flag-dg\",\"flag-ea\",\"flag-hm\",\"flag-mf\",\"flag-sj\",\"flag-ta\",\"flag-um\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"text\":\":D\",\"texts\":null,\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"text\":\"<3\",\"texts\":[\"<3\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters Af\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters Ax\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters Al\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters Dz\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters As\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"text\":\"<3\",\"texts\":null,\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"text\":\":)\",\"texts\":[\"=)\",\"=-)\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"text\":\":)\",\"texts\":[\"C:\",\"c:\",\":D\",\":-D\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters Ad\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"text\":\"\",\":->\"],\"category\":\"People\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters Aq\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters Ag\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"text\":\";)\",\"texts\":[\";)\",\";-)\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters Ar\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"text\":\":)\",\"texts\":null,\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"text\":null,\"texts\":[\":)\",\"(:\",\":-)\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters Am\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters Aw\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters Au\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters at\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"text\":null,\"texts\":[\":o)\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters Az\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters Bs\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters Bh\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters Bd\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters Bb\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters by\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"text\":\";p\",\"texts\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters Be\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters Bz\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters Bj\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"text\":\":p\",\"texts\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters Bm\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters Bt\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"text\":null,\"texts\":[\"8)\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters Bo\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters Bq\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters Ba\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters Bw\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters Br\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"text\":null,\"texts\":[\":|\",\":-|\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters Io\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters Vg\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"text\":\":(\",\"texts\":null,\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters Bn\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters Bg\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters Bf\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters Bi\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"text\":\":(\",\"texts\":[\"):\",\":(\",\":-(\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters Cv\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters Kh\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"text\":null,\"texts\":[\">:(\",\">:-(\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters Cm\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters Ca\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"text\":null,\"texts\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters Ic\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters Ky\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters Cf\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters Td\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters Cl\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters Cn\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters Cx\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters Cc\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters Co\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"text\":null,\"texts\":[\":o\",\":-o\",\":O\",\":-O\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters Km\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters Cg\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters Cd\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters Ck\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters Cr\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters Hr\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"text\":null,\"texts\":[\"D:\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters Cu\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"text\":\":'(\",\"texts\":[\":'(\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"text\":null,\"texts\":null,\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters Cw\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters Cy\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters Cz\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"text\":\":'(\",\"texts\":null,\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters Dk\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters Dj\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters Dm\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters Do\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters Ec\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters Eg\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters Sv\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"text\":null,\"texts\":null,\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters Gq\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters Er\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters Ee\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters Et\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters Eu\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters Fk\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters Fo\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters Fj\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters Fi\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters Fr\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters Gf\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters Pf\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters Tf\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters Ga\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters Gm\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters Ge\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters De\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters Gh\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters Gi\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters Gr\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters Gl\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters Gd\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters Gp\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters Gu\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters Gt\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters Gg\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters Gn\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters Gw\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters Gy\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters Ht\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters Hn\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters Hk\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters Hu\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters Is\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters in\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters Id\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters Ir\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters Iq\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters Ie\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters Im\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters Il\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters It\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters Ci\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters Jm\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters Jp\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters Je\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters Jo\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters Kz\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"text\":null,\"texts\":null,\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters Ke\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters Ki\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters Xk\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters Kw\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters Kg\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters La\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters Lv\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters Lb\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters Ls\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters Lr\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters Ly\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters Li\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters Lt\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters Lu\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters Mo\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters Mk\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters Mg\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters Mw\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters My\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}}},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters Mv\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters Ml\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters Mt\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters Mh\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters Mq\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters Mr\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters Mu\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters Yt\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters Mx\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters Fm\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters Md\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters Mc\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters Mn\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"text\":null,\"texts\":null,\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters Me\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters Ms\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters Ma\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters Mz\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters Mm\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters Na\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters Nr\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters Np\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters Nl\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters Nc\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters Nz\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters Ni\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters Ne\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters Ng\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters Nu\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters Nf\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters Mp\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters Kp\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters No\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters Om\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters Pk\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters Pw\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters Ps\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters Pa\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters Pg\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters Py\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters Pe\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters Ph\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters Pn\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters Pl\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters Pt\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"text\":null,\"texts\":null,\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters Pr\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters Qa\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters Re\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters Ro\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters Ru\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"text\":null,\"texts\":[\":*\",\":-*\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters Rw\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters Bl\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters Sh\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters Kn\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters Lc\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters Pm\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters Vc\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters Ws\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters Sm\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters St\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters Sa\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters Sn\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters Rs\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters Sc\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters Sl\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters Sg\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters Sx\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters Sk\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters Si\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters Sb\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters so\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"text\":null,\"texts\":null,\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters Za\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters Gs\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters Kr\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters Ss\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters Es\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters Lk\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters Sd\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters Sr\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters Sz\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters Se\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters Ch\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters Sy\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters Tw\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters Tj\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters Tz\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters Th\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters Tl\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters Tg\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters Tk\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters to\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters Tt\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters Tn\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters Tr\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters Tm\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters Tc\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters Tv\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters Ug\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters Ua\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters Ae\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters Gb\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters Us\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters Vi\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters Uy\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters Uz\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters Vu\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters Va\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters Ve\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters Vn\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters Wf\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters Eh\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters Ye\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters Zm\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters Zw\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters Ac\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters Bv\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters Cp\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters Dg\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters Ea\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters Hm\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters Mf\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters Sj\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters Ta\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters Um\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"text\":null,\"texts\":null,\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"text\":null,\"texts\":null,\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"text\":null,\"texts\":null,\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}}}\n\n\n/** WEBPACK FOOTER **\n ** ./data/index.js\n **/","import '../utils/raf-polyfill'\n\nimport React from 'react'\nimport data from '../../data'\n\nimport {Anchors, Category, Preview, Search} from '.'\n\nconst DEFAULT_CATEGORIES = [\n { name: 'Recent', emojis: null }\n].concat(data.categories)\n\nexport default class Picker extends React.Component {\n constructor(props) {\n super(props)\n this.testStickyPosition()\n\n this.state = {\n categories: DEFAULT_CATEGORIES,\n skin: props.skin,\n }\n }\n\n componentWillReceiveProps(props) {\n this.setState({ skin: props.skin })\n }\n\n componentDidUpdate() {\n this.handleScroll()\n }\n\n testStickyPosition() {\n var stickyTestElement = document.createElement('div')\n for (let prefix of ['', '-webkit-', '-ms-', '-moz-', '-o-']) {\n stickyTestElement.style.position = `${prefix}sticky`\n }\n\n this.hasStickyPosition = !!stickyTestElement.style.position.length\n }\n\n handleEmojiOver(emoji) {\n var { preview } = this.refs\n preview.setState({ emoji: emoji })\n clearTimeout(this.leaveTimeout)\n }\n\n handleEmojiLeave(emoji) {\n this.leaveTimeout = setTimeout(() => {\n var { preview } = this.refs\n preview.setState({ emoji: null })\n }, 16)\n }\n\n handleScroll() {\n if (!this.waitingForPaint) {\n this.waitingForPaint = true\n window.requestAnimationFrame(this.handleScrollPaint.bind(this))\n }\n }\n\n handleScrollPaint() {\n this.waitingForPaint = false\n\n var target = this.refs.scroll,\n scrollTop = target.scrollTop,\n scrollingDown = scrollTop > (this.scrollTop || 0),\n activeCategory = null,\n { categories } = this.state\n\n for (let i = 0, l = categories.length; i < l; i++) {\n let ii = scrollingDown ? (categories.length - 1 - i) : i,\n category = categories[ii],\n component = this.refs[`category-${ii}`]\n\n if (component) {\n let active = component.handleScroll(scrollTop)\n if (active && !activeCategory) {\n activeCategory = category\n }\n }\n }\n\n if (activeCategory) {\n let { anchors } = this.refs,\n { name: categoryName } = activeCategory\n\n if (anchors.state.selected != categoryName) {\n anchors.setState({ selected: categoryName })\n }\n }\n\n this.scrollTop = scrollTop\n }\n\n handleSearch(emojis) {\n if (emojis == null) {\n this.setState({ categories: DEFAULT_CATEGORIES })\n } else {\n this.setState({ categories: [{\n name: 'Search Results',\n emojis: emojis,\n }]})\n }\n }\n\n handleAnchorClick(category, i) {\n var component = this.refs[`category-${i}`],\n { scroll, anchors } = this.refs\n\n if (component) {\n let { top } = component\n\n if (i == 0) {\n top = 0\n } else {\n top += 1\n }\n\n scroll.scrollTop = top\n }\n }\n\n handleSkinChange(skin) {\n this.setState({ skin: skin })\n }\n\n render() {\n var { perLine, emojiSize, sheetURL } = this.props,\n { skin } = this.state,\n width = (perLine * (emojiSize + 12)) + 12 + 2\n\n return
\n
\n \n
\n\n
\n \n\n {this.state.categories.map((category, i) => {\n return \n })}\n
\n\n
\n \n
\n
\n }\n}\n\nPicker.propTypes = {\n onClick: React.PropTypes.func,\n skin: React.PropTypes.number,\n perLine: React.PropTypes.number,\n emojiSize: React.PropTypes.number,\n sheetURL: React.PropTypes.string.isRequired,\n}\n\nPicker.defaultProps = {\n onClick: (() => {}),\n emojiSize: 24,\n perLine: 9,\n skin: 1,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/picker.js\n **/","// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\n// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\n// MIT license\n\n(function() {\n var lastTime = 0;\n var vendors = ['ms', 'moz', 'webkit', 'o'];\n for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']\n || window[vendors[x]+'CancelRequestAnimationFrame'];\n }\n\n if (!window.requestAnimationFrame)\n window.requestAnimationFrame = function(callback, element) {\n var currTime = new Date().getTime();\n var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n timeToCall);\n lastTime = currTime + timeToCall;\n return id;\n };\n\n if (!window.cancelAnimationFrame)\n window.cancelAnimationFrame = function(id) {\n clearTimeout(id);\n };\n}());\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/raf-polyfill.js\n **/","import React from 'react'\nimport {Emoji, Skins} from '.'\n\nexport default class Preview extends React.Component {\n constructor(props) {\n super(props)\n this.state = { emoji: null }\n }\n\n render() {\n var { emoji } = this.state,\n { emojiProps, skinsProps } = this.props\n\n if (emoji) {\n return
\n
\n \n
\n\n
\n {emoji.name}
\n \n {emoji.short_names.map((short_name) =>\n :{short_name}:\n )}\n \n
\n
\n } else {\n return
\n
\n \n
\n\n
\n \n EmojiPicker\n \n
\n\n
\n \n
\n
\n }\n }\n}\n\nPreview.propTypes = {\n emojiProps: React.PropTypes.object.isRequired,\n skinsProps: React.PropTypes.object.isRequired,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/preview.js\n **/","import React from 'react'\nimport lunr from 'lunr'\n\nimport data from '../../data'\n\nexport default class Search extends React.Component {\n constructor(props) {\n super(props)\n this.buildIndex()\n }\n\n buildIndex() {\n this.index = lunr(function() {\n this.field('short_name', { boost: 2 })\n this.field('name')\n\n this.ref('short_name')\n })\n\n for (let emoji in data.emojis) {\n let emojiData = data.emojis[emoji],\n { short_name, name } = emojiData\n\n this.index.add({ short_name, name })\n }\n }\n\n handleChange() {\n var { input } = this.refs,\n value = input.value,\n results = null\n\n if (value.length) {\n results = this.index.search(value).map((result) =>\n result.ref\n )\n }\n\n this.props.onSearch(results)\n }\n\n render() {\n return \n }\n}\n\nSearch.propTypes = {\n onSearch: React.PropTypes.func,\n}\n\nSearch.defaultProps = {\n onSearch: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/search.js\n **/","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n * Copyright (C) 2016 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * Convenience function for instantiating a new lunr index and configuring it\n * with the default pipeline functions and the passed config function.\n *\n * When using this convenience function a new index will be created with the\n * following functions already in the pipeline:\n *\n * lunr.StopWordFilter - filters out any stop words before they enter the\n * index\n *\n * lunr.stemmer - stems the tokens before entering the index.\n *\n * Example:\n *\n * var idx = lunr(function () {\n * this.field('title', 10)\n * this.field('tags', 100)\n * this.field('body')\n * \n * this.ref('cid')\n * \n * this.pipeline.add(function () {\n * // some custom pipeline function\n * })\n * \n * })\n *\n * @param {Function} config A function that will be called with the new instance\n * of the lunr.Index as both its context and first parameter. It can be used to\n * customize the instance of new lunr.Index.\n * @namespace\n * @module\n * @returns {lunr.Index}\n *\n */\nvar lunr = function (config) {\n var idx = new lunr.Index\n\n idx.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n if (config) config.call(idx, idx)\n\n return idx\n}\n\nlunr.version = \"0.7.1\"\n/*!\n * lunr.utils\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf Utils\n */\nlunr.utils.warn = (function (global) {\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf Utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n/*!\n * lunr.EventEmitter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n *\n * @constructor\n */\nlunr.EventEmitter = function () {\n this.events = {}\n}\n\n/**\n * Binds a handler function to a specific event(s).\n *\n * Can bind a single function to many different events in one call.\n *\n * @param {String} [eventName] The name(s) of events to bind this function to.\n * @param {Function} fn The function to call when an event is fired.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.addListener = function () {\n var args = Array.prototype.slice.call(arguments),\n fn = args.pop(),\n names = args\n\n if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\n names.forEach(function (name) {\n if (!this.hasHandler(name)) this.events[name] = []\n this.events[name].push(fn)\n }, this)\n}\n\n/**\n * Removes a handler function from a specific event.\n *\n * @param {String} eventName The name of the event to remove this function from.\n * @param {Function} fn The function to remove from an event.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n if (!this.hasHandler(name)) return\n\n var fnIndex = this.events[name].indexOf(fn)\n this.events[name].splice(fnIndex, 1)\n\n if (!this.events[name].length) delete this.events[name]\n}\n\n/**\n * Calls all functions bound to the given event.\n *\n * Additional data can be passed to the event handler as arguments to `emit`\n * after the event name.\n *\n * @param {String} eventName The name of the event to emit.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.emit = function (name) {\n if (!this.hasHandler(name)) return\n\n var args = Array.prototype.slice.call(arguments, 1)\n\n this.events[name].forEach(function (fn) {\n fn.apply(undefined, args)\n })\n}\n\n/**\n * Checks whether a handler has ever been stored against an event.\n *\n * @param {String} eventName The name of the event to check.\n * @private\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.hasHandler = function (name) {\n return name in this.events\n}\n\n/*!\n * lunr.tokenizer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * @module\n * @param {String} obj The string to convert into tokens\n * @see lunr.tokenizer.seperator\n * @returns {Array}\n */\nlunr.tokenizer = function (obj) {\n if (!arguments.length || obj == null || obj == undefined) return []\n if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\n return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n}\n\n/**\n * The sperator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.seperator = /[\\s\\-]+/\n\n/**\n * Loads a previously serialised tokenizer.\n *\n * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n * If the serialised tokenizer has not been registered then an error will be thrown.\n *\n * @param {String} label The label of the serialised tokenizer.\n * @returns {Function}\n * @memberOf tokenizer\n */\nlunr.tokenizer.load = function (label) {\n var fn = this.registeredFunctions[label]\n\n if (!fn) {\n throw new Error('Cannot load un-registered function: ' + label)\n }\n\n return fn\n}\n\nlunr.tokenizer.label = 'default'\n\nlunr.tokenizer.registeredFunctions = {\n 'default': lunr.tokenizer\n}\n\n/**\n * Register a tokenizer function.\n *\n * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n *\n * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n *\n * @param {Function} fn The function to register.\n * @param {String} label The label to register this function with\n * @memberOf tokenizer\n */\nlunr.tokenizer.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n }\n\n fn.label = label\n this.registeredFunctions[label] = fn\n}\n/*!\n * lunr.Pipeline\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = {}\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {Function} fn The function to check for.\n * @param {String} label The label to register this function with\n * @memberOf Pipeline\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {Function} fn The function to check for.\n * @private\n * @memberOf Pipeline\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n * @memberOf Pipeline\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load un-registered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} functions Any number of functions to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {Function} fn The function to remove from the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var out = [],\n tokenLength = tokens.length,\n stackLength = this._stack.length\n\n for (var i = 0; i < tokenLength; i++) {\n var token = tokens[i]\n\n for (var j = 0; j < stackLength; j++) {\n token = this._stack[j](token, i, tokens)\n if (token === void 0 || token === '') break\n };\n\n if (token !== void 0 && token !== '') out.push(token)\n };\n\n return out\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Vectors implement vector related operations for\n * a series of elements.\n *\n * @constructor\n */\nlunr.Vector = function () {\n this._magnitude = null\n this.list = undefined\n this.length = 0\n}\n\n/**\n * lunr.Vector.Node is a simple struct for each node\n * in a lunr.Vector.\n *\n * @private\n * @param {Number} The index of the node in the vector.\n * @param {Object} The data at this node in the vector.\n * @param {lunr.Vector.Node} The node directly after this node in the vector.\n * @constructor\n * @memberOf Vector\n */\nlunr.Vector.Node = function (idx, val, next) {\n this.idx = idx\n this.val = val\n this.next = next\n}\n\n/**\n * Inserts a new value at a position in a vector.\n *\n * @param {Number} The index at which to insert a value.\n * @param {Object} The object to insert in the vector.\n * @memberOf Vector.\n */\nlunr.Vector.prototype.insert = function (idx, val) {\n this._magnitude = undefined;\n var list = this.list\n\n if (!list) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n if (idx < list.idx) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n var prev = list,\n next = list.next\n\n while (next != undefined) {\n if (idx < next.idx) {\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n }\n\n prev = next, next = next.next\n }\n\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n var node = this.list,\n sumOfSquares = 0,\n val\n\n while (node) {\n val = node.val\n sumOfSquares += val * val\n node = node.next\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var node = this.list,\n otherNode = otherVector.list,\n dotProduct = 0\n\n while (node && otherNode) {\n if (node.idx < otherNode.idx) {\n node = node.next\n } else if (node.idx > otherNode.idx) {\n otherNode = otherNode.next\n } else {\n dotProduct += node.val * otherNode.val\n node = node.next\n otherNode = otherNode.next\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the cosine similarity between this vector and another\n * vector.\n *\n * @param {lunr.Vector} otherVector The other vector to calculate the\n * similarity with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n}\n/*!\n * lunr.SortedSet\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n * order.\n *\n * @constructor\n */\nlunr.SortedSet = function () {\n this.length = 0\n this.elements = []\n}\n\n/**\n * Loads a previously serialised sorted set.\n *\n * @param {Array} serialisedData The serialised set to load.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.load = function (serialisedData) {\n var set = new this\n\n set.elements = serialisedData\n set.length = serialisedData.length\n\n return set\n}\n\n/**\n * Inserts new items into the set in the correct position to maintain the\n * order.\n *\n * @param {Object} The objects to add to this set.\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.add = function () {\n var i, element\n\n for (i = 0; i < arguments.length; i++) {\n element = arguments[i]\n if (~this.indexOf(element)) continue\n this.elements.splice(this.locationFor(element), 0, element)\n }\n\n this.length = this.elements.length\n}\n\n/**\n * Converts this sorted set into an array.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toArray = function () {\n return this.elements.slice()\n}\n\n/**\n * Creates a new array with the results of calling a provided function on every\n * element in this sorted set.\n *\n * Delegates to Array.prototype.map and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * for the function fn.\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.map = function (fn, ctx) {\n return this.elements.map(fn, ctx)\n}\n\n/**\n * Executes a provided function once per sorted set element.\n *\n * Delegates to Array.prototype.forEach and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * @memberOf SortedSet\n * for the function fn.\n */\nlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n return this.elements.forEach(fn, ctx)\n}\n\n/**\n * Returns the index at which a given element can be found in the\n * sorted set, or -1 if it is not present.\n *\n * @param {Object} elem The object to locate in the sorted set.\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.indexOf = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem === elem) return pivot\n\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem === elem) return pivot\n\n return -1\n}\n\n/**\n * Returns the position within the sorted set that an element should be\n * inserted at to maintain the current order of the set.\n *\n * This function assumes that the element to search for does not already exist\n * in the sorted set.\n *\n * @param {Object} elem The elem to find the position for in the set\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.locationFor = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem > elem) return pivot\n if (pivotElem < elem) return pivot + 1\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the intersection\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.intersect = function (otherSet) {\n var intersectSet = new lunr.SortedSet,\n i = 0, j = 0,\n a_len = this.length, b_len = otherSet.length,\n a = this.elements, b = otherSet.elements\n\n while (true) {\n if (i > a_len - 1 || j > b_len - 1) break\n\n if (a[i] === b[j]) {\n intersectSet.add(a[i])\n i++, j++\n continue\n }\n\n if (a[i] < b[j]) {\n i++\n continue\n }\n\n if (a[i] > b[j]) {\n j++\n continue\n }\n };\n\n return intersectSet\n}\n\n/**\n * Makes a copy of this set\n *\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.clone = function () {\n var clone = new lunr.SortedSet\n\n clone.elements = this.toArray()\n clone.length = clone.elements.length\n\n return clone\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the union\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to union with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.union = function (otherSet) {\n var longSet, shortSet, unionSet\n\n if (this.length >= otherSet.length) {\n longSet = this, shortSet = otherSet\n } else {\n longSet = otherSet, shortSet = this\n }\n\n unionSet = longSet.clone()\n\n for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n unionSet.add(shortSetElements[i])\n }\n\n return unionSet\n}\n\n/**\n * Returns a representation of the sorted set ready for serialisation.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toJSON = function () {\n return this.toArray()\n}\n/*!\n * lunr.Index\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Index is object that manages a search index. It contains the indexes\n * and stores all the tokens and document lookups. It also provides the main\n * user facing API for the library.\n *\n * @constructor\n */\nlunr.Index = function () {\n this._fields = []\n this._ref = 'id'\n this.pipeline = new lunr.Pipeline\n this.documentStore = new lunr.Store\n this.tokenStore = new lunr.TokenStore\n this.corpusTokens = new lunr.SortedSet\n this.eventEmitter = new lunr.EventEmitter\n this.tokenizerFn = lunr.tokenizer\n\n this._idfCache = {}\n\n this.on('add', 'remove', 'update', (function () {\n this._idfCache = {}\n }).bind(this))\n}\n\n/**\n * Bind a handler to events being emitted by the index.\n *\n * The handler can be bound to many events at the same time.\n *\n * @param {String} [eventName] The name(s) of events to bind the function to.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.on = function () {\n var args = Array.prototype.slice.call(arguments)\n return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n}\n\n/**\n * Removes a handler from an event being emitted by the index.\n *\n * @param {String} eventName The name of events to remove the function from.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.off = function (name, fn) {\n return this.eventEmitter.removeListener(name, fn)\n}\n\n/**\n * Loads a previously serialised index.\n *\n * Issues a warning if the index being imported was serialised\n * by a different version of lunr.\n *\n * @param {Object} serialisedData The serialised set to load.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.load = function (serialisedData) {\n if (serialisedData.version !== lunr.version) {\n lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n }\n\n var idx = new this\n\n idx._fields = serialisedData.fields\n idx._ref = serialisedData.ref\n\n idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\n return idx\n}\n\n/**\n * Adds a field to the list of fields that will be searchable within documents\n * in the index.\n *\n * An optional boost param can be passed to affect how much tokens in this field\n * rank in search results, by default the boost value is 1.\n *\n * Fields should be added before any documents are added to the index, fields\n * that are added after documents are added to the index will only apply to new\n * documents added to the index.\n *\n * @param {String} fieldName The name of the field within the document that\n * should be indexed\n * @param {Number} boost An optional boost that can be applied to terms in this\n * field.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.field = function (fieldName, opts) {\n var opts = opts || {},\n field = { name: fieldName, boost: opts.boost || 1 }\n\n this._fields.push(field)\n return this\n}\n\n/**\n * Sets the property used to uniquely identify documents added to the index,\n * by default this property is 'id'.\n *\n * This should only be changed before adding documents to the index, changing\n * the ref property without resetting the index can lead to unexpected results.\n *\n * The value of ref can be of any type but it _must_ be stably comparable and\n * orderable.\n *\n * @param {String} refName The property to use to uniquely identify the\n * documents in the index.\n * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.ref = function (refName) {\n this._ref = refName\n return this\n}\n\n/**\n * Sets the tokenizer used for this index.\n *\n * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n * should only be changed before adding documents to the index. Changing the tokenizer\n * without re-building the index can lead to unexpected results.\n *\n * @param {Function} fn The function to use as a tokenizer.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.tokenizer = function (fn) {\n var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n }\n\n this.tokenizerFn = fn\n return this\n}\n\n/**\n * Add a document to the index.\n *\n * This is the way new documents enter the index, this function will run the\n * fields from the document through the index's pipeline and then add it to\n * the index, it will then show up in search results.\n *\n * An 'add' event is emitted with the document that has been added and the index\n * the document has been added to. This event can be silenced by passing false\n * as the second argument to add.\n *\n * @param {Object} doc The document to add to the index.\n * @param {Boolean} emitEvent Whether or not to emit events, default true.\n * @memberOf Index\n */\nlunr.Index.prototype.add = function (doc, emitEvent) {\n var docTokens = {},\n allDocumentTokens = new lunr.SortedSet,\n docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n this._fields.forEach(function (field) {\n var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\n docTokens[field.name] = fieldTokens\n\n for (var i = 0; i < fieldTokens.length; i++) {\n var token = fieldTokens[i]\n allDocumentTokens.add(token)\n this.corpusTokens.add(token)\n }\n }, this)\n\n this.documentStore.set(docRef, allDocumentTokens)\n\n for (var i = 0; i < allDocumentTokens.length; i++) {\n var token = allDocumentTokens.elements[i]\n var tf = 0;\n\n for (var j = 0; j < this._fields.length; j++){\n var field = this._fields[j]\n var fieldTokens = docTokens[field.name]\n var fieldLength = fieldTokens.length\n\n if (!fieldLength) continue\n\n var tokenCount = 0\n for (var k = 0; k < fieldLength; k++){\n if (fieldTokens[k] === token){\n tokenCount++\n }\n }\n\n tf += (tokenCount / fieldLength * field.boost)\n }\n\n this.tokenStore.add(token, { ref: docRef, tf: tf })\n };\n\n if (emitEvent) this.eventEmitter.emit('add', doc, this)\n}\n\n/**\n * Removes a document from the index.\n *\n * To make sure documents no longer show up in search results they can be\n * removed from the index using this method.\n *\n * The document passed only needs to have the same ref property value as the\n * document that was added to the index, they could be completely different\n * objects.\n *\n * A 'remove' event is emitted with the document that has been removed and the index\n * the document has been removed from. This event can be silenced by passing false\n * as the second argument to remove.\n *\n * @param {Object} doc The document to remove from the index.\n * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n * @memberOf Index\n */\nlunr.Index.prototype.remove = function (doc, emitEvent) {\n var docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n if (!this.documentStore.has(docRef)) return\n\n var docTokens = this.documentStore.get(docRef)\n\n this.documentStore.remove(docRef)\n\n docTokens.forEach(function (token) {\n this.tokenStore.remove(token, docRef)\n }, this)\n\n if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n}\n\n/**\n * Updates a document in the index.\n *\n * When a document contained within the index gets updated, fields changed,\n * added or removed, to make sure it correctly matched against search queries,\n * it should be updated in the index.\n *\n * This method is just a wrapper around `remove` and `add`\n *\n * An 'update' event is emitted with the document that has been updated and the index.\n * This event can be silenced by passing false as the second argument to update. Only\n * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n * are silenced.\n *\n * @param {Object} doc The document to update in the index.\n * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n * @see Index.prototype.remove\n * @see Index.prototype.add\n * @memberOf Index\n */\nlunr.Index.prototype.update = function (doc, emitEvent) {\n var emitEvent = emitEvent === undefined ? true : emitEvent\n\n this.remove(doc, false)\n this.add(doc, false)\n\n if (emitEvent) this.eventEmitter.emit('update', doc, this)\n}\n\n/**\n * Calculates the inverse document frequency for a token within the index.\n *\n * @param {String} token The token to calculate the idf of.\n * @see Index.prototype.idf\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.idf = function (term) {\n var cacheKey = \"@\" + term\n if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\n var documentFrequency = this.tokenStore.count(term),\n idf = 1\n\n if (documentFrequency > 0) {\n idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n }\n\n return this._idfCache[cacheKey] = idf\n}\n\n/**\n * Searches the index using the passed query.\n *\n * Queries should be a string, multiple words are allowed and will lead to an\n * AND based query, e.g. `idx.search('foo bar')` will run a search for\n * documents containing both 'foo' and 'bar'.\n *\n * All query tokens are passed through the same pipeline that document tokens\n * are passed through, so any language processing involved will be run on every\n * query term.\n *\n * Each query term is expanded, so that the term 'he' might be expanded to\n * 'hello' and 'help' if those terms were already included in the index.\n *\n * Matching documents are returned as an array of objects, each object contains\n * the matching document ref, as set for this index, and the similarity score\n * for this document against the query.\n *\n * @param {String} query The query to search the index with.\n * @returns {Object}\n * @see Index.prototype.idf\n * @see Index.prototype.documentVector\n * @memberOf Index\n */\nlunr.Index.prototype.search = function (query) {\n var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n queryVector = new lunr.Vector,\n documentSets = [],\n fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\n var hasSomeToken = queryTokens.some(function (token) {\n return this.tokenStore.has(token)\n }, this)\n\n if (!hasSomeToken) return []\n\n queryTokens\n .forEach(function (token, i, tokens) {\n var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n self = this\n\n var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n var pos = self.corpusTokens.indexOf(key),\n idf = self.idf(key),\n similarityBoost = 1,\n set = new lunr.SortedSet\n\n // if the expanded key is not an exact match to the token then\n // penalise the score for this key by how different the key is\n // to the token.\n if (key !== token) {\n var diff = Math.max(3, key.length - token.length)\n similarityBoost = 1 / Math.log(diff)\n }\n\n // calculate the query tf-idf score for this token\n // applying an similarityBoost to ensure exact matches\n // these rank higher than expanded terms\n if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\n // add all the documents that have this key into a set\n // ensuring that the type of key is preserved\n var matchingDocuments = self.tokenStore.get(key),\n refs = Object.keys(matchingDocuments),\n refsLen = refs.length\n\n for (var i = 0; i < refsLen; i++) {\n set.add(matchingDocuments[refs[i]].ref)\n }\n\n return memo.union(set)\n }, new lunr.SortedSet)\n\n documentSets.push(set)\n }, this)\n\n var documentSet = documentSets.reduce(function (memo, set) {\n return memo.intersect(set)\n })\n\n return documentSet\n .map(function (ref) {\n return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n }, this)\n .sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Generates a vector containing all the tokens in the document matching the\n * passed documentRef.\n *\n * The vector contains the tf-idf score for each token contained in the\n * document with the passed documentRef. The vector will contain an element\n * for every token in the indexes corpus, if the document does not contain that\n * token the element will be 0.\n *\n * @param {Object} documentRef The ref to find the document with.\n * @returns {lunr.Vector}\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.documentVector = function (documentRef) {\n var documentTokens = this.documentStore.get(documentRef),\n documentTokensLength = documentTokens.length,\n documentVector = new lunr.Vector\n\n for (var i = 0; i < documentTokensLength; i++) {\n var token = documentTokens.elements[i],\n tf = this.tokenStore.get(token)[documentRef].tf,\n idf = this.idf(token)\n\n documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n };\n\n return documentVector\n}\n\n/**\n * Returns a representation of the index ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Index\n */\nlunr.Index.prototype.toJSON = function () {\n return {\n version: lunr.version,\n fields: this._fields,\n ref: this._ref,\n tokenizer: this.tokenizerFn.label,\n documentStore: this.documentStore.toJSON(),\n tokenStore: this.tokenStore.toJSON(),\n corpusTokens: this.corpusTokens.toJSON(),\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Applies a plugin to the current index.\n *\n * A plugin is a function that is called with the index as its context.\n * Plugins can be used to customise or extend the behaviour the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied to the index.\n *\n * The plugin function will be called with the index as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index as its context.\n *\n * Example:\n *\n * var myPlugin = function (idx, arg1, arg2) {\n * // `this` is the index to be extended\n * // apply any extensions etc here.\n * }\n *\n * var idx = lunr(function () {\n * this.use(myPlugin, 'arg1', 'arg2')\n * })\n *\n * @param {Function} plugin The plugin to apply.\n * @memberOf Index\n */\nlunr.Index.prototype.use = function (plugin) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n plugin.apply(this, args)\n}\n/*!\n * lunr.Store\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Store is a simple key-value store used for storing sets of tokens for\n * documents stored in index.\n *\n * @constructor\n * @module\n */\nlunr.Store = function () {\n this.store = {}\n this.length = 0\n}\n\n/**\n * Loads a previously serialised store\n *\n * @param {Object} serialisedData The serialised store to load.\n * @returns {lunr.Store}\n * @memberOf Store\n */\nlunr.Store.load = function (serialisedData) {\n var store = new this\n\n store.length = serialisedData.length\n store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n return memo\n }, {})\n\n return store\n}\n\n/**\n * Stores the given tokens in the store against the given id.\n *\n * @param {Object} id The key used to store the tokens against.\n * @param {Object} tokens The tokens to store against the key.\n * @memberOf Store\n */\nlunr.Store.prototype.set = function (id, tokens) {\n if (!this.has(id)) this.length++\n this.store[id] = tokens\n}\n\n/**\n * Retrieves the tokens from the store for a given key.\n *\n * @param {Object} id The key to lookup and retrieve from the store.\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.get = function (id) {\n return this.store[id]\n}\n\n/**\n * Checks whether the store contains a key.\n *\n * @param {Object} id The id to look up in the store.\n * @returns {Boolean}\n * @memberOf Store\n */\nlunr.Store.prototype.has = function (id) {\n return id in this.store\n}\n\n/**\n * Removes the value for a key in the store.\n *\n * @param {Object} id The id to remove from the store.\n * @memberOf Store\n */\nlunr.Store.prototype.remove = function (id) {\n if (!this.has(id)) return\n\n delete this.store[id]\n this.length--\n}\n\n/**\n * Returns a representation of the store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.toJSON = function () {\n return {\n store: this.store,\n length: this.length\n }\n}\n\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @module\n * @param {String} str The string to stem\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return porterStemmer;\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @module\n * @param {Array} token The token to pass through the filter\n * @returns {Function}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token] !== token) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the begining and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.TokenStore is used for efficient storing and lookup of the reverse\n * index of token to document ref.\n *\n * @constructor\n */\nlunr.TokenStore = function () {\n this.root = { docs: {} }\n this.length = 0\n}\n\n/**\n * Loads a previously serialised token store\n *\n * @param {Object} serialisedData The serialised token store to load.\n * @returns {lunr.TokenStore}\n * @memberOf TokenStore\n */\nlunr.TokenStore.load = function (serialisedData) {\n var store = new this\n\n store.root = serialisedData.root\n store.length = serialisedData.length\n\n return store\n}\n\n/**\n * Adds a new token doc pair to the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to store the doc under\n * @param {Object} doc The doc to store against the token\n * @param {Object} root An optional node at which to start looking for the\n * correct place to enter the doc, by default the root of this lunr.TokenStore\n * is used.\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.add = function (token, doc, root) {\n var root = root || this.root,\n key = token.charAt(0),\n rest = token.slice(1)\n\n if (!(key in root)) root[key] = {docs: {}}\n\n if (rest.length === 0) {\n root[key].docs[doc.ref] = doc\n this.length += 1\n return\n } else {\n return this.add(rest, doc, root[key])\n }\n}\n\n/**\n * Checks whether this key is contained within this lunr.TokenStore.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to check for\n * @param {Object} root An optional node at which to start\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.has = function (token) {\n if (!token) return false\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return false\n\n node = node[token.charAt(i)]\n }\n\n return true\n}\n\n/**\n * Retrieve a node from the token store for a given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the node for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @see TokenStore.prototype.get\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.getNode = function (token) {\n if (!token) return {}\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return {}\n\n node = node[token.charAt(i)]\n }\n\n return node\n}\n\n/**\n * Retrieve the documents for a node for the given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.get = function (token, root) {\n return this.getNode(token, root).docs || {}\n}\n\nlunr.TokenStore.prototype.count = function (token, root) {\n return Object.keys(this.get(token, root)).length\n}\n\n/**\n * Remove the document identified by ref from the token in the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {String} ref The ref of the document to remove from this token.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.remove = function (token, ref) {\n if (!token) return\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!(token.charAt(i) in node)) return\n node = node[token.charAt(i)]\n }\n\n delete node.docs[ref]\n}\n\n/**\n * Find all the possible suffixes of the passed token using tokens\n * currently in the store.\n *\n * @param {String} token The token to expand.\n * @returns {Array}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.expand = function (token, memo) {\n var root = this.getNode(token),\n docs = root.docs || {},\n memo = memo || []\n\n if (Object.keys(docs).length) memo.push(token)\n\n Object.keys(root)\n .forEach(function (key) {\n if (key === 'docs') return\n\n memo.concat(this.expand(token + key, memo))\n }, this)\n\n return memo\n}\n\n/**\n * Returns a representation of the token store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.toJSON = function () {\n return {\n root: this.root,\n length: this.length\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/lunr/lunr.js\n ** module id = 22\n ** module chunks = 0\n **/","import React from 'react'\n\nexport default class Skins extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n opened: false,\n }\n }\n\n handleClick(skin) {\n var { onChange } = this.props\n\n if (!this.state.opened) {\n this.setState({ opened: true })\n } else {\n onChange(skin)\n this.setState({ opened: false })\n }\n }\n\n render() {\n var { skin } = this.props,\n { opened } = this.state\n\n return
\n
\n {Array(6).fill().map((_, i) => {\n var skinTone = i + 1,\n selected = skinTone == skin\n\n return \n this.handleClick(skinTone)}\n className={`emoji-picker-skin emoji-picker-skin-tone-${skinTone}`}>\n \n \n })}\n
\n
\n }\n}\n\nSkins.propTypes = {\n onChange: React.PropTypes.func,\n skin: React.PropTypes.number.isRequired,\n}\n\nSkins.defaultProps = {\n onChange: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/skins.js\n **/"],"sourceRoot":""} \ No newline at end of file +{"version":3,"sources":["webpack:///webpack/universalModuleDefinition","webpack:///emoji-picker.min.js","webpack:///webpack/bootstrap ac79a2048a7cc73fb42f","webpack:///./src/index.js","webpack:///./src/components/anchors.js","webpack:///external \"react\"","webpack:///./~/svg-inline-react/dist/index.js","webpack:///./src/svgs/activity.svg","webpack:///./src/svgs/flags.svg","webpack:///./src/svgs/foods.svg","webpack:///./src/svgs/nature.svg","webpack:///./src/svgs/objects.svg","webpack:///./src/svgs/people.svg","webpack:///./src/svgs/places.svg","webpack:///./src/svgs/recent.svg","webpack:///./src/svgs/symbols.svg","webpack:///./src/components/category.js","webpack:///./src/utils/store.js","webpack:///./src/utils/emoji-index.js","webpack:///./~/lunr/lunr.js","webpack:///./data/index.js","webpack:///./src/utils/frequently.js","webpack:///./src/components/emoji.js","webpack:///./src/components/picker.js","webpack:///./src/vendor/raf-polyfill.js","webpack:///./src/components/preview.js","webpack:///./src/components/search.js","webpack:///./src/components/skins.js"],"names":["root","factory","exports","module","require","define","amd","this","__WEBPACK_EXTERNAL_MODULE_3__","modules","__webpack_require__","moduleId","installedModules","id","loaded","call","m","c","p","Object","defineProperty","value","_components","enumerable","get","Picker","Emoji","_utils","emojiIndex","_interopRequireDefault","obj","__esModule","default","_anchors","_category","_emoji","_picker","_preview","_search","_skins","_interopRequireWildcard","newObj","key","prototype","hasOwnProperty","_classCallCheck","instance","Constructor","TypeError","_possibleConstructorReturn","self","ReferenceError","_inherits","subClass","superClass","create","constructor","writable","configurable","setPrototypeOf","__proto__","_createClass","defineProperties","target","props","i","length","descriptor","protoProps","staticProps","_react","_react2","_svgInlineReact","_svgInlineReact2","_svgs","SVGs","Anchors","_React$Component","_this","getPrototypeOf","defaultCategory","categories","anchor","state","selected","name","_props","onAnchorClick","createElement","className","map","category","title","onClick","src","Component","propTypes","PropTypes","array","func","defaultProps","isParsable","parserAvailable","trim","substr","parseFromSVGString","parser","DOMParser","parseFromString","switchSVGAttrToReactProp","propName","_extends","assign","arguments","source","_get","_x","_x2","_x3","_again","object","property","receiver","Function","desc","getOwnPropertyDescriptor","undefined","getter","parent","window","process","env","NODE_ENV","console","info","InlineSVG","_extractSVGProps","bind","element","raw","string","isRequired","bool","ret","prop","documentElement","attributes","_serializeAttrs","innerHTML","_ref","children","Element","__html","svgProps","_stripSVG","dangerouslySetInnerHTML","_activity","_flags","_foods","_nature","_objects","_people","_places","_recent","_symbols","_","LABELS","Search","Recent","People","Nature","Foods","Activity","Places","Objects","Symbols","Flags","Category","apply","container","refs","label","parentNode","margin","minMargin","memoizeSize","nextProps","nextState","perLine","emojis","emojiProps","skin","size","sheetURL","nextPerLine","nextEmojis","nextEmojiProps","nextSkin","nextSize","nextSheetURL","shouldUpdate","_container$getBoundin","getBoundingClientRect","top","height","_parent$getBoundingCl","parentTop","_label$getBoundingCli","labelHeight","scrollTop","maxMargin","hasStickyPosition","style","_props2","frequentlyUsed","frequently","slice","display","getEmojis","_props3","labelStyles","labelSpanStyles","containerStyles","position","ref","data-name","emoji","number","_store","_emojiIndex","_frequently","update","set","localStorage","NAMESPACE","JSON","stringify","parse","search","maxResults","results","index","tokenize","result","indexOf","split","test","_lunr","_lunr2","_data","_data2","pipeline","reset","field","boost","emojiData","short_name","emoticons","add","__WEBPACK_AMD_DEFINE_FACTORY__","__WEBPACK_AMD_DEFINE_RESULT__","lunr","config","idx","Index","trimmer","stopWordFilter","stemmer","version","utils","warn","global","message","asString","toString","EventEmitter","events","addListener","args","Array","fn","pop","names","forEach","hasHandler","push","removeListener","fnIndex","splice","emit","tokenizer","isArray","t","toLowerCase","seperator","load","registeredFunctions","Error","registerFunction","Pipeline","_stack","warnIfFunctionNotRegistered","isRegistered","serialised","fnName","fns","after","existingFn","newFn","pos","before","remove","run","tokens","out","tokenLength","stackLength","token","j","toJSON","Vector","_magnitude","list","Node","val","next","insert","prev","magnitude","node","sumOfSquares","Math","sqrt","dot","otherVector","otherNode","dotProduct","similarity","SortedSet","elements","serialisedData","locationFor","toArray","ctx","elem","start","end","sectionLength","pivot","floor","pivotElem","intersect","otherSet","intersectSet","a_len","b_len","a","b","clone","union","longSet","shortSet","unionSet","shortSetElements","_fields","documentStore","Store","tokenStore","TokenStore","corpusTokens","eventEmitter","tokenizerFn","_idfCache","on","off","fields","fieldName","opts","refName","doc","emitEvent","docTokens","allDocumentTokens","docRef","fieldTokens","tf","fieldLength","tokenCount","k","has","idf","term","cacheKey","documentFrequency","count","log","query","queryTokens","queryVector","documentSets","fieldBoosts","reduce","memo","f","hasSomeToken","some","expand","similarityBoost","diff","max","matchingDocuments","keys","refsLen","documentSet","score","documentVector","sort","documentRef","documentTokens","documentTokensLength","use","plugin","unshift","store","step2list","ational","tional","enci","anci","izer","bli","alli","entli","eli","ousli","ization","ation","ator","alism","iveness","fulness","ousness","aliti","iviti","biliti","logi","step3list","icate","ative","alize","iciti","ical","ful","ness","v","C","V","mgr0","meq1","mgr1","s_v","re_mgr0","RegExp","re_mgr1","re_meq1","re_s_v","re_1a","re2_1a","re_1b","re2_1b","re_1b_2","re2_1b_2","re3_1b_2","re4_1b_2","re_1c","re_2","re_3","re_4","re2_4","re_5","re_5_1","re3_5","porterStemmer","w","stem","suffix","firstch","re","re2","re3","re4","toUpperCase","replace","fp","exec","generateStopWordFilter","stopWords","words","stopWord","docs","charAt","rest","getNode","concat","100","unified","variations","docomo","au","softbank","google","image","sheet_x","sheet_y","short_names","sort_order","has_img_apple","has_img_google","has_img_twitter","has_img_emojione","1234","grinning","heart","dog","soccer","watch","green_apple","flag-af","car","flag-ax","grimacing","taxi","iphone","basketball","cat","apple","yellow_heart","mouse","pear","green_heart","football","grin","flag-al","calling","blue_car","hamster","blue_heart","bus","joy","computer","tangerine","baseball","flag-dz","tennis","trolleybus","keyboard","rabbit","flag-as","lemon","purple_heart","smiley","desktop_computer","racing_car","volleyball","banana","bear","smile","flag-ad","broken_heart","sweat_smile","printer","rugby_football","heavy_heart_exclamation_mark_ornament","flag-ao","watermelon","panda_face","police_car","ambulance","grapes","two_hearts","flag-ai","three_button_mouse","8ball","laughing","koala","flag-aq","fire_engine","revolving_hearts","golf","innocent","strawberry","trackball","tiger","lion_face","flag-ag","minibus","melon","wink","golfer","heartbeat","joystick","heartpulse","flag-ar","table_tennis_paddle_and_ball","cow","cherries","compression","truck","blush","slightly_smiling_face","pig","sparkling_heart","badminton_racquet_and_shuttlecock","peach","minidisc","articulated_lorry","flag-am","ice_hockey_stick_and_puck","pineapple","flag-aw","pig_nose","floppy_disk","tractor","upside_down_face","cupid","cd","gift_heart","flag-au","field_hockey_stick_and_ball","tomato","racing_motorcycle","relaxed","frog","cricket_bat_and_ball","dvd","octopus","bike","heart_decoration","yum","eggplant","flag-at","rotating_light","monkey_face","ski","hot_pepper","peace_symbol","flag-az","relieved","vhs","oncoming_police_car","corn","latin_cross","camera","see_no_evil","heart_eyes","flag-bs","skier","oncoming_bus","snowboarder","sweet_potato","hear_no_evil","flag-bh","star_and_crescent","kissing_heart","camera_with_flash","ice_skate","oncoming_automobile","speak_no_evil","honey_pot","kissing","video_camera","om_symbol","flag-bd","monkey","movie_camera","oncoming_taxi","flag-bb","kissing_smiling_eyes","bread","bow_and_arrow","wheel_of_dharma","aerial_tramway","cheese_wedge","film_projector","fishing_pole_and_fish","kissing_closed_eyes","star_of_david","chicken","flag-by","six_pointed_star","penguin","mountain_cableway","stuck_out_tongue_winking_eye","flag-be","film_frames","poultry_leg","rowboat","skin_variations","1F6A3-1F3FB","1F6A3-1F3FC","1F6A3-1F3FD","1F6A3-1F3FE","1F6A3-1F3FF","menorah_with_nine_branches","stuck_out_tongue_closed_eyes","flag-bz","swimmer","1F3CA-1F3FB","1F3CA-1F3FC","1F3CA-1F3FD","1F3CA-1F3FE","1F3CA-1F3FF","bird","telephone_receiver","meat_on_bone","suspension_railway","flag-bj","yin_yang","stuck_out_tongue","phone","railway_car","fried_shrimp","surfer","1F3C4-1F3FB","1F3C4-1F3FC","1F3C4-1F3FD","1F3C4-1F3FE","1F3C4-1F3FF","baby_chick","egg","flag-bm","hatching_chick","train","pager","bath","1F6C0-1F3FB","1F6C0-1F3FC","1F6C0-1F3FD","1F6C0-1F3FE","1F6C0-1F3FF","money_mouth_face","orthodox_cross","hatched_chick","place_of_worship","hamburger","flag-bt","fax","nerd_face","monorail","person_with_ball","26F9-1F3FB","26F9-1F3FC","26F9-1F3FD","26F9-1F3FE","26F9-1F3FF","weight_lifter","1F3CB-1F3FB","1F3CB-1F3FC","1F3CB-1F3FD","1F3CB-1F3FE","1F3CB-1F3FF","sunglasses","wolf","bullettrain_side","ophiuchus","flag-bo","tv","fries","bicyclist","1F6B4-1F3FB","1F6B4-1F3FC","1F6B4-1F3FD","1F6B4-1F3FE","1F6B4-1F3FF","aries","hugging_face","flag-bq","bullettrain_front","radio","hotdog","boar","studio_microphone","pizza","flag-ba","mountain_bicyclist","1F6B5-1F3FB","1F6B5-1F3FC","1F6B5-1F3FD","1F6B5-1F3FE","1F6B5-1F3FF","smirk","light_rail","horse","taurus","gemini","horse_racing","level_slider","flag-bw","unicorn_face","mountain_railway","spaghetti","no_mouth","flag-br","man_in_business_suit_levitating","control_knobs","bee","neutral_face","steam_locomotive","cancer","taco","burrito","expressionless","trophy","train2","flag-io","bug","stopwatch","leo","virgo","running_shirt_with_sash","flag-vg","metro","unamused","snail","timer_clock","ramen","beetle","face_with_rolling_eyes","libra","stew","sports_medal","flag-bn","alarm_clock","tram","fish_cake","thinking_face","medal","mantelpiece_clock","station","flag-bg","ant","scorpius","sushi","flushed","spider","reminder_ribbon","helicopter","sagittarius","flag-bf","hourglass_flowing_sand","small_airplane","rosette","bento","capricorn","flag-bi","disappointed","scorpion","hourglass","crab","satellite_antenna","airplane","aquarius","ticket","worried","flag-cv","curry","pisces","airplane_departure","flag-kh","battery","snake","angry","rice_ball","admission_tickets","performing_arts","rage","rice","airplane_arriving","flag-cm","turtle","electric_plug","tropical_fish","bulb","pensive","rice_cracker","art","boat","atom_symbol","flag-ca","oden","flashlight","confused","u7a7a","circus_tent","motor_boat","flag-ic","fish","microphone","flag-ky","candle","dango","slightly_frowning_face","blowfish","u5272","speedboat","white_frowning_face","dolphin","radioactive_sign","headphones","flag-cf","ferry","wastebasket","shaved_ice","whale","oil_drum","ice_cream","passenger_ship","biohazard_sign","musical_score","persevere","flag-td","icecream","whale2","musical_keyboard","money_with_wings","confounded","rocket","mobile_phone_off","flag-cl","satellite","flag-cn","crocodile","cake","dollar","vibration_mode","tired_face","saxophone","flag-cx","seat","trumpet","yen","leopard","u6709","birthday","weary","tiger2","flag-cc","u7121","euro","custard","triumph","guitar","violin","construction","water_buffalo","candy","pound","flag-co","open_mouth","u7533","ox","scream","flag-km","clapper","u55b6","fuelpump","moneybag","lollipop","credit_card","cow2","video_game","busstop","chocolate_bar","u6708","fearful","flag-cg","dromedary_camel","popcorn","eight_pointed_black_star","gem","space_invader","vertical_traffic_light","cold_sweat","flag-cd","flag-ck","hushed","traffic_light","doughnut","camel","dart","scales","vs","elephant","wrench","game_die","accept","cookie","flag-cr","checkered_flag","frowning","white_flower","ship","hammer","flag-hr","anguished","goat","beer","slot_machine","flag-cu","hammer_and_pick","beers","ferris_wheel","ideograph_advantage","ram","cry","bowling","flag-cw","secret","disappointed_relieved","hammer_and_wrench","roller_coaster","sheep","wine_glass","congratulations","sleepy","carousel_horse","pick","flag-cy","cocktail","racehorse","flag-cz","tropical_drink","u5408","nut_and_bolt","sweat","building_construction","pig2","sob","u6e80","flag-dk","gear","rat","champagne","foggy","tokyo_tower","dizzy_face","sake","u7981","mouse2","flag-dj","chains","tea","gun","astonished","flag-dm","rooster","coffee","bomb","flag-do","fountain","turkey","zipper_mouth_face","mask","flag-ec","ab","rice_scene","baby_bottle","hocho","dove_of_peace","cl","dog2","fork_and_knife","dagger_knife","mountain","face_with_thermometer","flag-eg","poodle","flag-sv","snow_capped_mountain","face_with_head_bandage","o2","knife_fork_plate","crossed_swords","sos","flag-gq","mount_fuji","cat2","shield","sleeping","volcano","rabbit2","smoking","flag-er","zzz","no_entry","hankey","flag-ee","skull_and_crossbones","chipmunk","japan","name_badge","coffin","camping","feet","flag-et","no_entry_sign","smiling_imp","imp","funeral_urn","tent","dragon","x","flag-eu","amphora","o","national_park","dragon_face","flag-fk","japanese_ogre","japanese_goblin","flag-fo","motorway","cactus","anger","crystal_ball","skull","hotsprings","flag-fj","prayer_beads","christmas_tree","railway_track","flag-fi","barber","ghost","sunrise","evergreen_tree","no_pedestrians","sunrise_over_mountains","alembic","alien","deciduous_tree","do_not_litter","flag-fr","telescope","palm_tree","no_bicycles","desert","robot_face","flag-gf","non-potable_water","beach_with_umbrella","microscope","seedling","smiley_cat","flag-pf","herb","underage","hole","flag-tf","desert_island","smile_cat","pill","shamrock","flag-ga","city_sunrise","joy_cat","no_mobile_phones","heart_eyes_cat","syringe","exclamation","city_sunset","flag-gm","four_leaf_clover","grey_exclamation","smirk_cat","thermometer","cityscape","flag-ge","bamboo","flag-de","night_with_stars","kissing_cat","tanabata_tree","question","leaves","grey_question","scream_cat","bookmark","bridge_at_night","flag-gh","milky_way","toilet","crying_cat_face","bangbang","fallen_leaf","flag-gi","pouting_cat","maple_leaf","flag-gr","interrobang","stars","shower","raised_hands","1F64C-1F3FB","1F64C-1F3FC","1F64C-1F3FD","1F64C-1F3FE","1F64C-1F3FF","flag-gl","ear_of_rice","sparkler","bathtub","hibiscus","flag-gd","low_brightness","fireworks","clap","1F44F-1F3FB","1F44F-1F3FC","1F44F-1F3FD","1F44F-1F3FE","1F44F-1F3FF","flag-gp","old_key","high_brightness","rainbow","wave","1F44B-1F3FB","1F44B-1F3FC","1F44B-1F3FD","1F44B-1F3FE","1F44B-1F3FF","sunflower","+1","1F44D-1F3FB","1F44D-1F3FC","1F44D-1F3FD","1F44D-1F3FE","1F44D-1F3FF","couch_and_lamp","house_buildings","rose","trident","flag-gu","european_castle","-1","1F44E-1F3FB","1F44E-1F3FC","1F44E-1F3FD","1F44E-1F3FE","1F44E-1F3FF","fleur_de_lis","tulip","sleeping_accommodation","flag-gt","part_alternation_mark","blossom","bed","flag-gg","japanese_castle","facepunch","1F44A-1F3FB","1F44A-1F3FC","1F44A-1F3FD","1F44A-1F3FE","1F44A-1F3FF","stadium","flag-gn","warning","door","cherry_blossom","fist","270A-1F3FB","270A-1F3FC","270A-1F3FD","270A-1F3FE","270A-1F3FF","statue_of_liberty","270C-1F3FB","270C-1F3FC","270C-1F3FD","270C-1F3FE","270C-1F3FF","children_crossing","bouquet","bellhop_bell","flag-gw","beginner","house","mushroom","frame_with_picture","ok_hand","1F44C-1F3FB","1F44C-1F3FC","1F44C-1F3FD","1F44C-1F3FE","1F44C-1F3FF","flag-gy","flag-ht","house_with_garden","world_map","chestnut","hand","270B-1F3FB","270B-1F3FC","270B-1F3FD","270B-1F3FE","270B-1F3FF","recycle","umbrella_on_ground","jack_o_lantern","open_hands","1F450-1F3FB","1F450-1F3FC","1F450-1F3FD","1F450-1F3FE","1F450-1F3FF","derelict_house_building","u6307","flag-hn","shell","flag-hk","moyai","muscle","1F4AA-1F3FB","1F4AA-1F3FC","1F4AA-1F3FD","1F4AA-1F3FE","1F4AA-1F3FF","chart","office","shopping_bags","department_store","pray","1F64F-1F3FB","1F64F-1F3FC","1F64F-1F3FD","1F64F-1F3FE","1F64F-1F3FF","flag-hu","sparkle","spider_web","point_up","261D-1F3FB","261D-1F3FC","261D-1F3FD","261D-1F3FE","261D-1F3FF","eight_spoked_asterisk","flag-is","post_office","earth_americas","balloon","european_post_office","point_up_2","1F446-1F3FB","1F446-1F3FC","1F446-1F3FD","1F446-1F3FE","1F446-1F3FF","earth_africa","negative_squared_cross_mark","flags","flag-in","hospital","point_down","1F447-1F3FB","1F447-1F3FC","1F447-1F3FD","1F447-1F3FE","1F447-1F3FF","white_check_mark","ribbon","earth_asia","flag-id","full_moon","point_left","1F448-1F3FB","1F448-1F3FC","1F448-1F3FD","1F448-1F3FE","1F448-1F3FF","flag-ir","gift","bank","diamond_shape_with_a_dot_inside","flag-iq","confetti_ball","point_right","1F449-1F3FB","1F449-1F3FC","1F449-1F3FD","1F449-1F3FE","1F449-1F3FF","cyclone","waning_gibbous_moon","hotel","loop","convenience_store","last_quarter_moon","tada","middle_finger","1F595-1F3FB","1F595-1F3FC","1F595-1F3FD","1F595-1F3FE","1F595-1F3FF","flag-ie","dolls","globe_with_meridians","flag-im","waning_crescent_moon","raised_hand_with_fingers_splayed","1F590-1F3FB","1F590-1F3FC","1F590-1F3FD","1F590-1F3FE","1F590-1F3FF","school","new_moon","the_horns","1F918-1F3FB","1F918-1F3FC","1F918-1F3FD","1F918-1F3FE","1F918-1F3FF","love_hotel","flag-il","wind_chime","spock-hand","1F596-1F3FB","1F596-1F3FC","1F596-1F3FD","1F596-1F3FE","1F596-1F3FF","wedding","atm","crossed_flags","flag-it","waxing_crescent_moon","izakaya_lantern","first_quarter_moon","sa","classical_building","writing_hand","270D-1F3FB","270D-1F3FC","270D-1F3FD","270D-1F3FE","270D-1F3FF","flag-ci","moon","church","email","passport_control","nail_care","1F485-1F3FB","1F485-1F3FC","1F485-1F3FD","1F485-1F3FE","1F485-1F3FF","flag-jm","lips","mosque","flag-jp","new_moon_with_face","customs","envelope_with_arrow","full_moon_with_face","flag-je","synagogue","baggage_claim","tongue","incoming_envelope","e-mail","ear","1F442-1F3FB","1F442-1F3FC","1F442-1F3FD","1F442-1F3FE","1F442-1F3FF","first_quarter_moon_with_face","left_luggage","kaaba","flag-jo","flag-kz","wheelchair","last_quarter_moon_with_face","nose","1F443-1F3FB","1F443-1F3FC","1F443-1F3FD","1F443-1F3FE","1F443-1F3FF","love_letter","shinto_shrine","no_smoking","postbox","eye","sun_with_face","flag-ke","mailbox_closed","flag-ki","eyes","wc","crescent_moon","mailbox","flag-xk","parking","bust_in_silhouette","star","star2","mailbox_with_mail","potable_water","busts_in_silhouette","flag-kw","mens","dizzy","speaking_head_in_silhouette","flag-kg","mailbox_with_no_mail","sparkles","baby","1F476-1F3FB","1F476-1F3FC","1F476-1F3FD","1F476-1F3FE","1F476-1F3FF","package","womens","flag-la","baby_symbol","flag-lv","postal_horn","comet","boy","1F466-1F3FB","1F466-1F3FC","1F466-1F3FD","1F466-1F3FE","1F466-1F3FF","restroom","flag-lb","inbox_tray","sunny","girl","1F467-1F3FB","1F467-1F3FC","1F467-1F3FD","1F467-1F3FE","1F467-1F3FF","man","1F468-1F3FB","1F468-1F3FC","1F468-1F3FD","1F468-1F3FE","1F468-1F3FF","put_litter_in_its_place","mostly_sunny","flag-ls","outbox_tray","cinema","flag-lr","scroll","partly_sunny","woman","1F469-1F3FB","1F469-1F3FC","1F469-1F3FD","1F469-1F3FE","1F469-1F3FF","signal_strength","person_with_blond_hair","1F471-1F3FB","1F471-1F3FC","1F471-1F3FD","1F471-1F3FE","1F471-1F3FF","barely_sunny","page_with_curl","flag-ly","bookmark_tabs","flag-li","older_man","1F474-1F3FB","1F474-1F3FC","1F474-1F3FD","1F474-1F3FE","1F474-1F3FF","partly_sunny_rain","koko","bar_chart","cloud","ng","flag-lt","older_woman","1F475-1F3FB","1F475-1F3FC","1F475-1F3FD","1F475-1F3FE","1F475-1F3FF","rain_cloud","flag-lu","chart_with_upwards_trend","ok","man_with_gua_pi_mao","1F472-1F3FB","1F472-1F3FC","1F472-1F3FD","1F472-1F3FE","1F472-1F3FF","thunder_cloud_and_rain","up","man_with_turban","1F473-1F3FB","1F473-1F3FC","1F473-1F3FD","1F473-1F3FE","1F473-1F3FF","chart_with_downwards_trend","flag-mo","page_facing_up","cool","lightning","flag-mk","cop","1F46E-1F3FB","1F46E-1F3FC","1F46E-1F3FD","1F46E-1F3FE","1F46E-1F3FF","flag-mg","date","new","zap","construction_worker","1F477-1F3FB","1F477-1F3FC","1F477-1F3FD","1F477-1F3FE","1F477-1F3FF","guardsman","1F482-1F3FB","1F482-1F3FC","1F482-1F3FD","1F482-1F3FE","1F482-1F3FF","fire","free","flag-mw","calendar","spiral_calendar_pad","boom","flag-my","zero","sleuth_or_spy","1F575-1F3FB","1F575-1F3FC","1F575-1F3FD","1F575-1F3FE","1F575-1F3FF","one","santa","1F385-1F3FB","1F385-1F3FC","1F385-1F3FD","1F385-1F3FE","1F385-1F3FF","card_index","snowflake","flag-mv","snow_cloud","angel","1F47C-1F3FB","1F47C-1F3FC","1F47C-1F3FD","1F47C-1F3FE","1F47C-1F3FF","two","card_file_box","flag-ml","three","princess","1F478-1F3FB","1F478-1F3FC","1F478-1F3FD","1F478-1F3FE","1F478-1F3FF","snowman","ballot_box_with_ballot","flag-mt","file_cabinet","bride_with_veil","1F470-1F3FB","1F470-1F3FC","1F470-1F3FD","1F470-1F3FE","1F470-1F3FF","flag-mh","snowman_without_snow","four","clipboard","wind_blowing_face","five","walking","1F6B6-1F3FB","1F6B6-1F3FC","1F6B6-1F3FD","1F6B6-1F3FE","1F6B6-1F3FF","flag-mq","six","dash","flag-mr","runner","1F3C3-1F3FB","1F3C3-1F3FC","1F3C3-1F3FD","1F3C3-1F3FE","1F3C3-1F3FF","spiral_note_pad","seven","tornado","file_folder","flag-mu","dancer","1F483-1F3FB","1F483-1F3FC","1F483-1F3FD","1F483-1F3FE","1F483-1F3FF","open_file_folder","eight","fog","dancers","flag-yt","flag-mx","card_index_dividers","couple","umbrella","nine","rolled_up_newspaper","flag-fm","umbrella_with_rain_drops","two_men_holding_hands","keycap_ten","newspaper","keycap_star","flag-md","two_women_holding_hands","droplet","bow","1F647-1F3FB","1F647-1F3FC","1F647-1F3FD","1F647-1F3FE","1F647-1F3FF","notebook","sweat_drops","flag-mc","closed_book","flag-mn","arrow_forward","information_desk_person","1F481-1F3FB","1F481-1F3FC","1F481-1F3FD","1F481-1F3FE","1F481-1F3FF","ocean","double_vertical_bar","green_book","no_good","1F645-1F3FB","1F645-1F3FC","1F645-1F3FD","1F645-1F3FE","1F645-1F3FF","flag-me","flag-ms","ok_woman","1F646-1F3FB","1F646-1F3FC","1F646-1F3FD","1F646-1F3FE","1F646-1F3FF","blue_book","black_right_pointing_triangle_with_double_vertical_bar","raising_hand","1F64B-1F3FB","1F64B-1F3FC","1F64B-1F3FD","1F64B-1F3FE","1F64B-1F3FF","black_square_for_stop","orange_book","flag-ma","flag-mz","notebook_with_decorative_cover","person_with_pouting_face","1F64E-1F3FB","1F64E-1F3FC","1F64E-1F3FD","1F64E-1F3FE","1F64E-1F3FF","eject","black_circle_for_record","flag-mm","person_frowning","1F64D-1F3FB","1F64D-1F3FC","1F64D-1F3FD","1F64D-1F3FE","1F64D-1F3FF","ledger","flag-na","haircut","1F487-1F3FB","1F487-1F3FC","1F487-1F3FD","1F487-1F3FE","1F487-1F3FF","books","black_right_pointing_double_triangle_with_vertical_bar","book","flag-nr","black_left_pointing_double_triangle_with_vertical_bar","massage","1F486-1F3FB","1F486-1F3FC","1F486-1F3FD","1F486-1F3FE","1F486-1F3FF","couple_with_heart","fast_forward","flag-np","link","paperclip","rewind","woman-heart-woman","flag-nl","linked_paperclips","man-heart-man","flag-nc","twisted_rightwards_arrows","couplekiss","flag-nz","scissors","repeat","repeat_one","flag-ni","woman-kiss-woman","triangular_ruler","straight_ruler","flag-ne","man-kiss-man","arrow_backward","arrow_up_small","flag-ng","family","pushpin","man-woman-girl","round_pushpin","arrow_down_small","flag-nu","flag-nf","triangular_flag_on_post","man-woman-girl-boy","arrow_double_up","man-woman-boy-boy","flag-mp","waving_white_flag","arrow_double_down","man-woman-girl-girl","flag-kp","waving_black_flag","arrow_right","flag-no","woman-woman-boy","arrow_left","closed_lock_with_key","flag-om","lock","arrow_up","woman-woman-girl","arrow_down","flag-pk","woman-woman-girl-boy","unlock","woman-woman-boy-boy","lock_with_ink_pen","flag-pw","arrow_upper_right","woman-woman-girl-girl","arrow_lower_right","lower_left_ballpoint_pen","flag-ps","flag-pa","lower_left_fountain_pen","arrow_lower_left","man-man-boy","black_nib","flag-pg","arrow_upper_left","man-man-girl","man-man-girl-boy","arrow_up_down","flag-py","flag-pe","pencil2","man-man-boy-boy","left_right_arrow","man-man-girl-girl","arrows_counterclockwise","flag-ph","lower_left_crayon","womans_clothes","lower_left_paintbrush","flag-pn","arrow_right_hook","leftwards_arrow_with_hook","mag","flag-pl","shirt","flag-pt","jeans","mag_right","arrow_heading_up","necktie","flag-pr","arrow_heading_down","dress","flag-qa","hash","flag-re","bikini","information_source","kimono","abc","flag-ro","lipstick","flag-ru","abcd","kiss","capital_abcd","flag-rw","footprints","flag-bl","symbols","high_heel","musical_note","flag-sh","flag-kn","notes","sandal","boot","wavy_dash","flag-lc","flag-pm","mans_shoe","curly_loop","flag-vc","heavy_check_mark","athletic_shoe","womans_hat","flag-ws","arrows_clockwise","heavy_plus_sign","tophat","flag-sm","helmet_with_white_cross","heavy_minus_sign","flag-st","flag-sa","heavy_division_sign","mortar_board","flag-sn","heavy_multiplication_x","crown","school_satchel","flag-rs","heavy_dollar_sign","flag-sc","currency_exchange","pouch","purse","flag-sl","copyright","handbag","flag-sg","registered","briefcase","flag-sx","tm","flag-sk","eyeglasses","dark_sunglasses","flag-si","back","ring","flag-sb","flag-so","closed_umbrella","flag-za","soon","flag-gs","ballot_box_with_check","radio_button","flag-kr","flag-ss","white_circle","flag-es","black_circle","flag-lk","red_circle","flag-sd","large_blue_circle","small_orange_diamond","flag-sr","small_blue_diamond","flag-sz","large_orange_diamond","flag-se","flag-ch","large_blue_diamond","flag-sy","small_red_triangle","flag-tw","black_small_square","white_small_square","flag-tj","black_large_square","flag-tz","white_large_square","flag-th","flag-tl","small_red_triangle_down","flag-tg","black_medium_square","flag-tk","white_medium_square","flag-to","black_medium_small_square","white_medium_small_square","flag-tt","black_square_button","flag-tn","flag-tr","white_square_button","flag-tm","speaker","flag-tc","sound","flag-tv","loud_sound","mute","flag-ug","flag-ua","mega","flag-ae","loudspeaker","bell","flag-gb","flag-us","no_bell","flag-vi","black_joker","mahjong","flag-uy","spades","flag-uz","clubs","flag-vu","hearts","flag-va","diamonds","flag-ve","flag-vn","flower_playing_cards","thought_balloon","flag-wf","flag-eh","right_anger_bubble","speech_balloon","flag-ye","left_speech_bubble","flag-zm","clock1","flag-zw","flag-ac","clock2","flag-bv","clock3","flag-cp","clock4","clock5","flag-dg","clock6","flag-ea","flag-hm","clock7","flag-mf","clock8","clock9","flag-sj","flag-ta","clock10","flag-um","clock11","clock12","clock130","clock230","clock330","clock430","clock530","clock630","clock730","clock830","clock930","clock1030","clock1130","clock1230","skins","skin-tone-2","skin-tone-3","skin-tone-4","skin-tone-5","skin-tone-6","quantity","sorted","reverse","sliced","last","_toConsumableArray","arr","arr2","from","SHEET_COLUMNS","SKINS","getEmojiData","hasSkinVariations","skinKey","variationKey","variationData","kitMatches","match","kit","skin_tone","multiply","unicodes","codePoints","u","String","fromCodePoint","colons","native","getNative","_this2","onOver","onLeave","handleClick","onMouseEnter","onMouseLeave","width","backgroundImage","backgroundSize","backgroundPosition","getPosition","oneOfType","RECENT_CATEGORY","SEARCH_CATEGORY","CATEGORIES","testStickyPosition","setState","updateCategoriesSize","handleScroll","stickyTestElement","document","_arr","_i","prefix","preview","clearTimeout","leaveTimeout","setTimeout","_this3","component","forceUpdate","requestAnimationFrame","handleScrollPaint","waitingForPaint","scrollingDown","activeCategory","minTop","l","ii","active","anchors","_activeCategory","categoryName","updateDisplay","_refs","scrollToComponent","handleSearch","clear","newState","_this4","emojiSize","handleAnchorClick","onScroll","onSearch","handleEmojiOver","handleEmojiLeave","handleEmojiClick","Preview","skinsProps","onChange","handleSkinChange","lastTime","vendors","cancelAnimationFrame","callback","currTime","Date","getTime","timeToCall","knownEmoticons","listedEmoticons","_iteratorNormalCompletion","_didIteratorError","_iteratorError","_step","_iterator","Symbol","iterator","done","emoticon","err","Skins","input","type","handleChange","placeholder","opened","fill","skinTone"],"mappings":"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AC,GAAAS,EAAA,GACAN,EAAAxB,EACAwB,EAAAjP,KAAA8O,KACAD,EAAAC,OAEK,IAAAI,EAAAlP,KAAA6O,GAAA,CACL,GAAAU,GAAAL,EAAAM,KAAAX,EACAC,GAAAS,EAAA,GAAAA,EAAA,GACAL,EAAAzB,EACAyB,EAAAlP,KAAA8O,KACAD,EAAAC,GAMA,GADAG,EAAAR,EACAQ,EAAAjP,KAAA6O,GAAA,CACA,GAAAU,GAAAN,EAAAO,KAAAX,EACAC,GAAAS,EAAA,GACAN,EAAAxB,EACAyB,EAAAxB,EACAyB,EAAAR,GACAM,EAAAjP,KAAA8O,IAAAI,EAAAlP,KAAA8O,KAAAK,EAAAnP,KAAA8O,MACAD,EAAAC,GAiBA,MAbAG,GAAAP,EACAQ,EAAAzB,EACAwB,EAAAjP,KAAA6O,IAAAK,EAAAlP,KAAA6O,KACAI,EAAAjB,EACAa,IAAAS,QAAAL,EAAA,KAKA,KAAAD,IACAH,EAAAG,EAAAjM,cAAA8L,EAAA3X,OAAA,IAGA2X,EAGA,OAAAD,MAGA7N,EAAAsC,SAAAD,iBAAArC,EAAAM,QAAA;;;;AAmBAN,EAAA0O,uBAAA,SAAAC,GACA,GAAAC,GAAAD,EAAA/F,OAAA,SAAAC,EAAAgG,GAEA,MADAhG,GAAAgG,KACAhG,MAGA,iBAAArF,GACA,MAAAA,IAAAoL,EAAApL,SAAA,SAgBAxD,EAAAK,eAAAL,EAAA0O,wBACA,IACA,OACA,QACA,SACA,QACA,MACA,SACA,OACA,KACA,QACA,KACA,MACA,MACA,MACA,KACA,KACA,KACA,UACA,OACA,MACA,KACA,MACA,SACA,QACA,OACA,MACA,KACA,OACA,SACA,OACA,OACA,QACA,MACA,OACA,MACA,MACA,MACA,MACA,OACA,KACA,MACA,OACA,MACA,MACA,MACA,UACA,IACA,KACA,KACA,OACA,KACA,KACA,MACA,OACA,QACA,MACA,OACA,SACA,MACA,KACA,QACA,OACA,OACA,KACA,UACA,KACA,MACA,MACA,KACA,MACA,QACA,KACA,OACA,KACA,QACA,MACA,MACA,SACA,OACA,MACA,OACA,MACA,SACA,QACA,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","file":"emoji-picker.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"react\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"react\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EmojiPicker\"] = factory(require(\"react\"));\n\telse\n\t\troot[\"EmojiPicker\"] = factory(root[\"react\"]);\n})(this, function(__WEBPACK_EXTERNAL_MODULE_3__) {\nreturn \n\n\n/** WEBPACK FOOTER **\n ** webpack/universalModuleDefinition\n **/","(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory(require(\"react\"));\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([\"react\"], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EmojiPicker\"] = factory(require(\"react\"));\n\telse\n\t\troot[\"EmojiPicker\"] = factory(root[\"react\"]);\n})(this, function(__WEBPACK_EXTERNAL_MODULE_3__) {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId])\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\texports: {},\n/******/ \t\t\tid: moduleId,\n/******/ \t\t\tloaded: false\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.loaded = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(0);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _components = __webpack_require__(1);\n\t\n\tObject.defineProperty(exports, 'Picker', {\n\t enumerable: true,\n\t get: function get() {\n\t return _components.Picker;\n\t }\n\t});\n\tObject.defineProperty(exports, 'Emoji', {\n\t enumerable: true,\n\t get: function get() {\n\t return _components.Emoji;\n\t }\n\t});\n\t\n\tvar _utils = __webpack_require__(16);\n\t\n\tObject.defineProperty(exports, 'emojiIndex', {\n\t enumerable: true,\n\t get: function get() {\n\t return _utils.emojiIndex;\n\t }\n\t});\n\n/***/ },\n/* 1 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _anchors = __webpack_require__(2);\n\t\n\tObject.defineProperty(exports, 'Anchors', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_anchors).default;\n\t }\n\t});\n\t\n\tvar _category = __webpack_require__(15);\n\t\n\tObject.defineProperty(exports, 'Category', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_category).default;\n\t }\n\t});\n\t\n\tvar _emoji = __webpack_require__(22);\n\t\n\tObject.defineProperty(exports, 'Emoji', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_emoji).default;\n\t }\n\t});\n\t\n\tvar _picker = __webpack_require__(23);\n\t\n\tObject.defineProperty(exports, 'Picker', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_picker).default;\n\t }\n\t});\n\t\n\tvar _preview = __webpack_require__(25);\n\t\n\tObject.defineProperty(exports, 'Preview', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_preview).default;\n\t }\n\t});\n\t\n\tvar _search = __webpack_require__(26);\n\t\n\tObject.defineProperty(exports, 'Search', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_search).default;\n\t }\n\t});\n\t\n\tvar _skins = __webpack_require__(27);\n\t\n\tObject.defineProperty(exports, 'Skins', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_skins).default;\n\t }\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/***/ },\n/* 2 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _svgInlineReact = __webpack_require__(4);\n\t\n\tvar _svgInlineReact2 = _interopRequireDefault(_svgInlineReact);\n\t\n\tvar _svgs = __webpack_require__(5);\n\t\n\tvar SVGs = _interopRequireWildcard(_svgs);\n\t\n\tfunction _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Anchors = function (_React$Component) {\n\t _inherits(Anchors, _React$Component);\n\t\n\t function Anchors(props) {\n\t _classCallCheck(this, Anchors);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Anchors).call(this, props));\n\t\n\t var defaultCategory = props.categories[0];\n\t if (defaultCategory.anchor) {\n\t defaultCategory = defaultCategory.anchor;\n\t }\n\t\n\t _this.state = {\n\t selected: defaultCategory.name\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(Anchors, [{\n\t key: 'render',\n\t value: function render() {\n\t var _props = this.props;\n\t var categories = _props.categories;\n\t var onAnchorClick = _props.onAnchorClick;\n\t var selected = this.state.selected;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-anchors' },\n\t categories.map(function (category, i) {\n\t var name = category.name;\n\t var anchor = category.anchor;\n\t\n\t\n\t if (anchor) {\n\t return null;\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'span',\n\t {\n\t key: name,\n\t title: name,\n\t onClick: function onClick() {\n\t return onAnchorClick(category, i);\n\t },\n\t className: 'emoji-picker-anchor ' + (name == selected ? 'emoji-picker-anchor-selected' : '')\n\t },\n\t _react2.default.createElement(_svgInlineReact2.default, { src: SVGs[name] }),\n\t _react2.default.createElement('span', { className: 'emoji-picker-anchor-bar' })\n\t );\n\t })\n\t );\n\t }\n\t }]);\n\t\n\t return Anchors;\n\t}(_react2.default.Component);\n\t\n\texports.default = Anchors;\n\t\n\t\n\tAnchors.propTypes = {\n\t categories: _react2.default.PropTypes.array,\n\t onAnchorClick: _react2.default.PropTypes.func\n\t};\n\t\n\tAnchors.defaultProps = {\n\t categories: [],\n\t onAnchorClick: function onAnchorClick() {}\n\t};\n\n/***/ },\n/* 3 */\n/***/ function(module, exports) {\n\n\tmodule.exports = __WEBPACK_EXTERNAL_MODULE_3__;\n\n/***/ },\n/* 4 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, '__esModule', {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\t\n\tvar _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar DOMParser = typeof window !== 'undefined' && window.DOMParser;\n\tvar process = process || {};\n\tprocess.env = process.env || {};\n\tvar parserAvailable = typeof DOMParser !== 'undefined' && DOMParser.prototype != null && DOMParser.prototype.parseFromString != null;\n\t\n\tif (\"production\" !== process.env.NODE_ENV && !parserAvailable) {\n\t console.info(': `raw` prop works only when `window.DOMParser` exists.');\n\t}\n\t\n\tfunction isParsable(src) {\n\t // kinda naive but meh, ain't gonna use full-blown parser for this\n\t return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\n\tfunction switchSVGAttrToReactProp(propName) {\n\t switch (propName) {\n\t case 'class':\n\t return 'className';\n\t default:\n\t return propName;\n\t }\n\t}\n\t\n\tvar InlineSVG = (function (_React$Component) {\n\t _inherits(InlineSVG, _React$Component);\n\t\n\t _createClass(InlineSVG, null, [{\n\t key: 'defaultProps',\n\t value: {\n\t element: 'i',\n\t raw: false,\n\t src: ''\n\t },\n\t enumerable: true\n\t }, {\n\t key: 'propTypes',\n\t value: {\n\t src: _react2['default'].PropTypes.string.isRequired,\n\t element: _react2['default'].PropTypes.string,\n\t raw: _react2['default'].PropTypes.bool\n\t },\n\t enumerable: true\n\t }]);\n\t\n\t function InlineSVG(props) {\n\t _classCallCheck(this, InlineSVG);\n\t\n\t _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n\t this._extractSVGProps = this._extractSVGProps.bind(this);\n\t }\n\t\n\t // Serialize `Attr` objects in `NamedNodeMap`\n\t\n\t _createClass(InlineSVG, [{\n\t key: '_serializeAttrs',\n\t value: function _serializeAttrs(map) {\n\t var ret = {};\n\t var prop = undefined;\n\t for (var i = 0; i < map.length; i++) {\n\t prop = switchSVGAttrToReactProp(map[i].name);\n\t ret[prop] = map[i].value;\n\t }\n\t return ret;\n\t }\n\t\n\t // get element props\n\t }, {\n\t key: '_extractSVGProps',\n\t value: function _extractSVGProps(src) {\n\t var map = parseFromSVGString(src).documentElement.attributes;\n\t return map.length > 0 ? this._serializeAttrs(map) : null;\n\t }\n\t\n\t // get content inside element.\n\t }, {\n\t key: '_stripSVG',\n\t value: function _stripSVG(src) {\n\t return parseFromSVGString(src).documentElement.innerHTML;\n\t }\n\t }, {\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(_ref) {\n\t var children = _ref.children;\n\t\n\t if (\"production\" !== process.env.NODE_ENV && children != null) {\n\t console.info(': `children` prop will be ignored.');\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var Element = undefined,\n\t __html = undefined,\n\t svgProps = undefined;\n\t var _props = this.props;\n\t var element = _props.element;\n\t var raw = _props.raw;\n\t var src = _props.src;\n\t\n\t if (raw === true && isParsable(src)) {\n\t Element = 'svg';\n\t svgProps = this._extractSVGProps(src);\n\t __html = this._stripSVG(src);\n\t }\n\t __html = __html || src;\n\t Element = Element || element;\n\t svgProps = svgProps || {};\n\t\n\t return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n\t dangerouslySetInnerHTML: { __html: __html } }));\n\t }\n\t }]);\n\t\n\t return InlineSVG;\n\t})(_react2['default'].Component);\n\t\n\texports['default'] = InlineSVG;\n\tmodule.exports = exports['default'];\n\n/***/ },\n/* 5 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _activity = __webpack_require__(6);\n\t\n\tObject.defineProperty(exports, 'Activity', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_activity).default;\n\t }\n\t});\n\t\n\tvar _flags = __webpack_require__(7);\n\t\n\tObject.defineProperty(exports, 'Flags', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_flags).default;\n\t }\n\t});\n\t\n\tvar _foods = __webpack_require__(8);\n\t\n\tObject.defineProperty(exports, 'Foods', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_foods).default;\n\t }\n\t});\n\t\n\tvar _nature = __webpack_require__(9);\n\t\n\tObject.defineProperty(exports, 'Nature', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_nature).default;\n\t }\n\t});\n\t\n\tvar _objects = __webpack_require__(10);\n\t\n\tObject.defineProperty(exports, 'Objects', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_objects).default;\n\t }\n\t});\n\t\n\tvar _people = __webpack_require__(11);\n\t\n\tObject.defineProperty(exports, 'People', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_people).default;\n\t }\n\t});\n\t\n\tvar _places = __webpack_require__(12);\n\t\n\tObject.defineProperty(exports, 'Places', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_places).default;\n\t }\n\t});\n\t\n\tvar _recent = __webpack_require__(13);\n\t\n\tObject.defineProperty(exports, 'Recent', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_recent).default;\n\t }\n\t});\n\t\n\tvar _symbols = __webpack_require__(14);\n\t\n\tObject.defineProperty(exports, 'Symbols', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_symbols).default;\n\t }\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/***/ },\n/* 6 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 7 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 8 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 9 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 10 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 11 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 12 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 13 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 14 */\n/***/ function(module, exports) {\n\n\tmodule.exports = \"\"\n\n/***/ },\n/* 15 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _utils = __webpack_require__(16);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar LABELS = {\n\t 'Search': 'Search Results',\n\t 'Recent': 'Frequently Used',\n\t 'People': 'Smileys & People',\n\t 'Nature': 'Animals & Nature',\n\t 'Foods': 'Food & Drink',\n\t 'Activity': 'Activity',\n\t 'Places': 'Travel & Places',\n\t 'Objects': 'Objects',\n\t 'Symbols': 'Symbols',\n\t 'Flags': 'Flags'\n\t};\n\t\n\tvar Category = function (_React$Component) {\n\t _inherits(Category, _React$Component);\n\t\n\t function Category() {\n\t _classCallCheck(this, Category);\n\t\n\t return _possibleConstructorReturn(this, Object.getPrototypeOf(Category).apply(this, arguments));\n\t }\n\t\n\t _createClass(Category, [{\n\t key: 'componentDidMount',\n\t value: function componentDidMount() {\n\t this.container = this.refs.container;\n\t this.label = this.refs.label;\n\t this.parent = this.container.parentNode;\n\t\n\t this.margin = 0;\n\t this.minMargin = 0;\n\t\n\t this.memoizeSize();\n\t }\n\t }, {\n\t key: 'shouldComponentUpdate',\n\t value: function shouldComponentUpdate(nextProps, nextState) {\n\t var _props = this.props;\n\t var name = _props.name;\n\t var perLine = _props.perLine;\n\t var emojis = _props.emojis;\n\t var emojiProps = _props.emojiProps;\n\t var skin = emojiProps.skin;\n\t var size = emojiProps.size;\n\t var sheetURL = emojiProps.sheetURL;\n\t var nextPerLine = nextProps.perLine;\n\t var nextEmojis = nextProps.emojis;\n\t var nextEmojiProps = nextProps.emojiProps;\n\t var nextSkin = nextEmojiProps.skin;\n\t var nextSize = nextEmojiProps.size;\n\t var nextSheetURL = nextEmojiProps.sheetURL;\n\t var shouldUpdate = false;\n\t\n\t if (name == 'Recent' && perLine != nextPerLine) {\n\t shouldUpdate = true;\n\t }\n\t\n\t if (name == 'Search') {\n\t shouldUpdate = !(emojis == nextEmojis);\n\t }\n\t\n\t if (skin != nextSkin || size != nextSize || sheetURL != nextSheetURL) {\n\t shouldUpdate = true;\n\t }\n\t\n\t return shouldUpdate;\n\t }\n\t }, {\n\t key: 'memoizeSize',\n\t value: function memoizeSize() {\n\t var _container$getBoundin = this.container.getBoundingClientRect();\n\t\n\t var top = _container$getBoundin.top;\n\t var height = _container$getBoundin.height;\n\t\n\t var _parent$getBoundingCl = this.parent.getBoundingClientRect();\n\t\n\t var parentTop = _parent$getBoundingCl.top;\n\t\n\t var _label$getBoundingCli = this.label.getBoundingClientRect();\n\t\n\t var labelHeight = _label$getBoundingCli.height;\n\t\n\t\n\t this.top = top - parentTop + this.parent.scrollTop;\n\t\n\t if (height == 0) {\n\t this.maxMargin = 0;\n\t } else {\n\t this.maxMargin = height - labelHeight;\n\t }\n\t }\n\t }, {\n\t key: 'handleScroll',\n\t value: function handleScroll(scrollTop) {\n\t var margin = scrollTop - this.top;\n\t margin = margin < this.minMargin ? this.minMargin : margin;\n\t margin = margin > this.maxMargin ? this.maxMargin : margin;\n\t\n\t if (margin == this.margin) return;\n\t var name = this.props.name;\n\t\n\t\n\t if (!this.props.hasStickyPosition) {\n\t this.label.style.top = margin + 'px';\n\t }\n\t\n\t this.margin = margin;\n\t return true;\n\t }\n\t }, {\n\t key: 'getEmojis',\n\t value: function getEmojis() {\n\t var _props2 = this.props;\n\t var name = _props2.name;\n\t var emojis = _props2.emojis;\n\t var perLine = _props2.perLine;\n\t\n\t\n\t if (name == 'Recent') {\n\t var frequentlyUsed = _utils.frequently.get(perLine * 4);\n\t\n\t if (frequentlyUsed.length) {\n\t emojis = frequentlyUsed;\n\t }\n\t }\n\t\n\t if (emojis) {\n\t emojis = emojis.slice(0);\n\t }\n\t\n\t return emojis;\n\t }\n\t }, {\n\t key: 'updateDisplay',\n\t value: function updateDisplay(display) {\n\t var emojis = this.getEmojis();\n\t\n\t if (!display && !emojis) {\n\t return;\n\t }\n\t\n\t this.container.style.display = display;\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _props3 = this.props;\n\t var name = _props3.name;\n\t var hasStickyPosition = _props3.hasStickyPosition;\n\t var emojiProps = _props3.emojiProps;\n\t var emojis = this.getEmojis();\n\t var labelStyles = {};\n\t var labelSpanStyles = {};\n\t var containerStyles = {};\n\t\n\t if (!emojis) {\n\t containerStyles = {\n\t display: 'none'\n\t };\n\t }\n\t\n\t if (!hasStickyPosition) {\n\t labelStyles = {\n\t height: 28\n\t };\n\t\n\t labelSpanStyles = {\n\t position: 'absolute'\n\t };\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { ref: 'container', className: 'emoji-picker-category', style: containerStyles },\n\t _react2.default.createElement(\n\t 'div',\n\t { style: labelStyles, 'data-name': name, className: 'emoji-picker-category-label' },\n\t _react2.default.createElement(\n\t 'span',\n\t { style: labelSpanStyles, ref: 'label' },\n\t LABELS[name]\n\t )\n\t ),\n\t emojis && emojis.map(function (emoji) {\n\t return _react2.default.createElement(_.Emoji, _extends({\n\t key: emoji,\n\t emoji: emoji\n\t }, emojiProps));\n\t }),\n\t emojis && !emojis.length && _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-no-results' },\n\t _react2.default.createElement(_.Emoji, _extends({}, emojiProps, {\n\t size: 22,\n\t emoji: 'sleuth_or_spy'\n\t })),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-no-results-label' },\n\t 'No emoji found'\n\t )\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Category;\n\t}(_react2.default.Component);\n\t\n\texports.default = Category;\n\t\n\t\n\tCategory.propTypes = {\n\t emojis: _react2.default.PropTypes.array,\n\t hasStickyPosition: _react2.default.PropTypes.bool,\n\t name: _react2.default.PropTypes.string.isRequired,\n\t perLine: _react2.default.PropTypes.number.isRequired,\n\t emojiProps: _react2.default.PropTypes.object.isRequired\n\t};\n\t\n\tCategory.defaultProps = {\n\t emojis: [],\n\t hasStickyPosition: true\n\t};\n\n/***/ },\n/* 16 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _store = __webpack_require__(17);\n\t\n\tObject.defineProperty(exports, 'store', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_store).default;\n\t }\n\t});\n\t\n\tvar _emojiIndex = __webpack_require__(18);\n\t\n\tObject.defineProperty(exports, 'emojiIndex', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_emojiIndex).default;\n\t }\n\t});\n\t\n\tvar _frequently = __webpack_require__(21);\n\t\n\tObject.defineProperty(exports, 'frequently', {\n\t enumerable: true,\n\t get: function get() {\n\t return _interopRequireDefault(_frequently).default;\n\t }\n\t});\n\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\n/***/ },\n/* 17 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\tvar NAMESPACE = 'emoji-picker';\n\t\n\tfunction update(state) {\n\t for (var key in state) {\n\t var value = state[key];\n\t set(key, value);\n\t }\n\t}\n\t\n\tfunction set(key, value) {\n\t if (!('localStorage' in window)) return;\n\t window.localStorage[NAMESPACE + '.' + key] = JSON.stringify(value);\n\t}\n\t\n\tfunction get(key) {\n\t if (!('localStorage' in window)) return;\n\t\n\t var value = window.localStorage[NAMESPACE + '.' + key];\n\t\n\t if (value) {\n\t return JSON.parse(value);\n\t }\n\t}\n\t\n\texports.default = { update: update, set: set, get: get };\n\n/***/ },\n/* 18 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _lunr = __webpack_require__(19);\n\t\n\tvar _lunr2 = _interopRequireDefault(_lunr);\n\t\n\tvar _data = __webpack_require__(20);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tvar index = (0, _lunr2.default)(function () {\n\t this.pipeline.reset();\n\t\n\t this.field('short_name', { boost: 2 });\n\t this.field('emoticons');\n\t this.field('name');\n\t\n\t this.ref('id');\n\t});\n\t\n\tfor (var emoji in _data2.default.emojis) {\n\t var emojiData = _data2.default.emojis[emoji];\n\t var short_name = emojiData.short_name;\n\t var name = emojiData.name;\n\t var emoticons = emojiData.emoticons;\n\t\n\t\n\t index.add({\n\t id: short_name,\n\t emoticons: emoticons,\n\t short_name: tokenize(short_name),\n\t name: tokenize(name)\n\t });\n\t}\n\t\n\tfunction search(value) {\n\t var maxResults = arguments.length <= 1 || arguments[1] === undefined ? 75 : arguments[1];\n\t\n\t var results = null;\n\t\n\t if (value.length) {\n\t results = index.search(tokenize(value)).map(function (result) {\n\t return result.ref;\n\t });\n\t\n\t results = results.slice(0, maxResults);\n\t }\n\t\n\t return results;\n\t}\n\t\n\tfunction tokenize(string) {\n\t if (['-', '-1', '+', '+1'].indexOf(string) == 0) {\n\t return string.split('');\n\t }\n\t\n\t if (/(:|;|=)-/.test(string)) {\n\t return [string];\n\t }\n\t\n\t return string.split(/[-|_|\\s]+/);\n\t}\n\t\n\texports.default = { search: search };\n\n/***/ },\n/* 19 */\n/***/ function(module, exports, __webpack_require__) {\n\n\tvar __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**\n\t * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * @license MIT\n\t */\n\t\n\t;(function(){\n\t\n\t/**\n\t * Convenience function for instantiating a new lunr index and configuring it\n\t * with the default pipeline functions and the passed config function.\n\t *\n\t * When using this convenience function a new index will be created with the\n\t * following functions already in the pipeline:\n\t *\n\t * lunr.StopWordFilter - filters out any stop words before they enter the\n\t * index\n\t *\n\t * lunr.stemmer - stems the tokens before entering the index.\n\t *\n\t * Example:\n\t *\n\t * var idx = lunr(function () {\n\t * this.field('title', 10)\n\t * this.field('tags', 100)\n\t * this.field('body')\n\t * \n\t * this.ref('cid')\n\t * \n\t * this.pipeline.add(function () {\n\t * // some custom pipeline function\n\t * })\n\t * \n\t * })\n\t *\n\t * @param {Function} config A function that will be called with the new instance\n\t * of the lunr.Index as both its context and first parameter. It can be used to\n\t * customize the instance of new lunr.Index.\n\t * @namespace\n\t * @module\n\t * @returns {lunr.Index}\n\t *\n\t */\n\tvar lunr = function (config) {\n\t var idx = new lunr.Index\n\t\n\t idx.pipeline.add(\n\t lunr.trimmer,\n\t lunr.stopWordFilter,\n\t lunr.stemmer\n\t )\n\t\n\t if (config) config.call(idx, idx)\n\t\n\t return idx\n\t}\n\t\n\tlunr.version = \"0.7.1\"\n\t/*!\n\t * lunr.utils\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * A namespace containing utils for the rest of the lunr library\n\t */\n\tlunr.utils = {}\n\t\n\t/**\n\t * Print a warning message to the console.\n\t *\n\t * @param {String} message The message to be printed.\n\t * @memberOf Utils\n\t */\n\tlunr.utils.warn = (function (global) {\n\t return function (message) {\n\t if (global.console && console.warn) {\n\t console.warn(message)\n\t }\n\t }\n\t})(this)\n\t\n\t/**\n\t * Convert an object to a string.\n\t *\n\t * In the case of `null` and `undefined` the function returns\n\t * the empty string, in all other cases the result of calling\n\t * `toString` on the passed object is returned.\n\t *\n\t * @param {Any} obj The object to convert to a string.\n\t * @return {String} string representation of the passed object.\n\t * @memberOf Utils\n\t */\n\tlunr.utils.asString = function (obj) {\n\t if (obj === void 0 || obj === null) {\n\t return \"\"\n\t } else {\n\t return obj.toString()\n\t }\n\t}\n\t/*!\n\t * lunr.EventEmitter\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n\t *\n\t * @constructor\n\t */\n\tlunr.EventEmitter = function () {\n\t this.events = {}\n\t}\n\t\n\t/**\n\t * Binds a handler function to a specific event(s).\n\t *\n\t * Can bind a single function to many different events in one call.\n\t *\n\t * @param {String} [eventName] The name(s) of events to bind this function to.\n\t * @param {Function} fn The function to call when an event is fired.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.addListener = function () {\n\t var args = Array.prototype.slice.call(arguments),\n\t fn = args.pop(),\n\t names = args\n\t\n\t if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\t\n\t names.forEach(function (name) {\n\t if (!this.hasHandler(name)) this.events[name] = []\n\t this.events[name].push(fn)\n\t }, this)\n\t}\n\t\n\t/**\n\t * Removes a handler function from a specific event.\n\t *\n\t * @param {String} eventName The name of the event to remove this function from.\n\t * @param {Function} fn The function to remove from an event.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n\t if (!this.hasHandler(name)) return\n\t\n\t var fnIndex = this.events[name].indexOf(fn)\n\t this.events[name].splice(fnIndex, 1)\n\t\n\t if (!this.events[name].length) delete this.events[name]\n\t}\n\t\n\t/**\n\t * Calls all functions bound to the given event.\n\t *\n\t * Additional data can be passed to the event handler as arguments to `emit`\n\t * after the event name.\n\t *\n\t * @param {String} eventName The name of the event to emit.\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.emit = function (name) {\n\t if (!this.hasHandler(name)) return\n\t\n\t var args = Array.prototype.slice.call(arguments, 1)\n\t\n\t this.events[name].forEach(function (fn) {\n\t fn.apply(undefined, args)\n\t })\n\t}\n\t\n\t/**\n\t * Checks whether a handler has ever been stored against an event.\n\t *\n\t * @param {String} eventName The name of the event to check.\n\t * @private\n\t * @memberOf EventEmitter\n\t */\n\tlunr.EventEmitter.prototype.hasHandler = function (name) {\n\t return name in this.events\n\t}\n\t\n\t/*!\n\t * lunr.tokenizer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * A function for splitting a string into tokens ready to be inserted into\n\t * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n\t * the value of this property to change how strings are split into tokens.\n\t *\n\t * @module\n\t * @param {String} obj The string to convert into tokens\n\t * @see lunr.tokenizer.seperator\n\t * @returns {Array}\n\t */\n\tlunr.tokenizer = function (obj) {\n\t if (!arguments.length || obj == null || obj == undefined) return []\n\t if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\t\n\t return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n\t}\n\t\n\t/**\n\t * The sperator used to split a string into tokens. Override this property to change the behaviour of\n\t * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n\t *\n\t * @static\n\t * @see lunr.tokenizer\n\t */\n\tlunr.tokenizer.seperator = /[\\s\\-]+/\n\t\n\t/**\n\t * Loads a previously serialised tokenizer.\n\t *\n\t * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n\t * If the serialised tokenizer has not been registered then an error will be thrown.\n\t *\n\t * @param {String} label The label of the serialised tokenizer.\n\t * @returns {Function}\n\t * @memberOf tokenizer\n\t */\n\tlunr.tokenizer.load = function (label) {\n\t var fn = this.registeredFunctions[label]\n\t\n\t if (!fn) {\n\t throw new Error('Cannot load un-registered function: ' + label)\n\t }\n\t\n\t return fn\n\t}\n\t\n\tlunr.tokenizer.label = 'default'\n\t\n\tlunr.tokenizer.registeredFunctions = {\n\t 'default': lunr.tokenizer\n\t}\n\t\n\t/**\n\t * Register a tokenizer function.\n\t *\n\t * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n\t *\n\t * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n\t *\n\t * @param {Function} fn The function to register.\n\t * @param {String} label The label to register this function with\n\t * @memberOf tokenizer\n\t */\n\tlunr.tokenizer.registerFunction = function (fn, label) {\n\t if (label in this.registeredFunctions) {\n\t lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n\t }\n\t\n\t fn.label = label\n\t this.registeredFunctions[label] = fn\n\t}\n\t/*!\n\t * lunr.Pipeline\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Pipelines maintain an ordered list of functions to be applied to all\n\t * tokens in documents entering the search index and queries being ran against\n\t * the index.\n\t *\n\t * An instance of lunr.Index created with the lunr shortcut will contain a\n\t * pipeline with a stop word filter and an English language stemmer. Extra\n\t * functions can be added before or after either of these functions or these\n\t * default functions can be removed.\n\t *\n\t * When run the pipeline will call each function in turn, passing a token, the\n\t * index of that token in the original list of all tokens and finally a list of\n\t * all the original tokens.\n\t *\n\t * The output of functions in the pipeline will be passed to the next function\n\t * in the pipeline. To exclude a token from entering the index the function\n\t * should return undefined, the rest of the pipeline will not be called with\n\t * this token.\n\t *\n\t * For serialisation of pipelines to work, all functions used in an instance of\n\t * a pipeline should be registered with lunr.Pipeline. Registered functions can\n\t * then be loaded. If trying to load a serialised pipeline that uses functions\n\t * that are not registered an error will be thrown.\n\t *\n\t * If not planning on serialising the pipeline then registering pipeline functions\n\t * is not necessary.\n\t *\n\t * @constructor\n\t */\n\tlunr.Pipeline = function () {\n\t this._stack = []\n\t}\n\t\n\tlunr.Pipeline.registeredFunctions = {}\n\t\n\t/**\n\t * Register a function with the pipeline.\n\t *\n\t * Functions that are used in the pipeline should be registered if the pipeline\n\t * needs to be serialised, or a serialised pipeline needs to be loaded.\n\t *\n\t * Registering a function does not add it to a pipeline, functions must still be\n\t * added to instances of the pipeline for them to be used when running a pipeline.\n\t *\n\t * @param {Function} fn The function to check for.\n\t * @param {String} label The label to register this function with\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.registerFunction = function (fn, label) {\n\t if (label in this.registeredFunctions) {\n\t lunr.utils.warn('Overwriting existing registered function: ' + label)\n\t }\n\t\n\t fn.label = label\n\t lunr.Pipeline.registeredFunctions[fn.label] = fn\n\t}\n\t\n\t/**\n\t * Warns if the function is not registered as a Pipeline function.\n\t *\n\t * @param {Function} fn The function to check for.\n\t * @private\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n\t var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\t\n\t if (!isRegistered) {\n\t lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n\t }\n\t}\n\t\n\t/**\n\t * Loads a previously serialised pipeline.\n\t *\n\t * All functions to be loaded must already be registered with lunr.Pipeline.\n\t * If any function from the serialised data has not been registered then an\n\t * error will be thrown.\n\t *\n\t * @param {Object} serialised The serialised pipeline to load.\n\t * @returns {lunr.Pipeline}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.load = function (serialised) {\n\t var pipeline = new lunr.Pipeline\n\t\n\t serialised.forEach(function (fnName) {\n\t var fn = lunr.Pipeline.registeredFunctions[fnName]\n\t\n\t if (fn) {\n\t pipeline.add(fn)\n\t } else {\n\t throw new Error('Cannot load un-registered function: ' + fnName)\n\t }\n\t })\n\t\n\t return pipeline\n\t}\n\t\n\t/**\n\t * Adds new functions to the end of the pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} functions Any number of functions to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.add = function () {\n\t var fns = Array.prototype.slice.call(arguments)\n\t\n\t fns.forEach(function (fn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\t this._stack.push(fn)\n\t }, this)\n\t}\n\t\n\t/**\n\t * Adds a single function after a function that already exists in the\n\t * pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} existingFn A function that already exists in the pipeline.\n\t * @param {Function} newFn The new function to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\t\n\t var pos = this._stack.indexOf(existingFn)\n\t if (pos == -1) {\n\t throw new Error('Cannot find existingFn')\n\t }\n\t\n\t pos = pos + 1\n\t this._stack.splice(pos, 0, newFn)\n\t}\n\t\n\t/**\n\t * Adds a single function before a function that already exists in the\n\t * pipeline.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @param {Function} existingFn A function that already exists in the pipeline.\n\t * @param {Function} newFn The new function to add to the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\t\n\t var pos = this._stack.indexOf(existingFn)\n\t if (pos == -1) {\n\t throw new Error('Cannot find existingFn')\n\t }\n\t\n\t this._stack.splice(pos, 0, newFn)\n\t}\n\t\n\t/**\n\t * Removes a function from the pipeline.\n\t *\n\t * @param {Function} fn The function to remove from the pipeline.\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.remove = function (fn) {\n\t var pos = this._stack.indexOf(fn)\n\t if (pos == -1) {\n\t return\n\t }\n\t\n\t this._stack.splice(pos, 1)\n\t}\n\t\n\t/**\n\t * Runs the current list of functions that make up the pipeline against the\n\t * passed tokens.\n\t *\n\t * @param {Array} tokens The tokens to run through the pipeline.\n\t * @returns {Array}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.run = function (tokens) {\n\t var out = [],\n\t tokenLength = tokens.length,\n\t stackLength = this._stack.length\n\t\n\t for (var i = 0; i < tokenLength; i++) {\n\t var token = tokens[i]\n\t\n\t for (var j = 0; j < stackLength; j++) {\n\t token = this._stack[j](token, i, tokens)\n\t if (token === void 0 || token === '') break\n\t };\n\t\n\t if (token !== void 0 && token !== '') out.push(token)\n\t };\n\t\n\t return out\n\t}\n\t\n\t/**\n\t * Resets the pipeline by removing any existing processors.\n\t *\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.reset = function () {\n\t this._stack = []\n\t}\n\t\n\t/**\n\t * Returns a representation of the pipeline ready for serialisation.\n\t *\n\t * Logs a warning if the function has not been registered.\n\t *\n\t * @returns {Array}\n\t * @memberOf Pipeline\n\t */\n\tlunr.Pipeline.prototype.toJSON = function () {\n\t return this._stack.map(function (fn) {\n\t lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\t\n\t return fn.label\n\t })\n\t}\n\t/*!\n\t * lunr.Vector\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Vectors implement vector related operations for\n\t * a series of elements.\n\t *\n\t * @constructor\n\t */\n\tlunr.Vector = function () {\n\t this._magnitude = null\n\t this.list = undefined\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * lunr.Vector.Node is a simple struct for each node\n\t * in a lunr.Vector.\n\t *\n\t * @private\n\t * @param {Number} The index of the node in the vector.\n\t * @param {Object} The data at this node in the vector.\n\t * @param {lunr.Vector.Node} The node directly after this node in the vector.\n\t * @constructor\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.Node = function (idx, val, next) {\n\t this.idx = idx\n\t this.val = val\n\t this.next = next\n\t}\n\t\n\t/**\n\t * Inserts a new value at a position in a vector.\n\t *\n\t * @param {Number} The index at which to insert a value.\n\t * @param {Object} The object to insert in the vector.\n\t * @memberOf Vector.\n\t */\n\tlunr.Vector.prototype.insert = function (idx, val) {\n\t this._magnitude = undefined;\n\t var list = this.list\n\t\n\t if (!list) {\n\t this.list = new lunr.Vector.Node (idx, val, list)\n\t return this.length++\n\t }\n\t\n\t if (idx < list.idx) {\n\t this.list = new lunr.Vector.Node (idx, val, list)\n\t return this.length++\n\t }\n\t\n\t var prev = list,\n\t next = list.next\n\t\n\t while (next != undefined) {\n\t if (idx < next.idx) {\n\t prev.next = new lunr.Vector.Node (idx, val, next)\n\t return this.length++\n\t }\n\t\n\t prev = next, next = next.next\n\t }\n\t\n\t prev.next = new lunr.Vector.Node (idx, val, next)\n\t return this.length++\n\t}\n\t\n\t/**\n\t * Calculates the magnitude of this vector.\n\t *\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.magnitude = function () {\n\t if (this._magnitude) return this._magnitude\n\t var node = this.list,\n\t sumOfSquares = 0,\n\t val\n\t\n\t while (node) {\n\t val = node.val\n\t sumOfSquares += val * val\n\t node = node.next\n\t }\n\t\n\t return this._magnitude = Math.sqrt(sumOfSquares)\n\t}\n\t\n\t/**\n\t * Calculates the dot product of this vector and another vector.\n\t *\n\t * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.dot = function (otherVector) {\n\t var node = this.list,\n\t otherNode = otherVector.list,\n\t dotProduct = 0\n\t\n\t while (node && otherNode) {\n\t if (node.idx < otherNode.idx) {\n\t node = node.next\n\t } else if (node.idx > otherNode.idx) {\n\t otherNode = otherNode.next\n\t } else {\n\t dotProduct += node.val * otherNode.val\n\t node = node.next\n\t otherNode = otherNode.next\n\t }\n\t }\n\t\n\t return dotProduct\n\t}\n\t\n\t/**\n\t * Calculates the cosine similarity between this vector and another\n\t * vector.\n\t *\n\t * @param {lunr.Vector} otherVector The other vector to calculate the\n\t * similarity with.\n\t * @returns {Number}\n\t * @memberOf Vector\n\t */\n\tlunr.Vector.prototype.similarity = function (otherVector) {\n\t return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n\t}\n\t/*!\n\t * lunr.SortedSet\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n\t * order.\n\t *\n\t * @constructor\n\t */\n\tlunr.SortedSet = function () {\n\t this.length = 0\n\t this.elements = []\n\t}\n\t\n\t/**\n\t * Loads a previously serialised sorted set.\n\t *\n\t * @param {Array} serialisedData The serialised set to load.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.load = function (serialisedData) {\n\t var set = new this\n\t\n\t set.elements = serialisedData\n\t set.length = serialisedData.length\n\t\n\t return set\n\t}\n\t\n\t/**\n\t * Inserts new items into the set in the correct position to maintain the\n\t * order.\n\t *\n\t * @param {Object} The objects to add to this set.\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.add = function () {\n\t var i, element\n\t\n\t for (i = 0; i < arguments.length; i++) {\n\t element = arguments[i]\n\t if (~this.indexOf(element)) continue\n\t this.elements.splice(this.locationFor(element), 0, element)\n\t }\n\t\n\t this.length = this.elements.length\n\t}\n\t\n\t/**\n\t * Converts this sorted set into an array.\n\t *\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.toArray = function () {\n\t return this.elements.slice()\n\t}\n\t\n\t/**\n\t * Creates a new array with the results of calling a provided function on every\n\t * element in this sorted set.\n\t *\n\t * Delegates to Array.prototype.map and has the same signature.\n\t *\n\t * @param {Function} fn The function that is called on each element of the\n\t * set.\n\t * @param {Object} ctx An optional object that can be used as the context\n\t * for the function fn.\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.map = function (fn, ctx) {\n\t return this.elements.map(fn, ctx)\n\t}\n\t\n\t/**\n\t * Executes a provided function once per sorted set element.\n\t *\n\t * Delegates to Array.prototype.forEach and has the same signature.\n\t *\n\t * @param {Function} fn The function that is called on each element of the\n\t * set.\n\t * @param {Object} ctx An optional object that can be used as the context\n\t * @memberOf SortedSet\n\t * for the function fn.\n\t */\n\tlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n\t return this.elements.forEach(fn, ctx)\n\t}\n\t\n\t/**\n\t * Returns the index at which a given element can be found in the\n\t * sorted set, or -1 if it is not present.\n\t *\n\t * @param {Object} elem The object to locate in the sorted set.\n\t * @returns {Number}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.indexOf = function (elem) {\n\t var start = 0,\n\t end = this.elements.length,\n\t sectionLength = end - start,\n\t pivot = start + Math.floor(sectionLength / 2),\n\t pivotElem = this.elements[pivot]\n\t\n\t while (sectionLength > 1) {\n\t if (pivotElem === elem) return pivot\n\t\n\t if (pivotElem < elem) start = pivot\n\t if (pivotElem > elem) end = pivot\n\t\n\t sectionLength = end - start\n\t pivot = start + Math.floor(sectionLength / 2)\n\t pivotElem = this.elements[pivot]\n\t }\n\t\n\t if (pivotElem === elem) return pivot\n\t\n\t return -1\n\t}\n\t\n\t/**\n\t * Returns the position within the sorted set that an element should be\n\t * inserted at to maintain the current order of the set.\n\t *\n\t * This function assumes that the element to search for does not already exist\n\t * in the sorted set.\n\t *\n\t * @param {Object} elem The elem to find the position for in the set\n\t * @returns {Number}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.locationFor = function (elem) {\n\t var start = 0,\n\t end = this.elements.length,\n\t sectionLength = end - start,\n\t pivot = start + Math.floor(sectionLength / 2),\n\t pivotElem = this.elements[pivot]\n\t\n\t while (sectionLength > 1) {\n\t if (pivotElem < elem) start = pivot\n\t if (pivotElem > elem) end = pivot\n\t\n\t sectionLength = end - start\n\t pivot = start + Math.floor(sectionLength / 2)\n\t pivotElem = this.elements[pivot]\n\t }\n\t\n\t if (pivotElem > elem) return pivot\n\t if (pivotElem < elem) return pivot + 1\n\t}\n\t\n\t/**\n\t * Creates a new lunr.SortedSet that contains the elements in the intersection\n\t * of this set and the passed set.\n\t *\n\t * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.intersect = function (otherSet) {\n\t var intersectSet = new lunr.SortedSet,\n\t i = 0, j = 0,\n\t a_len = this.length, b_len = otherSet.length,\n\t a = this.elements, b = otherSet.elements\n\t\n\t while (true) {\n\t if (i > a_len - 1 || j > b_len - 1) break\n\t\n\t if (a[i] === b[j]) {\n\t intersectSet.add(a[i])\n\t i++, j++\n\t continue\n\t }\n\t\n\t if (a[i] < b[j]) {\n\t i++\n\t continue\n\t }\n\t\n\t if (a[i] > b[j]) {\n\t j++\n\t continue\n\t }\n\t };\n\t\n\t return intersectSet\n\t}\n\t\n\t/**\n\t * Makes a copy of this set\n\t *\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.clone = function () {\n\t var clone = new lunr.SortedSet\n\t\n\t clone.elements = this.toArray()\n\t clone.length = clone.elements.length\n\t\n\t return clone\n\t}\n\t\n\t/**\n\t * Creates a new lunr.SortedSet that contains the elements in the union\n\t * of this set and the passed set.\n\t *\n\t * @param {lunr.SortedSet} otherSet The set to union with this set.\n\t * @returns {lunr.SortedSet}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.union = function (otherSet) {\n\t var longSet, shortSet, unionSet\n\t\n\t if (this.length >= otherSet.length) {\n\t longSet = this, shortSet = otherSet\n\t } else {\n\t longSet = otherSet, shortSet = this\n\t }\n\t\n\t unionSet = longSet.clone()\n\t\n\t for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n\t unionSet.add(shortSetElements[i])\n\t }\n\t\n\t return unionSet\n\t}\n\t\n\t/**\n\t * Returns a representation of the sorted set ready for serialisation.\n\t *\n\t * @returns {Array}\n\t * @memberOf SortedSet\n\t */\n\tlunr.SortedSet.prototype.toJSON = function () {\n\t return this.toArray()\n\t}\n\t/*!\n\t * lunr.Index\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Index is object that manages a search index. It contains the indexes\n\t * and stores all the tokens and document lookups. It also provides the main\n\t * user facing API for the library.\n\t *\n\t * @constructor\n\t */\n\tlunr.Index = function () {\n\t this._fields = []\n\t this._ref = 'id'\n\t this.pipeline = new lunr.Pipeline\n\t this.documentStore = new lunr.Store\n\t this.tokenStore = new lunr.TokenStore\n\t this.corpusTokens = new lunr.SortedSet\n\t this.eventEmitter = new lunr.EventEmitter\n\t this.tokenizerFn = lunr.tokenizer\n\t\n\t this._idfCache = {}\n\t\n\t this.on('add', 'remove', 'update', (function () {\n\t this._idfCache = {}\n\t }).bind(this))\n\t}\n\t\n\t/**\n\t * Bind a handler to events being emitted by the index.\n\t *\n\t * The handler can be bound to many events at the same time.\n\t *\n\t * @param {String} [eventName] The name(s) of events to bind the function to.\n\t * @param {Function} fn The serialised set to load.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.on = function () {\n\t var args = Array.prototype.slice.call(arguments)\n\t return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n\t}\n\t\n\t/**\n\t * Removes a handler from an event being emitted by the index.\n\t *\n\t * @param {String} eventName The name of events to remove the function from.\n\t * @param {Function} fn The serialised set to load.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.off = function (name, fn) {\n\t return this.eventEmitter.removeListener(name, fn)\n\t}\n\t\n\t/**\n\t * Loads a previously serialised index.\n\t *\n\t * Issues a warning if the index being imported was serialised\n\t * by a different version of lunr.\n\t *\n\t * @param {Object} serialisedData The serialised set to load.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.load = function (serialisedData) {\n\t if (serialisedData.version !== lunr.version) {\n\t lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n\t }\n\t\n\t var idx = new this\n\t\n\t idx._fields = serialisedData.fields\n\t idx._ref = serialisedData.ref\n\t\n\t idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n\t idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n\t idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n\t idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n\t idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\t\n\t return idx\n\t}\n\t\n\t/**\n\t * Adds a field to the list of fields that will be searchable within documents\n\t * in the index.\n\t *\n\t * An optional boost param can be passed to affect how much tokens in this field\n\t * rank in search results, by default the boost value is 1.\n\t *\n\t * Fields should be added before any documents are added to the index, fields\n\t * that are added after documents are added to the index will only apply to new\n\t * documents added to the index.\n\t *\n\t * @param {String} fieldName The name of the field within the document that\n\t * should be indexed\n\t * @param {Number} boost An optional boost that can be applied to terms in this\n\t * field.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.field = function (fieldName, opts) {\n\t var opts = opts || {},\n\t field = { name: fieldName, boost: opts.boost || 1 }\n\t\n\t this._fields.push(field)\n\t return this\n\t}\n\t\n\t/**\n\t * Sets the property used to uniquely identify documents added to the index,\n\t * by default this property is 'id'.\n\t *\n\t * This should only be changed before adding documents to the index, changing\n\t * the ref property without resetting the index can lead to unexpected results.\n\t *\n\t * The value of ref can be of any type but it _must_ be stably comparable and\n\t * orderable.\n\t *\n\t * @param {String} refName The property to use to uniquely identify the\n\t * documents in the index.\n\t * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.ref = function (refName) {\n\t this._ref = refName\n\t return this\n\t}\n\t\n\t/**\n\t * Sets the tokenizer used for this index.\n\t *\n\t * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n\t * should only be changed before adding documents to the index. Changing the tokenizer\n\t * without re-building the index can lead to unexpected results.\n\t *\n\t * @param {Function} fn The function to use as a tokenizer.\n\t * @returns {lunr.Index}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.tokenizer = function (fn) {\n\t var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\t\n\t if (!isRegistered) {\n\t lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n\t }\n\t\n\t this.tokenizerFn = fn\n\t return this\n\t}\n\t\n\t/**\n\t * Add a document to the index.\n\t *\n\t * This is the way new documents enter the index, this function will run the\n\t * fields from the document through the index's pipeline and then add it to\n\t * the index, it will then show up in search results.\n\t *\n\t * An 'add' event is emitted with the document that has been added and the index\n\t * the document has been added to. This event can be silenced by passing false\n\t * as the second argument to add.\n\t *\n\t * @param {Object} doc The document to add to the index.\n\t * @param {Boolean} emitEvent Whether or not to emit events, default true.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.add = function (doc, emitEvent) {\n\t var docTokens = {},\n\t allDocumentTokens = new lunr.SortedSet,\n\t docRef = doc[this._ref],\n\t emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t this._fields.forEach(function (field) {\n\t var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\t\n\t docTokens[field.name] = fieldTokens\n\t\n\t for (var i = 0; i < fieldTokens.length; i++) {\n\t var token = fieldTokens[i]\n\t allDocumentTokens.add(token)\n\t this.corpusTokens.add(token)\n\t }\n\t }, this)\n\t\n\t this.documentStore.set(docRef, allDocumentTokens)\n\t\n\t for (var i = 0; i < allDocumentTokens.length; i++) {\n\t var token = allDocumentTokens.elements[i]\n\t var tf = 0;\n\t\n\t for (var j = 0; j < this._fields.length; j++){\n\t var field = this._fields[j]\n\t var fieldTokens = docTokens[field.name]\n\t var fieldLength = fieldTokens.length\n\t\n\t if (!fieldLength) continue\n\t\n\t var tokenCount = 0\n\t for (var k = 0; k < fieldLength; k++){\n\t if (fieldTokens[k] === token){\n\t tokenCount++\n\t }\n\t }\n\t\n\t tf += (tokenCount / fieldLength * field.boost)\n\t }\n\t\n\t this.tokenStore.add(token, { ref: docRef, tf: tf })\n\t };\n\t\n\t if (emitEvent) this.eventEmitter.emit('add', doc, this)\n\t}\n\t\n\t/**\n\t * Removes a document from the index.\n\t *\n\t * To make sure documents no longer show up in search results they can be\n\t * removed from the index using this method.\n\t *\n\t * The document passed only needs to have the same ref property value as the\n\t * document that was added to the index, they could be completely different\n\t * objects.\n\t *\n\t * A 'remove' event is emitted with the document that has been removed and the index\n\t * the document has been removed from. This event can be silenced by passing false\n\t * as the second argument to remove.\n\t *\n\t * @param {Object} doc The document to remove from the index.\n\t * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.remove = function (doc, emitEvent) {\n\t var docRef = doc[this._ref],\n\t emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t if (!this.documentStore.has(docRef)) return\n\t\n\t var docTokens = this.documentStore.get(docRef)\n\t\n\t this.documentStore.remove(docRef)\n\t\n\t docTokens.forEach(function (token) {\n\t this.tokenStore.remove(token, docRef)\n\t }, this)\n\t\n\t if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n\t}\n\t\n\t/**\n\t * Updates a document in the index.\n\t *\n\t * When a document contained within the index gets updated, fields changed,\n\t * added or removed, to make sure it correctly matched against search queries,\n\t * it should be updated in the index.\n\t *\n\t * This method is just a wrapper around `remove` and `add`\n\t *\n\t * An 'update' event is emitted with the document that has been updated and the index.\n\t * This event can be silenced by passing false as the second argument to update. Only\n\t * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n\t * are silenced.\n\t *\n\t * @param {Object} doc The document to update in the index.\n\t * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n\t * @see Index.prototype.remove\n\t * @see Index.prototype.add\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.update = function (doc, emitEvent) {\n\t var emitEvent = emitEvent === undefined ? true : emitEvent\n\t\n\t this.remove(doc, false)\n\t this.add(doc, false)\n\t\n\t if (emitEvent) this.eventEmitter.emit('update', doc, this)\n\t}\n\t\n\t/**\n\t * Calculates the inverse document frequency for a token within the index.\n\t *\n\t * @param {String} token The token to calculate the idf of.\n\t * @see Index.prototype.idf\n\t * @private\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.idf = function (term) {\n\t var cacheKey = \"@\" + term\n\t if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\t\n\t var documentFrequency = this.tokenStore.count(term),\n\t idf = 1\n\t\n\t if (documentFrequency > 0) {\n\t idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n\t }\n\t\n\t return this._idfCache[cacheKey] = idf\n\t}\n\t\n\t/**\n\t * Searches the index using the passed query.\n\t *\n\t * Queries should be a string, multiple words are allowed and will lead to an\n\t * AND based query, e.g. `idx.search('foo bar')` will run a search for\n\t * documents containing both 'foo' and 'bar'.\n\t *\n\t * All query tokens are passed through the same pipeline that document tokens\n\t * are passed through, so any language processing involved will be run on every\n\t * query term.\n\t *\n\t * Each query term is expanded, so that the term 'he' might be expanded to\n\t * 'hello' and 'help' if those terms were already included in the index.\n\t *\n\t * Matching documents are returned as an array of objects, each object contains\n\t * the matching document ref, as set for this index, and the similarity score\n\t * for this document against the query.\n\t *\n\t * @param {String} query The query to search the index with.\n\t * @returns {Object}\n\t * @see Index.prototype.idf\n\t * @see Index.prototype.documentVector\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.search = function (query) {\n\t var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n\t queryVector = new lunr.Vector,\n\t documentSets = [],\n\t fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\t\n\t var hasSomeToken = queryTokens.some(function (token) {\n\t return this.tokenStore.has(token)\n\t }, this)\n\t\n\t if (!hasSomeToken) return []\n\t\n\t queryTokens\n\t .forEach(function (token, i, tokens) {\n\t var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n\t self = this\n\t\n\t var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n\t var pos = self.corpusTokens.indexOf(key),\n\t idf = self.idf(key),\n\t similarityBoost = 1,\n\t set = new lunr.SortedSet\n\t\n\t // if the expanded key is not an exact match to the token then\n\t // penalise the score for this key by how different the key is\n\t // to the token.\n\t if (key !== token) {\n\t var diff = Math.max(3, key.length - token.length)\n\t similarityBoost = 1 / Math.log(diff)\n\t }\n\t\n\t // calculate the query tf-idf score for this token\n\t // applying an similarityBoost to ensure exact matches\n\t // these rank higher than expanded terms\n\t if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\t\n\t // add all the documents that have this key into a set\n\t // ensuring that the type of key is preserved\n\t var matchingDocuments = self.tokenStore.get(key),\n\t refs = Object.keys(matchingDocuments),\n\t refsLen = refs.length\n\t\n\t for (var i = 0; i < refsLen; i++) {\n\t set.add(matchingDocuments[refs[i]].ref)\n\t }\n\t\n\t return memo.union(set)\n\t }, new lunr.SortedSet)\n\t\n\t documentSets.push(set)\n\t }, this)\n\t\n\t var documentSet = documentSets.reduce(function (memo, set) {\n\t return memo.intersect(set)\n\t })\n\t\n\t return documentSet\n\t .map(function (ref) {\n\t return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n\t }, this)\n\t .sort(function (a, b) {\n\t return b.score - a.score\n\t })\n\t}\n\t\n\t/**\n\t * Generates a vector containing all the tokens in the document matching the\n\t * passed documentRef.\n\t *\n\t * The vector contains the tf-idf score for each token contained in the\n\t * document with the passed documentRef. The vector will contain an element\n\t * for every token in the indexes corpus, if the document does not contain that\n\t * token the element will be 0.\n\t *\n\t * @param {Object} documentRef The ref to find the document with.\n\t * @returns {lunr.Vector}\n\t * @private\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.documentVector = function (documentRef) {\n\t var documentTokens = this.documentStore.get(documentRef),\n\t documentTokensLength = documentTokens.length,\n\t documentVector = new lunr.Vector\n\t\n\t for (var i = 0; i < documentTokensLength; i++) {\n\t var token = documentTokens.elements[i],\n\t tf = this.tokenStore.get(token)[documentRef].tf,\n\t idf = this.idf(token)\n\t\n\t documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n\t };\n\t\n\t return documentVector\n\t}\n\t\n\t/**\n\t * Returns a representation of the index ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.toJSON = function () {\n\t return {\n\t version: lunr.version,\n\t fields: this._fields,\n\t ref: this._ref,\n\t tokenizer: this.tokenizerFn.label,\n\t documentStore: this.documentStore.toJSON(),\n\t tokenStore: this.tokenStore.toJSON(),\n\t corpusTokens: this.corpusTokens.toJSON(),\n\t pipeline: this.pipeline.toJSON()\n\t }\n\t}\n\t\n\t/**\n\t * Applies a plugin to the current index.\n\t *\n\t * A plugin is a function that is called with the index as its context.\n\t * Plugins can be used to customise or extend the behaviour the index\n\t * in some way. A plugin is just a function, that encapsulated the custom\n\t * behaviour that should be applied to the index.\n\t *\n\t * The plugin function will be called with the index as its argument, additional\n\t * arguments can also be passed when calling use. The function will be called\n\t * with the index as its context.\n\t *\n\t * Example:\n\t *\n\t * var myPlugin = function (idx, arg1, arg2) {\n\t * // `this` is the index to be extended\n\t * // apply any extensions etc here.\n\t * }\n\t *\n\t * var idx = lunr(function () {\n\t * this.use(myPlugin, 'arg1', 'arg2')\n\t * })\n\t *\n\t * @param {Function} plugin The plugin to apply.\n\t * @memberOf Index\n\t */\n\tlunr.Index.prototype.use = function (plugin) {\n\t var args = Array.prototype.slice.call(arguments, 1)\n\t args.unshift(this)\n\t plugin.apply(this, args)\n\t}\n\t/*!\n\t * lunr.Store\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.Store is a simple key-value store used for storing sets of tokens for\n\t * documents stored in index.\n\t *\n\t * @constructor\n\t * @module\n\t */\n\tlunr.Store = function () {\n\t this.store = {}\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * Loads a previously serialised store\n\t *\n\t * @param {Object} serialisedData The serialised store to load.\n\t * @returns {lunr.Store}\n\t * @memberOf Store\n\t */\n\tlunr.Store.load = function (serialisedData) {\n\t var store = new this\n\t\n\t store.length = serialisedData.length\n\t store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n\t memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n\t return memo\n\t }, {})\n\t\n\t return store\n\t}\n\t\n\t/**\n\t * Stores the given tokens in the store against the given id.\n\t *\n\t * @param {Object} id The key used to store the tokens against.\n\t * @param {Object} tokens The tokens to store against the key.\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.set = function (id, tokens) {\n\t if (!this.has(id)) this.length++\n\t this.store[id] = tokens\n\t}\n\t\n\t/**\n\t * Retrieves the tokens from the store for a given key.\n\t *\n\t * @param {Object} id The key to lookup and retrieve from the store.\n\t * @returns {Object}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.get = function (id) {\n\t return this.store[id]\n\t}\n\t\n\t/**\n\t * Checks whether the store contains a key.\n\t *\n\t * @param {Object} id The id to look up in the store.\n\t * @returns {Boolean}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.has = function (id) {\n\t return id in this.store\n\t}\n\t\n\t/**\n\t * Removes the value for a key in the store.\n\t *\n\t * @param {Object} id The id to remove from the store.\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.remove = function (id) {\n\t if (!this.has(id)) return\n\t\n\t delete this.store[id]\n\t this.length--\n\t}\n\t\n\t/**\n\t * Returns a representation of the store ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf Store\n\t */\n\tlunr.Store.prototype.toJSON = function () {\n\t return {\n\t store: this.store,\n\t length: this.length\n\t }\n\t}\n\t\n\t/*!\n\t * lunr.stemmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n\t */\n\t\n\t/**\n\t * lunr.stemmer is an english language stemmer, this is a JavaScript\n\t * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n\t *\n\t * @module\n\t * @param {String} str The string to stem\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.stemmer = (function(){\n\t var step2list = {\n\t \"ational\" : \"ate\",\n\t \"tional\" : \"tion\",\n\t \"enci\" : \"ence\",\n\t \"anci\" : \"ance\",\n\t \"izer\" : \"ize\",\n\t \"bli\" : \"ble\",\n\t \"alli\" : \"al\",\n\t \"entli\" : \"ent\",\n\t \"eli\" : \"e\",\n\t \"ousli\" : \"ous\",\n\t \"ization\" : \"ize\",\n\t \"ation\" : \"ate\",\n\t \"ator\" : \"ate\",\n\t \"alism\" : \"al\",\n\t \"iveness\" : \"ive\",\n\t \"fulness\" : \"ful\",\n\t \"ousness\" : \"ous\",\n\t \"aliti\" : \"al\",\n\t \"iviti\" : \"ive\",\n\t \"biliti\" : \"ble\",\n\t \"logi\" : \"log\"\n\t },\n\t\n\t step3list = {\n\t \"icate\" : \"ic\",\n\t \"ative\" : \"\",\n\t \"alize\" : \"al\",\n\t \"iciti\" : \"ic\",\n\t \"ical\" : \"ic\",\n\t \"ful\" : \"\",\n\t \"ness\" : \"\"\n\t },\n\t\n\t c = \"[^aeiou]\", // consonant\n\t v = \"[aeiouy]\", // vowel\n\t C = c + \"[^aeiouy]*\", // consonant sequence\n\t V = v + \"[aeiou]*\", // vowel sequence\n\t\n\t mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n\t meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n\t mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n\t s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\t\n\t var re_mgr0 = new RegExp(mgr0);\n\t var re_mgr1 = new RegExp(mgr1);\n\t var re_meq1 = new RegExp(meq1);\n\t var re_s_v = new RegExp(s_v);\n\t\n\t var re_1a = /^(.+?)(ss|i)es$/;\n\t var re2_1a = /^(.+?)([^s])s$/;\n\t var re_1b = /^(.+?)eed$/;\n\t var re2_1b = /^(.+?)(ed|ing)$/;\n\t var re_1b_2 = /.$/;\n\t var re2_1b_2 = /(at|bl|iz)$/;\n\t var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n\t var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\t\n\t var re_1c = /^(.+?[^aeiou])y$/;\n\t var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\t\n\t var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\t\n\t var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n\t var re2_4 = /^(.+?)(s|t)(ion)$/;\n\t\n\t var re_5 = /^(.+?)e$/;\n\t var re_5_1 = /ll$/;\n\t var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\t\n\t var porterStemmer = function porterStemmer(w) {\n\t var stem,\n\t suffix,\n\t firstch,\n\t re,\n\t re2,\n\t re3,\n\t re4;\n\t\n\t if (w.length < 3) { return w; }\n\t\n\t firstch = w.substr(0,1);\n\t if (firstch == \"y\") {\n\t w = firstch.toUpperCase() + w.substr(1);\n\t }\n\t\n\t // Step 1a\n\t re = re_1a\n\t re2 = re2_1a;\n\t\n\t if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n\t else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\t\n\t // Step 1b\n\t re = re_1b;\n\t re2 = re2_1b;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t re = re_mgr0;\n\t if (re.test(fp[1])) {\n\t re = re_1b_2;\n\t w = w.replace(re,\"\");\n\t }\n\t } else if (re2.test(w)) {\n\t var fp = re2.exec(w);\n\t stem = fp[1];\n\t re2 = re_s_v;\n\t if (re2.test(stem)) {\n\t w = stem;\n\t re2 = re2_1b_2;\n\t re3 = re3_1b_2;\n\t re4 = re4_1b_2;\n\t if (re2.test(w)) { w = w + \"e\"; }\n\t else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n\t else if (re4.test(w)) { w = w + \"e\"; }\n\t }\n\t }\n\t\n\t // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n\t re = re_1c;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t w = stem + \"i\";\n\t }\n\t\n\t // Step 2\n\t re = re_2;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t suffix = fp[2];\n\t re = re_mgr0;\n\t if (re.test(stem)) {\n\t w = stem + step2list[suffix];\n\t }\n\t }\n\t\n\t // Step 3\n\t re = re_3;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t suffix = fp[2];\n\t re = re_mgr0;\n\t if (re.test(stem)) {\n\t w = stem + step3list[suffix];\n\t }\n\t }\n\t\n\t // Step 4\n\t re = re_4;\n\t re2 = re2_4;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t re = re_mgr1;\n\t if (re.test(stem)) {\n\t w = stem;\n\t }\n\t } else if (re2.test(w)) {\n\t var fp = re2.exec(w);\n\t stem = fp[1] + fp[2];\n\t re2 = re_mgr1;\n\t if (re2.test(stem)) {\n\t w = stem;\n\t }\n\t }\n\t\n\t // Step 5\n\t re = re_5;\n\t if (re.test(w)) {\n\t var fp = re.exec(w);\n\t stem = fp[1];\n\t re = re_mgr1;\n\t re2 = re_meq1;\n\t re3 = re3_5;\n\t if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n\t w = stem;\n\t }\n\t }\n\t\n\t re = re_5_1;\n\t re2 = re_mgr1;\n\t if (re.test(w) && re2.test(w)) {\n\t re = re_1b_2;\n\t w = w.replace(re,\"\");\n\t }\n\t\n\t // and turn initial Y back to y\n\t\n\t if (firstch == \"y\") {\n\t w = firstch.toLowerCase() + w.substr(1);\n\t }\n\t\n\t return w;\n\t };\n\t\n\t return porterStemmer;\n\t})();\n\t\n\tlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n\t/*!\n\t * lunr.stopWordFilter\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n\t * list of stop words.\n\t *\n\t * The built in lunr.stopWordFilter is built using this generator and can be used\n\t * to generate custom stopWordFilters for applications or non English languages.\n\t *\n\t * @module\n\t * @param {Array} token The token to pass through the filter\n\t * @returns {Function}\n\t * @see lunr.Pipeline\n\t * @see lunr.stopWordFilter\n\t */\n\tlunr.generateStopWordFilter = function (stopWords) {\n\t var words = stopWords.reduce(function (memo, stopWord) {\n\t memo[stopWord] = stopWord\n\t return memo\n\t }, {})\n\t\n\t return function (token) {\n\t if (token && words[token] !== token) return token\n\t }\n\t}\n\t\n\t/**\n\t * lunr.stopWordFilter is an English language stop word list filter, any words\n\t * contained in the list will not be passed through the filter.\n\t *\n\t * This is intended to be used in the Pipeline. If the token does not pass the\n\t * filter then undefined will be returned.\n\t *\n\t * @module\n\t * @param {String} token The token to pass through the filter\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.stopWordFilter = lunr.generateStopWordFilter([\n\t 'a',\n\t 'able',\n\t 'about',\n\t 'across',\n\t 'after',\n\t 'all',\n\t 'almost',\n\t 'also',\n\t 'am',\n\t 'among',\n\t 'an',\n\t 'and',\n\t 'any',\n\t 'are',\n\t 'as',\n\t 'at',\n\t 'be',\n\t 'because',\n\t 'been',\n\t 'but',\n\t 'by',\n\t 'can',\n\t 'cannot',\n\t 'could',\n\t 'dear',\n\t 'did',\n\t 'do',\n\t 'does',\n\t 'either',\n\t 'else',\n\t 'ever',\n\t 'every',\n\t 'for',\n\t 'from',\n\t 'get',\n\t 'got',\n\t 'had',\n\t 'has',\n\t 'have',\n\t 'he',\n\t 'her',\n\t 'hers',\n\t 'him',\n\t 'his',\n\t 'how',\n\t 'however',\n\t 'i',\n\t 'if',\n\t 'in',\n\t 'into',\n\t 'is',\n\t 'it',\n\t 'its',\n\t 'just',\n\t 'least',\n\t 'let',\n\t 'like',\n\t 'likely',\n\t 'may',\n\t 'me',\n\t 'might',\n\t 'most',\n\t 'must',\n\t 'my',\n\t 'neither',\n\t 'no',\n\t 'nor',\n\t 'not',\n\t 'of',\n\t 'off',\n\t 'often',\n\t 'on',\n\t 'only',\n\t 'or',\n\t 'other',\n\t 'our',\n\t 'own',\n\t 'rather',\n\t 'said',\n\t 'say',\n\t 'says',\n\t 'she',\n\t 'should',\n\t 'since',\n\t 'so',\n\t 'some',\n\t 'than',\n\t 'that',\n\t 'the',\n\t 'their',\n\t 'them',\n\t 'then',\n\t 'there',\n\t 'these',\n\t 'they',\n\t 'this',\n\t 'tis',\n\t 'to',\n\t 'too',\n\t 'twas',\n\t 'us',\n\t 'wants',\n\t 'was',\n\t 'we',\n\t 'were',\n\t 'what',\n\t 'when',\n\t 'where',\n\t 'which',\n\t 'while',\n\t 'who',\n\t 'whom',\n\t 'why',\n\t 'will',\n\t 'with',\n\t 'would',\n\t 'yet',\n\t 'you',\n\t 'your'\n\t])\n\t\n\tlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n\t/*!\n\t * lunr.trimmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t */\n\t\n\t/**\n\t * lunr.trimmer is a pipeline function for trimming non word\n\t * characters from the begining and end of tokens before they\n\t * enter the index.\n\t *\n\t * This implementation may not work correctly for non latin\n\t * characters and should either be removed or adapted for use\n\t * with languages with non-latin characters.\n\t *\n\t * @module\n\t * @param {String} token The token to pass through the filter\n\t * @returns {String}\n\t * @see lunr.Pipeline\n\t */\n\tlunr.trimmer = function (token) {\n\t return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n\t}\n\t\n\tlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n\t/*!\n\t * lunr.stemmer\n\t * Copyright (C) 2016 Oliver Nightingale\n\t * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n\t */\n\t\n\t/**\n\t * lunr.TokenStore is used for efficient storing and lookup of the reverse\n\t * index of token to document ref.\n\t *\n\t * @constructor\n\t */\n\tlunr.TokenStore = function () {\n\t this.root = { docs: {} }\n\t this.length = 0\n\t}\n\t\n\t/**\n\t * Loads a previously serialised token store\n\t *\n\t * @param {Object} serialisedData The serialised token store to load.\n\t * @returns {lunr.TokenStore}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.load = function (serialisedData) {\n\t var store = new this\n\t\n\t store.root = serialisedData.root\n\t store.length = serialisedData.length\n\t\n\t return store\n\t}\n\t\n\t/**\n\t * Adds a new token doc pair to the store.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to store the doc under\n\t * @param {Object} doc The doc to store against the token\n\t * @param {Object} root An optional node at which to start looking for the\n\t * correct place to enter the doc, by default the root of this lunr.TokenStore\n\t * is used.\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.add = function (token, doc, root) {\n\t var root = root || this.root,\n\t key = token.charAt(0),\n\t rest = token.slice(1)\n\t\n\t if (!(key in root)) root[key] = {docs: {}}\n\t\n\t if (rest.length === 0) {\n\t root[key].docs[doc.ref] = doc\n\t this.length += 1\n\t return\n\t } else {\n\t return this.add(rest, doc, root[key])\n\t }\n\t}\n\t\n\t/**\n\t * Checks whether this key is contained within this lunr.TokenStore.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to check for\n\t * @param {Object} root An optional node at which to start\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.has = function (token) {\n\t if (!token) return false\n\t\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!node[token.charAt(i)]) return false\n\t\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t return true\n\t}\n\t\n\t/**\n\t * Retrieve a node from the token store for a given token.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the node for.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @see TokenStore.prototype.get\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.getNode = function (token) {\n\t if (!token) return {}\n\t\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!node[token.charAt(i)]) return {}\n\t\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t return node\n\t}\n\t\n\t/**\n\t * Retrieve the documents for a node for the given token.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the documents for.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.get = function (token, root) {\n\t return this.getNode(token, root).docs || {}\n\t}\n\t\n\tlunr.TokenStore.prototype.count = function (token, root) {\n\t return Object.keys(this.get(token, root)).length\n\t}\n\t\n\t/**\n\t * Remove the document identified by ref from the token in the store.\n\t *\n\t * By default this function starts at the root of the current store, however\n\t * it can start at any node of any token store if required.\n\t *\n\t * @param {String} token The token to get the documents for.\n\t * @param {String} ref The ref of the document to remove from this token.\n\t * @param {Object} root An optional node at which to start.\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.remove = function (token, ref) {\n\t if (!token) return\n\t var node = this.root\n\t\n\t for (var i = 0; i < token.length; i++) {\n\t if (!(token.charAt(i) in node)) return\n\t node = node[token.charAt(i)]\n\t }\n\t\n\t delete node.docs[ref]\n\t}\n\t\n\t/**\n\t * Find all the possible suffixes of the passed token using tokens\n\t * currently in the store.\n\t *\n\t * @param {String} token The token to expand.\n\t * @returns {Array}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.expand = function (token, memo) {\n\t var root = this.getNode(token),\n\t docs = root.docs || {},\n\t memo = memo || []\n\t\n\t if (Object.keys(docs).length) memo.push(token)\n\t\n\t Object.keys(root)\n\t .forEach(function (key) {\n\t if (key === 'docs') return\n\t\n\t memo.concat(this.expand(token + key, memo))\n\t }, this)\n\t\n\t return memo\n\t}\n\t\n\t/**\n\t * Returns a representation of the token store ready for serialisation.\n\t *\n\t * @returns {Object}\n\t * @memberOf TokenStore\n\t */\n\tlunr.TokenStore.prototype.toJSON = function () {\n\t return {\n\t root: this.root,\n\t length: this.length\n\t }\n\t}\n\t\n\t /**\n\t * export the module via AMD, CommonJS or as a browser global\n\t * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n\t */\n\t ;(function (root, factory) {\n\t if (true) {\n\t // AMD. Register as an anonymous module.\n\t !(__WEBPACK_AMD_DEFINE_FACTORY__ = (factory), __WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ? (__WEBPACK_AMD_DEFINE_FACTORY__.call(exports, __webpack_require__, exports, module)) : __WEBPACK_AMD_DEFINE_FACTORY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__))\n\t } else if (typeof exports === 'object') {\n\t /**\n\t * Node. Does not work with strict CommonJS, but\n\t * only CommonJS-like enviroments that support module.exports,\n\t * like Node.\n\t */\n\t module.exports = factory()\n\t } else {\n\t // Browser globals (root is window)\n\t root.lunr = factory()\n\t }\n\t }(this, function () {\n\t /**\n\t * Just return a value to define the module export.\n\t * This example returns an object, but the module\n\t * can return a function as the exported value.\n\t */\n\t return lunr\n\t }))\n\t})();\n\n\n/***/ },\n/* 20 */\n/***/ function(module, exports) {\n\n\t\"use strict\";Object.defineProperty(exports,\"__esModule\",{value:true});exports.default={\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-ac\",\"flag-ad\",\"flag-ae\",\"flag-af\",\"flag-ag\",\"flag-ai\",\"flag-al\",\"flag-am\",\"flag-ao\",\"flag-aq\",\"flag-ar\",\"flag-as\",\"flag-at\",\"flag-au\",\"flag-aw\",\"flag-ax\",\"flag-az\",\"flag-ba\",\"flag-bb\",\"flag-bd\",\"flag-be\",\"flag-bf\",\"flag-bg\",\"flag-bh\",\"flag-bi\",\"flag-bj\",\"flag-bl\",\"flag-bm\",\"flag-bn\",\"flag-bo\",\"flag-bq\",\"flag-br\",\"flag-bs\",\"flag-bt\",\"flag-bv\",\"flag-bw\",\"flag-by\",\"flag-bz\",\"flag-ca\",\"flag-cc\",\"flag-cd\",\"flag-cf\",\"flag-cg\",\"flag-ch\",\"flag-ci\",\"flag-ck\",\"flag-cl\",\"flag-cm\",\"flag-cn\",\"flag-co\",\"flag-cp\",\"flag-cr\",\"flag-cu\",\"flag-cv\",\"flag-cw\",\"flag-cx\",\"flag-cy\",\"flag-cz\",\"flag-de\",\"flag-dg\",\"flag-dj\",\"flag-dk\",\"flag-dm\",\"flag-do\",\"flag-dz\",\"flag-ea\",\"flag-ec\",\"flag-ee\",\"flag-eg\",\"flag-eh\",\"flag-er\",\"flag-es\",\"flag-et\",\"flag-eu\",\"flag-fi\",\"flag-fj\",\"flag-fk\",\"flag-fm\",\"flag-fo\",\"flag-fr\",\"flag-ga\",\"flag-gb\",\"flag-gd\",\"flag-ge\",\"flag-gf\",\"flag-gg\",\"flag-gh\",\"flag-gi\",\"flag-gl\",\"flag-gm\",\"flag-gn\",\"flag-gp\",\"flag-gq\",\"flag-gr\",\"flag-gs\",\"flag-gt\",\"flag-gu\",\"flag-gw\",\"flag-gy\",\"flag-hk\",\"flag-hm\",\"flag-hn\",\"flag-hr\",\"flag-ht\",\"flag-hu\",\"flag-ic\",\"flag-id\",\"flag-ie\",\"flag-il\",\"flag-im\",\"flag-in\",\"flag-io\",\"flag-iq\",\"flag-ir\",\"flag-is\",\"flag-it\",\"flag-je\",\"flag-jm\",\"flag-jo\",\"flag-jp\",\"flag-ke\",\"flag-kg\",\"flag-kh\",\"flag-ki\",\"flag-km\",\"flag-kn\",\"flag-kp\",\"flag-kr\",\"flag-kw\",\"flag-ky\",\"flag-kz\",\"flag-la\",\"flag-lb\",\"flag-lc\",\"flag-li\",\"flag-lk\",\"flag-lr\",\"flag-ls\",\"flag-lt\",\"flag-lu\",\"flag-lv\",\"flag-ly\",\"flag-ma\",\"flag-mc\",\"flag-md\",\"flag-me\",\"flag-mf\",\"flag-mg\",\"flag-mh\",\"flag-mk\",\"flag-ml\",\"flag-mm\",\"flag-mn\",\"flag-mo\",\"flag-mp\",\"flag-mq\",\"flag-mr\",\"flag-ms\",\"flag-mt\",\"flag-mu\",\"flag-mv\",\"flag-mw\",\"flag-mx\",\"flag-my\",\"flag-mz\",\"flag-na\",\"flag-nc\",\"flag-ne\",\"flag-nf\",\"flag-ng\",\"flag-ni\",\"flag-nl\",\"flag-no\",\"flag-np\",\"flag-nr\",\"flag-nu\",\"flag-nz\",\"flag-om\",\"flag-pa\",\"flag-pe\",\"flag-pf\",\"flag-pg\",\"flag-ph\",\"flag-pk\",\"flag-pl\",\"flag-pm\",\"flag-pn\",\"flag-pr\",\"flag-ps\",\"flag-pt\",\"flag-pw\",\"flag-py\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-rs\",\"flag-ru\",\"flag-rw\",\"flag-sa\",\"flag-sb\",\"flag-sc\",\"flag-sd\",\"flag-se\",\"flag-sg\",\"flag-sh\",\"flag-si\",\"flag-sj\",\"flag-sk\",\"flag-sl\",\"flag-sm\",\"flag-sn\",\"flag-so\",\"flag-sr\",\"flag-ss\",\"flag-st\",\"flag-sv\",\"flag-sx\",\"flag-sy\",\"flag-sz\",\"flag-ta\",\"flag-tc\",\"flag-td\",\"flag-tf\",\"flag-tg\",\"flag-th\",\"flag-tj\",\"flag-tk\",\"flag-tl\",\"flag-tm\",\"flag-tn\",\"flag-to\",\"flag-tr\",\"flag-tt\",\"flag-tv\",\"flag-tw\",\"flag-tz\",\"flag-ua\",\"flag-ug\",\"flag-um\",\"flag-us\",\"flag-uy\",\"flag-uz\",\"flag-va\",\"flag-vc\",\"flag-ve\",\"flag-vg\",\"flag-vi\",\"flag-vn\",\"flag-vu\",\"flag-wf\",\"flag-ws\",\"flag-xk\",\"flag-ye\",\"flag-yt\",\"flag-za\",\"flag-zm\",\"flag-zw\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":D\"]},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters AF\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters AX\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters AL\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters DZ\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters AS\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"=)\",\"=-)\"]},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"C:\",\"c:\",\":D\",\":-D\"]},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters AD\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"category\":\"Symbols\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"\",\":->\"]},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters AQ\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters AG\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";)\",\";-)\"]},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters AR\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\"]},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\",\"(:\",\":-)\"]},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters AM\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters AW\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters AU\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters AT\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o)\"]},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters AZ\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters BS\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters BH\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters BD\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters BB\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters BY\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"]},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters BE\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters BZ\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters BJ\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"]},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters BM\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters BT\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"8)\"]},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters BO\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters BQ\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters BA\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters BW\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters BR\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":|\",\":-|\"]},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters IO\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters VG\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":(\"]},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters BN\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters BG\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters BF\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters BI\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"):\",\":(\",\":-(\"]},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters CV\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters KH\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\">:(\",\">:-(\"]},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters CM\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters CA\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"]},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters IC\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters KY\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters CF\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters TD\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters CL\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters CN\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters CX\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters CC\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters CO\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o\",\":-o\",\":O\",\":-O\"]},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters KM\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters CG\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters CD\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters CK\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters CR\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters HR\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"D:\"]},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters CU\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters CW\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters CY\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters CZ\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters DK\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters DJ\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters DM\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters DO\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters EC\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters EG\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters SV\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters GQ\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters ER\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters EE\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters ET\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters EU\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters FK\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters FO\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters FJ\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters FI\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters FR\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters GF\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters PF\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters TF\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters GA\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters GM\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters GE\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters DE\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters GH\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters GI\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters GR\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters GL\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters GD\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters GP\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters GU\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters GT\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters GG\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters GN\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters GW\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters GY\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters HT\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters HN\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters HK\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters HU\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters IS\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters IN\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters ID\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters IR\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters IQ\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters IE\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters IM\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters IL\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters IT\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters CI\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters JM\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters JP\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters JE\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters JO\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters KZ\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters KE\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters KI\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters XK\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters KW\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters KG\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters LA\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters LV\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters LB\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters LS\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters LR\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters LY\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters LI\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters LT\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters LU\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters MO\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters MK\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters MG\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters MW\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters MY\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}},\"emoticons\":[]},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters MV\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters ML\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters MT\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters MH\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters MQ\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters MR\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters MU\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters YT\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters MX\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters FM\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters MD\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters MC\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters MN\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters ME\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters MS\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters MA\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters MZ\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false,\"emoticons\":[]},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters MM\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters NA\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters NR\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters NP\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters NL\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters NC\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters NZ\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters NI\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters NE\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters NG\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters NU\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters NF\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters MP\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters KP\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters NO\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters OM\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters PK\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters PW\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters PS\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters PA\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters PG\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters PY\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters PE\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters PH\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters PN\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters PL\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters PT\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters PR\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters QA\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters RE\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters RO\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters RU\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":*\",\":-*\"]},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters RW\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters BL\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters SH\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters KN\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters LC\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters PM\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters VC\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters WS\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters SM\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters ST\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters SA\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters SN\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters RS\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters SC\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters SL\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters SG\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters SX\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters SK\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters SI\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters SB\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters SO\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters ZA\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters GS\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters KR\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters SS\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters ES\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters LK\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters SD\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters SR\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters SZ\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters SE\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters CH\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters SY\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters TW\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters TJ\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters TZ\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters TH\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters TL\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters TG\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters TK\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters TO\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters TT\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters TN\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters TR\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters TM\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters TC\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters TV\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters UG\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters UA\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters AE\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters GB\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters US\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters VI\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters UY\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters UZ\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters VU\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters VA\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters VE\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters VN\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters WF\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters EH\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters YE\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters ZM\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters ZW\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters AC\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters BV\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters CP\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters DG\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters EA\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters HM\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters MF\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters SJ\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters TA\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters UM\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}}};\n\n/***/ },\n/* 21 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _ = __webpack_require__(16);\n\t\n\tvar frequently = _.store.get('frequently') || {};\n\t\n\tfunction add(emoji) {\n\t var id = emoji.id;\n\t\n\t\n\t frequently[id] || (frequently[id] = 0);\n\t frequently[id] += 1;\n\t\n\t _.store.set('last', id);\n\t _.store.set('frequently', frequently);\n\t}\n\t\n\tfunction get(quantity) {\n\t var sorted = Object.keys(frequently).sort(function (a, b) {\n\t return frequently[a] - frequently[b];\n\t }).reverse(),\n\t sliced = sorted.slice(0, quantity),\n\t last = _.store.get('last');\n\t\n\t if (last && sliced.indexOf(last) == -1) {\n\t sliced.pop();\n\t sliced.push(last);\n\t }\n\t\n\t return sliced;\n\t}\n\t\n\texports.default = { add: add, get: get };\n\n/***/ },\n/* 22 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _data = __webpack_require__(20);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar SHEET_COLUMNS = 41;\n\tvar SKINS = ['1F3FA', '1F3FB', '1F3FC', '1F3FD', '1F3FE', '1F3FF'];\n\t\n\tvar Emoji = function (_React$Component) {\n\t _inherits(Emoji, _React$Component);\n\t\n\t function Emoji(props) {\n\t _classCallCheck(this, Emoji);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Emoji).call(this, props));\n\t\n\t var emojiData = _this.getEmojiData();\n\t _this.hasSkinVariations = !!emojiData.skin_variations;\n\t return _this;\n\t }\n\t\n\t _createClass(Emoji, [{\n\t key: 'shouldComponentUpdate',\n\t value: function shouldComponentUpdate(nextProps) {\n\t return this.hasSkinVariations && nextProps.skin != this.props.skin || nextProps.size != this.props.size || nextProps.sheetURL != this.props.sheetURL;\n\t }\n\t }, {\n\t key: 'getEmojiData',\n\t value: function getEmojiData() {\n\t var _props = this.props;\n\t var emoji = _props.emoji;\n\t var skin = _props.skin;\n\t var sheetURL = _props.sheetURL;\n\t var emojiData = emoji;\n\t\n\t if (typeof emoji == 'string') {\n\t emojiData = _data2.default.emojis[emoji];\n\t }\n\t\n\t if (this.hasSkinVariations && skin > 1) {\n\t emojiData = JSON.parse(JSON.stringify(_data2.default.emojis[emoji]));\n\t\n\t var skinKey = SKINS[skin - 1],\n\t variationKey = emojiData.unified + '-' + skinKey,\n\t variationData = emojiData.skin_variations[variationKey],\n\t kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n\t kit = kitMatches[0];\n\t\n\t if (variationData['has_img_' + kit]) {\n\t emojiData.skin_tone = skin;\n\t\n\t for (var k in variationData) {\n\t var v = variationData[k];\n\t emojiData[k] = v;\n\t }\n\t }\n\t }\n\t\n\t return emojiData;\n\t }\n\t }, {\n\t key: 'getPosition',\n\t value: function getPosition(emojiData) {\n\t var sheet_x = emojiData.sheet_x;\n\t var sheet_y = emojiData.sheet_y;\n\t var multiply = 100 / (SHEET_COLUMNS - 1);\n\t\n\t return multiply * sheet_x + '% ' + multiply * sheet_y + '%';\n\t }\n\t }, {\n\t key: 'getNative',\n\t value: function getNative(emojiData) {\n\t var unified = emojiData.unified;\n\t var unicodes = unified.split('-');\n\t var codePoints = unicodes.map(function (u) {\n\t return '0x' + u;\n\t });\n\t\n\t return String.fromCodePoint.apply(String, _toConsumableArray(codePoints));\n\t }\n\t }, {\n\t key: 'handleClick',\n\t value: function handleClick(emojiData) {\n\t var onClick = this.props.onClick;\n\t var name = emojiData.name;\n\t var short_names = emojiData.short_names;\n\t var skin_tone = emojiData.skin_tone;\n\t var emoticons = emojiData.emoticons;\n\t var unified = emojiData.unified;\n\t var id = short_names[0];\n\t var colons = ':' + id + ':';\n\t\n\t if (skin_tone) {\n\t colons += ':skin-tone-' + skin_tone + ':';\n\t }\n\t\n\t onClick({\n\t id: id,\n\t name: name,\n\t colons: colons,\n\t emoticons: emoticons,\n\t skin: skin_tone || 1,\n\t native: this.getNative(emojiData)\n\t });\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var _props2 = this.props;\n\t var sheetURL = _props2.sheetURL;\n\t var size = _props2.size;\n\t var onOver = _props2.onOver;\n\t var onLeave = _props2.onLeave;\n\t var emojiData = this.getEmojiData();\n\t\n\t return _react2.default.createElement(\n\t 'span',\n\t {\n\t onClick: function onClick() {\n\t return _this2.handleClick(emojiData);\n\t },\n\t onMouseEnter: function onMouseEnter() {\n\t return onOver(emojiData);\n\t },\n\t onMouseLeave: function onMouseLeave() {\n\t return onLeave(emojiData);\n\t },\n\t className: 'emoji-picker-emoji' },\n\t _react2.default.createElement('span', { style: {\n\t width: size,\n\t height: size,\n\t display: 'inline-block',\n\t backgroundImage: 'url(' + sheetURL + ')',\n\t backgroundSize: 100 * SHEET_COLUMNS + '%',\n\t backgroundPosition: this.getPosition(emojiData)\n\t } })\n\t );\n\t }\n\t }]);\n\t\n\t return Emoji;\n\t}(_react2.default.Component);\n\t\n\texports.default = Emoji;\n\t\n\t\n\tEmoji.propTypes = {\n\t skin: _react2.default.PropTypes.number,\n\t onOver: _react2.default.PropTypes.func,\n\t onLeave: _react2.default.PropTypes.func,\n\t onClick: _react2.default.PropTypes.func,\n\t size: _react2.default.PropTypes.number.isRequired,\n\t sheetURL: _react2.default.PropTypes.string.isRequired,\n\t emoji: _react2.default.PropTypes.oneOfType([_react2.default.PropTypes.string, _react2.default.PropTypes.object]).isRequired\n\t};\n\t\n\tEmoji.defaultProps = {\n\t skin: 1,\n\t onOver: function onOver() {},\n\t onLeave: function onLeave() {},\n\t onClick: function onClick() {}\n\t};\n\n/***/ },\n/* 23 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\t__webpack_require__(24);\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _data = __webpack_require__(20);\n\t\n\tvar _data2 = _interopRequireDefault(_data);\n\t\n\tvar _utils = __webpack_require__(16);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar RECENT_CATEGORY = { name: 'Recent', emojis: null };\n\tvar SEARCH_CATEGORY = { name: 'Search', emojis: null, anchor: RECENT_CATEGORY };\n\t\n\tvar CATEGORIES = [SEARCH_CATEGORY, RECENT_CATEGORY].concat(_data2.default.categories);\n\t\n\tvar Picker = function (_React$Component) {\n\t _inherits(Picker, _React$Component);\n\t\n\t function Picker(props) {\n\t _classCallCheck(this, Picker);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Picker).call(this, props));\n\t\n\t _this.testStickyPosition();\n\t\n\t _this.state = {\n\t skin: _utils.store.get('skin') || props.skin\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(Picker, [{\n\t key: 'componentWillReceiveProps',\n\t value: function componentWillReceiveProps(props) {\n\t if (props.skin && !_utils.store.get('skin')) {\n\t this.setState({ skin: props.skin });\n\t }\n\t }\n\t }, {\n\t key: 'componentDidUpdate',\n\t value: function componentDidUpdate() {\n\t this.updateCategoriesSize();\n\t this.handleScroll();\n\t }\n\t }, {\n\t key: 'testStickyPosition',\n\t value: function testStickyPosition() {\n\t var stickyTestElement = document.createElement('div');\n\t var _arr = ['', '-webkit-', '-ms-', '-moz-', '-o-'];\n\t for (var _i = 0; _i < _arr.length; _i++) {\n\t var prefix = _arr[_i];\n\t stickyTestElement.style.position = prefix + 'sticky';\n\t }\n\t\n\t this.hasStickyPosition = !!stickyTestElement.style.position.length;\n\t }\n\t }, {\n\t key: 'handleEmojiOver',\n\t value: function handleEmojiOver(emoji) {\n\t var preview = this.refs.preview;\n\t\n\t preview.setState({ emoji: emoji });\n\t clearTimeout(this.leaveTimeout);\n\t }\n\t }, {\n\t key: 'handleEmojiLeave',\n\t value: function handleEmojiLeave(emoji) {\n\t var _this2 = this;\n\t\n\t this.leaveTimeout = setTimeout(function () {\n\t var preview = _this2.refs.preview;\n\t\n\t preview.setState({ emoji: null });\n\t }, 16);\n\t }\n\t }, {\n\t key: 'handleEmojiClick',\n\t value: function handleEmojiClick(emoji) {\n\t var _this3 = this;\n\t\n\t this.props.onClick(emoji);\n\t _utils.frequently.add(emoji);\n\t\n\t var component = this.refs['category-1'];\n\t if (component) {\n\t (function () {\n\t var maxMargin = component.maxMargin;\n\t component.forceUpdate();\n\t\n\t window.requestAnimationFrame(function () {\n\t component.memoizeSize();\n\t if (maxMargin == component.maxMargin) return;\n\t\n\t _this3.updateCategoriesSize();\n\t _this3.handleScrollPaint();\n\t });\n\t })();\n\t }\n\t }\n\t }, {\n\t key: 'handleScroll',\n\t value: function handleScroll() {\n\t if (!this.waitingForPaint) {\n\t this.waitingForPaint = true;\n\t window.requestAnimationFrame(this.handleScrollPaint.bind(this));\n\t }\n\t }\n\t }, {\n\t key: 'handleScrollPaint',\n\t value: function handleScrollPaint() {\n\t this.waitingForPaint = false;\n\t\n\t var target = this.refs.scroll,\n\t scrollTop = target.scrollTop,\n\t scrollingDown = scrollTop > (this.scrollTop || 0),\n\t activeCategory = null,\n\t minTop = 0;\n\t\n\t for (var i = 0, l = CATEGORIES.length; i < l; i++) {\n\t var ii = scrollingDown ? CATEGORIES.length - 1 - i : i,\n\t category = CATEGORIES[ii],\n\t component = this.refs['category-' + ii];\n\t\n\t if (!minTop || component.top < minTop) {\n\t if (component.top > 0) {\n\t minTop = component.top;\n\t }\n\t }\n\t\n\t if (component) {\n\t var active = component.handleScroll(scrollTop);\n\t if (active && !activeCategory) {\n\t if (category.anchor) category = category.anchor;\n\t activeCategory = category;\n\t }\n\t }\n\t }\n\t\n\t if (scrollTop < minTop) {\n\t activeCategory = RECENT_CATEGORY;\n\t }\n\t\n\t if (activeCategory) {\n\t var anchors = this.refs.anchors;\n\t var _activeCategory = activeCategory;\n\t var categoryName = _activeCategory.name;\n\t\n\t\n\t if (anchors.state.selected != categoryName) {\n\t anchors.setState({ selected: categoryName });\n\t }\n\t }\n\t\n\t this.scrollTop = scrollTop;\n\t }\n\t }, {\n\t key: 'handleSearch',\n\t value: function handleSearch(emojis) {\n\t SEARCH_CATEGORY.emojis = emojis;\n\t\n\t for (var i = 0, l = CATEGORIES.length; i < l; i++) {\n\t var component = this.refs['category-' + i];\n\t\n\t if (component && component.props.name != 'Search') {\n\t var display = emojis ? 'none' : null;\n\t component.updateDisplay(display);\n\t }\n\t }\n\t\n\t this.forceUpdate();\n\t }\n\t }, {\n\t key: 'handleAnchorClick',\n\t value: function handleAnchorClick(category, i) {\n\t var component = this.refs['category-' + i];\n\t var _refs = this.refs;\n\t var scroll = _refs.scroll;\n\t var anchors = _refs.anchors;\n\t var scrollToComponent = null;\n\t\n\t scrollToComponent = function scrollToComponent() {\n\t if (component) {\n\t var top = component.top;\n\t\n\t\n\t if (category.name == 'Recent') {\n\t top = 0;\n\t } else {\n\t top += 1;\n\t }\n\t\n\t scroll.scrollTop = top;\n\t }\n\t };\n\t\n\t if (SEARCH_CATEGORY.emojis) {\n\t this.handleSearch(null);\n\t this.refs.search.clear();\n\t\n\t window.requestAnimationFrame(scrollToComponent);\n\t } else {\n\t scrollToComponent();\n\t }\n\t }\n\t }, {\n\t key: 'handleSkinChange',\n\t value: function handleSkinChange(skin) {\n\t var newState = { skin: skin };\n\t\n\t this.setState(newState);\n\t _utils.store.update(newState);\n\t }\n\t }, {\n\t key: 'updateCategoriesSize',\n\t value: function updateCategoriesSize() {\n\t for (var i = 0, l = CATEGORIES.length; i < l; i++) {\n\t var component = this.refs['category-' + i];\n\t if (component) component.memoizeSize();\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this4 = this;\n\t\n\t var _props = this.props;\n\t var perLine = _props.perLine;\n\t var emojiSize = _props.emojiSize;\n\t var sheetURL = _props.sheetURL;\n\t var style = _props.style;\n\t var skin = this.state.skin;\n\t var width = perLine * (emojiSize + 12) + 12 + 2;\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { style: _extends({}, style, { width: width }), className: 'emoji-picker' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-bar' },\n\t _react2.default.createElement(_.Anchors, {\n\t ref: 'anchors',\n\t categories: CATEGORIES,\n\t onAnchorClick: this.handleAnchorClick.bind(this)\n\t })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { ref: 'scroll', className: 'emoji-picker-scroll', onScroll: this.handleScroll.bind(this) },\n\t _react2.default.createElement(_.Search, {\n\t ref: 'search',\n\t onSearch: this.handleSearch.bind(this)\n\t }),\n\t CATEGORIES.map(function (category, i) {\n\t return _react2.default.createElement(_.Category, {\n\t ref: 'category-' + i,\n\t key: category.name,\n\t name: category.name,\n\t emojis: category.emojis,\n\t perLine: perLine,\n\t hasStickyPosition: _this4.hasStickyPosition,\n\t emojiProps: {\n\t skin: skin,\n\t size: emojiSize,\n\t sheetURL: sheetURL,\n\t onOver: _this4.handleEmojiOver.bind(_this4),\n\t onLeave: _this4.handleEmojiLeave.bind(_this4),\n\t onClick: _this4.handleEmojiClick.bind(_this4)\n\t }\n\t });\n\t })\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-bar' },\n\t _react2.default.createElement(_.Preview, {\n\t ref: 'preview',\n\t emojiProps: {\n\t size: 38,\n\t sheetURL: sheetURL\n\t },\n\t skinsProps: {\n\t skin: skin,\n\t onChange: this.handleSkinChange.bind(this)\n\t }\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Picker;\n\t}(_react2.default.Component);\n\t\n\texports.default = Picker;\n\t\n\t\n\tPicker.propTypes = {\n\t onClick: _react2.default.PropTypes.func,\n\t skin: _react2.default.PropTypes.number,\n\t perLine: _react2.default.PropTypes.number,\n\t emojiSize: _react2.default.PropTypes.number,\n\t style: _react2.default.PropTypes.object,\n\t sheetURL: _react2.default.PropTypes.string.isRequired\n\t};\n\t\n\tPicker.defaultProps = {\n\t onClick: function onClick() {},\n\t emojiSize: 24,\n\t perLine: 9,\n\t style: {},\n\t skin: 1\n\t};\n\n/***/ },\n/* 24 */\n/***/ function(module, exports) {\n\n\t'use strict';\n\t\n\t// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n\t// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\t\n\t// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\t\n\t// MIT license\n\t\n\t(function () {\n\t var lastTime = 0;\n\t var vendors = ['ms', 'moz', 'webkit', 'o'];\n\t for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n\t window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];\n\t window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || window[vendors[x] + 'CancelRequestAnimationFrame'];\n\t }\n\t\n\t if (!window.requestAnimationFrame) window.requestAnimationFrame = function (callback, element) {\n\t var currTime = new Date().getTime();\n\t var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n\t var id = window.setTimeout(function () {\n\t callback(currTime + timeToCall);\n\t }, timeToCall);\n\t lastTime = currTime + timeToCall;\n\t return id;\n\t };\n\t\n\t if (!window.cancelAnimationFrame) window.cancelAnimationFrame = function (id) {\n\t clearTimeout(id);\n\t };\n\t})();\n\n/***/ },\n/* 25 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _ = __webpack_require__(1);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Preview = function (_React$Component) {\n\t _inherits(Preview, _React$Component);\n\t\n\t function Preview(props) {\n\t _classCallCheck(this, Preview);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Preview).call(this, props));\n\t\n\t _this.state = { emoji: null };\n\t return _this;\n\t }\n\t\n\t _createClass(Preview, [{\n\t key: 'render',\n\t value: function render() {\n\t var emoji = this.state.emoji;\n\t var _props = this.props;\n\t var emojiProps = _props.emojiProps;\n\t var skinsProps = _props.skinsProps;\n\t\n\t\n\t if (emoji) {\n\t var emoticons = emoji.emoticons;\n\t var knownEmoticons = [];\n\t var listedEmoticons = [];\n\t\n\t var _iteratorNormalCompletion = true;\n\t var _didIteratorError = false;\n\t var _iteratorError = undefined;\n\t\n\t try {\n\t for (var _iterator = emoticons[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t var emoticon = _step.value;\n\t\n\t if (knownEmoticons.indexOf(emoticon.toLowerCase()) == -1) {\n\t knownEmoticons.push(emoticon.toLowerCase());\n\t listedEmoticons.push(emoticon);\n\t }\n\t }\n\t } catch (err) {\n\t _didIteratorError = true;\n\t _iteratorError = err;\n\t } finally {\n\t try {\n\t if (!_iteratorNormalCompletion && _iterator.return) {\n\t _iterator.return();\n\t }\n\t } finally {\n\t if (_didIteratorError) {\n\t throw _iteratorError;\n\t }\n\t }\n\t }\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-emoji' },\n\t _react2.default.createElement(_.Emoji, _extends({\n\t key: emoji.short_name || emoji,\n\t emoji: emoji\n\t }, emojiProps))\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-data' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-preview-name' },\n\t emoji.name\n\t ),\n\t _react2.default.createElement('br', null),\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-preview-shortnames' },\n\t emoji.short_names.map(function (short_name) {\n\t return _react2.default.createElement(\n\t 'span',\n\t { key: short_name, className: 'emoji-picker-preview-shortname' },\n\t ':',\n\t short_name,\n\t ':'\n\t );\n\t }),\n\t _react2.default.createElement('br', null),\n\t listedEmoticons.map(function (emoticon) {\n\t return _react2.default.createElement(\n\t 'span',\n\t { key: emoticon, className: 'emoji-picker-preview-emoticon' },\n\t emoticon\n\t );\n\t })\n\t )\n\t )\n\t );\n\t } else {\n\t return _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview' },\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-emoji' },\n\t _react2.default.createElement(_.Emoji, _extends({\n\t emoji: 'tophat'\n\t }, emojiProps))\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-data' },\n\t _react2.default.createElement(\n\t 'span',\n\t { className: 'emoji-picker-title-label' },\n\t 'EmojiPicker'\n\t )\n\t ),\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-preview-skins' },\n\t _react2.default.createElement(_.Skins, skinsProps)\n\t )\n\t );\n\t }\n\t }\n\t }]);\n\t\n\t return Preview;\n\t}(_react2.default.Component);\n\t\n\texports.default = Preview;\n\t\n\t\n\tPreview.propTypes = {\n\t emojiProps: _react2.default.PropTypes.object.isRequired,\n\t skinsProps: _react2.default.PropTypes.object.isRequired\n\t};\n\n/***/ },\n/* 26 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tvar _utils = __webpack_require__(16);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Search = function (_React$Component) {\n\t _inherits(Search, _React$Component);\n\t\n\t function Search() {\n\t _classCallCheck(this, Search);\n\t\n\t return _possibleConstructorReturn(this, Object.getPrototypeOf(Search).apply(this, arguments));\n\t }\n\t\n\t _createClass(Search, [{\n\t key: 'handleChange',\n\t value: function handleChange() {\n\t var input = this.refs.input;\n\t var value = input.value;\n\t\n\t this.props.onSearch(_utils.emojiIndex.search(value));\n\t }\n\t }, {\n\t key: 'clear',\n\t value: function clear() {\n\t this.refs.input.value = '';\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t return _react2.default.createElement('input', {\n\t ref: 'input',\n\t type: 'text',\n\t onChange: this.handleChange.bind(this),\n\t placeholder: 'Search',\n\t className: 'emoji-picker-search'\n\t });\n\t }\n\t }]);\n\t\n\t return Search;\n\t}(_react2.default.Component);\n\t\n\texports.default = Search;\n\t\n\t\n\tSearch.propTypes = {\n\t onSearch: _react2.default.PropTypes.func,\n\t maxResults: _react2.default.PropTypes.number\n\t};\n\t\n\tSearch.defaultProps = {\n\t onSearch: function onSearch() {},\n\t maxResults: 75\n\t};\n\n/***/ },\n/* 27 */\n/***/ function(module, exports, __webpack_require__) {\n\n\t'use strict';\n\t\n\tObject.defineProperty(exports, \"__esModule\", {\n\t value: true\n\t});\n\t\n\tvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\t\n\tvar _react = __webpack_require__(3);\n\t\n\tvar _react2 = _interopRequireDefault(_react);\n\t\n\tfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\t\n\tfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\t\n\tfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\t\n\tfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\t\n\tvar Skins = function (_React$Component) {\n\t _inherits(Skins, _React$Component);\n\t\n\t function Skins(props) {\n\t _classCallCheck(this, Skins);\n\t\n\t var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(Skins).call(this, props));\n\t\n\t _this.state = {\n\t opened: false\n\t };\n\t return _this;\n\t }\n\t\n\t _createClass(Skins, [{\n\t key: 'handleClick',\n\t value: function handleClick(skin) {\n\t var onChange = this.props.onChange;\n\t\n\t\n\t if (!this.state.opened) {\n\t this.setState({ opened: true });\n\t } else {\n\t onChange(skin);\n\t this.setState({ opened: false });\n\t }\n\t }\n\t }, {\n\t key: 'render',\n\t value: function render() {\n\t var _this2 = this;\n\t\n\t var skin = this.props.skin;\n\t var opened = this.state.opened;\n\t\n\t\n\t return _react2.default.createElement(\n\t 'div',\n\t null,\n\t _react2.default.createElement(\n\t 'div',\n\t { className: 'emoji-picker-skin-swatches ' + (opened ? 'emoji-picker-skin-swatches-opened' : '') },\n\t Array(6).fill().map(function (_, i) {\n\t var skinTone = i + 1,\n\t selected = skinTone == skin;\n\t\n\t return _react2.default.createElement(\n\t 'span',\n\t { key: 'skin-tone-' + skinTone, className: 'emoji-picker-skin-swatch ' + (selected ? 'emoji-picker-skin-swatch-selected' : '') },\n\t _react2.default.createElement('span', {\n\t onClick: function onClick() {\n\t return _this2.handleClick(skinTone);\n\t },\n\t className: 'emoji-picker-skin emoji-picker-skin-tone-' + skinTone })\n\t );\n\t })\n\t )\n\t );\n\t }\n\t }]);\n\t\n\t return Skins;\n\t}(_react2.default.Component);\n\t\n\texports.default = Skins;\n\t\n\t\n\tSkins.propTypes = {\n\t onChange: _react2.default.PropTypes.func,\n\t skin: _react2.default.PropTypes.number.isRequired\n\t};\n\t\n\tSkins.defaultProps = {\n\t onChange: function onChange() {}\n\t};\n\n/***/ }\n/******/ ])\n});\n;\n\n\n/** WEBPACK FOOTER **\n ** emoji-picker.min.js\n **/"," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n/** WEBPACK FOOTER **\n ** webpack/bootstrap ac79a2048a7cc73fb42f\n **/","export {\n Picker,\n Emoji,\n} from './components'\n\nexport {\n emojiIndex,\n} from './utils'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/index.js\n **/","import React from 'react'\nimport InlineSVG from 'svg-inline-react'\n\nimport * as SVGs from '../svgs'\n\nexport default class Anchors extends React.Component {\n constructor(props) {\n super(props)\n\n var defaultCategory = props.categories[0]\n if (defaultCategory.anchor) {\n defaultCategory = defaultCategory.anchor\n }\n\n this.state = {\n selected: defaultCategory.name\n }\n }\n\n render() {\n var { categories, onAnchorClick } = this.props,\n { selected } = this.state\n\n return
\n {categories.map((category, i) => {\n var { name, anchor } = category\n\n if (anchor) {\n return null\n }\n\n return (\n onAnchorClick(category, i)}\n className={`emoji-picker-anchor ${name == selected ? 'emoji-picker-anchor-selected' : ''}`}\n >\n \n \n \n )\n })}\n
\n }\n}\n\nAnchors.propTypes = {\n categories: React.PropTypes.array,\n onAnchorClick: React.PropTypes.func,\n}\n\nAnchors.defaultProps = {\n categories: [],\n onAnchorClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/anchors.js\n **/","module.exports = __WEBPACK_EXTERNAL_MODULE_3__;\n\n\n/*****************\n ** WEBPACK FOOTER\n ** external \"react\"\n ** module id = 3\n ** module chunks = 0\n **/","'use strict';\n\nObject.defineProperty(exports, '__esModule', {\n value: true\n});\n\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();\n\nvar _get = function get(_x, _x2, _x3) { var _again = true; _function: while (_again) { var object = _x, property = _x2, receiver = _x3; _again = false; if (object === null) object = Function.prototype; var desc = Object.getOwnPropertyDescriptor(object, property); if (desc === undefined) { var parent = Object.getPrototypeOf(object); if (parent === null) { return undefined; } else { _x = parent; _x2 = property; _x3 = receiver; _again = true; desc = parent = undefined; continue _function; } } else if ('value' in desc) { return desc.value; } else { var getter = desc.get; if (getter === undefined) { return undefined; } return getter.call(receiver); } } };\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\nvar _react = require('react');\n\nvar _react2 = _interopRequireDefault(_react);\n\nvar DOMParser = typeof window !== 'undefined' && window.DOMParser;\nvar process = process || {};\nprocess.env = process.env || {};\nvar parserAvailable = typeof DOMParser !== 'undefined' && DOMParser.prototype != null && DOMParser.prototype.parseFromString != null;\n\nif (\"production\" !== process.env.NODE_ENV && !parserAvailable) {\n console.info(': `raw` prop works only when `window.DOMParser` exists.');\n}\n\nfunction isParsable(src) {\n // kinda naive but meh, ain't gonna use full-blown parser for this\n return parserAvailable && typeof src === 'string' && src.trim().substr(0, 4) === '` element but react-limited\nfunction switchSVGAttrToReactProp(propName) {\n switch (propName) {\n case 'class':\n return 'className';\n default:\n return propName;\n }\n}\n\nvar InlineSVG = (function (_React$Component) {\n _inherits(InlineSVG, _React$Component);\n\n _createClass(InlineSVG, null, [{\n key: 'defaultProps',\n value: {\n element: 'i',\n raw: false,\n src: ''\n },\n enumerable: true\n }, {\n key: 'propTypes',\n value: {\n src: _react2['default'].PropTypes.string.isRequired,\n element: _react2['default'].PropTypes.string,\n raw: _react2['default'].PropTypes.bool\n },\n enumerable: true\n }]);\n\n function InlineSVG(props) {\n _classCallCheck(this, InlineSVG);\n\n _get(Object.getPrototypeOf(InlineSVG.prototype), 'constructor', this).call(this, props);\n this._extractSVGProps = this._extractSVGProps.bind(this);\n }\n\n // Serialize `Attr` objects in `NamedNodeMap`\n\n _createClass(InlineSVG, [{\n key: '_serializeAttrs',\n value: function _serializeAttrs(map) {\n var ret = {};\n var prop = undefined;\n for (var i = 0; i < map.length; i++) {\n prop = switchSVGAttrToReactProp(map[i].name);\n ret[prop] = map[i].value;\n }\n return ret;\n }\n\n // get element props\n }, {\n key: '_extractSVGProps',\n value: function _extractSVGProps(src) {\n var map = parseFromSVGString(src).documentElement.attributes;\n return map.length > 0 ? this._serializeAttrs(map) : null;\n }\n\n // get content inside element.\n }, {\n key: '_stripSVG',\n value: function _stripSVG(src) {\n return parseFromSVGString(src).documentElement.innerHTML;\n }\n }, {\n key: 'componentWillReceiveProps',\n value: function componentWillReceiveProps(_ref) {\n var children = _ref.children;\n\n if (\"production\" !== process.env.NODE_ENV && children != null) {\n console.info(': `children` prop will be ignored.');\n }\n }\n }, {\n key: 'render',\n value: function render() {\n var Element = undefined,\n __html = undefined,\n svgProps = undefined;\n var _props = this.props;\n var element = _props.element;\n var raw = _props.raw;\n var src = _props.src;\n\n if (raw === true && isParsable(src)) {\n Element = 'svg';\n svgProps = this._extractSVGProps(src);\n __html = this._stripSVG(src);\n }\n __html = __html || src;\n Element = Element || element;\n svgProps = svgProps || {};\n\n return _react2['default'].createElement(Element, _extends({}, svgProps, this.props, { src: null, children: null,\n dangerouslySetInnerHTML: { __html: __html } }));\n }\n }]);\n\n return InlineSVG;\n})(_react2['default'].Component);\n\nexports['default'] = InlineSVG;\nmodule.exports = exports['default'];\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/svg-inline-react/dist/index.js\n ** module id = 4\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/activity.svg\n ** module id = 6\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/flags.svg\n ** module id = 7\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/foods.svg\n ** module id = 8\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/nature.svg\n ** module id = 9\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/objects.svg\n ** module id = 10\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/people.svg\n ** module id = 11\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/places.svg\n ** module id = 12\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/recent.svg\n ** module id = 13\n ** module chunks = 0\n **/","module.exports = \"\"\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./src/svgs/symbols.svg\n ** module id = 14\n ** module chunks = 0\n **/","import React from 'react'\n\nimport {frequently} from '../utils'\nimport {Emoji} from '.'\n\nconst LABELS = {\n 'Search': 'Search Results',\n 'Recent': 'Frequently Used',\n 'People': 'Smileys & People',\n 'Nature': 'Animals & Nature',\n 'Foods': 'Food & Drink',\n 'Activity': 'Activity',\n 'Places': 'Travel & Places',\n 'Objects': 'Objects',\n 'Symbols': 'Symbols',\n 'Flags': 'Flags',\n}\n\nexport default class Category extends React.Component {\n componentDidMount() {\n this.container = this.refs.container\n this.label = this.refs.label\n this.parent = this.container.parentNode\n\n this.margin = 0\n this.minMargin = 0\n\n this.memoizeSize()\n }\n\n shouldComponentUpdate(nextProps, nextState) {\n var { name, perLine, emojis, emojiProps } = this.props,\n { skin, size, sheetURL } = emojiProps,\n { perLine: nextPerLine, emojis: nextEmojis, emojiProps: nextEmojiProps } = nextProps,\n { skin: nextSkin, size: nextSize, sheetURL: nextSheetURL } = nextEmojiProps,\n shouldUpdate = false\n\n if (name == 'Recent' && perLine != nextPerLine) {\n shouldUpdate = true\n }\n\n if (name == 'Search') {\n shouldUpdate = !(emojis == nextEmojis)\n }\n\n if (skin != nextSkin || size != nextSize || sheetURL != nextSheetURL) {\n shouldUpdate = true\n }\n\n return shouldUpdate\n }\n\n memoizeSize() {\n var { top, height } = this.container.getBoundingClientRect()\n var { top: parentTop } = this.parent.getBoundingClientRect()\n var { height: labelHeight } = this.label.getBoundingClientRect()\n\n this.top = top - parentTop + this.parent.scrollTop\n\n if (height == 0) {\n this.maxMargin = 0\n } else {\n this.maxMargin = height - labelHeight\n }\n }\n\n handleScroll(scrollTop) {\n var margin = scrollTop - this.top\n margin = margin < this.minMargin ? this.minMargin : margin\n margin = margin > this.maxMargin ? this.maxMargin : margin\n\n if (margin == this.margin) return\n var { name } = this.props\n\n if (!this.props.hasStickyPosition) {\n this.label.style.top = `${margin}px`\n }\n\n this.margin = margin\n return true\n }\n\n getEmojis() {\n var { name, emojis, perLine } = this.props\n\n if (name == 'Recent') {\n let frequentlyUsed = frequently.get(perLine * 4)\n\n if (frequentlyUsed.length) {\n emojis = frequentlyUsed\n }\n }\n\n if (emojis) {\n emojis = emojis.slice(0)\n }\n\n return emojis\n }\n\n updateDisplay(display) {\n var emojis = this.getEmojis()\n\n if (!display && !emojis) {\n return\n }\n\n this.container.style.display = display\n }\n\n render() {\n var { name, hasStickyPosition, emojiProps } = this.props,\n emojis = this.getEmojis(),\n labelStyles = {},\n labelSpanStyles = {},\n containerStyles = {}\n\n if (!emojis) {\n containerStyles = {\n display: 'none',\n }\n }\n\n if (!hasStickyPosition) {\n labelStyles = {\n height: 28,\n }\n\n labelSpanStyles = {\n position: 'absolute',\n }\n }\n\n return
\n
\n {LABELS[name]}\n
\n\n {emojis && emojis.map((emoji) =>\n \n )}\n\n {emojis && !emojis.length &&\n
\n \n\n \n No emoji found\n \n
\n }\n
\n }\n}\n\nCategory.propTypes = {\n emojis: React.PropTypes.array,\n hasStickyPosition: React.PropTypes.bool,\n name: React.PropTypes.string.isRequired,\n perLine: React.PropTypes.number.isRequired,\n emojiProps: React.PropTypes.object.isRequired,\n}\n\nCategory.defaultProps = {\n emojis: [],\n hasStickyPosition: true,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/category.js\n **/","const NAMESPACE = 'emoji-picker'\n\nfunction update(state) {\n for (let key in state) {\n let value = state[key]\n set(key, value)\n }\n}\n\nfunction set(key, value) {\n if (!('localStorage' in window)) return\n window.localStorage[`${NAMESPACE}.${key}`] = JSON.stringify(value)\n}\n\nfunction get(key) {\n if (!('localStorage' in window)) return\n\n var value = window.localStorage[`${NAMESPACE}.${key}`]\n\n if (value) {\n return JSON.parse(value)\n }\n}\n\nexport default { update, set, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/store.js\n **/","import lunr from 'lunr'\nimport data from '../../data'\n\nvar index = lunr(function() {\n this.pipeline.reset()\n\n this.field('short_name', { boost: 2 })\n this.field('emoticons')\n this.field('name')\n\n this.ref('id')\n})\n\nfor (let emoji in data.emojis) {\n let emojiData = data.emojis[emoji],\n { short_name, name, emoticons } = emojiData\n\n index.add({\n id: short_name,\n emoticons: emoticons,\n short_name: tokenize(short_name),\n name: tokenize(name),\n })\n}\n\nfunction search(value, maxResults = 75) {\n var results = null\n\n if (value.length) {\n results = index.search(tokenize(value)).map((result) =>\n result.ref\n )\n\n results = results.slice(0, maxResults)\n }\n\n return results\n}\n\nfunction tokenize (string) {\n if (['-', '-1', '+', '+1'].indexOf(string) == 0) {\n return string.split('')\n }\n\n if (/(:|;|=)-/.test(string)) {\n return [string]\n }\n\n return string.split(/[-|_|\\s]+/)\n}\n\nexport default { search }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/emoji-index.js\n **/","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n * Copyright (C) 2016 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * Convenience function for instantiating a new lunr index and configuring it\n * with the default pipeline functions and the passed config function.\n *\n * When using this convenience function a new index will be created with the\n * following functions already in the pipeline:\n *\n * lunr.StopWordFilter - filters out any stop words before they enter the\n * index\n *\n * lunr.stemmer - stems the tokens before entering the index.\n *\n * Example:\n *\n * var idx = lunr(function () {\n * this.field('title', 10)\n * this.field('tags', 100)\n * this.field('body')\n * \n * this.ref('cid')\n * \n * this.pipeline.add(function () {\n * // some custom pipeline function\n * })\n * \n * })\n *\n * @param {Function} config A function that will be called with the new instance\n * of the lunr.Index as both its context and first parameter. It can be used to\n * customize the instance of new lunr.Index.\n * @namespace\n * @module\n * @returns {lunr.Index}\n *\n */\nvar lunr = function (config) {\n var idx = new lunr.Index\n\n idx.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n if (config) config.call(idx, idx)\n\n return idx\n}\n\nlunr.version = \"0.7.1\"\n/*!\n * lunr.utils\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf Utils\n */\nlunr.utils.warn = (function (global) {\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf Utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n/*!\n * lunr.EventEmitter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n *\n * @constructor\n */\nlunr.EventEmitter = function () {\n this.events = {}\n}\n\n/**\n * Binds a handler function to a specific event(s).\n *\n * Can bind a single function to many different events in one call.\n *\n * @param {String} [eventName] The name(s) of events to bind this function to.\n * @param {Function} fn The function to call when an event is fired.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.addListener = function () {\n var args = Array.prototype.slice.call(arguments),\n fn = args.pop(),\n names = args\n\n if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\n names.forEach(function (name) {\n if (!this.hasHandler(name)) this.events[name] = []\n this.events[name].push(fn)\n }, this)\n}\n\n/**\n * Removes a handler function from a specific event.\n *\n * @param {String} eventName The name of the event to remove this function from.\n * @param {Function} fn The function to remove from an event.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n if (!this.hasHandler(name)) return\n\n var fnIndex = this.events[name].indexOf(fn)\n this.events[name].splice(fnIndex, 1)\n\n if (!this.events[name].length) delete this.events[name]\n}\n\n/**\n * Calls all functions bound to the given event.\n *\n * Additional data can be passed to the event handler as arguments to `emit`\n * after the event name.\n *\n * @param {String} eventName The name of the event to emit.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.emit = function (name) {\n if (!this.hasHandler(name)) return\n\n var args = Array.prototype.slice.call(arguments, 1)\n\n this.events[name].forEach(function (fn) {\n fn.apply(undefined, args)\n })\n}\n\n/**\n * Checks whether a handler has ever been stored against an event.\n *\n * @param {String} eventName The name of the event to check.\n * @private\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.hasHandler = function (name) {\n return name in this.events\n}\n\n/*!\n * lunr.tokenizer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * @module\n * @param {String} obj The string to convert into tokens\n * @see lunr.tokenizer.seperator\n * @returns {Array}\n */\nlunr.tokenizer = function (obj) {\n if (!arguments.length || obj == null || obj == undefined) return []\n if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\n return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n}\n\n/**\n * The sperator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.seperator = /[\\s\\-]+/\n\n/**\n * Loads a previously serialised tokenizer.\n *\n * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n * If the serialised tokenizer has not been registered then an error will be thrown.\n *\n * @param {String} label The label of the serialised tokenizer.\n * @returns {Function}\n * @memberOf tokenizer\n */\nlunr.tokenizer.load = function (label) {\n var fn = this.registeredFunctions[label]\n\n if (!fn) {\n throw new Error('Cannot load un-registered function: ' + label)\n }\n\n return fn\n}\n\nlunr.tokenizer.label = 'default'\n\nlunr.tokenizer.registeredFunctions = {\n 'default': lunr.tokenizer\n}\n\n/**\n * Register a tokenizer function.\n *\n * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n *\n * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n *\n * @param {Function} fn The function to register.\n * @param {String} label The label to register this function with\n * @memberOf tokenizer\n */\nlunr.tokenizer.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n }\n\n fn.label = label\n this.registeredFunctions[label] = fn\n}\n/*!\n * lunr.Pipeline\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = {}\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {Function} fn The function to check for.\n * @param {String} label The label to register this function with\n * @memberOf Pipeline\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {Function} fn The function to check for.\n * @private\n * @memberOf Pipeline\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n * @memberOf Pipeline\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load un-registered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} functions Any number of functions to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {Function} fn The function to remove from the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var out = [],\n tokenLength = tokens.length,\n stackLength = this._stack.length\n\n for (var i = 0; i < tokenLength; i++) {\n var token = tokens[i]\n\n for (var j = 0; j < stackLength; j++) {\n token = this._stack[j](token, i, tokens)\n if (token === void 0 || token === '') break\n };\n\n if (token !== void 0 && token !== '') out.push(token)\n };\n\n return out\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Vectors implement vector related operations for\n * a series of elements.\n *\n * @constructor\n */\nlunr.Vector = function () {\n this._magnitude = null\n this.list = undefined\n this.length = 0\n}\n\n/**\n * lunr.Vector.Node is a simple struct for each node\n * in a lunr.Vector.\n *\n * @private\n * @param {Number} The index of the node in the vector.\n * @param {Object} The data at this node in the vector.\n * @param {lunr.Vector.Node} The node directly after this node in the vector.\n * @constructor\n * @memberOf Vector\n */\nlunr.Vector.Node = function (idx, val, next) {\n this.idx = idx\n this.val = val\n this.next = next\n}\n\n/**\n * Inserts a new value at a position in a vector.\n *\n * @param {Number} The index at which to insert a value.\n * @param {Object} The object to insert in the vector.\n * @memberOf Vector.\n */\nlunr.Vector.prototype.insert = function (idx, val) {\n this._magnitude = undefined;\n var list = this.list\n\n if (!list) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n if (idx < list.idx) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n var prev = list,\n next = list.next\n\n while (next != undefined) {\n if (idx < next.idx) {\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n }\n\n prev = next, next = next.next\n }\n\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n var node = this.list,\n sumOfSquares = 0,\n val\n\n while (node) {\n val = node.val\n sumOfSquares += val * val\n node = node.next\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var node = this.list,\n otherNode = otherVector.list,\n dotProduct = 0\n\n while (node && otherNode) {\n if (node.idx < otherNode.idx) {\n node = node.next\n } else if (node.idx > otherNode.idx) {\n otherNode = otherNode.next\n } else {\n dotProduct += node.val * otherNode.val\n node = node.next\n otherNode = otherNode.next\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the cosine similarity between this vector and another\n * vector.\n *\n * @param {lunr.Vector} otherVector The other vector to calculate the\n * similarity with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n}\n/*!\n * lunr.SortedSet\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n * order.\n *\n * @constructor\n */\nlunr.SortedSet = function () {\n this.length = 0\n this.elements = []\n}\n\n/**\n * Loads a previously serialised sorted set.\n *\n * @param {Array} serialisedData The serialised set to load.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.load = function (serialisedData) {\n var set = new this\n\n set.elements = serialisedData\n set.length = serialisedData.length\n\n return set\n}\n\n/**\n * Inserts new items into the set in the correct position to maintain the\n * order.\n *\n * @param {Object} The objects to add to this set.\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.add = function () {\n var i, element\n\n for (i = 0; i < arguments.length; i++) {\n element = arguments[i]\n if (~this.indexOf(element)) continue\n this.elements.splice(this.locationFor(element), 0, element)\n }\n\n this.length = this.elements.length\n}\n\n/**\n * Converts this sorted set into an array.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toArray = function () {\n return this.elements.slice()\n}\n\n/**\n * Creates a new array with the results of calling a provided function on every\n * element in this sorted set.\n *\n * Delegates to Array.prototype.map and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * for the function fn.\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.map = function (fn, ctx) {\n return this.elements.map(fn, ctx)\n}\n\n/**\n * Executes a provided function once per sorted set element.\n *\n * Delegates to Array.prototype.forEach and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * @memberOf SortedSet\n * for the function fn.\n */\nlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n return this.elements.forEach(fn, ctx)\n}\n\n/**\n * Returns the index at which a given element can be found in the\n * sorted set, or -1 if it is not present.\n *\n * @param {Object} elem The object to locate in the sorted set.\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.indexOf = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem === elem) return pivot\n\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem === elem) return pivot\n\n return -1\n}\n\n/**\n * Returns the position within the sorted set that an element should be\n * inserted at to maintain the current order of the set.\n *\n * This function assumes that the element to search for does not already exist\n * in the sorted set.\n *\n * @param {Object} elem The elem to find the position for in the set\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.locationFor = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem > elem) return pivot\n if (pivotElem < elem) return pivot + 1\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the intersection\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.intersect = function (otherSet) {\n var intersectSet = new lunr.SortedSet,\n i = 0, j = 0,\n a_len = this.length, b_len = otherSet.length,\n a = this.elements, b = otherSet.elements\n\n while (true) {\n if (i > a_len - 1 || j > b_len - 1) break\n\n if (a[i] === b[j]) {\n intersectSet.add(a[i])\n i++, j++\n continue\n }\n\n if (a[i] < b[j]) {\n i++\n continue\n }\n\n if (a[i] > b[j]) {\n j++\n continue\n }\n };\n\n return intersectSet\n}\n\n/**\n * Makes a copy of this set\n *\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.clone = function () {\n var clone = new lunr.SortedSet\n\n clone.elements = this.toArray()\n clone.length = clone.elements.length\n\n return clone\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the union\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to union with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.union = function (otherSet) {\n var longSet, shortSet, unionSet\n\n if (this.length >= otherSet.length) {\n longSet = this, shortSet = otherSet\n } else {\n longSet = otherSet, shortSet = this\n }\n\n unionSet = longSet.clone()\n\n for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n unionSet.add(shortSetElements[i])\n }\n\n return unionSet\n}\n\n/**\n * Returns a representation of the sorted set ready for serialisation.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toJSON = function () {\n return this.toArray()\n}\n/*!\n * lunr.Index\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Index is object that manages a search index. It contains the indexes\n * and stores all the tokens and document lookups. It also provides the main\n * user facing API for the library.\n *\n * @constructor\n */\nlunr.Index = function () {\n this._fields = []\n this._ref = 'id'\n this.pipeline = new lunr.Pipeline\n this.documentStore = new lunr.Store\n this.tokenStore = new lunr.TokenStore\n this.corpusTokens = new lunr.SortedSet\n this.eventEmitter = new lunr.EventEmitter\n this.tokenizerFn = lunr.tokenizer\n\n this._idfCache = {}\n\n this.on('add', 'remove', 'update', (function () {\n this._idfCache = {}\n }).bind(this))\n}\n\n/**\n * Bind a handler to events being emitted by the index.\n *\n * The handler can be bound to many events at the same time.\n *\n * @param {String} [eventName] The name(s) of events to bind the function to.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.on = function () {\n var args = Array.prototype.slice.call(arguments)\n return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n}\n\n/**\n * Removes a handler from an event being emitted by the index.\n *\n * @param {String} eventName The name of events to remove the function from.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.off = function (name, fn) {\n return this.eventEmitter.removeListener(name, fn)\n}\n\n/**\n * Loads a previously serialised index.\n *\n * Issues a warning if the index being imported was serialised\n * by a different version of lunr.\n *\n * @param {Object} serialisedData The serialised set to load.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.load = function (serialisedData) {\n if (serialisedData.version !== lunr.version) {\n lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n }\n\n var idx = new this\n\n idx._fields = serialisedData.fields\n idx._ref = serialisedData.ref\n\n idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\n return idx\n}\n\n/**\n * Adds a field to the list of fields that will be searchable within documents\n * in the index.\n *\n * An optional boost param can be passed to affect how much tokens in this field\n * rank in search results, by default the boost value is 1.\n *\n * Fields should be added before any documents are added to the index, fields\n * that are added after documents are added to the index will only apply to new\n * documents added to the index.\n *\n * @param {String} fieldName The name of the field within the document that\n * should be indexed\n * @param {Number} boost An optional boost that can be applied to terms in this\n * field.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.field = function (fieldName, opts) {\n var opts = opts || {},\n field = { name: fieldName, boost: opts.boost || 1 }\n\n this._fields.push(field)\n return this\n}\n\n/**\n * Sets the property used to uniquely identify documents added to the index,\n * by default this property is 'id'.\n *\n * This should only be changed before adding documents to the index, changing\n * the ref property without resetting the index can lead to unexpected results.\n *\n * The value of ref can be of any type but it _must_ be stably comparable and\n * orderable.\n *\n * @param {String} refName The property to use to uniquely identify the\n * documents in the index.\n * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.ref = function (refName) {\n this._ref = refName\n return this\n}\n\n/**\n * Sets the tokenizer used for this index.\n *\n * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n * should only be changed before adding documents to the index. Changing the tokenizer\n * without re-building the index can lead to unexpected results.\n *\n * @param {Function} fn The function to use as a tokenizer.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.tokenizer = function (fn) {\n var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n }\n\n this.tokenizerFn = fn\n return this\n}\n\n/**\n * Add a document to the index.\n *\n * This is the way new documents enter the index, this function will run the\n * fields from the document through the index's pipeline and then add it to\n * the index, it will then show up in search results.\n *\n * An 'add' event is emitted with the document that has been added and the index\n * the document has been added to. This event can be silenced by passing false\n * as the second argument to add.\n *\n * @param {Object} doc The document to add to the index.\n * @param {Boolean} emitEvent Whether or not to emit events, default true.\n * @memberOf Index\n */\nlunr.Index.prototype.add = function (doc, emitEvent) {\n var docTokens = {},\n allDocumentTokens = new lunr.SortedSet,\n docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n this._fields.forEach(function (field) {\n var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\n docTokens[field.name] = fieldTokens\n\n for (var i = 0; i < fieldTokens.length; i++) {\n var token = fieldTokens[i]\n allDocumentTokens.add(token)\n this.corpusTokens.add(token)\n }\n }, this)\n\n this.documentStore.set(docRef, allDocumentTokens)\n\n for (var i = 0; i < allDocumentTokens.length; i++) {\n var token = allDocumentTokens.elements[i]\n var tf = 0;\n\n for (var j = 0; j < this._fields.length; j++){\n var field = this._fields[j]\n var fieldTokens = docTokens[field.name]\n var fieldLength = fieldTokens.length\n\n if (!fieldLength) continue\n\n var tokenCount = 0\n for (var k = 0; k < fieldLength; k++){\n if (fieldTokens[k] === token){\n tokenCount++\n }\n }\n\n tf += (tokenCount / fieldLength * field.boost)\n }\n\n this.tokenStore.add(token, { ref: docRef, tf: tf })\n };\n\n if (emitEvent) this.eventEmitter.emit('add', doc, this)\n}\n\n/**\n * Removes a document from the index.\n *\n * To make sure documents no longer show up in search results they can be\n * removed from the index using this method.\n *\n * The document passed only needs to have the same ref property value as the\n * document that was added to the index, they could be completely different\n * objects.\n *\n * A 'remove' event is emitted with the document that has been removed and the index\n * the document has been removed from. This event can be silenced by passing false\n * as the second argument to remove.\n *\n * @param {Object} doc The document to remove from the index.\n * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n * @memberOf Index\n */\nlunr.Index.prototype.remove = function (doc, emitEvent) {\n var docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n if (!this.documentStore.has(docRef)) return\n\n var docTokens = this.documentStore.get(docRef)\n\n this.documentStore.remove(docRef)\n\n docTokens.forEach(function (token) {\n this.tokenStore.remove(token, docRef)\n }, this)\n\n if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n}\n\n/**\n * Updates a document in the index.\n *\n * When a document contained within the index gets updated, fields changed,\n * added or removed, to make sure it correctly matched against search queries,\n * it should be updated in the index.\n *\n * This method is just a wrapper around `remove` and `add`\n *\n * An 'update' event is emitted with the document that has been updated and the index.\n * This event can be silenced by passing false as the second argument to update. Only\n * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n * are silenced.\n *\n * @param {Object} doc The document to update in the index.\n * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n * @see Index.prototype.remove\n * @see Index.prototype.add\n * @memberOf Index\n */\nlunr.Index.prototype.update = function (doc, emitEvent) {\n var emitEvent = emitEvent === undefined ? true : emitEvent\n\n this.remove(doc, false)\n this.add(doc, false)\n\n if (emitEvent) this.eventEmitter.emit('update', doc, this)\n}\n\n/**\n * Calculates the inverse document frequency for a token within the index.\n *\n * @param {String} token The token to calculate the idf of.\n * @see Index.prototype.idf\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.idf = function (term) {\n var cacheKey = \"@\" + term\n if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\n var documentFrequency = this.tokenStore.count(term),\n idf = 1\n\n if (documentFrequency > 0) {\n idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n }\n\n return this._idfCache[cacheKey] = idf\n}\n\n/**\n * Searches the index using the passed query.\n *\n * Queries should be a string, multiple words are allowed and will lead to an\n * AND based query, e.g. `idx.search('foo bar')` will run a search for\n * documents containing both 'foo' and 'bar'.\n *\n * All query tokens are passed through the same pipeline that document tokens\n * are passed through, so any language processing involved will be run on every\n * query term.\n *\n * Each query term is expanded, so that the term 'he' might be expanded to\n * 'hello' and 'help' if those terms were already included in the index.\n *\n * Matching documents are returned as an array of objects, each object contains\n * the matching document ref, as set for this index, and the similarity score\n * for this document against the query.\n *\n * @param {String} query The query to search the index with.\n * @returns {Object}\n * @see Index.prototype.idf\n * @see Index.prototype.documentVector\n * @memberOf Index\n */\nlunr.Index.prototype.search = function (query) {\n var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n queryVector = new lunr.Vector,\n documentSets = [],\n fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\n var hasSomeToken = queryTokens.some(function (token) {\n return this.tokenStore.has(token)\n }, this)\n\n if (!hasSomeToken) return []\n\n queryTokens\n .forEach(function (token, i, tokens) {\n var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n self = this\n\n var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n var pos = self.corpusTokens.indexOf(key),\n idf = self.idf(key),\n similarityBoost = 1,\n set = new lunr.SortedSet\n\n // if the expanded key is not an exact match to the token then\n // penalise the score for this key by how different the key is\n // to the token.\n if (key !== token) {\n var diff = Math.max(3, key.length - token.length)\n similarityBoost = 1 / Math.log(diff)\n }\n\n // calculate the query tf-idf score for this token\n // applying an similarityBoost to ensure exact matches\n // these rank higher than expanded terms\n if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\n // add all the documents that have this key into a set\n // ensuring that the type of key is preserved\n var matchingDocuments = self.tokenStore.get(key),\n refs = Object.keys(matchingDocuments),\n refsLen = refs.length\n\n for (var i = 0; i < refsLen; i++) {\n set.add(matchingDocuments[refs[i]].ref)\n }\n\n return memo.union(set)\n }, new lunr.SortedSet)\n\n documentSets.push(set)\n }, this)\n\n var documentSet = documentSets.reduce(function (memo, set) {\n return memo.intersect(set)\n })\n\n return documentSet\n .map(function (ref) {\n return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n }, this)\n .sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Generates a vector containing all the tokens in the document matching the\n * passed documentRef.\n *\n * The vector contains the tf-idf score for each token contained in the\n * document with the passed documentRef. The vector will contain an element\n * for every token in the indexes corpus, if the document does not contain that\n * token the element will be 0.\n *\n * @param {Object} documentRef The ref to find the document with.\n * @returns {lunr.Vector}\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.documentVector = function (documentRef) {\n var documentTokens = this.documentStore.get(documentRef),\n documentTokensLength = documentTokens.length,\n documentVector = new lunr.Vector\n\n for (var i = 0; i < documentTokensLength; i++) {\n var token = documentTokens.elements[i],\n tf = this.tokenStore.get(token)[documentRef].tf,\n idf = this.idf(token)\n\n documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n };\n\n return documentVector\n}\n\n/**\n * Returns a representation of the index ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Index\n */\nlunr.Index.prototype.toJSON = function () {\n return {\n version: lunr.version,\n fields: this._fields,\n ref: this._ref,\n tokenizer: this.tokenizerFn.label,\n documentStore: this.documentStore.toJSON(),\n tokenStore: this.tokenStore.toJSON(),\n corpusTokens: this.corpusTokens.toJSON(),\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Applies a plugin to the current index.\n *\n * A plugin is a function that is called with the index as its context.\n * Plugins can be used to customise or extend the behaviour the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied to the index.\n *\n * The plugin function will be called with the index as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index as its context.\n *\n * Example:\n *\n * var myPlugin = function (idx, arg1, arg2) {\n * // `this` is the index to be extended\n * // apply any extensions etc here.\n * }\n *\n * var idx = lunr(function () {\n * this.use(myPlugin, 'arg1', 'arg2')\n * })\n *\n * @param {Function} plugin The plugin to apply.\n * @memberOf Index\n */\nlunr.Index.prototype.use = function (plugin) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n plugin.apply(this, args)\n}\n/*!\n * lunr.Store\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Store is a simple key-value store used for storing sets of tokens for\n * documents stored in index.\n *\n * @constructor\n * @module\n */\nlunr.Store = function () {\n this.store = {}\n this.length = 0\n}\n\n/**\n * Loads a previously serialised store\n *\n * @param {Object} serialisedData The serialised store to load.\n * @returns {lunr.Store}\n * @memberOf Store\n */\nlunr.Store.load = function (serialisedData) {\n var store = new this\n\n store.length = serialisedData.length\n store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n return memo\n }, {})\n\n return store\n}\n\n/**\n * Stores the given tokens in the store against the given id.\n *\n * @param {Object} id The key used to store the tokens against.\n * @param {Object} tokens The tokens to store against the key.\n * @memberOf Store\n */\nlunr.Store.prototype.set = function (id, tokens) {\n if (!this.has(id)) this.length++\n this.store[id] = tokens\n}\n\n/**\n * Retrieves the tokens from the store for a given key.\n *\n * @param {Object} id The key to lookup and retrieve from the store.\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.get = function (id) {\n return this.store[id]\n}\n\n/**\n * Checks whether the store contains a key.\n *\n * @param {Object} id The id to look up in the store.\n * @returns {Boolean}\n * @memberOf Store\n */\nlunr.Store.prototype.has = function (id) {\n return id in this.store\n}\n\n/**\n * Removes the value for a key in the store.\n *\n * @param {Object} id The id to remove from the store.\n * @memberOf Store\n */\nlunr.Store.prototype.remove = function (id) {\n if (!this.has(id)) return\n\n delete this.store[id]\n this.length--\n}\n\n/**\n * Returns a representation of the store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.toJSON = function () {\n return {\n store: this.store,\n length: this.length\n }\n}\n\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @module\n * @param {String} str The string to stem\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return porterStemmer;\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @module\n * @param {Array} token The token to pass through the filter\n * @returns {Function}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token] !== token) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the begining and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.TokenStore is used for efficient storing and lookup of the reverse\n * index of token to document ref.\n *\n * @constructor\n */\nlunr.TokenStore = function () {\n this.root = { docs: {} }\n this.length = 0\n}\n\n/**\n * Loads a previously serialised token store\n *\n * @param {Object} serialisedData The serialised token store to load.\n * @returns {lunr.TokenStore}\n * @memberOf TokenStore\n */\nlunr.TokenStore.load = function (serialisedData) {\n var store = new this\n\n store.root = serialisedData.root\n store.length = serialisedData.length\n\n return store\n}\n\n/**\n * Adds a new token doc pair to the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to store the doc under\n * @param {Object} doc The doc to store against the token\n * @param {Object} root An optional node at which to start looking for the\n * correct place to enter the doc, by default the root of this lunr.TokenStore\n * is used.\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.add = function (token, doc, root) {\n var root = root || this.root,\n key = token.charAt(0),\n rest = token.slice(1)\n\n if (!(key in root)) root[key] = {docs: {}}\n\n if (rest.length === 0) {\n root[key].docs[doc.ref] = doc\n this.length += 1\n return\n } else {\n return this.add(rest, doc, root[key])\n }\n}\n\n/**\n * Checks whether this key is contained within this lunr.TokenStore.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to check for\n * @param {Object} root An optional node at which to start\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.has = function (token) {\n if (!token) return false\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return false\n\n node = node[token.charAt(i)]\n }\n\n return true\n}\n\n/**\n * Retrieve a node from the token store for a given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the node for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @see TokenStore.prototype.get\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.getNode = function (token) {\n if (!token) return {}\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return {}\n\n node = node[token.charAt(i)]\n }\n\n return node\n}\n\n/**\n * Retrieve the documents for a node for the given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.get = function (token, root) {\n return this.getNode(token, root).docs || {}\n}\n\nlunr.TokenStore.prototype.count = function (token, root) {\n return Object.keys(this.get(token, root)).length\n}\n\n/**\n * Remove the document identified by ref from the token in the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {String} ref The ref of the document to remove from this token.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.remove = function (token, ref) {\n if (!token) return\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!(token.charAt(i) in node)) return\n node = node[token.charAt(i)]\n }\n\n delete node.docs[ref]\n}\n\n/**\n * Find all the possible suffixes of the passed token using tokens\n * currently in the store.\n *\n * @param {String} token The token to expand.\n * @returns {Array}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.expand = function (token, memo) {\n var root = this.getNode(token),\n docs = root.docs || {},\n memo = memo || []\n\n if (Object.keys(docs).length) memo.push(token)\n\n Object.keys(root)\n .forEach(function (key) {\n if (key === 'docs') return\n\n memo.concat(this.expand(token + key, memo))\n }, this)\n\n return memo\n}\n\n/**\n * Returns a representation of the token store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.toJSON = function () {\n return {\n root: this.root,\n length: this.length\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/lunr/lunr.js\n ** module id = 19\n ** module chunks = 0\n **/","export default {\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-ac\",\"flag-ad\",\"flag-ae\",\"flag-af\",\"flag-ag\",\"flag-ai\",\"flag-al\",\"flag-am\",\"flag-ao\",\"flag-aq\",\"flag-ar\",\"flag-as\",\"flag-at\",\"flag-au\",\"flag-aw\",\"flag-ax\",\"flag-az\",\"flag-ba\",\"flag-bb\",\"flag-bd\",\"flag-be\",\"flag-bf\",\"flag-bg\",\"flag-bh\",\"flag-bi\",\"flag-bj\",\"flag-bl\",\"flag-bm\",\"flag-bn\",\"flag-bo\",\"flag-bq\",\"flag-br\",\"flag-bs\",\"flag-bt\",\"flag-bv\",\"flag-bw\",\"flag-by\",\"flag-bz\",\"flag-ca\",\"flag-cc\",\"flag-cd\",\"flag-cf\",\"flag-cg\",\"flag-ch\",\"flag-ci\",\"flag-ck\",\"flag-cl\",\"flag-cm\",\"flag-cn\",\"flag-co\",\"flag-cp\",\"flag-cr\",\"flag-cu\",\"flag-cv\",\"flag-cw\",\"flag-cx\",\"flag-cy\",\"flag-cz\",\"flag-de\",\"flag-dg\",\"flag-dj\",\"flag-dk\",\"flag-dm\",\"flag-do\",\"flag-dz\",\"flag-ea\",\"flag-ec\",\"flag-ee\",\"flag-eg\",\"flag-eh\",\"flag-er\",\"flag-es\",\"flag-et\",\"flag-eu\",\"flag-fi\",\"flag-fj\",\"flag-fk\",\"flag-fm\",\"flag-fo\",\"flag-fr\",\"flag-ga\",\"flag-gb\",\"flag-gd\",\"flag-ge\",\"flag-gf\",\"flag-gg\",\"flag-gh\",\"flag-gi\",\"flag-gl\",\"flag-gm\",\"flag-gn\",\"flag-gp\",\"flag-gq\",\"flag-gr\",\"flag-gs\",\"flag-gt\",\"flag-gu\",\"flag-gw\",\"flag-gy\",\"flag-hk\",\"flag-hm\",\"flag-hn\",\"flag-hr\",\"flag-ht\",\"flag-hu\",\"flag-ic\",\"flag-id\",\"flag-ie\",\"flag-il\",\"flag-im\",\"flag-in\",\"flag-io\",\"flag-iq\",\"flag-ir\",\"flag-is\",\"flag-it\",\"flag-je\",\"flag-jm\",\"flag-jo\",\"flag-jp\",\"flag-ke\",\"flag-kg\",\"flag-kh\",\"flag-ki\",\"flag-km\",\"flag-kn\",\"flag-kp\",\"flag-kr\",\"flag-kw\",\"flag-ky\",\"flag-kz\",\"flag-la\",\"flag-lb\",\"flag-lc\",\"flag-li\",\"flag-lk\",\"flag-lr\",\"flag-ls\",\"flag-lt\",\"flag-lu\",\"flag-lv\",\"flag-ly\",\"flag-ma\",\"flag-mc\",\"flag-md\",\"flag-me\",\"flag-mf\",\"flag-mg\",\"flag-mh\",\"flag-mk\",\"flag-ml\",\"flag-mm\",\"flag-mn\",\"flag-mo\",\"flag-mp\",\"flag-mq\",\"flag-mr\",\"flag-ms\",\"flag-mt\",\"flag-mu\",\"flag-mv\",\"flag-mw\",\"flag-mx\",\"flag-my\",\"flag-mz\",\"flag-na\",\"flag-nc\",\"flag-ne\",\"flag-nf\",\"flag-ng\",\"flag-ni\",\"flag-nl\",\"flag-no\",\"flag-np\",\"flag-nr\",\"flag-nu\",\"flag-nz\",\"flag-om\",\"flag-pa\",\"flag-pe\",\"flag-pf\",\"flag-pg\",\"flag-ph\",\"flag-pk\",\"flag-pl\",\"flag-pm\",\"flag-pn\",\"flag-pr\",\"flag-ps\",\"flag-pt\",\"flag-pw\",\"flag-py\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-rs\",\"flag-ru\",\"flag-rw\",\"flag-sa\",\"flag-sb\",\"flag-sc\",\"flag-sd\",\"flag-se\",\"flag-sg\",\"flag-sh\",\"flag-si\",\"flag-sj\",\"flag-sk\",\"flag-sl\",\"flag-sm\",\"flag-sn\",\"flag-so\",\"flag-sr\",\"flag-ss\",\"flag-st\",\"flag-sv\",\"flag-sx\",\"flag-sy\",\"flag-sz\",\"flag-ta\",\"flag-tc\",\"flag-td\",\"flag-tf\",\"flag-tg\",\"flag-th\",\"flag-tj\",\"flag-tk\",\"flag-tl\",\"flag-tm\",\"flag-tn\",\"flag-to\",\"flag-tr\",\"flag-tt\",\"flag-tv\",\"flag-tw\",\"flag-tz\",\"flag-ua\",\"flag-ug\",\"flag-um\",\"flag-us\",\"flag-uy\",\"flag-uz\",\"flag-va\",\"flag-vc\",\"flag-ve\",\"flag-vg\",\"flag-vi\",\"flag-vn\",\"flag-vu\",\"flag-wf\",\"flag-ws\",\"flag-xk\",\"flag-ye\",\"flag-yt\",\"flag-za\",\"flag-zm\",\"flag-zw\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":D\"]},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters AF\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters AX\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters AL\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters DZ\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters AS\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"=)\",\"=-)\"]},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"C:\",\"c:\",\":D\",\":-D\"]},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters AD\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"category\":\"Symbols\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"\",\":->\"]},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters AQ\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters AG\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";)\",\";-)\"]},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters AR\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\"]},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\",\"(:\",\":-)\"]},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters AM\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters AW\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters AU\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters AT\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o)\"]},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters AZ\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters BS\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters BH\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters BD\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters BB\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters BY\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"]},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters BE\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters BZ\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters BJ\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"]},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters BM\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters BT\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"8)\"]},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters BO\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters BQ\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters BA\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters BW\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters BR\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":|\",\":-|\"]},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters IO\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters VG\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":(\"]},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters BN\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters BG\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters BF\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters BI\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"):\",\":(\",\":-(\"]},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters CV\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters KH\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\">:(\",\">:-(\"]},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters CM\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters CA\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"]},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters IC\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters KY\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters CF\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters TD\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters CL\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters CN\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters CX\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters CC\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters CO\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o\",\":-o\",\":O\",\":-O\"]},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters KM\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters CG\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters CD\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters CK\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters CR\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters HR\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"D:\"]},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters CU\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters CW\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters CY\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters CZ\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters DK\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters DJ\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters DM\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters DO\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters EC\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters EG\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters SV\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters GQ\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters ER\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters EE\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters ET\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters EU\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters FK\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters FO\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters FJ\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters FI\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters FR\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters GF\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters PF\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters TF\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters GA\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters GM\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters GE\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters DE\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters GH\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters GI\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters GR\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters GL\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters GD\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters GP\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters GU\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters GT\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters GG\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters GN\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters GW\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters GY\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters HT\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters HN\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters HK\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters HU\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters IS\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters IN\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters ID\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters IR\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters IQ\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters IE\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters IM\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters IL\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters IT\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters CI\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters JM\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters JP\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters JE\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters JO\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters KZ\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters KE\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters KI\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters XK\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters KW\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters KG\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters LA\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters LV\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters LB\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters LS\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters LR\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters LY\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters LI\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters LT\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters LU\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters MO\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters MK\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters MG\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters MW\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters MY\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}},\"emoticons\":[]},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters MV\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters ML\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters MT\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters MH\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters MQ\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters MR\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters MU\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters YT\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters MX\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters FM\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters MD\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters MC\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters MN\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters ME\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters MS\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters MA\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters MZ\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false,\"emoticons\":[]},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters MM\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters NA\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters NR\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters NP\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters NL\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters NC\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters NZ\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters NI\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters NE\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters NG\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters NU\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters NF\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters MP\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters KP\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters NO\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters OM\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters PK\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters PW\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters PS\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters PA\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters PG\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters PY\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters PE\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters PH\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters PN\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters PL\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters PT\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters PR\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters QA\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters RE\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters RO\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters RU\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":*\",\":-*\"]},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters RW\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters BL\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters SH\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters KN\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters LC\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters PM\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters VC\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters WS\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters SM\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters ST\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters SA\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters SN\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters RS\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters SC\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters SL\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters SG\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters SX\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters SK\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters SI\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters SB\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters SO\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters ZA\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters GS\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters KR\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters SS\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters ES\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters LK\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters SD\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters SR\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters SZ\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters SE\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters CH\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters SY\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters TW\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters TJ\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters TZ\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters TH\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters TL\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters TG\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters TK\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters TO\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters TT\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters TN\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters TR\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters TM\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters TC\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters TV\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters UG\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters UA\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters AE\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters GB\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters US\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters VI\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters UY\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters UZ\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters VU\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters VA\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters VE\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters VN\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters WF\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters EH\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters YE\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters ZM\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters ZW\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters AC\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters BV\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters CP\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters DG\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters EA\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters HM\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters MF\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters SJ\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters TA\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters UM\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}}}\n\n\n/** WEBPACK FOOTER **\n ** ./data/index.js\n **/","import {store} from '.'\n\nlet frequently = store.get('frequently') || {}\n\nfunction add(emoji) {\n var { id } = emoji\n\n frequently[id] || (frequently[id] = 0)\n frequently[id] += 1\n\n store.set('last', id)\n store.set('frequently', frequently)\n}\n\nfunction get(quantity) {\n var sorted = Object.keys(frequently).sort((a, b) => frequently[a] - frequently[b]).reverse(),\n sliced = sorted.slice(0, quantity),\n last = store.get('last')\n\n if (last && sliced.indexOf(last) == -1) {\n sliced.pop()\n sliced.push(last)\n }\n\n return sliced\n}\n\nexport default { add, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/frequently.js\n **/","import React from 'react'\nimport data from '../../data'\n\nconst SHEET_COLUMNS = 41\nconst SKINS = [\n '1F3FA', '1F3FB', '1F3FC',\n '1F3FD', '1F3FE', '1F3FF',\n]\n\nexport default class Emoji extends React.Component {\n constructor(props) {\n super(props)\n\n var emojiData = this.getEmojiData()\n this.hasSkinVariations = !!emojiData.skin_variations\n }\n\n shouldComponentUpdate(nextProps) {\n return (\n this.hasSkinVariations && nextProps.skin != this.props.skin ||\n nextProps.size != this.props.size ||\n nextProps.sheetURL != this.props.sheetURL\n )\n }\n\n getEmojiData() {\n var { emoji, skin, sheetURL } = this.props,\n emojiData = emoji\n\n if (typeof emoji == 'string') {\n emojiData = data.emojis[emoji]\n }\n\n if (this.hasSkinVariations && skin > 1) {\n emojiData = JSON.parse(JSON.stringify(data.emojis[emoji]))\n\n var skinKey = SKINS[skin - 1],\n variationKey = `${emojiData.unified}-${skinKey}`,\n variationData = emojiData.skin_variations[variationKey],\n kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n kit = kitMatches[0]\n\n if (variationData[`has_img_${kit}`]) {\n emojiData.skin_tone = skin\n\n for (let k in variationData) {\n let v = variationData[k]\n emojiData[k] = v\n }\n }\n }\n\n return emojiData\n }\n\n getPosition(emojiData) {\n var { sheet_x, sheet_y } = emojiData,\n multiply = 100 / (SHEET_COLUMNS - 1)\n\n return `${multiply * sheet_x}% ${multiply * sheet_y}%`\n }\n\n getNative(emojiData) {\n var { unified } = emojiData,\n unicodes = unified.split('-'),\n codePoints = unicodes.map((u) => `0x${u}`)\n\n return String.fromCodePoint(...codePoints)\n }\n\n handleClick(emojiData) {\n var { onClick } = this.props,\n { name, short_names, skin_tone, emoticons, unified } = emojiData,\n id = short_names[0],\n colons = `:${id}:`\n\n if (skin_tone) {\n colons += `:skin-tone-${skin_tone}:`\n }\n\n onClick({\n id,\n name,\n colons,\n emoticons,\n skin: skin_tone || 1,\n native: this.getNative(emojiData),\n })\n }\n\n render() {\n var { sheetURL, size, onOver, onLeave } = this.props,\n emojiData = this.getEmojiData()\n\n return this.handleClick(emojiData)}\n onMouseEnter={() => onOver(emojiData)}\n onMouseLeave={() => onLeave(emojiData)}\n className='emoji-picker-emoji'>\n \n \n \n }\n}\n\nEmoji.propTypes = {\n skin: React.PropTypes.number,\n onOver: React.PropTypes.func,\n onLeave: React.PropTypes.func,\n onClick: React.PropTypes.func,\n size: React.PropTypes.number.isRequired,\n sheetURL: React.PropTypes.string.isRequired,\n emoji: React.PropTypes.oneOfType([\n React.PropTypes.string,\n React.PropTypes.object,\n ]).isRequired,\n}\n\nEmoji.defaultProps = {\n skin: 1,\n onOver: (() => {}),\n onLeave: (() => {}),\n onClick: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/emoji.js\n **/","import '../vendor/raf-polyfill'\n\nimport React from 'react'\nimport data from '../../data'\n\nimport {store, frequently} from '../utils'\nimport {Anchors, Category, Preview, Search} from '.'\n\nconst RECENT_CATEGORY = { name: 'Recent', emojis: null }\nconst SEARCH_CATEGORY = { name: 'Search', emojis: null, anchor: RECENT_CATEGORY }\n\nconst CATEGORIES = [\n SEARCH_CATEGORY,\n RECENT_CATEGORY,\n].concat(data.categories)\n\nexport default class Picker extends React.Component {\n constructor(props) {\n super(props)\n this.testStickyPosition()\n\n this.state = {\n skin: store.get('skin') || props.skin,\n }\n }\n\n componentWillReceiveProps(props) {\n if (props.skin && !store.get('skin')) {\n this.setState({ skin: props.skin })\n }\n }\n\n componentDidUpdate() {\n this.updateCategoriesSize()\n this.handleScroll()\n }\n\n testStickyPosition() {\n var stickyTestElement = document.createElement('div')\n for (let prefix of ['', '-webkit-', '-ms-', '-moz-', '-o-']) {\n stickyTestElement.style.position = `${prefix}sticky`\n }\n\n this.hasStickyPosition = !!stickyTestElement.style.position.length\n }\n\n handleEmojiOver(emoji) {\n var { preview } = this.refs\n preview.setState({ emoji: emoji })\n clearTimeout(this.leaveTimeout)\n }\n\n handleEmojiLeave(emoji) {\n this.leaveTimeout = setTimeout(() => {\n var { preview } = this.refs\n preview.setState({ emoji: null })\n }, 16)\n }\n\n handleEmojiClick(emoji) {\n this.props.onClick(emoji)\n frequently.add(emoji)\n\n var component = this.refs['category-1']\n if (component) {\n let maxMargin = component.maxMargin\n component.forceUpdate()\n\n window.requestAnimationFrame(() => {\n component.memoizeSize()\n if (maxMargin == component.maxMargin) return\n\n this.updateCategoriesSize()\n this.handleScrollPaint()\n })\n }\n }\n\n handleScroll() {\n if (!this.waitingForPaint) {\n this.waitingForPaint = true\n window.requestAnimationFrame(this.handleScrollPaint.bind(this))\n }\n }\n\n handleScrollPaint() {\n this.waitingForPaint = false\n\n var target = this.refs.scroll,\n scrollTop = target.scrollTop,\n scrollingDown = scrollTop > (this.scrollTop || 0),\n activeCategory = null,\n minTop = 0\n\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let ii = scrollingDown ? (CATEGORIES.length - 1 - i) : i,\n category = CATEGORIES[ii],\n component = this.refs[`category-${ii}`]\n\n if (!minTop || component.top < minTop) {\n if (component.top > 0) {\n minTop = component.top\n }\n }\n\n if (component) {\n let active = component.handleScroll(scrollTop)\n if (active && !activeCategory) {\n if (category.anchor) category = category.anchor\n activeCategory = category\n }\n }\n }\n\n if (scrollTop < minTop) {\n activeCategory = RECENT_CATEGORY\n }\n\n if (activeCategory) {\n let { anchors } = this.refs,\n { name: categoryName } = activeCategory\n\n if (anchors.state.selected != categoryName) {\n anchors.setState({ selected: categoryName })\n }\n }\n\n this.scrollTop = scrollTop\n }\n\n handleSearch(emojis) {\n SEARCH_CATEGORY.emojis = emojis\n\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let component = this.refs[`category-${i}`]\n\n if (component && component.props.name != 'Search') {\n let display = emojis ? 'none' : null\n component.updateDisplay(display)\n }\n }\n\n this.forceUpdate()\n }\n\n handleAnchorClick(category, i) {\n var component = this.refs[`category-${i}`],\n { scroll, anchors } = this.refs,\n scrollToComponent = null\n\n scrollToComponent = () => {\n if (component) {\n let { top } = component\n\n if (category.name == 'Recent') {\n top = 0\n } else {\n top += 1\n }\n\n scroll.scrollTop = top\n }\n }\n\n if (SEARCH_CATEGORY.emojis) {\n this.handleSearch(null)\n this.refs.search.clear()\n\n window.requestAnimationFrame(scrollToComponent)\n } else {\n scrollToComponent()\n }\n }\n\n handleSkinChange(skin) {\n var newState = { skin: skin }\n\n this.setState(newState)\n store.update(newState)\n }\n\n updateCategoriesSize() {\n for (let i = 0, l = CATEGORIES.length; i < l; i++) {\n let component = this.refs[`category-${i}`]\n if (component) component.memoizeSize()\n }\n }\n\n render() {\n var { perLine, emojiSize, sheetURL, style } = this.props,\n { skin } = this.state,\n width = (perLine * (emojiSize + 12)) + 12 + 2\n\n return
\n
\n \n
\n\n
\n \n\n {CATEGORIES.map((category, i) => {\n return \n })}\n
\n\n
\n \n
\n
\n }\n}\n\nPicker.propTypes = {\n onClick: React.PropTypes.func,\n skin: React.PropTypes.number,\n perLine: React.PropTypes.number,\n emojiSize: React.PropTypes.number,\n style: React.PropTypes.object,\n sheetURL: React.PropTypes.string.isRequired,\n}\n\nPicker.defaultProps = {\n onClick: (() => {}),\n emojiSize: 24,\n perLine: 9,\n style: {},\n skin: 1,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/picker.js\n **/","// http://paulirish.com/2011/requestanimationframe-for-smart-animating/\n// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating\n\n// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel\n\n// MIT license\n\n(function() {\n var lastTime = 0;\n var vendors = ['ms', 'moz', 'webkit', 'o'];\n for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {\n window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];\n window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']\n || window[vendors[x]+'CancelRequestAnimationFrame'];\n }\n\n if (!window.requestAnimationFrame)\n window.requestAnimationFrame = function(callback, element) {\n var currTime = new Date().getTime();\n var timeToCall = Math.max(0, 16 - (currTime - lastTime));\n var id = window.setTimeout(function() { callback(currTime + timeToCall); },\n timeToCall);\n lastTime = currTime + timeToCall;\n return id;\n };\n\n if (!window.cancelAnimationFrame)\n window.cancelAnimationFrame = function(id) {\n clearTimeout(id);\n };\n}());\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/vendor/raf-polyfill.js\n **/","import React from 'react'\nimport {Emoji, Skins} from '.'\n\nexport default class Preview extends React.Component {\n constructor(props) {\n super(props)\n this.state = { emoji: null }\n }\n\n render() {\n var { emoji } = this.state,\n { emojiProps, skinsProps } = this.props\n\n if (emoji) {\n var { emoticons } = emoji,\n knownEmoticons = [],\n listedEmoticons = []\n\n for (let emoticon of emoticons) {\n if (knownEmoticons.indexOf(emoticon.toLowerCase()) == -1) {\n knownEmoticons.push(emoticon.toLowerCase())\n listedEmoticons.push(emoticon)\n }\n }\n\n return
\n
\n \n
\n\n
\n {emoji.name}
\n \n {emoji.short_names.map((short_name) =>\n :{short_name}:\n )}
\n {listedEmoticons.map((emoticon) =>\n {emoticon}\n )}\n
\n
\n
\n } else {\n return
\n
\n \n
\n\n
\n \n EmojiPicker\n \n
\n\n
\n \n
\n
\n }\n }\n}\n\nPreview.propTypes = {\n emojiProps: React.PropTypes.object.isRequired,\n skinsProps: React.PropTypes.object.isRequired,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/preview.js\n **/","import React from 'react'\nimport {emojiIndex} from '../utils'\n\nexport default class Search extends React.Component {\n handleChange() {\n var { input } = this.refs,\n value = input.value\n\n this.props.onSearch(emojiIndex.search(value))\n }\n\n clear() {\n this.refs.input.value = ''\n }\n\n render() {\n return \n }\n}\n\nSearch.propTypes = {\n onSearch: React.PropTypes.func,\n maxResults: React.PropTypes.number,\n}\n\nSearch.defaultProps = {\n onSearch: (() => {}),\n maxResults: 75,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/search.js\n **/","import React from 'react'\n\nexport default class Skins extends React.Component {\n constructor(props) {\n super(props)\n\n this.state = {\n opened: false,\n }\n }\n\n handleClick(skin) {\n var { onChange } = this.props\n\n if (!this.state.opened) {\n this.setState({ opened: true })\n } else {\n onChange(skin)\n this.setState({ opened: false })\n }\n }\n\n render() {\n var { skin } = this.props,\n { opened } = this.state\n\n return
\n
\n {Array(6).fill().map((_, i) => {\n var skinTone = i + 1,\n selected = skinTone == skin\n\n return \n this.handleClick(skinTone)}\n className={`emoji-picker-skin emoji-picker-skin-tone-${skinTone}`}>\n \n \n })}\n
\n
\n }\n}\n\nSkins.propTypes = {\n onChange: React.PropTypes.func,\n skin: React.PropTypes.number.isRequired,\n}\n\nSkins.defaultProps = {\n onChange: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/skins.js\n **/"],"sourceRoot":""} \ No newline at end of file diff --git a/package.json b/package.json index 28c4997..ae5ab79 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "emoji-picker", - "version": "0.0.1", - "description": "", + "version": "0.1.0", + "description": "Customizable Slack-like emoji picker for React", "main": "dist/emoji-picker.js", "repository": { "type": "git",