UNPKG

docute-emojify

Version:

Docute plugin for transforming emoji aliases within Markdown.

1,674 lines (1,646 loc) โ€ข 42 kB
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global.docuteEmojify = factory()); }(this, (function () { 'use strict'; /* object-assign (c) Sindre Sorhus @license MIT */ /* eslint-disable no-unused-vars */ var getOwnPropertySymbols = Object.getOwnPropertySymbols; var hasOwnProperty = Object.prototype.hasOwnProperty; var propIsEnumerable = Object.prototype.propertyIsEnumerable; function toObject(val) { if (val === null || val === undefined) { throw new TypeError('Object.assign cannot be called with null or undefined'); } return Object(val); } function shouldUseNative() { try { if (!Object.assign) { return false; } // Detect buggy property enumeration order in older V8 versions. // https://bugs.chromium.org/p/v8/issues/detail?id=4118 var test1 = new String('abc'); // eslint-disable-line no-new-wrappers test1[5] = 'de'; if (Object.getOwnPropertyNames(test1)[0] === '5') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test2 = {}; for (var i = 0; i < 10; i++) { test2['_' + String.fromCharCode(i)] = i; } var order2 = Object.getOwnPropertyNames(test2).map(function (n) { return test2[n]; }); if (order2.join('') !== '0123456789') { return false; } // https://bugs.chromium.org/p/v8/issues/detail?id=3056 var test3 = {}; 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { test3[letter] = letter; }); if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') { return false; } return true; } catch (err) { // We don't expect any of the above to throw, but better to be safe. return false; } } var objectAssign = shouldUseNative() ? Object.assign : function (target, source) { var from; var to = toObject(target); var symbols; for (var s = 1; s < arguments.length; s++) { from = Object(arguments[s]); for (var key in from) { if (hasOwnProperty.call(from, key)) { to[key] = from[key]; } } if (getOwnPropertySymbols) { symbols = getOwnPropertySymbols(from); for (var i = 0; i < symbols.length; i++) { if (propIsEnumerable.call(from, symbols[i])) { to[symbols[i]] = from[symbols[i]]; } } } } return to; }; /** * Mapping of emoji aliases to characters. * @type {Object} */ var emoji = { 100: '๐Ÿ’ฏ', 1234: '๐Ÿ”ข', grinning: '๐Ÿ˜€', smiley: '๐Ÿ˜ƒ', smile: '๐Ÿ˜„', grin: '๐Ÿ˜', laughing: '๐Ÿ˜†', satisfied: '๐Ÿ˜†', sweat_smile: '๐Ÿ˜…', joy: '๐Ÿ˜‚', rofl: '๐Ÿคฃ', relaxed: 'โ˜บ๏ธ', blush: '๐Ÿ˜Š', innocent: '๐Ÿ˜‡', slightly_smiling_face: '๐Ÿ™‚', upside_down_face: '๐Ÿ™ƒ', wink: '๐Ÿ˜‰', relieved: '๐Ÿ˜Œ', heart_eyes: '๐Ÿ˜', kissing_heart: '๐Ÿ˜˜', kissing: '๐Ÿ˜—', kissing_smiling_eyes: '๐Ÿ˜™', kissing_closed_eyes: '๐Ÿ˜š', yum: '๐Ÿ˜‹', stuck_out_tongue_winking_eye: '๐Ÿ˜œ', stuck_out_tongue_closed_eyes: '๐Ÿ˜', stuck_out_tongue: '๐Ÿ˜›', money_mouth_face: '๐Ÿค‘', hugs: '๐Ÿค—', nerd_face: '๐Ÿค“', sunglasses: '๐Ÿ˜Ž', clown_face: '๐Ÿคก', cowboy_hat_face: '๐Ÿค ', smirk: '๐Ÿ˜', unamused: '๐Ÿ˜’', disappointed: '๐Ÿ˜ž', pensive: '๐Ÿ˜”', worried: '๐Ÿ˜Ÿ', confused: '๐Ÿ˜•', slightly_frowning_face: '๐Ÿ™', frowning_face: 'โ˜น๏ธ', persevere: '๐Ÿ˜ฃ', confounded: '๐Ÿ˜–', tired_face: '๐Ÿ˜ซ', weary: '๐Ÿ˜ฉ', triumph: '๐Ÿ˜ค', angry: '๐Ÿ˜ ', rage: '๐Ÿ˜ก', pout: '๐Ÿ˜ก', no_mouth: '๐Ÿ˜ถ', neutral_face: '๐Ÿ˜', expressionless: '๐Ÿ˜‘', hushed: '๐Ÿ˜ฏ', frowning: '๐Ÿ˜ฆ', anguished: '๐Ÿ˜ง', open_mouth: '๐Ÿ˜ฎ', astonished: '๐Ÿ˜ฒ', dizzy_face: '๐Ÿ˜ต', flushed: '๐Ÿ˜ณ', scream: '๐Ÿ˜ฑ', fearful: '๐Ÿ˜จ', cold_sweat: '๐Ÿ˜ฐ', cry: '๐Ÿ˜ข', disappointed_relieved: '๐Ÿ˜ฅ', drooling_face: '๐Ÿคค', sob: '๐Ÿ˜ญ', sweat: '๐Ÿ˜“', sleepy: '๐Ÿ˜ช', sleeping: '๐Ÿ˜ด', roll_eyes: '๐Ÿ™„', thinking: '๐Ÿค”', lying_face: '๐Ÿคฅ', grimacing: '๐Ÿ˜ฌ', zipper_mouth_face: '๐Ÿค', nauseated_face: '๐Ÿคข', sneezing_face: '๐Ÿคง', mask: '๐Ÿ˜ท', face_with_thermometer: '๐Ÿค’', face_with_head_bandage: '๐Ÿค•', smiling_imp: '๐Ÿ˜ˆ', imp: '๐Ÿ‘ฟ', japanese_ogre: '๐Ÿ‘น', japanese_goblin: '๐Ÿ‘บ', hankey: '๐Ÿ’ฉ', poop: '๐Ÿ’ฉ', shit: '๐Ÿ’ฉ', ghost: '๐Ÿ‘ป', skull: '๐Ÿ’€', skull_and_crossbones: 'โ˜ ๏ธ', alien: '๐Ÿ‘ฝ', space_invader: '๐Ÿ‘พ', robot: '๐Ÿค–', jack_o_lantern: '๐ŸŽƒ', smiley_cat: '๐Ÿ˜บ', smile_cat: '๐Ÿ˜ธ', joy_cat: '๐Ÿ˜น', heart_eyes_cat: '๐Ÿ˜ป', smirk_cat: '๐Ÿ˜ผ', kissing_cat: '๐Ÿ˜ฝ', scream_cat: '๐Ÿ™€', crying_cat_face: '๐Ÿ˜ฟ', pouting_cat: '๐Ÿ˜พ', open_hands: '๐Ÿ‘', raised_hands: '๐Ÿ™Œ', clap: '๐Ÿ‘', pray: '๐Ÿ™', handshake: '๐Ÿค', '+1': '๐Ÿ‘', thumbsup: '๐Ÿ‘', '-1': '๐Ÿ‘Ž', thumbsdown: '๐Ÿ‘Ž', fist_oncoming: '๐Ÿ‘Š', facepunch: '๐Ÿ‘Š', punch: '๐Ÿ‘Š', fist_raised: 'โœŠ', fist: 'โœŠ', fist_left: '๐Ÿค›', fist_right: '๐Ÿคœ', crossed_fingers: '๐Ÿคž', v: 'โœŒ๏ธ', metal: '๐Ÿค˜', ok_hand: '๐Ÿ‘Œ', point_left: '๐Ÿ‘ˆ', point_right: '๐Ÿ‘‰', point_up_2: '๐Ÿ‘†', point_down: '๐Ÿ‘‡', point_up: 'โ˜๏ธ', hand: 'โœ‹', raised_hand: 'โœ‹', raised_back_of_hand: '๐Ÿคš', raised_hand_with_fingers_splayed: '๐Ÿ–', vulcan_salute: '๐Ÿ––', wave: '๐Ÿ‘‹', call_me_hand: '๐Ÿค™', muscle: '๐Ÿ’ช', middle_finger: '๐Ÿ–•', fu: '๐Ÿ–•', writing_hand: 'โœ๏ธ', selfie: '๐Ÿคณ', nail_care: '๐Ÿ’…', ring: '๐Ÿ’', lipstick: '๐Ÿ’„', kiss: '๐Ÿ’‹', lips: '๐Ÿ‘„', tongue: '๐Ÿ‘…', ear: '๐Ÿ‘‚', nose: '๐Ÿ‘ƒ', footprints: '๐Ÿ‘ฃ', eye: '๐Ÿ‘', eyes: '๐Ÿ‘€', speaking_head: '๐Ÿ—ฃ', bust_in_silhouette: '๐Ÿ‘ค', busts_in_silhouette: '๐Ÿ‘ฅ', baby: '๐Ÿ‘ถ', boy: '๐Ÿ‘ฆ', girl: '๐Ÿ‘ง', man: '๐Ÿ‘จ', woman: '๐Ÿ‘ฉ', blonde_woman: '๐Ÿ‘ฑโ€โ™€', blonde_man: '๐Ÿ‘ฑ', person_with_blond_hair: '๐Ÿ‘ฑ', older_man: '๐Ÿ‘ด', older_woman: '๐Ÿ‘ต', man_with_gua_pi_mao: '๐Ÿ‘ฒ', woman_with_turban: '๐Ÿ‘ณโ€โ™€', man_with_turban: '๐Ÿ‘ณ', policewoman: '๐Ÿ‘ฎโ€โ™€', policeman: '๐Ÿ‘ฎ', cop: '๐Ÿ‘ฎ', construction_worker_woman: '๐Ÿ‘ทโ€โ™€', construction_worker_man: '๐Ÿ‘ท', construction_worker: '๐Ÿ‘ท', guardswoman: '๐Ÿ’‚โ€โ™€', guardsman: '๐Ÿ’‚', female_detective: '๐Ÿ•ต๏ธโ€โ™€๏ธ', male_detective: '๐Ÿ•ต', detective: '๐Ÿ•ต', woman_health_worker: '๐Ÿ‘ฉโ€โš•', man_health_worker: '๐Ÿ‘จโ€โš•', woman_farmer: '๐Ÿ‘ฉโ€๐ŸŒพ', man_farmer: '๐Ÿ‘จโ€๐ŸŒพ', woman_cook: '๐Ÿ‘ฉโ€๐Ÿณ', man_cook: '๐Ÿ‘จโ€๐Ÿณ', woman_student: '๐Ÿ‘ฉโ€๐ŸŽ“', man_student: '๐Ÿ‘จโ€๐ŸŽ“', woman_singer: '๐Ÿ‘ฉโ€๐ŸŽค', man_singer: '๐Ÿ‘จโ€๐ŸŽค', woman_teacher: '๐Ÿ‘ฉโ€๐Ÿซ', man_teacher: '๐Ÿ‘จโ€๐Ÿซ', woman_factory_worker: '๐Ÿ‘ฉโ€๐Ÿญ', man_factory_worker: '๐Ÿ‘จโ€๐Ÿญ', woman_technologist: '๐Ÿ‘ฉโ€๐Ÿ’ป', man_technologist: '๐Ÿ‘จโ€๐Ÿ’ป', woman_office_worker: '๐Ÿ‘ฉโ€๐Ÿ’ผ', man_office_worker: '๐Ÿ‘จโ€๐Ÿ’ผ', woman_mechanic: '๐Ÿ‘ฉโ€๐Ÿ”ง', man_mechanic: '๐Ÿ‘จโ€๐Ÿ”ง', woman_scientist: '๐Ÿ‘ฉโ€๐Ÿ”ฌ', man_scientist: '๐Ÿ‘จโ€๐Ÿ”ฌ', woman_artist: '๐Ÿ‘ฉโ€๐ŸŽจ', man_artist: '๐Ÿ‘จโ€๐ŸŽจ', woman_firefighter: '๐Ÿ‘ฉโ€๐Ÿš’', man_firefighter: '๐Ÿ‘จโ€๐Ÿš’', woman_pilot: '๐Ÿ‘ฉโ€โœˆ', man_pilot: '๐Ÿ‘จโ€โœˆ', woman_astronaut: '๐Ÿ‘ฉโ€๐Ÿš€', man_astronaut: '๐Ÿ‘จโ€๐Ÿš€', woman_judge: '๐Ÿ‘ฉโ€โš–', man_judge: '๐Ÿ‘จโ€โš–', mrs_claus: '๐Ÿคถ', santa: '๐ŸŽ…', princess: '๐Ÿ‘ธ', prince: '๐Ÿคด', bride_with_veil: '๐Ÿ‘ฐ', man_in_tuxedo: '๐Ÿคต', angel: '๐Ÿ‘ผ', pregnant_woman: '๐Ÿคฐ', bowing_woman: '๐Ÿ™‡โ€โ™€', bowing_man: '๐Ÿ™‡', bow: '๐Ÿ™‡', tipping_hand_woman: '๐Ÿ’', information_desk_person: '๐Ÿ’', sassy_woman: '๐Ÿ’', tipping_hand_man: '๐Ÿ’โ€โ™‚', sassy_man: '๐Ÿ’โ€โ™‚', no_good_woman: '๐Ÿ™…', no_good: '๐Ÿ™…', ng_woman: '๐Ÿ™…', no_good_man: '๐Ÿ™…โ€โ™‚', ng_man: '๐Ÿ™…โ€โ™‚', ok_woman: '๐Ÿ™†', ok_man: '๐Ÿ™†โ€โ™‚', raising_hand_woman: '๐Ÿ™‹', raising_hand: '๐Ÿ™‹', raising_hand_man: '๐Ÿ™‹โ€โ™‚', woman_facepalming: '๐Ÿคฆโ€โ™€', man_facepalming: '๐Ÿคฆโ€โ™‚', woman_shrugging: '๐Ÿคทโ€โ™€', man_shrugging: '๐Ÿคทโ€โ™‚', pouting_woman: '๐Ÿ™Ž', person_with_pouting_face: '๐Ÿ™Ž', pouting_man: '๐Ÿ™Žโ€โ™‚', frowning_woman: '๐Ÿ™', person_frowning: '๐Ÿ™', frowning_man: '๐Ÿ™โ€โ™‚', haircut_woman: '๐Ÿ’‡', haircut: '๐Ÿ’‡', haircut_man: '๐Ÿ’‡โ€โ™‚', massage_woman: '๐Ÿ’†', massage: '๐Ÿ’†', massage_man: '๐Ÿ’†โ€โ™‚', business_suit_levitating: '๐Ÿ•ด', dancer: '๐Ÿ’ƒ', man_dancing: '๐Ÿ•บ', dancing_women: '๐Ÿ‘ฏ', dancers: '๐Ÿ‘ฏ', dancing_men: '๐Ÿ‘ฏโ€โ™‚', walking_woman: '๐Ÿšถโ€โ™€', walking_man: '๐Ÿšถ', walking: '๐Ÿšถ', running_woman: '๐Ÿƒโ€โ™€', running_man: '๐Ÿƒ', runner: '๐Ÿƒ', running: '๐Ÿƒ', couple: '๐Ÿ‘ซ', two_women_holding_hands: '๐Ÿ‘ญ', two_men_holding_hands: '๐Ÿ‘ฌ', couple_with_heart_woman_man: '๐Ÿ’‘', couple_with_heart: '๐Ÿ’‘', couple_with_heart_woman_woman: '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ', couple_with_heart_man_man: '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ', couplekiss_man_woman: '๐Ÿ’', couplekiss_woman_woman: '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ', couplekiss_man_man: '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ', family_man_woman_boy: '๐Ÿ‘ช', family: '๐Ÿ‘ช', family_man_woman_girl: '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', family_man_woman_girl_boy: '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', family_man_woman_boy_boy: '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', family_man_woman_girl_girl: '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', family_woman_woman_boy: '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ', family_woman_woman_girl: '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', family_woman_woman_girl_boy: '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', family_woman_woman_boy_boy: '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', family_woman_woman_girl_girl: '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', family_man_man_boy: '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ', family_man_man_girl: '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง', family_man_man_girl_boy: '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', family_man_man_boy_boy: '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', family_man_man_girl_girl: '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', family_woman_boy: '๐Ÿ‘ฉโ€๐Ÿ‘ฆ', family_woman_girl: '๐Ÿ‘ฉโ€๐Ÿ‘ง', family_woman_girl_boy: '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', family_woman_boy_boy: '๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', family_woman_girl_girl: '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', family_man_boy: '๐Ÿ‘จโ€๐Ÿ‘ฆ', family_man_girl: '๐Ÿ‘จโ€๐Ÿ‘ง', family_man_girl_boy: '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', family_man_boy_boy: '๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', family_man_girl_girl: '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', womans_clothes: '๐Ÿ‘š', shirt: '๐Ÿ‘•', tshirt: '๐Ÿ‘•', jeans: '๐Ÿ‘–', necktie: '๐Ÿ‘”', dress: '๐Ÿ‘—', bikini: '๐Ÿ‘™', kimono: '๐Ÿ‘˜', high_heel: '๐Ÿ‘ ', sandal: '๐Ÿ‘ก', boot: '๐Ÿ‘ข', mans_shoe: '๐Ÿ‘ž', shoe: '๐Ÿ‘ž', athletic_shoe: '๐Ÿ‘Ÿ', womans_hat: '๐Ÿ‘’', tophat: '๐ŸŽฉ', mortar_board: '๐ŸŽ“', crown: '๐Ÿ‘‘', rescue_worker_helmet: 'โ›‘', school_satchel: '๐ŸŽ’', pouch: '๐Ÿ‘', purse: '๐Ÿ‘›', handbag: '๐Ÿ‘œ', briefcase: '๐Ÿ’ผ', eyeglasses: '๐Ÿ‘“', dark_sunglasses: '๐Ÿ•ถ', closed_umbrella: '๐ŸŒ‚', open_umbrella: 'โ˜‚๏ธ', dog: '๐Ÿถ', cat: '๐Ÿฑ', mouse: '๐Ÿญ', hamster: '๐Ÿน', rabbit: '๐Ÿฐ', fox_face: '๐ŸฆŠ', bear: '๐Ÿป', panda_face: '๐Ÿผ', koala: '๐Ÿจ', tiger: '๐Ÿฏ', lion: '๐Ÿฆ', cow: '๐Ÿฎ', pig: '๐Ÿท', pig_nose: '๐Ÿฝ', frog: '๐Ÿธ', monkey_face: '๐Ÿต', see_no_evil: '๐Ÿ™ˆ', hear_no_evil: '๐Ÿ™‰', speak_no_evil: '๐Ÿ™Š', monkey: '๐Ÿ’', chicken: '๐Ÿ”', penguin: '๐Ÿง', bird: '๐Ÿฆ', baby_chick: '๐Ÿค', hatching_chick: '๐Ÿฃ', hatched_chick: '๐Ÿฅ', duck: '๐Ÿฆ†', eagle: '๐Ÿฆ…', owl: '๐Ÿฆ‰', bat: '๐Ÿฆ‡', wolf: '๐Ÿบ', boar: '๐Ÿ—', horse: '๐Ÿด', unicorn: '๐Ÿฆ„', bee: '๐Ÿ', honeybee: '๐Ÿ', bug: '๐Ÿ›', butterfly: '๐Ÿฆ‹', snail: '๐ŸŒ', shell: '๐Ÿš', beetle: '๐Ÿž', ant: '๐Ÿœ', spider: '๐Ÿ•ท', spider_web: '๐Ÿ•ธ', turtle: '๐Ÿข', snake: '๐Ÿ', lizard: '๐ŸฆŽ', scorpion: '๐Ÿฆ‚', crab: '๐Ÿฆ€', squid: '๐Ÿฆ‘', octopus: '๐Ÿ™', shrimp: '๐Ÿฆ', tropical_fish: '๐Ÿ ', fish: '๐ŸŸ', blowfish: '๐Ÿก', dolphin: '๐Ÿฌ', flipper: '๐Ÿฌ', shark: '๐Ÿฆˆ', whale: '๐Ÿณ', whale2: '๐Ÿ‹', crocodile: '๐ŸŠ', leopard: '๐Ÿ†', tiger2: '๐Ÿ…', water_buffalo: '๐Ÿƒ', ox: '๐Ÿ‚', cow2: '๐Ÿ„', deer: '๐ŸฆŒ', dromedary_camel: '๐Ÿช', camel: '๐Ÿซ', elephant: '๐Ÿ˜', rhinoceros: '๐Ÿฆ', gorilla: '๐Ÿฆ', racehorse: '๐ŸŽ', pig2: '๐Ÿ–', goat: '๐Ÿ', ram: '๐Ÿ', sheep: '๐Ÿ‘', dog2: '๐Ÿ•', poodle: '๐Ÿฉ', cat2: '๐Ÿˆ', rooster: '๐Ÿ“', turkey: '๐Ÿฆƒ', dove: '๐Ÿ•Š', rabbit2: '๐Ÿ‡', mouse2: '๐Ÿ', rat: '๐Ÿ€', chipmunk: '๐Ÿฟ', feet: '๐Ÿพ', paw_prints: '๐Ÿพ', 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: '๐Ÿ', mushroom: '๐Ÿ„', ear_of_rice: '๐ŸŒพ', bouquet: '๐Ÿ’', tulip: '๐ŸŒท', rose: '๐ŸŒน', wilted_flower: '๐Ÿฅ€', sunflower: '๐ŸŒป', blossom: '๐ŸŒผ', cherry_blossom: '๐ŸŒธ', hibiscus: '๐ŸŒบ', 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: '๐ŸŒ”', waxing_gibbous_moon: '๐ŸŒ”', new_moon_with_face: '๐ŸŒš', full_moon_with_face: '๐ŸŒ', sun_with_face: '๐ŸŒž', first_quarter_moon_with_face: '๐ŸŒ›', last_quarter_moon_with_face: '๐ŸŒœ', crescent_moon: '๐ŸŒ™', dizzy: '๐Ÿ’ซ', star: 'โญ๏ธ', star2: '๐ŸŒŸ', sparkles: 'โœจ', zap: 'โšก๏ธ', fire: '๐Ÿ”ฅ', boom: '๐Ÿ’ฅ', collision: '๐Ÿ’ฅ', comet: 'โ˜„', sunny: 'โ˜€๏ธ', sun_behind_small_cloud: '๐ŸŒค', partly_sunny: 'โ›…๏ธ', sun_behind_large_cloud: '๐ŸŒฅ', sun_behind_rain_cloud: '๐ŸŒฆ', rainbow: '๐ŸŒˆ', cloud: 'โ˜๏ธ', cloud_with_rain: '๐ŸŒง', cloud_with_lightning_and_rain: 'โ›ˆ', cloud_with_lightning: '๐ŸŒฉ', cloud_with_snow: '๐ŸŒจ', snowman_with_snow: 'โ˜ƒ๏ธ', snowman: 'โ›„๏ธ', snowflake: 'โ„๏ธ', wind_face: '๐ŸŒฌ', dash: '๐Ÿ’จ', tornado: '๐ŸŒช', fog: '๐ŸŒซ', ocean: '๐ŸŒŠ', droplet: '๐Ÿ’ง', sweat_drops: '๐Ÿ’ฆ', umbrella: 'โ˜”๏ธ', green_apple: '๐Ÿ', apple: '๐ŸŽ', pear: '๐Ÿ', tangerine: '๐ŸŠ', orange: '๐ŸŠ', mandarin: '๐ŸŠ', lemon: '๐Ÿ‹', banana: '๐ŸŒ', watermelon: '๐Ÿ‰', grapes: '๐Ÿ‡', strawberry: '๐Ÿ“', melon: '๐Ÿˆ', cherries: '๐Ÿ’', peach: '๐Ÿ‘', pineapple: '๐Ÿ', kiwi_fruit: '๐Ÿฅ', avocado: '๐Ÿฅ‘', tomato: '๐Ÿ…', eggplant: '๐Ÿ†', cucumber: '๐Ÿฅ’', carrot: '๐Ÿฅ•', corn: '๐ŸŒฝ', hot_pepper: '๐ŸŒถ', potato: '๐Ÿฅ”', sweet_potato: '๐Ÿ ', chestnut: '๐ŸŒฐ', peanuts: '๐Ÿฅœ', honey_pot: '๐Ÿฏ', croissant: '๐Ÿฅ', bread: '๐Ÿž', baguette_bread: '๐Ÿฅ–', cheese: '๐Ÿง€', egg: '๐Ÿฅš', fried_egg: '๐Ÿณ', bacon: '๐Ÿฅ“', pancakes: '๐Ÿฅž', fried_shrimp: '๐Ÿค', poultry_leg: '๐Ÿ—', meat_on_bone: '๐Ÿ–', pizza: '๐Ÿ•', hotdog: '๐ŸŒญ', hamburger: '๐Ÿ”', fries: '๐ŸŸ', stuffed_flatbread: '๐Ÿฅ™', taco: '๐ŸŒฎ', burrito: '๐ŸŒฏ', green_salad: '๐Ÿฅ—', shallow_pan_of_food: '๐Ÿฅ˜', spaghetti: '๐Ÿ', ramen: '๐Ÿœ', stew: '๐Ÿฒ', fish_cake: '๐Ÿฅ', sushi: '๐Ÿฃ', bento: '๐Ÿฑ', curry: '๐Ÿ›', rice: '๐Ÿš', rice_ball: '๐Ÿ™', rice_cracker: '๐Ÿ˜', oden: '๐Ÿข', dango: '๐Ÿก', shaved_ice: '๐Ÿง', ice_cream: '๐Ÿจ', icecream: '๐Ÿฆ', cake: '๐Ÿฐ', birthday: '๐ŸŽ‚', custard: '๐Ÿฎ', lollipop: '๐Ÿญ', candy: '๐Ÿฌ', chocolate_bar: '๐Ÿซ', popcorn: '๐Ÿฟ', doughnut: '๐Ÿฉ', cookie: '๐Ÿช', milk_glass: '๐Ÿฅ›', baby_bottle: '๐Ÿผ', coffee: 'โ˜•๏ธ', tea: '๐Ÿต', sake: '๐Ÿถ', beer: '๐Ÿบ', beers: '๐Ÿป', clinking_glasses: '๐Ÿฅ‚', wine_glass: '๐Ÿท', tumbler_glass: '๐Ÿฅƒ', cocktail: '๐Ÿธ', tropical_drink: '๐Ÿน', champagne: '๐Ÿพ', spoon: '๐Ÿฅ„', fork_and_knife: '๐Ÿด', plate_with_cutlery: '๐Ÿฝ', soccer: 'โšฝ๏ธ', basketball: '๐Ÿ€', football: '๐Ÿˆ', baseball: 'โšพ๏ธ', tennis: '๐ŸŽพ', volleyball: '๐Ÿ', rugby_football: '๐Ÿ‰', '8ball': '๐ŸŽฑ', ping_pong: '๐Ÿ“', badminton: '๐Ÿธ', goal_net: '๐Ÿฅ…', ice_hockey: '๐Ÿ’', field_hockey: '๐Ÿ‘', cricket: '๐Ÿ', golf: 'โ›ณ๏ธ', bow_and_arrow: '๐Ÿน', fishing_pole_and_fish: '๐ŸŽฃ', boxing_glove: '๐ŸฅŠ', martial_arts_uniform: '๐Ÿฅ‹', ice_skate: 'โ›ธ', ski: '๐ŸŽฟ', skier: 'โ›ท', snowboarder: '๐Ÿ‚', weight_lifting_woman: '๐Ÿ‹๏ธโ€โ™€๏ธ', weight_lifting_man: '๐Ÿ‹', person_fencing: '๐Ÿคบ', women_wrestling: '๐Ÿคผโ€โ™€', men_wrestling: '๐Ÿคผโ€โ™‚', woman_cartwheeling: '๐Ÿคธโ€โ™€', man_cartwheeling: '๐Ÿคธโ€โ™‚', basketball_woman: 'โ›น๏ธโ€โ™€๏ธ', basketball_man: 'โ›น', woman_playing_handball: '๐Ÿคพโ€โ™€', man_playing_handball: '๐Ÿคพโ€โ™‚', golfing_woman: '๐ŸŒ๏ธโ€โ™€๏ธ', golfing_man: '๐ŸŒ', surfing_woman: '๐Ÿ„โ€โ™€', surfing_man: '๐Ÿ„', surfer: '๐Ÿ„', swimming_woman: '๐ŸŠโ€โ™€', swimming_man: '๐ŸŠ', swimmer: '๐ŸŠ', woman_playing_water_polo: '๐Ÿคฝโ€โ™€', man_playing_water_polo: '๐Ÿคฝโ€โ™‚', rowing_woman: '๐Ÿšฃโ€โ™€', rowing_man: '๐Ÿšฃ', rowboat: '๐Ÿšฃ', horse_racing: '๐Ÿ‡', biking_woman: '๐Ÿšดโ€โ™€', biking_man: '๐Ÿšด', bicyclist: '๐Ÿšด', mountain_biking_woman: '๐Ÿšตโ€โ™€', mountain_biking_man: '๐Ÿšต', mountain_bicyclist: '๐Ÿšต', running_shirt_with_sash: '๐ŸŽฝ', medal_sports: '๐Ÿ…', medal_military: '๐ŸŽ–', '1st_place_medal': '๐Ÿฅ‡', '2nd_place_medal': '๐Ÿฅˆ', '3rd_place_medal': '๐Ÿฅ‰', trophy: '๐Ÿ†', rosette: '๐Ÿต', reminder_ribbon: '๐ŸŽ—', ticket: '๐ŸŽซ', tickets: '๐ŸŽŸ', circus_tent: '๐ŸŽช', woman_juggling: '๐Ÿคนโ€โ™€', man_juggling: '๐Ÿคนโ€โ™‚', performing_arts: '๐ŸŽญ', art: '๐ŸŽจ', clapper: '๐ŸŽฌ', microphone: '๐ŸŽค', headphones: '๐ŸŽง', musical_score: '๐ŸŽผ', musical_keyboard: '๐ŸŽน', drum: '๐Ÿฅ', saxophone: '๐ŸŽท', trumpet: '๐ŸŽบ', guitar: '๐ŸŽธ', violin: '๐ŸŽป', game_die: '๐ŸŽฒ', dart: '๐ŸŽฏ', bowling: '๐ŸŽณ', video_game: '๐ŸŽฎ', slot_machine: '๐ŸŽฐ', car: '๐Ÿš—', red_car: '๐Ÿš—', taxi: '๐Ÿš•', blue_car: '๐Ÿš™', bus: '๐ŸšŒ', trolleybus: '๐ŸšŽ', racing_car: '๐ŸŽ', police_car: '๐Ÿš“', ambulance: '๐Ÿš‘', fire_engine: '๐Ÿš’', minibus: '๐Ÿš', truck: '๐Ÿšš', articulated_lorry: '๐Ÿš›', tractor: '๐Ÿšœ', kick_scooter: '๐Ÿ›ด', bike: '๐Ÿšฒ', motor_scooter: '๐Ÿ›ต', motorcycle: '๐Ÿ', rotating_light: '๐Ÿšจ', oncoming_police_car: '๐Ÿš”', oncoming_bus: '๐Ÿš', oncoming_automobile: '๐Ÿš˜', oncoming_taxi: '๐Ÿš–', aerial_tramway: '๐Ÿšก', mountain_cableway: '๐Ÿš ', suspension_railway: '๐ŸšŸ', railway_car: '๐Ÿšƒ', train: '๐Ÿš‹', mountain_railway: '๐Ÿšž', monorail: '๐Ÿš', bullettrain_side: '๐Ÿš„', bullettrain_front: '๐Ÿš…', light_rail: '๐Ÿšˆ', steam_locomotive: '๐Ÿš‚', train2: '๐Ÿš†', metro: '๐Ÿš‡', tram: '๐ŸšŠ', station: '๐Ÿš‰', helicopter: '๐Ÿš', small_airplane: '๐Ÿ›ฉ', airplane: 'โœˆ๏ธ', flight_departure: '๐Ÿ›ซ', flight_arrival: '๐Ÿ›ฌ', rocket: '๐Ÿš€', artificial_satellite: '๐Ÿ›ฐ', seat: '๐Ÿ’บ', canoe: '๐Ÿ›ถ', boat: 'โ›ต๏ธ', sailboat: 'โ›ต๏ธ', motor_boat: '๐Ÿ›ฅ', speedboat: '๐Ÿšค', passenger_ship: '๐Ÿ›ณ', ferry: 'โ›ด', ship: '๐Ÿšข', anchor: 'โš“๏ธ', construction: '๐Ÿšง', fuelpump: 'โ›ฝ๏ธ', busstop: '๐Ÿš', vertical_traffic_light: '๐Ÿšฆ', traffic_light: '๐Ÿšฅ', world_map: '๐Ÿ—บ', moyai: '๐Ÿ—ฟ', statue_of_liberty: '๐Ÿ—ฝ', fountain: 'โ›ฒ๏ธ', tokyo_tower: '๐Ÿ—ผ', european_castle: '๐Ÿฐ', japanese_castle: '๐Ÿฏ', stadium: '๐ŸŸ', ferris_wheel: '๐ŸŽก', roller_coaster: '๐ŸŽข', carousel_horse: '๐ŸŽ ', parasol_on_ground: 'โ›ฑ', beach_umbrella: '๐Ÿ–', desert_island: '๐Ÿ', mountain: 'โ›ฐ', mountain_snow: '๐Ÿ”', mount_fuji: '๐Ÿ—ป', volcano: '๐ŸŒ‹', desert: '๐Ÿœ', camping: '๐Ÿ•', tent: 'โ›บ๏ธ', railway_track: '๐Ÿ›ค', motorway: '๐Ÿ›ฃ', building_construction: '๐Ÿ—', factory: '๐Ÿญ', house: '๐Ÿ ', house_with_garden: '๐Ÿก', houses: '๐Ÿ˜', derelict_house: '๐Ÿš', 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: 'โ›ฉ', japan: '๐Ÿ—พ', rice_scene: '๐ŸŽ‘', national_park: '๐Ÿž', sunrise: '๐ŸŒ…', sunrise_over_mountains: '๐ŸŒ„', stars: '๐ŸŒ ', sparkler: '๐ŸŽ‡', fireworks: '๐ŸŽ†', city_sunrise: '๐ŸŒ‡', city_sunset: '๐ŸŒ†', cityscape: '๐Ÿ™', night_with_stars: '๐ŸŒƒ', milky_way: '๐ŸŒŒ', bridge_at_night: '๐ŸŒ‰', foggy: '๐ŸŒ', watch: 'โŒš๏ธ', iphone: '๐Ÿ“ฑ', calling: '๐Ÿ“ฒ', computer: '๐Ÿ’ป', keyboard: 'โŒจ๏ธ', desktop_computer: '๐Ÿ–ฅ', printer: '๐Ÿ–จ', computer_mouse: '๐Ÿ–ฑ', trackball: '๐Ÿ–ฒ', joystick: '๐Ÿ•น', clamp: '๐Ÿ—œ', minidisc: '๐Ÿ’ฝ', floppy_disk: '๐Ÿ’พ', cd: '๐Ÿ’ฟ', dvd: '๐Ÿ“€', vhs: '๐Ÿ“ผ', camera: '๐Ÿ“ท', camera_flash: '๐Ÿ“ธ', video_camera: '๐Ÿ“น', movie_camera: '๐ŸŽฅ', film_projector: '๐Ÿ“ฝ', film_strip: '๐ŸŽž', telephone_receiver: '๐Ÿ“ž', phone: 'โ˜Ž๏ธ', telephone: 'โ˜Ž๏ธ', pager: '๐Ÿ“Ÿ', fax: '๐Ÿ“ ', tv: '๐Ÿ“บ', radio: '๐Ÿ“ป', studio_microphone: '๐ŸŽ™', level_slider: '๐ŸŽš', control_knobs: '๐ŸŽ›', stopwatch: 'โฑ', timer_clock: 'โฒ', alarm_clock: 'โฐ', mantelpiece_clock: '๐Ÿ•ฐ', hourglass: 'โŒ›๏ธ', hourglass_flowing_sand: 'โณ', satellite: '๐Ÿ“ก', battery: '๐Ÿ”‹', electric_plug: '๐Ÿ”Œ', bulb: '๐Ÿ’ก', flashlight: '๐Ÿ”ฆ', candle: '๐Ÿ•ฏ', wastebasket: '๐Ÿ—‘', oil_drum: '๐Ÿ›ข', money_with_wings: '๐Ÿ’ธ', dollar: '๐Ÿ’ต', yen: '๐Ÿ’ด', euro: '๐Ÿ’ถ', pound: '๐Ÿ’ท', moneybag: '๐Ÿ’ฐ', credit_card: '๐Ÿ’ณ', gem: '๐Ÿ’Ž', balance_scale: 'โš–๏ธ', wrench: '๐Ÿ”ง', hammer: '๐Ÿ”จ', hammer_and_pick: 'โš’', hammer_and_wrench: '๐Ÿ› ', pick: 'โ›', nut_and_bolt: '๐Ÿ”ฉ', gear: 'โš™๏ธ', chains: 'โ›“', gun: '๐Ÿ”ซ', bomb: '๐Ÿ’ฃ', hocho: '๐Ÿ”ช', knife: '๐Ÿ”ช', dagger: '๐Ÿ—ก', crossed_swords: 'โš”๏ธ', shield: '๐Ÿ›ก', smoking: '๐Ÿšฌ', coffin: 'โšฐ๏ธ', funeral_urn: 'โšฑ๏ธ', amphora: '๐Ÿบ', crystal_ball: '๐Ÿ”ฎ', prayer_beads: '๐Ÿ“ฟ', barber: '๐Ÿ’ˆ', alembic: 'โš—๏ธ', telescope: '๐Ÿ”ญ', microscope: '๐Ÿ”ฌ', hole: '๐Ÿ•ณ', pill: '๐Ÿ’Š', syringe: '๐Ÿ’‰', thermometer: '๐ŸŒก', toilet: '๐Ÿšฝ', potable_water: '๐Ÿšฐ', shower: '๐Ÿšฟ', bathtub: '๐Ÿ›', bath: '๐Ÿ›€', bellhop_bell: '๐Ÿ›Ž', key: '๐Ÿ”‘', old_key: '๐Ÿ—', door: '๐Ÿšช', couch_and_lamp: '๐Ÿ›‹', bed: '๐Ÿ›', sleeping_bed: '๐Ÿ›Œ', framed_picture: '๐Ÿ–ผ', shopping: '๐Ÿ›', shopping_cart: '๐Ÿ›’', gift: '๐ŸŽ', balloon: '๐ŸŽˆ', flags: '๐ŸŽ', ribbon: '๐ŸŽ€', confetti_ball: '๐ŸŽŠ', tada: '๐ŸŽ‰', dolls: '๐ŸŽŽ', izakaya_lantern: '๐Ÿฎ', lantern: '๐Ÿฎ', wind_chime: '๐ŸŽ', email: 'โœ‰๏ธ', envelope: 'โœ‰๏ธ', envelope_with_arrow: '๐Ÿ“ฉ', incoming_envelope: '๐Ÿ“จ', 'e-mail': '๐Ÿ“ง', love_letter: '๐Ÿ’Œ', inbox_tray: '๐Ÿ“ฅ', outbox_tray: '๐Ÿ“ค', package: '๐Ÿ“ฆ', label: '๐Ÿท', mailbox_closed: '๐Ÿ“ช', mailbox: '๐Ÿ“ซ', mailbox_with_mail: '๐Ÿ“ฌ', mailbox_with_no_mail: '๐Ÿ“ญ', postbox: '๐Ÿ“ฎ', postal_horn: '๐Ÿ“ฏ', scroll: '๐Ÿ“œ', page_with_curl: '๐Ÿ“ƒ', page_facing_up: '๐Ÿ“„', bookmark_tabs: '๐Ÿ“‘', bar_chart: '๐Ÿ“Š', chart_with_upwards_trend: '๐Ÿ“ˆ', chart_with_downwards_trend: '๐Ÿ“‰', spiral_notepad: '๐Ÿ—’', spiral_calendar: '๐Ÿ—“', calendar: '๐Ÿ“†', date: '๐Ÿ“…', card_index: '๐Ÿ“‡', card_file_box: '๐Ÿ—ƒ', ballot_box: '๐Ÿ—ณ', file_cabinet: '๐Ÿ—„', clipboard: '๐Ÿ“‹', file_folder: '๐Ÿ“', open_file_folder: '๐Ÿ“‚', card_index_dividers: '๐Ÿ—‚', newspaper_roll: '๐Ÿ—ž', newspaper: '๐Ÿ“ฐ', notebook: '๐Ÿ““', notebook_with_decorative_cover: '๐Ÿ“”', ledger: '๐Ÿ“’', closed_book: '๐Ÿ“•', green_book: '๐Ÿ“—', blue_book: '๐Ÿ“˜', orange_book: '๐Ÿ“™', books: '๐Ÿ“š', book: '๐Ÿ“–', open_book: '๐Ÿ“–', bookmark: '๐Ÿ”–', link: '๐Ÿ”—', paperclip: '๐Ÿ“Ž', paperclips: '๐Ÿ–‡', triangular_ruler: '๐Ÿ“', straight_ruler: '๐Ÿ“', pushpin: '๐Ÿ“Œ', round_pushpin: '๐Ÿ“', scissors: 'โœ‚๏ธ', pen: '๐Ÿ–Š', fountain_pen: '๐Ÿ–‹', black_nib: 'โœ’๏ธ', paintbrush: '๐Ÿ–Œ', crayon: '๐Ÿ–', memo: '๐Ÿ“', pencil: '๐Ÿ“', pencil2: 'โœ๏ธ', mag: '๐Ÿ”', mag_right: '๐Ÿ”Ž', lock_with_ink_pen: '๐Ÿ”', closed_lock_with_key: '๐Ÿ”', lock: '๐Ÿ”’', unlock: '๐Ÿ”“', heart: 'โค๏ธ', yellow_heart: '๐Ÿ’›', green_heart: '๐Ÿ’š', blue_heart: '๐Ÿ’™', purple_heart: '๐Ÿ’œ', black_heart: '๐Ÿ–ค', broken_heart: '๐Ÿ’”', heavy_heart_exclamation: 'โฃ๏ธ', two_hearts: '๐Ÿ’•', revolving_hearts: '๐Ÿ’ž', heartbeat: '๐Ÿ’“', heartpulse: '๐Ÿ’—', sparkling_heart: '๐Ÿ’–', cupid: '๐Ÿ’˜', gift_heart: '๐Ÿ’', heart_decoration: '๐Ÿ’Ÿ', peace_symbol: 'โ˜ฎ๏ธ', latin_cross: 'โœ๏ธ', star_and_crescent: 'โ˜ช๏ธ', om: '๐Ÿ•‰', wheel_of_dharma: 'โ˜ธ๏ธ', star_of_david: 'โœก๏ธ', six_pointed_star: '๐Ÿ”ฏ', menorah: '๐Ÿ•Ž', yin_yang: 'โ˜ฏ๏ธ', orthodox_cross: 'โ˜ฆ๏ธ', place_of_worship: '๐Ÿ›', ophiuchus: 'โ›Ž', aries: 'โ™ˆ๏ธ', taurus: 'โ™‰๏ธ', gemini: 'โ™Š๏ธ', cancer: 'โ™‹๏ธ', leo: 'โ™Œ๏ธ', virgo: 'โ™๏ธ', libra: 'โ™Ž๏ธ', scorpius: 'โ™๏ธ', sagittarius: 'โ™๏ธ', capricorn: 'โ™‘๏ธ', aquarius: 'โ™’๏ธ', pisces: 'โ™“๏ธ', id: '๐Ÿ†”', atom_symbol: 'โš›๏ธ', accept: '๐Ÿ‰‘', radioactive: 'โ˜ข๏ธ', biohazard: 'โ˜ฃ๏ธ', mobile_phone_off: '๐Ÿ“ด', vibration_mode: '๐Ÿ“ณ', u6709: '๐Ÿˆถ', u7121: '๐Ÿˆš๏ธ', u7533: '๐Ÿˆธ', u55b6: '๐Ÿˆบ', u6708: '๐Ÿˆท๏ธ', eight_pointed_black_star: 'โœด๏ธ', vs: '๐Ÿ†š', white_flower: '๐Ÿ’ฎ', ideograph_advantage: '๐Ÿ‰', secret: 'ใŠ™๏ธ', congratulations: 'ใŠ—๏ธ', u5408: '๐Ÿˆด', u6e80: '๐Ÿˆต', u5272: '๐Ÿˆน', u7981: '๐Ÿˆฒ', a: '๐Ÿ…ฐ๏ธ', b: '๐Ÿ…ฑ๏ธ', ab: '๐Ÿ†Ž', cl: '๐Ÿ†‘', o2: '๐Ÿ…พ๏ธ', sos: '๐Ÿ†˜', x: 'โŒ', o: 'โญ•๏ธ', stop_sign: '๐Ÿ›‘', no_entry: 'โ›”๏ธ', name_badge: '๐Ÿ“›', no_entry_sign: '๐Ÿšซ', anger: '๐Ÿ’ข', hotsprings: 'โ™จ๏ธ', no_pedestrians: '๐Ÿšท', do_not_litter: '๐Ÿšฏ', no_bicycles: '๐Ÿšณ', 'non-potable_water': '๐Ÿšฑ', underage: '๐Ÿ”ž', no_mobile_phones: '๐Ÿ“ต', no_smoking: '๐Ÿšญ', exclamation: 'โ—๏ธ', heavy_exclamation_mark: 'โ—๏ธ', grey_exclamation: 'โ•', question: 'โ“', grey_question: 'โ”', bangbang: 'โ€ผ๏ธ', interrobang: 'โ‰๏ธ', low_brightness: '๐Ÿ”…', high_brightness: '๐Ÿ”†', part_alternation_mark: 'ใ€ฝ๏ธ', warning: 'โš ๏ธ', children_crossing: '๐Ÿšธ', trident: '๐Ÿ”ฑ', fleur_de_lis: 'โšœ๏ธ', beginner: '๐Ÿ”ฐ', recycle: 'โ™ป๏ธ', white_check_mark: 'โœ…', u6307: '๐Ÿˆฏ๏ธ', chart: '๐Ÿ’น', sparkle: 'โ‡๏ธ', eight_spoked_asterisk: 'โœณ๏ธ', negative_squared_cross_mark: 'โŽ', globe_with_meridians: '๐ŸŒ', diamond_shape_with_a_dot_inside: '๐Ÿ’ ', m: 'โ“‚๏ธ', cyclone: '๐ŸŒ€', zzz: '๐Ÿ’ค', atm: '๐Ÿง', wc: '๐Ÿšพ', wheelchair: 'โ™ฟ๏ธ', parking: '๐Ÿ…ฟ๏ธ', u7a7a: '๐Ÿˆณ', sa: '๐Ÿˆ‚๏ธ', passport_control: '๐Ÿ›‚', customs: '๐Ÿ›ƒ', baggage_claim: '๐Ÿ›„', left_luggage: '๐Ÿ›…', mens: '๐Ÿšน', womens: '๐Ÿšบ', baby_symbol: '๐Ÿšผ', restroom: '๐Ÿšป', put_litter_in_its_place: '๐Ÿšฎ', cinema: '๐ŸŽฆ', signal_strength: '๐Ÿ“ถ', koko: '๐Ÿˆ', symbols: '๐Ÿ”ฃ', information_source: 'โ„น๏ธ', abc: '๐Ÿ”ค', abcd: '๐Ÿ”ก', capital_abcd: '๐Ÿ” ', ng: '๐Ÿ†–', ok: '๐Ÿ†—', up: '๐Ÿ†™', cool: '๐Ÿ†’', new: '๐Ÿ†•', free: '๐Ÿ†“', zero: '0๏ธโƒฃ', one: '1๏ธโƒฃ', two: '2๏ธโƒฃ', three: '3๏ธโƒฃ', four: '4๏ธโƒฃ', five: '5๏ธโƒฃ', six: '6๏ธโƒฃ', seven: '7๏ธโƒฃ', eight: '8๏ธโƒฃ', nine: '9๏ธโƒฃ', keycap_ten: '๐Ÿ”Ÿ', hash: '#๏ธโƒฃ', asterisk: '*๏ธโƒฃ', arrow_forward: 'โ–ถ๏ธ', pause_button: 'โธ', play_or_pause_button: 'โฏ', stop_button: 'โน', record_button: 'โบ', next_track_button: 'โญ', previous_track_button: 'โฎ', fast_forward: 'โฉ', rewind: 'โช', arrow_double_up: 'โซ', arrow_double_down: 'โฌ', arrow_backward: 'โ—€๏ธ', arrow_up_small: '๐Ÿ”ผ', arrow_down_small: '๐Ÿ”ฝ', 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: 'โ†”๏ธ', arrow_right_hook: 'โ†ช๏ธ', leftwards_arrow_with_hook: 'โ†ฉ๏ธ', arrow_heading_up: 'โคด๏ธ', arrow_heading_down: 'โคต๏ธ', twisted_rightwards_arrows: '๐Ÿ”€', repeat: '๐Ÿ”', repeat_one: '๐Ÿ”‚', arrows_counterclockwise: '๐Ÿ”„', arrows_clockwise: '๐Ÿ”ƒ', musical_note: '๐ŸŽต', notes: '๐ŸŽถ', heavy_plus_sign: 'โž•', heavy_minus_sign: 'โž–', heavy_division_sign: 'โž—', heavy_multiplication_x: 'โœ–๏ธ', heavy_dollar_sign: '๐Ÿ’ฒ', currency_exchange: '๐Ÿ’ฑ', tm: 'โ„ข๏ธ', copyright: 'ยฉ๏ธ', registered: 'ยฎ๏ธ', wavy_dash: 'ใ€ฐ๏ธ', curly_loop: 'โžฐ', loop: 'โžฟ', end: '๐Ÿ”š', back: '๐Ÿ”™', on: '๐Ÿ”›', top: '๐Ÿ”', soon: '๐Ÿ”œ', heavy_check_mark: 'โœ”๏ธ', ballot_box_with_check: 'โ˜‘๏ธ', radio_button: '๐Ÿ”˜', white_circle: 'โšช๏ธ', black_circle: 'โšซ๏ธ', red_circle: '๐Ÿ”ด', large_blue_circle: '๐Ÿ”ต', small_red_triangle: '๐Ÿ”บ', small_red_triangle_down: '๐Ÿ”ป', small_orange_diamond: '๐Ÿ”ธ', small_blue_diamond: '๐Ÿ”น', large_orange_diamond: '๐Ÿ”ถ', large_blue_diamond: '๐Ÿ”ท', white_square_button: '๐Ÿ”ณ', black_square_button: '๐Ÿ”ฒ', black_small_square: 'โ–ช๏ธ', white_small_square: 'โ–ซ๏ธ', black_medium_small_square: 'โ—พ๏ธ', white_medium_small_square: 'โ—ฝ๏ธ', black_medium_square: 'โ—ผ๏ธ', white_medium_square: 'โ—ป๏ธ', black_large_square: 'โฌ›๏ธ', white_large_square: 'โฌœ๏ธ', speaker: '๐Ÿ”ˆ', mute: '๐Ÿ”‡', sound: '๐Ÿ”‰', loud_sound: '๐Ÿ”Š', bell: '๐Ÿ””', no_bell: '๐Ÿ”•', mega: '๐Ÿ“ฃ', loudspeaker: '๐Ÿ“ข', eye_speech_bubble: '๐Ÿ‘โ€๐Ÿ—จ', speech_balloon: '๐Ÿ’ฌ', thought_balloon: '๐Ÿ’ญ', right_anger_bubble: '๐Ÿ—ฏ', spades: 'โ™ ๏ธ', clubs: 'โ™ฃ๏ธ', hearts: 'โ™ฅ๏ธ', diamonds: 'โ™ฆ๏ธ', black_joker: '๐Ÿƒ', flower_playing_cards: '๐ŸŽด', mahjong: '๐Ÿ€„๏ธ', clock1: '๐Ÿ•', clock2: '๐Ÿ•‘', clock3: '๐Ÿ•’', clock4: '๐Ÿ•“', clock5: '๐Ÿ•”', clock6: '๐Ÿ••', clock7: '๐Ÿ•–', clock8: '๐Ÿ•—', clock9: '๐Ÿ•˜', clock10: '๐Ÿ•™', clock11: '๐Ÿ•š', clock12: '๐Ÿ•›', clock130: '๐Ÿ•œ', clock230: '๐Ÿ•', clock330: '๐Ÿ•ž', clock430: '๐Ÿ•Ÿ', clock530: '๐Ÿ• ', clock630: '๐Ÿ•ก', clock730: '๐Ÿ•ข', clock830: '๐Ÿ•ฃ', clock930: '๐Ÿ•ค', clock1030: '๐Ÿ•ฅ', clock1130: '๐Ÿ•ฆ', clock1230: '๐Ÿ•ง', white_flag: '๐Ÿณ๏ธ', black_flag: '๐Ÿด', checkered_flag: '๐Ÿ', triangular_flag_on_post: '๐Ÿšฉ', rainbow_flag: '๐Ÿณ๏ธโ€๐ŸŒˆ', afghanistan: '๐Ÿ‡ฆ๐Ÿ‡ซ', aland_islands: '๐Ÿ‡ฆ๐Ÿ‡ฝ', albania: '๐Ÿ‡ฆ๐Ÿ‡ฑ', algeria: '๐Ÿ‡ฉ๐Ÿ‡ฟ', american_samoa: '๐Ÿ‡ฆ๐Ÿ‡ธ', andorra: '๐Ÿ‡ฆ๐Ÿ‡ฉ', angola: '๐Ÿ‡ฆ๐Ÿ‡ด', anguilla: '๐Ÿ‡ฆ๐Ÿ‡ฎ', antarctica: '๐Ÿ‡ฆ๐Ÿ‡ถ', antigua_barbuda: '๐Ÿ‡ฆ๐Ÿ‡ฌ', argentina: '๐Ÿ‡ฆ๐Ÿ‡ท', armenia: '๐Ÿ‡ฆ๐Ÿ‡ฒ', aruba: '๐Ÿ‡ฆ๐Ÿ‡ผ', australia: '๐Ÿ‡ฆ๐Ÿ‡บ', austria: '๐Ÿ‡ฆ๐Ÿ‡น', azerbaijan: '๐Ÿ‡ฆ๐Ÿ‡ฟ', bahamas: '๐Ÿ‡ง๐Ÿ‡ธ', bahrain: '๐Ÿ‡ง๐Ÿ‡ญ', bangladesh: '๐Ÿ‡ง๐Ÿ‡ฉ', barbados: '๐Ÿ‡ง๐Ÿ‡ง', belarus: '๐Ÿ‡ง๐Ÿ‡พ', belgium: '๐Ÿ‡ง๐Ÿ‡ช', belize: '๐Ÿ‡ง๐Ÿ‡ฟ', benin: '๐Ÿ‡ง๐Ÿ‡ฏ', bermuda: '๐Ÿ‡ง๐Ÿ‡ฒ', bhutan: '๐Ÿ‡ง๐Ÿ‡น', bolivia: '๐Ÿ‡ง๐Ÿ‡ด', caribbean_netherlands: '๐Ÿ‡ง๐Ÿ‡ถ', bosnia_herzegovina: '๐Ÿ‡ง๐Ÿ‡ฆ', botswana: '๐Ÿ‡ง๐Ÿ‡ผ', brazil: '๐Ÿ‡ง๐Ÿ‡ท', british_indian_ocean_territory: '๐Ÿ‡ฎ๐Ÿ‡ด', british_virgin_islands: '๐Ÿ‡ป๐Ÿ‡ฌ', brunei: '๐Ÿ‡ง๐Ÿ‡ณ', bulgaria: '๐Ÿ‡ง๐Ÿ‡ฌ', burkina_faso: '๐Ÿ‡ง๐Ÿ‡ซ', burundi: '๐Ÿ‡ง๐Ÿ‡ฎ', cape_verde: '๐Ÿ‡จ๐Ÿ‡ป', cambodia: '๐Ÿ‡ฐ๐Ÿ‡ญ', cameroon: '๐Ÿ‡จ๐Ÿ‡ฒ', canada: '๐Ÿ‡จ๐Ÿ‡ฆ', canary_islands: '๐Ÿ‡ฎ๐Ÿ‡จ', cayman_islands: '๐Ÿ‡ฐ๐Ÿ‡พ', central_african_republic: '๐Ÿ‡จ๐Ÿ‡ซ', chad: '๐Ÿ‡น๐Ÿ‡ฉ', chile: '๐Ÿ‡จ๐Ÿ‡ฑ', cn: '๐Ÿ‡จ๐Ÿ‡ณ', christmas_island: '๐Ÿ‡จ๐Ÿ‡ฝ', cocos_islands: '๐Ÿ‡จ๐Ÿ‡จ', colombia: '๐Ÿ‡จ๐Ÿ‡ด', comoros: '๐Ÿ‡ฐ๐Ÿ‡ฒ', congo_brazzaville: '๐Ÿ‡จ๐Ÿ‡ฌ', congo_kinshasa: '๐Ÿ‡จ๐Ÿ‡ฉ', cook_islands: '๐Ÿ‡จ๐Ÿ‡ฐ', costa_rica: '๐Ÿ‡จ๐Ÿ‡ท', cote_divoire: '๐Ÿ‡จ๐Ÿ‡ฎ', croatia: '๐Ÿ‡ญ๐Ÿ‡ท', cuba: '๐Ÿ‡จ๐Ÿ‡บ', curacao: '๐Ÿ‡จ๐Ÿ‡ผ', cyprus: '๐Ÿ‡จ๐Ÿ‡พ', czech_republic: '๐Ÿ‡จ๐Ÿ‡ฟ', denmark: '๐Ÿ‡ฉ๐Ÿ‡ฐ', djibouti: '๐Ÿ‡ฉ๐Ÿ‡ฏ', dominica: '๐Ÿ‡ฉ๐Ÿ‡ฒ', dominican_republic: '๐Ÿ‡ฉ๐Ÿ‡ด', ecuador: '๐Ÿ‡ช๐Ÿ‡จ', egypt: '๐Ÿ‡ช๐Ÿ‡ฌ', el_salvador: '๐Ÿ‡ธ๐Ÿ‡ป', equatorial_guinea: '๐Ÿ‡ฌ๐Ÿ‡ถ', eritrea: '๐Ÿ‡ช๐Ÿ‡ท', estonia: '๐Ÿ‡ช๐Ÿ‡ช', ethiopia: '๐Ÿ‡ช๐Ÿ‡น', eu: '๐Ÿ‡ช๐Ÿ‡บ', european_union: '๐Ÿ‡ช๐Ÿ‡บ', falkland_islands: '๐Ÿ‡ซ๐Ÿ‡ฐ', faroe_islands: '๐Ÿ‡ซ๐Ÿ‡ด', fiji: '๐Ÿ‡ซ๐Ÿ‡ฏ', finland: '๐Ÿ‡ซ๐Ÿ‡ฎ', fr: '๐Ÿ‡ซ๐Ÿ‡ท', french_guiana: '๐Ÿ‡ฌ๐Ÿ‡ซ', french_polynesia: '๐Ÿ‡ต๐Ÿ‡ซ', french_southern_territories: '๐Ÿ‡น๐Ÿ‡ซ', gabon: '๐Ÿ‡ฌ๐Ÿ‡ฆ', gambia: '๐Ÿ‡ฌ๐Ÿ‡ฒ', georgia: '๐Ÿ‡ฌ๐Ÿ‡ช', de: '๐Ÿ‡ฉ๐Ÿ‡ช', ghana: '๐Ÿ‡ฌ๐Ÿ‡ญ', gibraltar: '๐Ÿ‡ฌ๐Ÿ‡ฎ', greece: '๐Ÿ‡ฌ๐Ÿ‡ท', greenland: '๐Ÿ‡ฌ๐Ÿ‡ฑ', grenada: '๐Ÿ‡ฌ๐Ÿ‡ฉ', guadeloupe: '๐Ÿ‡ฌ๐Ÿ‡ต', guam: '๐Ÿ‡ฌ๐Ÿ‡บ', guatemala: '๐Ÿ‡ฌ๐Ÿ‡น', guernsey: '๐Ÿ‡ฌ๐Ÿ‡ฌ', guinea: '๐Ÿ‡ฌ๐Ÿ‡ณ', guinea_bissau: '๐Ÿ‡ฌ๐Ÿ‡ผ', guyana: '๐Ÿ‡ฌ๐Ÿ‡พ', haiti: '๐Ÿ‡ญ๐Ÿ‡น', honduras: '๐Ÿ‡ญ๐Ÿ‡ณ', hong_kong: '๐Ÿ‡ญ๐Ÿ‡ฐ', hungary: '๐Ÿ‡ญ๐Ÿ‡บ', iceland: '๐Ÿ‡ฎ๐Ÿ‡ธ', india: '๐Ÿ‡ฎ๐Ÿ‡ณ', indonesia: '๐Ÿ‡ฎ๐Ÿ‡ฉ', iran: '๐Ÿ‡ฎ๐Ÿ‡ท', iraq: '๐Ÿ‡ฎ๐Ÿ‡ถ', ireland: '๐Ÿ‡ฎ๐Ÿ‡ช', isle_of_man: '๐Ÿ‡ฎ๐Ÿ‡ฒ', israel: '๐Ÿ‡ฎ๐Ÿ‡ฑ', it: '๐Ÿ‡ฎ๐Ÿ‡น', jamaica: '๐Ÿ‡ฏ๐Ÿ‡ฒ', jp: '๐Ÿ‡ฏ๐Ÿ‡ต', crossed_flags: '๐ŸŽŒ', jersey: '๐Ÿ‡ฏ๐Ÿ‡ช', jordan: '๐Ÿ‡ฏ๐Ÿ‡ด', kazakhstan: '๐Ÿ‡ฐ๐Ÿ‡ฟ', kenya: '๐Ÿ‡ฐ๐Ÿ‡ช', kiribati: '๐Ÿ‡ฐ๐Ÿ‡ฎ', kosovo: '๐Ÿ‡ฝ๐Ÿ‡ฐ', kuwait: '๐Ÿ‡ฐ๐Ÿ‡ผ', kyrgyzstan: '๐Ÿ‡ฐ๐Ÿ‡ฌ', laos: '๐Ÿ‡ฑ๐Ÿ‡ฆ', latvia: '๐Ÿ‡ฑ๐Ÿ‡ป', lebanon: '๐Ÿ‡ฑ๐Ÿ‡ง', lesotho: '๐Ÿ‡ฑ๐Ÿ‡ธ', liberia: '๐Ÿ‡ฑ๐Ÿ‡ท', libya: '๐Ÿ‡ฑ๐Ÿ‡พ', liechtenstein: '๐Ÿ‡ฑ๐Ÿ‡ฎ', lithuania: '๐Ÿ‡ฑ๐Ÿ‡น', luxembourg: '๐Ÿ‡ฑ๐Ÿ‡บ', macau: '๐Ÿ‡ฒ๐Ÿ‡ด', macedonia: '๐Ÿ‡ฒ๐Ÿ‡ฐ', madagascar: '๐Ÿ‡ฒ๐Ÿ‡ฌ', malawi: '๐Ÿ‡ฒ๐Ÿ‡ผ', malaysia: '๐Ÿ‡ฒ๐Ÿ‡พ', maldives: '๐Ÿ‡ฒ๐Ÿ‡ป', mali: '๐Ÿ‡ฒ๐Ÿ‡ฑ', malta: '๐Ÿ‡ฒ๐Ÿ‡น', marshall_islands: '๐Ÿ‡ฒ๐Ÿ‡ญ', martinique: '๐Ÿ‡ฒ๐Ÿ‡ถ', mauritania: '๐Ÿ‡ฒ๐Ÿ‡ท', mauritius: '๐Ÿ‡ฒ๐Ÿ‡บ', mayotte: '๐Ÿ‡พ๐Ÿ‡น', mexico: '๐Ÿ‡ฒ๐Ÿ‡ฝ', micronesia: '๐Ÿ‡ซ๐Ÿ‡ฒ', moldova: '๐Ÿ‡ฒ๐Ÿ‡ฉ', monaco: '๐Ÿ‡ฒ๐Ÿ‡จ', mongolia: '๐Ÿ‡ฒ๐Ÿ‡ณ', montenegro: '๐Ÿ‡ฒ๐Ÿ‡ช', montserrat: '๐Ÿ‡ฒ๐Ÿ‡ธ', morocco: '๐Ÿ‡ฒ๐Ÿ‡ฆ', mozambique: '๐Ÿ‡ฒ๐Ÿ‡ฟ', myanmar: '๐Ÿ‡ฒ๐Ÿ‡ฒ', namibia: '๐Ÿ‡ณ๐Ÿ‡ฆ', nauru: '๐Ÿ‡ณ๐Ÿ‡ท', nepal: '๐Ÿ‡ณ๐Ÿ‡ต', netherlands: '๐Ÿ‡ณ๐Ÿ‡ฑ', new_caledonia: '๐Ÿ‡ณ๐Ÿ‡จ', new_zealand: '๐Ÿ‡ณ๐Ÿ‡ฟ', nicaragua: '๐Ÿ‡ณ๐Ÿ‡ฎ', niger: '๐Ÿ‡ณ๐Ÿ‡ช', nigeria: '๐Ÿ‡ณ๐Ÿ‡ฌ', niue: '๐Ÿ‡ณ๐Ÿ‡บ', norfolk_island: '๐Ÿ‡ณ๐Ÿ‡ซ', northern_mariana_islands: '๐Ÿ‡ฒ๐Ÿ‡ต', north_korea: '๐Ÿ‡ฐ๐Ÿ‡ต', norway: '๐Ÿ‡ณ๐Ÿ‡ด', oman: '๐Ÿ‡ด๐Ÿ‡ฒ', pakistan: '๐Ÿ‡ต๐Ÿ‡ฐ', palau: '๐Ÿ‡ต๐Ÿ‡ผ', palestinian_territories: '๐Ÿ‡ต๐Ÿ‡ธ', panama: '๐Ÿ‡ต๐Ÿ‡ฆ', papua_new_guinea: '๐Ÿ‡ต๐Ÿ‡ฌ', paraguay: '๐Ÿ‡ต๐Ÿ‡พ', peru: '๐Ÿ‡ต๐Ÿ‡ช', philippines: '๐Ÿ‡ต๐Ÿ‡ญ', pitcairn_islands: '๐Ÿ‡ต๐Ÿ‡ณ', poland: '๐Ÿ‡ต๐Ÿ‡ฑ', portugal: '๐Ÿ‡ต๐Ÿ‡น', puerto_rico: '๐Ÿ‡ต๐Ÿ‡ท', qatar: '๐Ÿ‡ถ๐Ÿ‡ฆ', reunion: '๐Ÿ‡ท๐Ÿ‡ช', romania: '๐Ÿ‡ท๐Ÿ‡ด', ru: '๐Ÿ‡ท๐Ÿ‡บ', rwanda: '๐Ÿ‡ท๐Ÿ‡ผ', st_barthelemy: '๐Ÿ‡ง๐Ÿ‡ฑ', st_helena: '๐Ÿ‡ธ๐Ÿ‡ญ', st_kitts_nevis: '๐Ÿ‡ฐ๐Ÿ‡ณ', st_lucia: '๐Ÿ‡ฑ๐Ÿ‡จ', st_pierre_miquelon: '๐Ÿ‡ต๐Ÿ‡ฒ', st_vincent_grenadines: '๐Ÿ‡ป๐Ÿ‡จ', samoa: '๐Ÿ‡ผ๐Ÿ‡ธ', san_marino: '๐Ÿ‡ธ๐Ÿ‡ฒ', sao_tome_principe: '๐Ÿ‡ธ๐Ÿ‡น', saudi_arabia: '๐Ÿ‡ธ๐Ÿ‡ฆ', senegal: '๐Ÿ‡ธ๐Ÿ‡ณ', serbia: '๐Ÿ‡ท๐Ÿ‡ธ', seychelles: '๐Ÿ‡ธ๐Ÿ‡จ', sierra_leone: '๐Ÿ‡ธ๐Ÿ‡ฑ', singapore: '๐Ÿ‡ธ๐Ÿ‡ฌ', sint_maarten: '๐Ÿ‡ธ๐Ÿ‡ฝ', slovakia: '๐Ÿ‡ธ๐Ÿ‡ฐ', slovenia: '๐Ÿ‡ธ๐Ÿ‡ฎ', solomon_islands: '๐Ÿ‡ธ๐Ÿ‡ง', somalia: '๐Ÿ‡ธ๐Ÿ‡ด', south_africa: '๐Ÿ‡ฟ๐Ÿ‡ฆ', south_georgia_south_sandwich_islands: '๐Ÿ‡ฌ๐Ÿ‡ธ', kr: '๐Ÿ‡ฐ๐Ÿ‡ท', south_sudan: '๐Ÿ‡ธ๐Ÿ‡ธ', es: '๐Ÿ‡ช๐Ÿ‡ธ', sri_lanka: '๐Ÿ‡ฑ๐Ÿ‡ฐ', sudan: '๐Ÿ‡ธ๐Ÿ‡ฉ', suriname: '๐Ÿ‡ธ๐Ÿ‡ท', swaziland: '๐Ÿ‡ธ๐Ÿ‡ฟ', sweden: '๐Ÿ‡ธ๐Ÿ‡ช', switzerland: '๐Ÿ‡จ๐Ÿ‡ญ', syria: '๐Ÿ‡ธ๐Ÿ‡พ', taiwan: '๐Ÿ‡น๐Ÿ‡ผ', tajikistan: '๐Ÿ‡น๐Ÿ‡ฏ', tanzania: '๐Ÿ‡น๐Ÿ‡ฟ', thailand: '๐Ÿ‡น๐Ÿ‡ญ', timor_leste: '๐Ÿ‡น๐Ÿ‡ฑ', togo: '๐Ÿ‡น๐Ÿ‡ฌ', tokelau: '๐Ÿ‡น๐Ÿ‡ฐ', tonga: '๐Ÿ‡น๐Ÿ‡ด', trinidad_tobago: '๐Ÿ‡น๐Ÿ‡น', tunisia: '๐Ÿ‡น๐Ÿ‡ณ', tr: '๐Ÿ‡น๐Ÿ‡ท', turkmenistan: '๐Ÿ‡น๐Ÿ‡ฒ', turks_caicos_islands: '๐Ÿ‡น๐Ÿ‡จ', tuvalu: '๐Ÿ‡น๐Ÿ‡ป', uganda: '๐Ÿ‡บ๐Ÿ‡ฌ', ukraine: '๐Ÿ‡บ๐Ÿ‡ฆ', united_arab_emirates: '๐Ÿ‡ฆ๐Ÿ‡ช', gb: '๐Ÿ‡ฌ๐Ÿ‡ง', uk: '๐Ÿ‡ฌ๐Ÿ‡ง', us: '๐Ÿ‡บ๐Ÿ‡ธ', us_virgin_islands: '๐Ÿ‡ป๐Ÿ‡ฎ', uruguay: '๐Ÿ‡บ๐Ÿ‡พ', uzbekistan: '๐Ÿ‡บ๐Ÿ‡ฟ', vanuatu: '๐Ÿ‡ป๐Ÿ‡บ', vatican_city: '๐Ÿ‡ป๐Ÿ‡ฆ', venezuela: '๐Ÿ‡ป๐Ÿ‡ช', vietnam: '๐Ÿ‡ป๐Ÿ‡ณ', wallis_futuna: '๐Ÿ‡ผ๐Ÿ‡ซ', western_sahara: '๐Ÿ‡ช๐Ÿ‡ญ', yemen: '๐Ÿ‡พ๐Ÿ‡ช', zambia: '๐Ÿ‡ฟ๐Ÿ‡ฒ', zimbabwe: '๐Ÿ‡ฟ๐Ÿ‡ผ' }; /** * Escapes RegEx special characters. * @param {string} string - The string to escape. * @returns {string} The escaped string. * @private */ function escapeRegExp(string) { return string.replace(/[\\^$.*+?()[\]{}|]/g, '\\$&'); } /** * Plugin which replaces emoji colon forms with their equivalent unicode character. * @param {Object} [options={}] - The options for the plugin. * @param {Object} [options.aliases={}] - Additional emoji aliases to use. Keys * are the original emoji aliases. Values can be a string or an array of strings * representing the additional aliases to add. * @param {string[]} [options.blacklist=[]] - Emoji aliases which will be ignored * when emojifying Markdown. * @param {boolean} [options.emojifyCode=false] - Whether or not to transform * aliases found in Markdown code formatting. * @returns {Function} The Docute plugin. */ function docuteEmojify() { var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; var _options$aliases = options.aliases, aliases = _options$aliases === void 0 ? {} : _options$aliases, _options$blacklist = options.blacklist, blacklist = _options$blacklist === void 0 ? [] : _options$blacklist, _options$emojifyCode = options.emojifyCode, emojifyCode = _options$emojifyCode === void 0 ? false : _options$emojifyCode; var blacklistHash = blacklist.reduce(function (accumulated, alias) { if (typeof alias === 'string') { accumulated[alias] = true; } return accumulated; }, {}); var additionalAliases = Object.keys(aliases).reduce(function (accumulated, alias) { if (!emoji.hasOwnProperty(alias)) { return accumulated; } var aliasValue = aliases[alias]; if (typeof aliasValue === 'string' && aliasValue.trim()) { accumulated[aliasValue.trim()] = emoji[alias]; } else if (Array.isArray(aliasValue)) { aliasValue.filter(function (value) { return typeof value === 'string' && value.trim(); }).forEach(function (value) { accumulated[value.trim()] = emoji[alias]; }); } return accumulated; }, {}); var mergedAliases = objectAssign(emoji, additionalAliases); var aliasRegex = Object.keys(mergedAliases).filter(function (alias) { return !Object.prototype.hasOwnProperty.call(blacklistHash, alias); }).map(function (alias) { return escapeRegExp(alias); }).join('|'); var emojiRegex = new RegExp(emojifyCode ? "():(".concat(aliasRegex, "):") : "(`+)[\\s\\S]+?\\1|:(".concat(aliasRegex, "):"), 'g'); var replacer = function replacer(match, ticks, alias) { return emoji[alias] || match; }; return function (_ref) { var beforeParse = _ref.beforeParse; beforeParse(function (markdown) { return markdown.replace(emojiRegex, replacer); }); }; } return docuteEmojify; })));