1 // Faceclick Emoji Picker Library
     2 // http://ratfactor.com/faceclick
     3 FC = {
     4     selected_group_range: null,
     5     list_container: null,
     6     callback: null,
     7     el_box: null,
     8     el_list: null,
     9     el_filters: null,
    10     group_clears_search: true,
    11     search_clears_group: true,
    12     close_on_pick: true,
    13     close_on_clickaway: true,
    14 };
    15 FC.popup = function(x, y, callback){
    16     FC.callback = callback;
    17 
    18     if(!FC.el_box){
    19         // Main popup box
    20         FC.el_box = document.createElement("div");
    21         FC.el_box.id = 'fc_popup';
    22         FC.el_box.style.position = 'absolute';
    23 
    24         // Filter box
    25         FC.el_filters = document.createElement("div");
    26         FC.el_filters.id = 'fc_filters';
    27         FC.el_box.appendChild(FC.el_filters);
    28 
    29         // Group filters
    30         FC.draw_group_filters();
    31 
    32         // Text search filter
    33         FC.search_box = document.createElement("input");
    34         FC.search_box.type = "text";
    35         FC.search_box.placeholder = "Search...";
    36         FC.search_box.addEventListener('input',function(){
    37             if(FC.search_clears_group){
    38                 FC.clear_group_filters();
    39                 FC.selected_group_range = null;
    40             }
    41             FC.populate_list();
    42         });
    43         FC.el_filters.appendChild(FC.search_box);
    44 
    45         // Emoji list placeholder
    46         FC.el_list = document.createElement("div");
    47         FC.el_list.id = 'fc_list_scrollbox';
    48         FC.el_box.appendChild(FC.el_list);
    49 
    50         document.body.appendChild(FC.el_box);
    51     }
    52     else if(FC.el_box.style.display !== 'none'){
    53         // The popup exists and it is visible, so we want
    54         // to toggle it closed rather than re-open.
    55         FC.close();
    56         return;
    57     }
    58 
    59     FC.el_box.style.display = 'initial';
    60     FC.el_box.style.left = x+'px';
    61     FC.el_box.style.top = y+'px';
    62     FC.populate_list();
    63     FC.search_box.focus();
    64 
    65     // Fun fact: The click that opened the popup continues to
    66     // propagate up the DOM, so adding an event listener now
    67     // actually catches that click. Simple/silly fix: Wait.
    68     if(FC.close_on_clickaway){
    69         setTimeout(function(){
    70             document.addEventListener('click', FC.clickaway);
    71         }, 1); // 1 millisecond
    72     }
    73 };
    74 FC.draw_group_filters = function(){
    75     var group_els = [];
    76     FC.data.groups.forEach(function(g){
    77         var el = document.createElement("a");
    78         el.href = "#";
    79         el.title = g.title;
    80         el.textContent = g.emoji;
    81         el.addEventListener('click', function(e){
    82             if(FC.group_clears_search){
    83                 FC.search_box.value = "";
    84             }
    85             FC.clear_group_filters();
    86             e.preventDefault();
    87             el.classList.add('selected');
    88             FC.selected_group_range = g.range;
    89             FC.populate_list();
    90         });
    91         group_els.push(el);
    92         FC.el_filters.appendChild(el);
    93     });
    94 
    95     // Use closure to create a filter clear function
    96     FC.clear_group_filters = function(){
    97         group_els.forEach(function(els){
    98             els.classList.remove('selected');
    99         });
   100     };
   101 };
   102 FC.group = function(e){
   103     console.log(e);
   104     e.target.classList.add('selected');
   105 };
   106 FC.clickaway = function(e){
   107     // Close when you click outside the popup
   108     // (DOM closest() finds ancestor.)
   109     if(!e.target.closest('#fc_popup')){
   110         FC.close();
   111     }
   112 };
   113 FC.attach = function(click, insert){
   114     var el_click = (typeof click === 'object') ? click :
   115         document.getElementById(click);
   116     var el_insert = (typeof insert === 'object') ? insert :
   117         document.getElementById(insert);
   118     var callback = function(c){FC.insert(el_insert, c);};
   119     if(!el_click){alert("Faceclick could not find id '"+click_id+"'.");}
   120     if(!el_insert){alert("Faceclick could not find id '"+insert_id+"'.");}
   121     el_click.addEventListener("click", function(){
   122         FC.attach_popup(el_click, callback);
   123     });
   124 };
   125 FC.attach_cb = function(el_click, callback){
   126     el_click.addEventListener("click", function(){
   127         FC.attach_popup(el_click, callback);
   128     });
   129 };
   130 FC.attach_popup = function(element, callback){
   131     FC.popup(
   132         element.getBoundingClientRect().right + window.scrollX + 5,
   133         element.getBoundingClientRect().top + window.scrollY,
   134         callback
   135     );
   136 };
   137 FC.insert = function(element, insert_txt){
   138     var start = element.selectionStart;
   139     var end = element.selectionEnd;
   140     element.setRangeText(insert_txt, start, end, 'end');
   141 
   142     if(FC.close_on_pick){
   143         // close popup, return focus to element
   144         FC.close();
   145         element.focus();
   146     }
   147 };
   148 FC.close = function(){
   149     FC.el_box.style.display = 'none';
   150     document.removeEventListener('click', FC.clickaway);
   151 }
   152 FC.populate_list = function(){
   153     var list_html = `<ul id="fc_emoji_list">`;
   154 
   155     var gr = FC.selected_group_range;
   156     var min = gr ? gr[0] : 0;
   157     var max = gr ? gr[1] : FC.data.emoji.length-1;
   158     var search_text = FC.search_box.value;
   159 
   160     FC.data.emoji.forEach(function(emoji, i){
   161         if(i < min || i > max){ return; } // filter group
   162         if(emoji.tags.indexOf(search_text) === -1){ return; }
   163         list_html += `<li><a href="#" title="${emoji.label}">${emoji.glyph}</a></li>`
   164     });
   165     list_html += "</ul>";
   166     FC.el_list.innerHTML = list_html;
   167 
   168     FC.el_list.querySelectorAll('a').forEach( function(elem){
   169         var emoji = elem.textContent;
   170 
   171         if(typeof FC.callback === 'function'){
   172             elem.addEventListener("click", function(e){
   173                 e.preventDefault();
   174                 FC.callback(emoji);
   175             });
   176         }else{
   177             console.warn("FC.populate_list() not given a callback function.");
   178         }
   179     });
   180 };
   181 window.addEventListener('load', function(){
   182     // Split words string into array
   183     var words = FC.data.words.split(' ');
   184 
   185     // Replaces '$42' with word at index 42
   186     function idx2txt(wlist){
   187         wlist.forEach(function(w,i){
   188             if(w[0] === '$'){
   189                 var idx = w.substring(1);
   190                 wlist[i] = words[idx];
   191             }
   192         });
   193         return wlist;
   194     }
   195 
   196     // From: ['X','$1 $2','foo $3']
   197     //   To: {glyph:'X', label: 'big dog', tags: 'foo bar big dog'}
   198     FC.data.emoji.forEach(function(e, i){
   199         var glyph = e[0];
   200         var label = e[1];
   201         var tags = e[2];
   202         label = idx2txt(label.split(' ')).join(' ');
   203         tags = idx2txt(tags.split(' ')).join(' ');
   204 
   205         // Write expanded object in place of original
   206         FC.data.emoji[i] = {
   207             glyph: glyph,
   208             label: label,
   209             tags: tags + ' ' + label,
   210         };
   211     });
   212 });
   213 FC.data = {
   214 groups: [
   215   {"title":"People","emoji":"๐","range":[0,279]},
   216   {"title":"Natural","emoji":"๐ด","range":[280,548]},
   217   {"title":"Activity","emoji":"๐งญ","range":[549,843]},
   218   {"title":"Things","emoji":"๐ป๏ธ","range":[844,1283]}
   219 ],
   220 words: 'face animal with food button arrow heart tool love clothing time zodiac'
   221 +' celebration fantasy smile geometric game hand smiling space square fruit tale'
   222 +' fairytale fairy weather plant bird sweet romance clock building eyes mark white'
   223 +' emotion dating religion drink moon ornithology sport person open clothes money'
   224 +' restaurant cloud communication dessert sound sign prohibited comic cold mouth'
   225 +' happy horoscope music shopping oโclock vehicle travel ball accessibility'
   226 +' anniversary forbidden date xoxo circle card insect nature light farm couple'
   227 +' computer right water blue unhappy feels closed railway breakfast double woman'
   228 +' star gesture beach hands party night grinning education entertainment direction'
   229 +' flower ocean together down black creature monster good small large flirt triangle'
   230 +' telephone shoe dress diamond video weapon babe baby finger left symbol green'
   231 +' punctuation sick dead raised whatever kiss excited teeth toilet currency paper'
   232 +' instrument suit rain train school bank home vegetable science people index stop'
   233 +' fast orange heavy letter halloween body angry scared medicine doctor tired shade'
   234 +' secret kisses crying bathroom email cash mobile cell cross hotel mountain'
   235 +' drinking glass movie garden tropical milk bestie magic christmas adult phone'
   236 +' camera done balloon bubble mail monkey purple scary celebrate birthday quiet'
   237 +' hungry kissing tear sweat awesome input mailbox postbox banknote bill dollar'
   238 +' reading library book shoes bathing flag medal drive electric umbrella world'
   239 +' drinks booze alcohol beverage stick japanese cooking crescent bread bell leaf'
   240 +' rice tree house fish bear desert animals bunny office lady young kick oncoming rock'
   241 +' pointing fingers backhand boom brown yellow exclamation ears anger surprised'
   242 +' bright nose mask awkward what surprise yolo tongue hearts nervous laugh type)'
   243 +' (blood latin curving intercardinal cardinal checked restroom lavatory hammer'
   244 +' math file e-mail chart graph billion film cinema disk musical speaker womanโs'
   245 +' dressed place gold envelope behind medium quarter airplane aeroplane boat ship'
   246 +' traffic truck trolleybus tram judaism jewish globe earth knife club bottle candy'
   247 +' pastry meat cheese mouse relationship woman, mwah twins friends ring snow racing'
   248 +' horse trident siren folklore police worker wise child hear fist high morning'
   249 +' valentine death horns evil upset anxious rich fancy glasses partying shocked'
   250 +' dizzy sleepy peace bored over full outlined adorbs nice',
   251 emoji: [
   252 ['๐','$93 $0','cheerful cheery $56 $256 $345 $14 $18 $128'],
   253 ['๐','$93 $0 $2 big $32','$193 $56 $55 $43 $14 $18 $128 yay'],
   254 ['๐','$93 $0 $2 $18 $32','$56 $256 lol $55 $43 $14'],
   255 ['๐','beaming $0 $2 $18 $32','grin $93 $56 $345 $14 $128'],
   256 ['๐','$93 squinting $0','$82 $32 haha hahaha $56 $256 lol $55 $43 rofl $14 $18'],
   257 ['๐
','$93 $0 $2 $192','$54 dejected $127 $55 $255 $43 $14 $18 stress stressed'],
   258 ['๐คฃ','rolling on the floor laughing','$158 $0 funny haha $56 hehe hilarious joy lmao lol rofl roflmao $191'],
   259 ['๐','$0 $2 tears of joy','$158 $81 funny haha $56 hehe hilarious $256 lmao lol rofl roflmao'],
   260 ['๐','slightly $18 $0','$56 $14'],['๐','upside-down $0','hehe $14'],
   261 ['๐','winking $0','$107 heartbreaker sexy slide tease winks'],
   262 ['๐','$18 $0 $2 $18 $32','blush glad satisfied $14'],
   263 ['๐','$18 $0 $2 halo','angel angelic angels blessed $24 $23 $13 $56 innocent peaceful $14 spirit $22'],
   264 ['๐ฅฐ','$18 $0 $2 $254','3 adore crush ily $8 $29 $14 you'],
   265 ['๐','$18 $0 $2 heart-eyes','143 bae $81 $254 ily $157 $8 $29 romantic $14 $68'],
   266 ['๐คฉ','star-struck','$127 $32 $0 $93 $14 starry-eyed wow'],
   267 ['๐','$0 blowing a $126','$344 bae $107 $6 ily $8 lover miss muah romantic smooch $68 you'],
   268 ['๐','$190 $0','143 $67 $36 $107 ily $8 smooch smooches $68 you'],
   269 ['โบ๏ธ','$18 $0','$56 $343 relaxed $14'],
   270 ['๐','$190 $0 $2 $82 $32','143 bae blush $67 $36 $107 ily $157 smooches $68'],
   271 ['๐','$190 $0 $2 $18 $32','143 $82 $67 $36 $107 ily $157 $8 $92 $14'],
   272 ['๐ฅฒ','$18 $0 $2 $191','glad grateful $56 joy pain proud relieved $14 smiley touched'],
   273 ['๐','$0 savoring $3','delicious eat $342 $189 $14 $18 tasty um yum yummy'],
   274 ['๐','$0 $2 $253','$193 cool $345 $91 stuck-out $28'],
   275 ['๐','winking $0 $2 $253','crazy epic eye funny joke loopy nutty $91 stuck-out wacky weirdo $252'],
   276 ['๐คช','zany $0','crazy eye $32 goofy $106 $105'],
   277 ['๐','squinting $0 $2 $253','$82 eye $32 gross horrible omg stuck-out taste $125 $252'],
   278 ['๐ค','money-mouth $0','paid'],['๐ค','$18 $0 $2 $43 $90','hug hugging'],
   279 ['๐คญ','$0 $2 $17 $341 $55','giggle giggling oops realization $156 shock sudden $251 whoops'],
   280 ['๐คซ','shushing $0','$188 shh'],
   281 ['๐ค','thinking $0','chin consider hmm ponder pondering wondering'],
   282 ['๐ค','zipper-mouth $0','keep $188 $156 shut'],
   283 ['๐คจ','$0 $2 $124 eyebrow','disapproval disbelief distrust emoji hmm mild skeptic skeptical skepticism $251 $250'],
   284 ['๐๏ธ','neutral $0','$249 blank deadpan expressionless fine jealous meh oh $155 straight unamused $80 unimpressed $125'],
   285 ['๐','expressionless $0','$249 $123 fine inexpressive jealous meh not oh omg straight uh $80 unimpressed $125'],
   286 ['๐ถ','$0 without $55','$249 blank expressionless mouthless mute $188 $156 silence silent speechless'],
   287 ['๐','smirking $0','boss dapper $107 homie kidding leer $155 slick sly smug snicker suave suspicious swag'],
   288 ['๐','unamused $0','... $340 fine jealous jel jelly pissed smh ugh uhh $80 weird $125'],
   289 ['๐','$0 $2 rolling $32','eyeroll $155 ugh $125'],
   290 ['๐ฌ','grimacing $0','awk $249 dentist grimace $93 $14 $18'],
   291 ['๐คฅ','lying $0','liar lie pinocchio'],
   292 ['๐','relieved $0','calm $339 relief zen'],
   293 ['๐','pensive $0','awful $340 dejected died disappointed losing lost sad sucks'],
   294 ['๐ช','$338 $0','$158 $104 $92 sad sleeping $154'],['๐คค','drooling $0',''],
   295 ['๐ด','sleeping $0','bed bedtime $104 goodnight nap $92 $154 $125 yawn zzz'],
   296 ['๐ท','$0 $2 medical $248','$54 dentist dermatologist $153 dr germs $152 $122'],
   297 ['๐ค','$0 $2 thermometer','ill $122'],
   298 ['๐ค','$0 $2 head-bandage','hurt injury ouch'],
   299 ['๐คข','nauseated $0','gross nasty $122 vomit'],
   300 ['๐คฎ','$0 vomiting','barf ew gross puke $122 spew throw up'],
   301 ['๐คง','sneezing $0','fever flu gesundheit $122 sneeze'],
   302 ['๐ฅต','hot $0','dying feverish heat panting red-faced stroke sweating $253'],
   303 ['๐ฅถ','$54 $0','$79 blue-faced freezing frostbite icicles subzero $128'],
   304 ['๐ฅด','woozy $0','$337 drunk $32 intoxicated $55 tipsy uneven wavy'],
   305 ['๐ต','$0 $2 crossed-out $32','$123 $337 $81 knocked $122 $154'],
   306 ['๐คฏ','exploding head','blown explode mind mindblown no $336 way'],
   307 ['๐ค ','cowboy hat $0','cowgirl'],
   308 ['๐ฅณ','$335 $0','bday $187 $186 $12 $127 $56 hat hooray horn'],
   309 ['๐ฅธ','disguised $0','eyebrow $334 incognito moustache mustache $247 $42 spy tache tash'],
   310 ['๐','$18 $0 $2 sunglasses','$193 $89 $246 bro chilling cool rad relaxed shades slay $14 style swag win'],
   311 ['๐ค','nerd $0','brainy clever expert geek gifted $334 intelligent smart'],
   312 ['๐ง','$0 $2 monocle','classy $333 $332 stuffy wealthy'],
   313 ['๐','confused $0','befuddled confusing dunno frown hm meh not sad sorry sure'],
   314 ['๐','worried $0','$331 butterflies nerves $255 sad stress stressed $245 worry'],
   315 ['๐','slightly frowning $0','sad'],['โน๏ธ','frowning $0','sad'],
   316 ['๐ฎ','$0 $2 $43 $55','believe forgot omg $336 $245 sympathy unbelievable unreal whoa wow you'],
   317 ['๐ฏ','hushed $0','epic omg stunned $245 whoa woah'],
   318 ['๐ฒ','astonished $0','cost no omg $336 totally way'],
   319 ['๐ณ','flushed $0','amazed $249 crazy dazed $123 disbelief embarrassed geez heat hot impressed jeez $250 wow'],
   320 ['๐ฅบ','pleading $0','begging big $32 mercy not please pretty puppy sad why'],
   321 ['๐ฆ','frowning $0 $2 $43 $55','caught guard $151 $185 $251 $250 wow'],
   322 ['๐ง','anguished $0','forgot $151 $185 stressed $251 $80 $250 wow'],
   323 ['๐จ','fearful $0','afraid $331 blame $151 worried'],
   324 ['๐ฐ','$331 $0 $2 $192','$79 $54 eek $55 $255 $43 rushed $151 yikes'],
   325 ['๐ฅ','sad but relieved $0','$331 call close complicated disappointed not $192 $10 whew'],
   326 ['๐ข','$158 $0','awful $81 miss sad $191 triste $80'],
   327 ['๐ญ','loudly $158 $0','bawling sad sob $191 tears $80'],
   328 ['๐ฑ','$0 screaming in fear','epic fearful munch $151 screamer $336 $245 woah'],
   329 ['๐','confounded $0','annoyed confused cringe distraught $81 frustrated mad sad'],
   330 ['๐ฃ','persevering $0','concentrate concentration focus headache persevere'],
   331 ['๐','disappointed $0','awful blame dejected fail losing sad $80'],
   332 ['๐','downcast $0 $2 $192','close $54 $81 headache $255 sad $151 yikes'],
   333 ['๐ฉ','weary $0','$158 fail $81 $189 mad nooo sad $338 $154 $80'],
   334 ['๐ซ','$154 $0','cost $81 nap sad sneeze'],
   335 ['๐ฅฑ','yawning $0','bedtime $340 goodnight nap $92 sleep $338 $154 $125 zzz'],
   336 ['๐ค','$0 $2 steam from $247','$244 $150 $81 fume fuming furious fury mad triumph $80 won'],
   337 ['๐ก','enraged $0','$244 $150 $81 mad maddening pouting red $155 $80 $330'],
   338 ['๐ ','$150 $0','$244 blame $81 frustrated mad maddening rage $155 $80 $330'],
   339 ['๐คฌ','$0 $2 symbols on $55','censor cursing cussing mad pissed swearing'],
   340 ['๐','$18 $0 $2 $328','demon devil $329 $24 $23 $13 $184 $155 $14 $22'],
   341 ['๐ฟ','$150 $0 $2 $328','demon devil $329 $24 $23 $13 imp mischievous $184 $155 $22'],
   342 ['๐','skull','$149 $123 $327 $0 $24 $23 iโm lmao $103 $22 $252'],
   343 ['โ ๏ธ','skull and crossbones','$123 $327 $0 $103'],
   344 ['๐ฉ','pile of poo','bs $53 doo dung $0 fml $103 poop smelly smh stink stinks stinky turd'],
   345 ['๐คก','clown $0',''],['๐น','ogre','$102 devil $0 $24 $23 $13 $248 $103 $185 $22'],
   346 ['๐บ','goblin','$150 $102 $0 $24 $23 $13 $248 mean $103 $22'],
   347 ['๐ป','ghost','boo $102 $127 $0 $24 $23 $13 $148 haunting $103 $185 silly $22'],
   348 ['๐ฝ๏ธ','alien','$102 extraterrestrial $0 $24 $23 $13 $103 $19 $22 ufo'],
   349 ['๐พ','alien $103','$102 extraterrestrial $0 $24 $23 $13 $16 gamer games pixelated $19 $22 ufo'],
   350 ['๐ค','robot','$0 $103'],['๐บ','$93 cat','$1 $0 $55 $43 $14 $18'],
   351 ['๐ธ','$93 cat $2 $18 $32','$1 $0 $14'],
   352 ['๐น','cat $2 tears of joy','$1 $0 $256 laughing lol'],
   353 ['๐ป','$18 cat $2 heart-eyes','$1 $0 $8 $14'],
   354 ['๐ผ','cat $2 wry $14','$1 $0 ironic'],['๐ฝ','$190 cat','$1 $82 eye $32 $0'],
   355 ['๐','weary cat','$1 $0 oh $245'],['๐ฟ','$158 cat','$1 $0 sad $191'],
   356 ['๐พ','pouting cat','$1 $0'],
   357 ['๐','see-no-evil $183','embarrassed $0 $66 forgot $88 hide omg $52 $151 $156 smh watch'],
   358 ['๐','hear-no-evil $183','$1 $243 $0 $66 $88 listen not $52 $156 shh tmi'],
   359 ['๐','speak-no-evil $183','$1 $0 $66 $88 not oops $52 $188 $156 stealth'],
   360 ['๐','$8 $147','$6 $182 $29 $326'],
   361 ['๐','$6 $2 $5','143 $344 cupid $67 $35 ily $8 $29 $326'],
   362 ['๐','$6 $2 ribbon','143 $65 $35 ily $157 $326 $68'],
   363 ['๐','sparkling $6','143 $35 $127 $104 ily $157 $325 $92 sparkle $68'],
   364 ['๐','growing $6','143 $35 $127 heartpulse ily $157 muah $255 pulse $68'],
   365 ['๐','beating $6','143 cardio $35 heartbeat ily $8 pulsating pulse'],
   366 ['๐','revolving $254','143 $344 $65 $35'],
   367 ['๐','two $254','143 $65 $67 $36 $35 ily $157 $8 loving $68'],
   368 ['๐','$6 decoration','143 $35 hearth $184 $34'],
   369 ['โฃ๏ธ','$6 $242','$146 $33 $121'],
   370 ['๐','broken $6','break crushed $35 heartbroken lonely sad'],
   371 ['โค๏ธ','red $6','$35 $8'],['๐งก','$145 $6','143'],
   372 ['๐','$241 $6','143 cardiac $35 ily $8'],
   373 ['๐','$120 $6','143 $35 ily $8 romantic'],['๐','$79 $6','143 $35 ily $8 $29'],
   374 ['๐','$184 $6','143 bestest $35 ily $8'],['๐ค','$240 $6','143'],
   375 ['๐ค','$101 $6','$329 wicked'],['๐ค','$34 $6','143'],
   376 ['๐','$126 $33','$36 $35 $6 $190 lips $29 sexy'],
   377 ['๐ฏ','hundred points','100 a+ agree clearly definitely faithful fleek $342 keep perfect score true truth yup'],
   378 ['๐ข','$244 $119','$150 $53 mad $330'],
   379 ['๐ฅ','collision','bomb $239 collide $53 explode'],
   380 ['๐ซ','$337','$53 shining shooting $87 stars'],
   381 ['๐ฆ','$192 droplets','$53 drip drops splashing squirt $78 wet work workout'],
   382 ['๐จ','dashing away','$47 $53 fart $144 go gone gotta running smoke'],
   383 ['๐ณ๏ธ','hole',''],
   384 ['๐ฌ','speech $180','$181 $53 dialog message sms talk text typing'],
   385 ['๐๏ธโ๐จ๏ธ','eye in speech $181','$180 witness'],
   386 ['๐จ๏ธ','$118 speech $181','$180 dialog'],['๐ฏ๏ธ','$77 $244 $181','$150 $180 mad'],
   387 ['๐ญ','thought $180','$181 cartoon $47 $53 daydream decisions dream idea invent invention realize think thoughts wonder'],
   388 ['๐ค','ZZZ','$53 $104 goodnight $92 sleep sleeping $338 $154 zzz'],
   389 ['๐','waving $17','bye cya g2g greetings gtg hello hey hi later outtie ttfn ttyl wave yo you'],
   390 ['๐ค','$124 back of $17','$238'],['๐๏ธ','$17 $2 $237 splayed','$124 $143'],
   391 ['โ๏ธ','$124 $17','5 five $324 $143'],['๐','vulcan salute','$117 $17 $90'],
   392 ['๐','OK $17','$193 bet dope fleek fosho got gotcha legit ok okay pinch rad sure $28 three'],
   393 ['๐ค','pinched $237','$88 $17 hold huh interrogation patience relax sarcastic ugh $250 zip'],
   394 ['๐ค','pinching $17','amount bit $237 little $105 sort'],
   395 ['โ๏ธ','victory $17','$339'],['๐ค','crossed $237','$17 luck'],
   396 ['๐ค','love-you $88','$237 $17 ily three'],
   397 ['๐ค','$51 of the $328','$117 $17 rock-on'],
   398 ['๐ค','call me $17','hang loose shaka'],['๐๏ธ','$238 $142 $236 $118','$117'],
   399 ['๐๏ธ','$238 $142 $236 $77','$117'],['๐๏ธ','$238 $142 $236 up','$117'],
   400 ['๐','middle $117','$17'],['๐๏ธ','$238 $142 $236 $100','$117'],
   401 ['โ๏ธ','$142 $236 up','$117 $17 this'],['๐๏ธ','thumbs up','+1 $104 $17 like yes'],
   402 ['๐๏ธ','thumbs $100','-1 bad dislike $104 $17 no nope'],
   403 ['โ๏ธ','$124 $323','clenched $17 punch solidarity'],
   404 ['๐','$234 $323','absolutely agree $239 bro bruh bump clenched correct $17 knuckle pound punch $235 ttyl'],
   405 ['๐ค','left-facing $323','leftwards'],['๐ค','right-facing $323','rightwards'],
   406 ['๐','clapping $90','applause approval $193 congrats congratulations $127 $104 great homie job $345 prayed well yay'],
   407 ['๐','raising $90','$12 $88 hooray praise $124'],
   408 ['๐','$43 $90','hug jazz swerve'],
   409 ['๐คฒ','palms up $99','cupped dua $90 pray prayer wish'],
   410 ['๐ค','handshake','agreement deal meeting'],
   411 ['๐','folded $90','appreciate ask beg blessed bow cmon five $88 $324 please pray thanks thx'],
   412 ['โ๏ธ','writing $17','write'],
   413 ['๐
','nail polish','$340 care cosmetics $179 makeup manicure $125'],
   414 ['๐คณ','selfie','$178 $177'],
   415 ['๐ช','flexed biceps','arm beast bench bodybuilder bro curls gains gym jacked muscle press ripped strong weightlift'],
   416 ['๐ฆพ','mechanical arm','$64 prosthetic'],['๐ฆฟ','mechanical leg','$64 prosthetic'],
   417 ['๐ฆต','leg','bent foot $233 knee limb'],['๐ฆถ','foot','ankle feet $233 stomp'],
   418 ['๐๏ธ','ear','$149 $243 $322 hearing listen listening $50'],
   419 ['๐ฆป','ear $2 hearing aid','$64 hard'],
   420 ['๐','$247','$149 noses nosey odor smell smells'],
   421 ['๐ง ','brain','intelligent smart'],
   422 ['๐ซ','anatomical $6','beat cardiology heartbeat organ pulse real red'],
   423 ['๐ซ','lungs','breath breathe exhalation inhalation organ respiration'],
   424 ['๐ฆท','tooth','dentist pearly $128 $34'],
   425 ['๐ฆด','bone','bones dog skeleton wishbone'],
   426 ['๐','$32','$149 $0 googly look looking omg peep see seeing'],
   427 ['๐๏ธ','eye','1 $149 one'],['๐
','$253','$149 lick slurp'],
   428 ['๐','$55','beauty $149 $126 $190 lips lipstick'],
   429 ['๐ถ','$116','babies children goo infant newborn pregnant $232'],
   430 ['๐ง','$321','bright-eyed grandchild kid $232 younger'],
   431 ['๐ฆ','boy','bright-eyed $321 grandson kid son $232 younger'],
   432 ['๐ง','girl','bright-eyed $321 daughter granddaughter kid virgo $232 younger $11'],
   433 ['๐ง','$42','$176'],['๐จ','man','$176 bro'],['๐ฉ','$86','$176 $231'],
   434 ['๐ง','older $42','$176 elderly grandparent $320'],
   435 ['๐ด','old man','$176 bald elderly gramps grandfather grandpa $320'],
   436 ['๐ต','old $86','$176 elderly grandma grandmother granny $231 $320'],
   437 ['๐ง','deaf $42','$64 ear $88 $322'],['๐งโโ๏ธ','deaf man','$64 ear $88 $322'],
   438 ['๐งโโ๏ธ','deaf $86','$64 ear $88 $322'],
   439 ['๐งโโ๏ธ','health $319','$153 healthcare nurse therapist'],
   440 ['๐งโ๐','student','graduate'],['๐งโ๐ซ','teacher','instructor lecturer professor'],
   441 ['๐งโโ๏ธ','judge','justice law scales'],['๐งโ๐พ','farmer','gardener rancher'],
   442 ['๐งโ๐ณ','cook','chef'],['๐งโ๐ง','mechanic','electrician plumber tradesperson'],
   443 ['๐งโ๐ญ','factory $319','assembly industrial'],
   444 ['๐งโ๐ผ','$230 $319','architect business manager white-collar'],
   445 ['๐งโ๐ฌ','scientist','biologist chemist engineer mathematician physicist'],
   446 ['๐งโ๐ป','technologist','coder $76 developer inventor software'],
   447 ['๐งโ๐ค','singer','actor entertainer $235 rockstar $87'],
   448 ['๐งโ๐จ','artist','palette'],['๐งโโ๏ธ','pilot','plane'],
   449 ['๐งโ๐','astronaut','rocket $19'],['๐งโ๐','firefighter','firetruck'],
   450 ['๐ฎ','$318 officer','apprehend arrest citation cop law $341 pulled undercover'],
   451 ['๐ต๏ธ','detective','sleuth spy'],['๐','guard','buckingham helmet london palace'],
   452 ['๐ฅท','ninja','assassin fight fighter hidden $42 $156 skills sly soldier stealth war'],
   453 ['๐ท','construction $319','build fix hardhat hat man $42 rebuild remodel repair'],
   454 ['๐คด','prince','crown $24 $23 $13 king royal royalty $22'],
   455 ['๐ธ','princess','crown $24 $23 $13 queen royal royalty $22'],
   456 ['๐คฐ','pregnant $86',''],['๐คฑ','breast-feeding','$116 mom mother nursing $86'],
   457 ['๐ผ','$116 angel','church $0 $24 $23 $13 $22'],
   458 ['๐
','Santa Claus','$12 $175 claus $24 $13 father holiday merry santa $22 xmas'],
   459 ['๐คถ','Mrs. Claus','$12 $175 claus $24 $13 holiday merry mother mrs santa $22 xmas'],
   460 ['๐งโ๐','Mx Claus','$12 $175 claus $24 $13 holiday merry mx santa $22 xmas'],
   461 ['๐ฆธ','superhero','$104 superpower'],
   462 ['๐ฆน','supervillain','bad criminal $329 superpower'],
   463 ['๐ง','mage','$13 $174 play sorcerer sorceress sorcery spell summon witch wizard'],
   464 ['๐ง','$24','$23 $13 myth $42 pixie $22 wings'],
   465 ['๐ง','vampire','blood dracula fangs $148 $185 supernatural $128 undead'],
   466 ['๐ง','merperson','$102 $23 $317 $98 sea $316 $315'],
   467 ['๐งโโ๏ธ','merman','$102 $23 $317 neptune $98 poseidon sea $316 $315 triton'],
   468 ['๐งโโ๏ธ','mermaid','$102 $23 $317 merwoman $98 sea $316 $315'],
   469 ['๐ง','elf','elves enchantment $13 $317 $174 magical myth'],
   470 ['๐ง','genie','djinn $13 jinn lamp myth rub wishes'],
   471 ['๐ง','zombie','apocalypse $123 $148 horror $185 undead walking'],
   472 ['๐ฏ','$141 $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 soulmate twin twinsies'],
   473 ['๐ฏโโ๏ธ','men $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 $141 soulmate twin twinsies'],
   474 ['๐ฏโโ๏ธ','women $2 $229 $243','$173 bff counterpart dancer $85 identical pair $91 $335 $141 soulmate twin twinsies'],
   475 ['๐','$314 $313','jockey racehorse riding $41'],['โท๏ธ','skier','$312'],
   476 ['๐๏ธ','snowboarder','ski $41'],
   477 ['๐คผ','$141 wrestling','combat duel grapple $311 tournament wrestle'],
   478 ['๐คผโโ๏ธ','men wrestling','combat duel grapple $311 tournament wrestle'],
   479 ['๐คผโโ๏ธ','women wrestling','combat duel grapple $311 tournament wrestle'],
   480 ['๐งโ๐คโ๐ง','$141 holding $90','bae $173 bff $75 $36 $107 $310 $309'],
   481 ['๐ญ','women holding $90','bae $173 bff $75 $36 $107 $310 girls sisters $309'],
   482 ['๐ฌ','men holding $90','bae $173 bff boys brothers $75 $36 $107 $310 $309'],
   483 ['๐','$126','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'],
   484 ['๐ฉโโค๏ธโ๐โ๐จ','kiss: $307 man','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'],
   485 ['๐จโโค๏ธโ๐โ๐จ','kiss: man, man','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'],
   486 ['๐ฉโโค๏ธโ๐โ๐ฉ','kiss: $307 $86','$65 $115 bae $75 $67 $36 $6 $8 $308 $42 $29 $99 $68'],
   487 ['๐','$75 $2 $6','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'],
   488 ['๐ฉโโค๏ธโ๐จ','$75 $2 heart: $307 man','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'],
   489 ['๐จโโค๏ธโ๐จ','$75 $2 heart: man, man','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'],
   490 ['๐ฉโโค๏ธโ๐ฉ','$75 $2 heart: $307 $86','$65 $115 bae $36 $126 $8 $42 $306 $29 $99 you'],
   491 ['๐ฃ๏ธ','speaking head','$0 silhouette'],
   492 ['๐ค','bust in silhouette','mysterious shadow'],
   493 ['๐ฅ','busts in silhouette','bff everyone friend $310 $141'],
   494 ['๐ซ','$141 hugging','comfort embrace farewell friendship goodbye hello $8 thanks'],
   495 ['๐ช๏ธ','family','$321'],['๐ฃ','footprints','barefoot $9 omw walk'],
   496 ['๐ต','$183 $0','$1 banana'],['๐','$183','$1 banana'],['๐ฆ','gorilla','$1'],
   497 ['๐ฆง','orangutan','$1 ape $183'],['๐ถ','dog $0','$344 $1 pet puppies puppy'],
   498 ['๐๏ธ','dog','$1 $228 dogs pet'],['๐ฆฎ','guide dog','$64 $1 blind'],
   499 ['๐โ๐ฆบ','service dog','$64 $1 assistance'],['๐ฉ','poodle','$1 dog fluffy'],
   500 ['๐บ','wolf','$1 $0'],['๐ฆ','fox','$1 $0'],['๐ฆ','raccoon','$1 curious sly'],
   501 ['๐ฑ','cat $0','$1 kitten kitty pet'],['๐๏ธ','cat','$1 $228 cats kitten pet'],
   502 ['๐โโฌ','$101 cat','$1 feline $148 meow unlucky'],
   503 ['๐ฆ','lion','alpha $1 $0 leo mane order rawr roar safari strong $11'],
   504 ['๐ฏ','tiger $0','$1 big cat predator'],['๐
','tiger','$1 big cat predator zoo'],
   505 ['๐','leopard','$1 big cat predator zoo'],
   506 ['๐ด','$314 $0','$1 dressage equine $74 horses'],
   507 ['๐','$314','$1 equestrian $74 racehorse $313'],['๐ฆ','unicorn','$0'],
   508 ['๐ฆ','zebra','$1 stripe'],['๐ฆ','deer','$1'],
   509 ['๐ฆฌ','bison','$1 buffalo herd wisent'],['๐ฎ','cow $0','$1 $74 $172 moo'],
   510 ['๐','ox','$1 $228 bull $74 taurus $11'],['๐','$78 buffalo','$1 zoo'],
   511 ['๐','cow','$1 $228 $74 $172 moo'],['๐ท','pig $0','$1 bacon $74 pork'],
   512 ['๐','pig','$1 bacon $74 pork sow'],['๐','boar','$1 pig'],
   513 ['๐ฝ','pig $247','$1 $0 $74 smell snout'],
   514 ['๐','ram','$1 aries $328 male sheep $11 zoo'],
   515 ['๐','ewe','$1 baa $74 female fluffy lamb sheep wool'],
   516 ['๐','goat','$1 capricorn $74 $172 $11'],
   517 ['๐ช','camel','$1 $227 dromedary hump one'],
   518 ['๐ซ','two-hump camel','$1 bactrian $227'],
   519 ['๐ฆ','llama','alpaca $1 guanaco vicuรฑa wool'],['๐ฆ','giraffe','$1 spots'],
   520 ['๐','elephant','$1'],['๐ฆฃ','mammoth','$1 extinction $106 tusk wooly'],
   521 ['๐ฆ','rhinoceros','$1'],['๐ฆ','hippopotamus','$1'],['๐ญ','$305 $0','$1'],
   522 ['๐','$305','$1 $228'],['๐','rat','$1'],['๐น','hamster','$1 $0 pet'],
   523 ['๐ฐ','rabbit $0','$1 $229 pet'],['๐','rabbit','$1 $229 pet'],
   524 ['๐ฟ๏ธ','chipmunk','$1 squirrel'],['๐ฆซ','beaver','$1 dam $128'],
   525 ['๐ฆ','hedgehog','$1 spiny'],['๐ฆ','bat','$1 vampire'],
   526 ['๐ป','$226','$1 $0 grizzly growl honey'],['๐ปโโ๏ธ','polar $226','$1 arctic $34'],
   527 ['๐จ','koala','$1 australia $226 $100 $0 marsupial under'],
   528 ['๐ผ','panda','$1 bamboo $0'],['๐ฆฅ','sloth','lazy slow'],
   529 ['๐ฆฆ','otter','$1 fishing playful'],['๐ฆจ','skunk','$1 stink'],
   530 ['๐ฆ','kangaroo','$1 joey jump marsupial'],['๐ฆก','badger','$1 honey pester'],
   531 ['๐พ','paw prints','feet paws'],['๐ฆ','turkey','$27 gobble thanksgiving'],
   532 ['๐','chicken','$1 $27 $40'],['๐','rooster','$1 $27 $40'],
   533 ['๐ฃ','hatching chick','$1 $116 $27 egg'],['๐ค','$116 chick','$1 $27 $40'],
   534 ['๐ฅ','front-facing $116 chick','$1 $27 newborn $40'],['๐ฆ๏ธ','$27','$1 $40'],
   535 ['๐ง','penguin','$1 antarctica $27 $40'],['๐๏ธ','dove','$27 fly $40 $339'],
   536 ['๐ฆ
','eagle','$1 $27 $40'],['๐ฆ','duck','$1 $27 $40'],
   537 ['๐ฆข','swan','$1 $27 cygnet duckling $40 ugly'],['๐ฆ','owl','$1 $27 $40 $320'],
   538 ['๐ฆค','dodo','$1 $27 extinction $106 $40'],
   539 ['๐ชถ','feather','$27 flight $73 plumage'],
   540 ['๐ฆฉ','flamingo','$1 $27 flamboyant $40 $171'],
   541 ['๐ฆ','peacock','$1 $27 colorful $40 ostentatious peahen pretty proud'],
   542 ['๐ฆ','parrot','$1 $27 $40 pirate talk'],['๐ธ','frog','$1 $0'],
   543 ['๐','crocodile','$1 zoo'],['๐ข','turtle','$1 terrapin tortoise'],
   544 ['๐ฆ','lizard','$1 reptile'],['๐','snake','$1 bearer ophiuchus serpent $11'],
   545 ['๐ฒ','dragon $0','$1 $24 $23 $22'],['๐','dragon','$1 $24 $23 knights $22'],
   546 ['๐ฆ','sauropod','brachiosaurus brontosaurus dinosaur diplodocus'],
   547 ['๐ฆ','T-Rex','dinosaur rex t t-rex tyrannosaurus'],
   548 ['๐ณ','spouting whale','$1 $89 $0 $98'],['๐','whale','$1 $89 $98'],
   549 ['๐ฌ','dolphin','$1 $89 flipper $98'],['๐ฆญ','seal','$1 lion $98'],
   550 ['๐๏ธ','$225','$1 dinner fishes fishing pisces $11'],
   551 ['๐ ','$171 $225','$1 fishes'],['๐ก','blowfish','$1'],['๐ฆ','shark','$1 $225'],
   552 ['๐','octopus','$1 $102 $98'],['๐','spiral shell','$1 $89 conch sea'],
   553 ['๐ฆ','crab','cancer $11'],['๐ฆ','lobster','$1 bisque claws seafood'],
   554 ['๐ฆ','shrimp','$3 shellfish $105'],['๐ฆ','squid','$1 $3 mollusk'],
   555 ['๐ฆช','oyster','diving pearl'],['๐','snail','$1 escargot $170 $72 slug'],
   556 ['๐ฆ','butterfly','$71 pretty'],['๐','bug','$1 $170 $71'],
   557 ['๐','ant','$1 $170 $71'],['๐','honeybee','$1 bumblebee $71 $72 spring'],
   558 ['๐ชฒ','beetle','$1 bug $71'],
   559 ['๐','$231 beetle','$1 $170 $71 ladybird ladybug $72'],
   560 ['๐ฆ','cricket','$1 bug grasshopper $71 orthoptera'],
   561 ['๐ชณ','cockroach','$1 $71 pest'],['๐ท๏ธ','spider','$1 $71'],['๐ธ๏ธ','spider web',''],
   562 ['๐ฆ','scorpion','scorpius $11'],
   563 ['๐ฆ','mosquito','bite disease fever $71 malaria pest virus'],
   564 ['๐ชฐ','fly','$1 disease $71 maggot pest rotting'],
   565 ['๐ชฑ','worm','$1 annelid earthworm parasite'],
   566 ['๐ฆ ','microbe','amoeba bacteria $140 virus'],
   567 ['๐','bouquet','$65 $187 $67 $97 $8 $26 $29'],
   568 ['๐ธ','cherry blossom','$97 $26 spring springtime'],['๐ฎ','$34 $97',''],
   569 ['๐ต๏ธ','rosette','$26'],['๐น','rose','beauty elegant $97 $8 $26 red $326'],
   570 ['๐ฅ','wilted $97','dying'],['๐บ','hibiscus','$97 $26'],
   571 ['๐ป','sunflower','outdoors $26'],['๐ผ','blossom','buttercup dandelion $97 $26'],
   572 ['๐ท','tulip','blossom $97 growth $26'],
   573 ['๐ฑ','seedling','$26 sapling sprout $232'],
   574 ['๐ชด','potted $26','decor grow $224 nurturing'],
   575 ['๐ฒ','evergreen $223','$175 forest pine'],
   576 ['๐ณ','deciduous $223','forest $120 habitat shedding'],
   577 ['๐ด','palm $223','$89 $26 $171'],['๐ต','cactus','$227 drought $72 $26'],
   578 ['๐พ','sheaf of $222','ear grain grains $26'],['๐ฟ','herb','$221 $26'],
   579 ['โ๏ธ','shamrock','irish $26'],
   580 ['๐','four $221 clover','4 four-leaf irish lucky $26'],
   581 ['๐','maple $221','falling'],['๐','fallen $221','autumn falling'],
   582 ['๐','$221 fluttering in wind','blow'],['๐','mushroom','fungus toadstool'],
   583 ['๐','grapes','dionysus $21'],['๐','melon','cantaloupe $21'],
   584 ['๐','watermelon','$21'],
   585 ['๐','tangerine','c citrus $21 nectarine $145 vitamin'],
   586 ['๐','lemon','citrus $21 sour'],['๐','banana','$21 potassium'],
   587 ['๐','pineapple','colada $21 pina $171'],['๐ฅญ','mango','$3 $21 $171'],
   588 ['๐','red apple','diet $3 $21 health ripe'],['๐','$120 apple','$21'],
   589 ['๐','pear','$21'],['๐','peach','$21'],
   590 ['๐','cherries','berries cherry $21 red'],['๐','strawberry','$21'],
   591 ['๐ซ','blueberries','berry bilberry blueberry $3 $21'],['๐ฅ','kiwi $21','$3'],
   592 ['๐
','tomato','$3 $21 $139'],['๐ซ','olive','$3'],
   593 ['๐ฅฅ','coconut','colada palm piรฑa'],['๐ฅ','avocado','$3 $21'],
   594 ['๐','eggplant','aubergine $139'],['๐ฅ','potato','$3 $139'],
   595 ['๐ฅ','carrot','$3 $139'],['๐ฝ','ear of corn','crops $74 maize maze'],
   596 ['๐ถ๏ธ','hot pepper',''],['๐ซ','$220 pepper','capsicum $3 $139'],
   597 ['๐ฅ','cucumber','$3 pickle $139'],
   598 ['๐ฅฌ','leafy $120','bok burgers cabbage choy kale lettuce salad'],
   599 ['๐ฅฆ','broccoli','cabbage wild'],['๐ง','garlic','flavoring'],
   600 ['๐ง
','onion','flavoring'],['๐ฅ','peanuts','$3 $139'],
   601 ['๐ฐ','chestnut','almond $26'],
   602 ['๐','$219','carbs $3 grain loaf $46 toast wheat'],
   603 ['๐ฅ','croissant','$219 $84 $218 $3 french roll'],
   604 ['๐ฅ','baguette $219','$3 french'],
   605 ['๐ซ','flatbread','arepa $3 gordita lavash naan pita'],
   606 ['๐ฅจ','pretzel','convoluted twisted'],['๐ฅฏ','bagel','bakery $219 $84 schmear'],
   607 ['๐ฅ','pancakes','$84 crรชpe $3 hotcake'],['๐ง','waffle','$84 indecisive iron'],
   608 ['๐ง','$304 wedge',''],['๐','$303 on bone',''],
   609 ['๐','poultry leg','bone chicken drumstick $189 turkey'],
   610 ['๐ฅฉ','cut of $303','chop lambchop porkchop red steak'],
   611 ['๐ฅ','bacon','$84 $3 $303'],['๐','hamburger','eat $144 $3 $189'],
   612 ['๐','french fries','$144 $3'],['๐','pizza','$304 $3 $189 pepperoni slice'],
   613 ['๐ญ','hot dog','frankfurter hotdog sausage'],['๐ฅช','sandwich','$219'],
   614 ['๐ฎ','taco','mexican'],['๐ฏ','burrito','mexican wrap'],
   615 ['๐ซ','tamale','$3 mexican pamonha wrapped'],
   616 ['๐ฅ','stuffed flatbread','falafel $3 gyro kebab'],
   617 ['๐ง','falafel','chickpea meatball'],['๐ฅ','egg','$84 $3'],
   618 ['๐ณ','$217','$84 easy egg fry frying $341 pan $46 side sunny up'],
   619 ['๐ฅ','shallow pan of $3','casserole paella'],['๐ฒ','pot of $3','soup stew'],
   620 ['๐ซ','fondue','$304 chocolate $3 melted pot ski'],
   621 ['๐ฅฃ','bowl $2 spoon','$84 cereal congee oatmeal porridge'],
   622 ['๐ฅ','$120 salad','$3'],['๐ฟ','popcorn','$169'],['๐ง','butter','dairy'],
   623 ['๐ง','salt','condiment flavor mad salty shaker taste $330'],
   624 ['๐ฅซ','canned $3',''],['๐ฑ','bento box','$3'],['๐','$222 cracker','$3'],
   625 ['๐','$222 $63','$3 $216'],['๐','cooked $222','$3'],['๐','curry $222','$3'],
   626 ['๐','steaming bowl','chopsticks $3 noodle pho ramen soup'],
   627 ['๐','spaghetti','$3 meatballs pasta $46'],['๐ ','roasted $28 potato','$3'],
   628 ['๐ข','oden','$3 kebab $46 seafood skewer $215'],['๐ฃ','sushi','$3'],
   629 ['๐ค','fried shrimp','prawn tempura'],['๐ฅ','$225 cake $2 swirl','$3 $302 $46'],
   630 ['๐ฅฎ','$39 cake','autumn festival yuรจbวng'],
   631 ['๐ก','dango','$49 $216 skewer $215 $28'],
   632 ['๐ฅ','dumpling','empanada gyลza jiaozi pierogi potsticker'],
   633 ['๐ฅ ','fortune cookie','prophecy'],
   634 ['๐ฅก','takeout box','chopsticks delivery $3 oyster pail'],
   635 ['๐ฆ','soft ice cream','$49 $3 icecream $46 serve $28'],
   636 ['๐ง','shaved ice','$49 $46 $28'],['๐จ','ice cream','$49 $3 $46 $28'],
   637 ['๐ฉ','doughnut','$84 $49 donut $3 $28'],['๐ช','cookie','chip chocolate $49 $28'],
   638 ['๐','$187 cake','bday $12 $49 $56 $302 $28'],
   639 ['๐ฐ','shortcake','$49 $302 slice $28'],
   640 ['๐ง','cupcake','bakery $49 sprinkles sugar $28 treat'],
   641 ['๐ฅง','pie','apple filling $21 $303 $302 pumpkin slice'],
   642 ['๐ซ','chocolate bar','$301 $49 $148 $28 tooth'],
   643 ['๐ฌ','$301','cavities $49 $148 $46 $28 tooth wrapper'],
   644 ['๐ญ','lollipop','$301 $49 $3 $46 $28'],['๐ฎ','custard','$49 pudding $28'],
   645 ['๐ฏ','honey pot','barrel $226 $3 honeypot jar $28'],
   646 ['๐ผ','$116 $300','babies birth born $38 infant $172 newborn'],
   647 ['๐ฅ','$168 of $172','$38'],
   648 ['โ๏ธ','hot $214','cafe caffeine chai coffee $38 $325 steaming tea'],
   649 ['๐ซ','teapot','brew $38 $3'],['๐ต','teacup without handle','$214 $38 oolong'],
   650 ['๐ถ','sake','bar $214 $300 cup $38 $46'],['๐พ','$300 $2 popping cork','bar $38'],
   651 ['๐ท','wine $168','$213 bar $214 $212 $299 $38 $167 $211 $46'],
   652 ['๐ธ๏ธ','cocktail $168','$213 bar $212 $299 $38 $167 $211 mad martini men'],
   653 ['๐น','$171 $38','$213 bar $212 $299 cocktail $167 $211 drunk mai $91 tai tropics'],
   654 ['๐บ','beer mug','$213 ale bar $212 $38 $167 $211 octoberfest oktoberfest pint stein summer'],
   655 ['๐ป','clinking beer mugs','$213 bar $212 bottoms cheers $167 $211'],
   656 ['๐ฅ','clinking $334','$186 $38'],
   657 ['๐ฅ','tumbler $168','liquor scotch shot whiskey whisky'],
   658 ['๐ฅค','cup $2 straw','$38 juice malt soda soft $78'],
   659 ['๐ง','$181 tea','boba $3 $172 pearl'],['๐ง','$214 box','juice straw $28'],
   660 ['๐ง','mate','$38'],['๐ง','ice','$54 cube iceberg'],
   661 ['๐ฅข','chopsticks','hashi jeotgarak kuaizi'],
   662 ['๐ฝ๏ธ','fork and $298 $2 plate','$217 dinner eat'],
   663 ['๐ด','fork and $298','$84 breaky $217 cutlery delicious dinner eat feed $3 $189 lunch $46 yum yummy'],
   664 ['๐ฅ','spoon','eat tableware'],['๐ช','kitchen $298','chef $217 hocho $7 $114'],
   665 ['๐บ','amphora','aquarius $217 $38 jug $7 $114 $11'],
   666 ['๐๏ธ','$296 showing Europe-Africa','africa $297 europe europe-africa $210'],
   667 ['๐๏ธ','$296 showing Americas','americas $297 $210'],
   668 ['๐๏ธ','$296 showing Asia-Australia','asia asia-australia australia $297 $210'],
   669 ['๐','$296 $2 meridians','$297 internet web $210 worldwide'],
   670 ['๐บ๏ธ','$210 map',''],['๐พ','map of Japan','japan'],
   671 ['๐งญ','compass','$96 magnetic navigation orienteering'],
   672 ['๐๏ธ','snow-capped $166','$54'],['โฐ๏ธ','$166',''],
   673 ['๐','volcano','eruption $166 $72'],['๐ป','mount fuji','$166 $72'],
   674 ['๐๏ธ','camping',''],['๐๏ธ','$89 $2 $209',''],['๐๏ธ','$227',''],
   675 ['๐๏ธ','$227 island',''],['๐๏ธ','national park',''],['๐๏ธ','stadium',''],
   676 ['๐๏ธ','classical $31',''],['๐๏ธ','$31 construction','crane'],
   677 ['๐งฑ','brick','bricks clay mortar wall'],
   678 ['๐ชจ','$235','boulder $146 solid stone tough'],['๐ชต','wood','log lumber timber'],
   679 ['๐','hut','$138 $224 roundhouse shelter yurt'],['๐๏ธ','houses',''],
   680 ['๐๏ธ','derelict $224','$138'],
   681 ['๐ ๏ธ','$224','$31 country $6 $138 ranch settle simple suburban suburbia where'],
   682 ['๐ก','$224 $2 $170','$31 country $6 $138 ranch settle simple suburban suburbia where'],
   683 ['๐ข','$230 $31','city cubical job'],['๐ค','post $230','$31 european'],
   684 ['๐ฅ','hospital','$31 $153 $152'],['๐ฆ','$137','$31'],['๐จ','$165','$31'],
   685 ['๐ฉ','$8 $165','$31'],['๐ช','convenience store','24 $31 hours'],
   686 ['๐ซ','$136','$31'],['๐ฌ','department store','$31'],['๐ญ๏ธ','factory','$31'],
   687 ['๐ฐ','castle','$31 european'],['๐','wedding','chapel hitched nuptials $29'],
   688 ['๐ผ','Tokyo tower','tokyo'],
   689 ['๐ฝ','Statue of Liberty','liberty new ny nyc statue york'],
   690 ['โช๏ธ','church','bless chapel christian $164 $37'],
   691 ['๐','mosque','islam masjid muslim $37'],['๐','hindu temple',''],
   692 ['๐','synagogue','jew $295 $294 $37 temple'],['โฉ๏ธ','shinto shrine','$37'],
   693 ['๐','kaaba','hajj islam muslim $37 umrah'],['โฒ๏ธ','fountain',''],
   694 ['โบ๏ธ','tent','camping'],['๐','foggy',''],['๐','$92 $2 stars',''],
   695 ['๐๏ธ','cityscape',''],['๐','sunrise $341 mountains','$325'],
   696 ['๐
','sunrise','$325 $72'],
   697 ['๐','cityscape at dusk','$31 evening landscape sun sunset'],
   698 ['๐','sunset','$31 dusk'],['๐','bridge at $92',''],
   699 ['โจ๏ธ','hot springs','hotsprings steaming'],['๐ ','carousel $314','$95'],
   700 ['๐ก','ferris wheel','amusement park theme'],
   701 ['๐ข','roller coaster','amusement park theme'],
   702 ['๐','barber pole','cut fresh haircut shave'],['๐ช','circus tent',''],
   703 ['๐','locomotive','caboose engine $83 steam $135 trains $62'],
   704 ['๐','$83 car','$208 $135 $293 $62 $292'],
   705 ['๐','high-speed $135','$83 shinkansen'],
   706 ['๐
','bullet $135','high-speed $247 $83 shinkansen speed $62'],
   707 ['๐','$135','arrived choo $83'],['๐๏ธ','metro','subway $62'],
   708 ['๐','$73 rail','arrived monorail $83'],['๐','station','$83 $135'],
   709 ['๐','$293','$292'],['๐','monorail','$61'],['๐','$166 $83','car trip'],
   710 ['๐','$293 car','bus trolley $292'],['๐','bus','$136 $61'],
   711 ['๐๏ธ','$234 bus','cars'],['๐','$292','$293'],['๐','minibus','$207 van $61'],
   712 ['๐๏ธ','ambulance','emergency $61'],['๐','fire engine','$291'],
   713 ['๐','$318 car','5โ0 cops patrol'],['๐๏ธ','$234 $318 car',''],
   714 ['๐','taxi','cab cabbie car $207 $61 $241'],
   715 ['๐','$234 taxi','cab cabbie cars drove hail $241'],
   716 ['๐','automobile','car driving $61'],
   717 ['๐๏ธ','$234 automobile','car cars drove $61'],
   718 ['๐','$41 utility $61','car $207 recreational sportutility'],
   719 ['๐ป','pickup $291','automobile car flatbed pick-up transportation'],
   720 ['๐','delivery $291','car $207 $61'],
   721 ['๐','articulated lorry','car $207 move semi $291 $61'],['๐','tractor','$61'],
   722 ['๐๏ธ','$313 car','zoom'],['๐๏ธ','motorcycle','$313'],['๐ต','motor scooter',''],
   723 ['๐ฆฝ','manual wheelchair','$64'],['๐ฆผ','motorized wheelchair','$64'],
   724 ['๐บ','auto rickshaw','tuk'],
   725 ['๐ฒ๏ธ','bicycle','bike class cycling cyclist gang ride spin spinning'],
   726 ['๐ด','$233 scooter',''],['๐น','skateboard','skater wheels'],
   727 ['๐ผ','roller skate','blades skates $41'],['๐','bus $143','busstop'],
   728 ['๐ฃ๏ธ','motorway','highway road'],['๐ค๏ธ','$83 track','$135'],['๐ข๏ธ','oil drum',''],
   729 ['โฝ๏ธ','fuel pump','diesel fuelpump gas gasoline station'],
   730 ['๐จ','$318 car $73','alarm alert beacon emergency revolving $316'],
   731 ['๐ฅ','horizontal $290 $73','intersection signal $143 stoplight'],
   732 ['๐ฆ','vertical $290 $73','drove intersection signal $143 stoplight'],
   733 ['๐','$143 $51','octagonal'],['๐ง','construction','barrier'],
   734 ['โ๏ธ','anchor','$289 $7'],['โต๏ธ','sailboat','resort sailing sea yacht'],
   735 ['๐ถ','canoe','$288'],
   736 ['๐ค','speedboat','billionaire lake luxury millionaire summer $62'],
   737 ['๐ณ๏ธ','passenger $289',''],['โด๏ธ','ferry','$288 passenger'],
   738 ['๐ฅ๏ธ','motor $288','motorboat'],['๐ข','$289','$288 passenger $62'],
   739 ['โ๏ธ','$286','$287 fly flying jet $62'],['๐ฉ๏ธ','$105 $286','$287'],
   740 ['๐ซ','$286 departure','$287 check-in departures'],
   741 ['๐ฌ','$286 arrival','$287 arrivals arriving landing'],
   742 ['๐ช','parachute','hang-glide parasail skydive'],['๐บ','seat','chair'],
   743 ['๐','helicopter','roflcopter $62 $61'],['๐','suspension $83',''],
   744 ['๐ ','$166 cableway','gondola lift ski'],
   745 ['๐ก','aerial tramway','cable car gondola ropeway'],['๐ฐ๏ธ','satellite','$19'],
   746 ['๐','rocket','launch rockets $19 $62'],
   747 ['๐ธ','flying saucer','aliens extra terrestrial ufo'],
   748 ['๐๏ธ','bellhop $220','$165'],['๐งณ','luggage','bag packing roller suitcase $62'],
   749 ['โ๏ธ','hourglass $179','sand $10 timer'],
   750 ['โณ๏ธ','hourglass not $179','flowing hours sand timer waiting $252'],
   751 ['โ๏ธ','watch','$30 $10'],['โฐ๏ธ','alarm $30','hours hrs late $10 waiting'],
   752 ['โฑ๏ธ','stopwatch','$30 $10'],['โฒ๏ธ','timer $30',''],
   753 ['๐ฐ๏ธ','mantelpiece $30','$10'],['๐๏ธ','twelve $60','12 12:00 $10'],
   754 ['๐ง๏ธ','twelve-thirty','12 12:30 30 $30 $10'],['๐๏ธ','one $60','1 1:00 $10'],
   755 ['๐๏ธ','one-thirty','1 1:30 30 $30 $10'],['๐๏ธ','two $60','2 2:00 $10'],
   756 ['๐๏ธ','two-thirty','2 2:30 30 $30 $10'],['๐๏ธ','three $60','3 3:00 $10'],
   757 ['๐๏ธ','three-thirty','3 30 3:30 $30 $10'],['๐๏ธ','four $60','4 4:00 $10'],
   758 ['๐๏ธ','four-thirty','30 4 4:30 $30 $10'],['๐๏ธ','five $60','5 5:00 $10'],
   759 ['๐ ๏ธ','five-thirty','30 5 5:30 $30 $10'],['๐๏ธ','six $60','6 6:00 $10'],
   760 ['๐ก๏ธ','six-thirty','30 6 6:30 $30'],['๐๏ธ','seven $60','0 7 7:00'],
   761 ['๐ข๏ธ','seven-thirty','30 7 7:30 $30'],['๐๏ธ','eight $60','8 8:00 $10'],
   762 ['๐ฃ๏ธ','eight-thirty','30 8 8:30 $30 $10'],['๐๏ธ','nine $60','9 9:00 $10'],
   763 ['๐ค๏ธ','nine-thirty','30 9 9:30 $30 $10'],['๐๏ธ','ten $60','0 10 10:00'],
   764 ['๐ฅ๏ธ','ten-thirty','10 10:30 30 $30 $10'],['๐๏ธ','eleven $60','11 11:00 $10'],
   765 ['๐ฆ๏ธ','eleven-thirty','11 11:30 30 $30 $10'],['๐','new $39','dark $19'],
   766 ['๐','waxing $218 $39','dreams $19'],['๐','first $285 $39','$19'],
   767 ['๐','waxing gibbous $39','$19'],['๐๏ธ','$342 $39','$19'],
   768 ['๐','waning gibbous $39','$19'],['๐','last $285 $39','$19'],
   769 ['๐','waning $218 $39','$19'],['๐','$218 $39','ramadan $19'],
   770 ['๐','new $39 $0','$19'],['๐','first $285 $39 $0','$19'],
   771 ['๐๏ธ','last $285 $39 $0','dreams'],['๐ก๏ธ','thermometer','$25'],
   772 ['โ๏ธ','sun','$246 rays $19 sunny $25'],['๐','$342 $39 $0','$246'],
   773 ['๐','sun $2 $0','$89 $246 day heat shine sunny sunshine $25'],
   774 ['๐ช','ringed planet','saturn saturnine'],
   775 ['โญ๏ธ','$87','astronomy $284 stars $34'],
   776 ['๐','glowing $87','glittery $92 shining sparkle'],
   777 ['๐ ','shooting $87','falling $92 $19'],['๐','milky way','$19'],
   778 ['โ๏ธ','$47','$25'],['โ
๏ธ','sun $283 $47','cloudy $25'],
   779 ['โ๏ธ','$47 $2 lightning and $134','thunder thunderstorm'],
   780 ['๐ค๏ธ','sun $283 $105 $47','$25'],['๐ฅ๏ธ','sun $283 $106 $47','$25'],
   781 ['๐ฆ๏ธ','sun $283 $134 $47','$25'],['๐ง๏ธ','$47 $2 $134','$25'],
   782 ['๐จ๏ธ','$47 $2 $312','$54 $25'],['๐ฉ๏ธ','$47 $2 lightning','$25'],
   783 ['๐ช๏ธ','tornado','$47 $25 whirlwind'],['๐ซ๏ธ','fog','$47 $25'],
   784 ['๐ฌ๏ธ','wind $0','blow $47'],
   785 ['๐','cyclone','$337 hurricane twister typhoon $25'],
   786 ['๐','rainbow','gay genderqueer glbt glbtq lesbian lgbt lgbtq lgbtqia $72 pride queer trans transgender $25'],
   787 ['๐','$82 $209','$9 $134'],['โ๏ธ','$209','$9 $134'],
   788 ['โ๏ธ','$209 $2 $134 drops','$9 $25'],['โฑ๏ธ','$209 on ground','$134 sun'],
   789 ['โก๏ธ','$324 voltage','danger $208 electricity lightning $72 thunder thunderbolt zap'],
   790 ['โ๏ธ','snowflake','$54 $25'],['โ๏ธ','snowman','$54'],['โ๏ธ','comet','$19'],
   791 ['๐ฅ','fire','af burn flame hot lit litaf $7'],
   792 ['๐ง','droplet','$54 $53 $72 sad $192 $191 $78 $25'],
   793 ['๐','$78 wave','$72 $98 surf surfer surfing'],
   794 ['๐','jack-o-lantern','$12 $148 pumpkin'],['๐','Christmas $223','$12 $175'],
   795 ['๐','fireworks','$239 $12 $95 $252'],['๐','sparkler','$239 $12 fireworks'],
   796 ['๐งจ','firecracker','dynamite explosive fireworks $73 pop popping spark'],
   797 ['โจ๏ธ','sparkles','* $174 $87'],['๐','$180','$187 $186 $12'],
   798 ['๐','$91 popper','$193 $187 $186 $12 $127 hooray tada woohoo'],
   799 ['๐','confetti $63','$186 $12 $91 woohoo'],
   800 ['๐','tanabata $223','banner $12 $216'],
   801 ['๐','pine decoration','bamboo $12 $216 $26'],['๐','carp streamer','$12'],
   802 ['๐','wind chime','$220 $12'],['๐','$39 viewing ceremony','$12'],
   803 ['๐งง','red $282','gift $104 hรณngbฤo lai luck $45 see'],['๐','ribbon','$12'],
   804 ['๐','wrapped gift','$187 bow box $12 $175 present $251'],
   805 ['๐๏ธ','reminder ribbon','$12'],['๐๏ธ','admission tickets',''],
   806 ['๐ซ','ticket','admission stub'],['๐๏ธ','military $206','award $12'],
   807 ['๐๏ธ','trophy','champion champs prize slay $41 victory win winning'],
   808 ['๐
','sports $206','award $281 winner'],['๐ฅ','1st $280 $206','first $281'],
   809 ['๐ฅ','2nd $280 $206','second silver'],['๐ฅ','3rd $280 $206','bronze third'],
   810 ['โฝ๏ธ','soccer $63','football futbol $41'],['โพ๏ธ','baseball','$41'],
   811 ['๐ฅ','softball','glove sports underarm'],['๐','basketball','hoop $41'],
   812 ['๐','volleyball','$16'],['๐','american football','bowl $41 super'],
   813 ['๐','rugby football','$41'],['๐พ','tennis','$63 racquet $41'],
   814 ['๐ฅ','flying disc','ultimate'],['๐ณ','bowling','$63 $16 $41 strike'],
   815 ['๐','cricket $16','$63 bat'],['๐','field hockey','$63 $16 $215'],
   816 ['๐','ice hockey','$16 puck $215'],['๐ฅ','lacrosse','$63 goal sports $215'],
   817 ['๐','ping pong','$63 bat $16 paddle pingpong table tennis'],
   818 ['๐ธ','badminton','birdie $16 racquet shuttlecock'],['๐ฅ','boxing glove',''],
   819 ['๐ฅ','martial arts uniform','judo karate taekwondo'],['๐ฅ
','goal net',''],
   820 ['โณ๏ธ','$205 in hole','golf $41'],['โธ๏ธ','ice skate','skating'],
   821 ['๐ฃ','fishing pole','$95 $41'],['๐คฟ','diving $248','scuba snorkeling'],
   822 ['๐ฝ','running shirt','athletics sash'],['๐ฟ','skis','$312 $41'],
   823 ['๐ท','sled','luge sledge sleigh $312 toboggan'],
   824 ['๐ฅ','curling stone','$16 $235'],
   825 ['๐ฏ','bullseye','dart direct $95 $16 hit target'],['๐ช','yo-yo','fluctuate toy'],
   826 ['๐ช','kite','fly soar'],['๐ซ','$78 pistol','gun handgun revolver $7 $114'],
   827 ['๐ฑ','pool 8 $63','8ball billiard eight $16'],
   828 ['๐ฎ','crystal $63','$24 $23 $13 fortune future $174 $22 $7'],
   829 ['๐ช','$174 wand','magician witch wizard'],['๐ฎ๏ธ','$113 $16','controller $95'],
   830 ['๐น๏ธ','joystick','$16 $113 videogame'],
   831 ['๐ฐ','slot machine','casino gamble gambling $16 slots'],
   832 ['๐ฒ','$16 die','dice $95'],['๐งฉ','puzzle piece','clue interlocking jigsaw'],
   833 ['๐งธ','teddy $226','plaything plush stuffed toy'],
   834 ['๐ช
','piรฑata','$301 $186 $12 cinco de festive mayo $91 pinada pinata'],
   835 ['๐ช','nesting dolls','babooshka baboushka babushka matryoshka russia'],
   836 ['โ ๏ธ','spade $133','$70 $16'],['โฅ๏ธ','$6 $133','$70 $35 $16 $254'],
   837 ['โฆ๏ธ','$112 $133','$70 $16'],['โฃ๏ธ','$299 $133','$70 clubs $16'],
   838 ['โ๏ธ','chess pawn','dupe expendable'],['๐','joker','$70 $16 wildcard'],
   839 ['๐๏ธ','mahjong red dragon','$16'],['๐ด','$97 playing cards','$16 $216'],
   840 ['๐ญ๏ธ','performing arts','actor actress $95 $248 theater theatre thespian'],
   841 ['๐ผ๏ธ','framed picture','art museum painting'],
   842 ['๐จ','artist palette','artsy arty colorful creative $95 museum painter painting'],
   843 ['๐งต','thread','needle sewing spool string'],
   844 ['๐ชก','sewing needle','embroidery stitches sutures tailoring thread'],
   845 ['๐งถ','yarn','$63 crochet knit'],
   846 ['๐ชข','knot','cord rope tangled tie twine twist'],
   847 ['๐๏ธ','$334','$9 eye eyeglasses eyewear'],
   848 ['๐ถ๏ธ','sunglasses','dark eye eyewear'],
   849 ['๐ฅฝ','goggles','dive eye protection scuba swimming welding'],
   850 ['๐ฅผ','lab coat','$44 $153 dr experiment jacket scientist $34'],
   851 ['๐ฆบ','safety vest','emergency'],['๐','necktie','$9 employed serious shirt'],
   852 ['๐','t-shirt','$79 casual $44 $9 collar $279 $59 tshirt weekend'],
   853 ['๐','jeans','$79 casual $44 $9 denim $279 pants $59 trousers weekend'],
   854 ['๐งฃ','scarf','bundle $54 neck up'],['๐งค','gloves','$17'],
   855 ['๐งฅ','coat','brr bundle $54 jacket up'],['๐งฆ','socks','stocking'],
   856 ['๐','$111','$44 $9 $279 $333 $59'],['๐','kimono','$9 comfortable'],
   857 ['๐ฅป','sari','$9 $111'],['๐ฉฑ','one-piece swimsuit','$204'],
   858 ['๐ฉฒ','briefs','$204 one-piece $133 swimsuit underwear'],
   859 ['๐ฉณ','shorts','$204 pants $133 swimsuit underwear'],
   860 ['๐','bikini','$204 $89 $9 pool $133 swim'],
   861 ['๐','$278 $44','blouse $9 collar $111 $279 $231 shirt $59'],
   862 ['๐','purse','$44 $9 coin $111 $333 handbag $59'],
   863 ['๐','handbag','$44 $9 $111 $231 purse $59'],
   864 ['๐','clutch bag','$44 $9 $111 handbag pouch purse'],['๐๏ธ','$59 bags','$165'],
   865 ['๐','backpack','backpacking bag bookbag $94 rucksack satchel $136'],
   866 ['๐ฉด','thong sandal','$89 flip flop sandals $110 thongs zลri'],
   867 ['๐','manโs $110','$240 $44 $9 feet foot $233 $203 $59'],
   868 ['๐','running $110','athletic $44 $9 $144 $233 $203 $59 sneaker tennis'],
   869 ['๐ฅพ','hiking boot','backpacking $240 camping outdoors $110'],
   870 ['๐ฅฟ','flat $110','ballet comfy flats slip-on slipper'],
   871 ['๐ ','high-heeled $110','$44 $9 $111 fashion heels $203 $59 stiletto $86'],
   872 ['๐ก','$278 sandal','$9 $110'],['๐ฉฐ','ballet $203','dance'],
   873 ['๐ข','$278 boot','$44 $9 $111 $110 $203 $59'],
   874 ['๐','crown','$9 family king medieval queen royal royalty win'],
   875 ['๐','$278 hat','$44 $9 $170 hats $91'],
   876 ['๐ฉ','top hat','$44 $9 $333 formal $174 tophat'],
   877 ['๐๏ธ','graduation cap','$12 $9 $94 hat scholar'],
   878 ['๐งข','billed cap','baseball bent dad hat'],
   879 ['๐ช','military helmet','army soldier war warrior'],
   880 ['โ๏ธ','rescue workerโs helmet','aid $164 $0 hat'],
   881 ['๐ฟ','prayer beads','$9 necklace $37'],['๐','lipstick','cosmetics $67 makeup'],
   882 ['๐','$311','$112 engaged engagement married $29 shiny sparkling wedding'],
   883 ['๐','gem stone','$112 engagement jewel $45 $29 wedding'],
   884 ['๐','muted $277','$188 silent $50'],['๐๏ธ','$277 low volume','soft $50'],
   885 ['๐','$277 $284 volume','$50'],['๐','$277 $324 volume','loud $58 $50'],
   886 ['๐ข','loudspeaker','address $48 public $50'],['๐ฃ','megaphone','cheering $50'],
   887 ['๐ฏ','postal horn',''],['๐','$220','break church $50'],
   888 ['๐','$220 $2 slash','$66 mute no not $52 $188 silent $50'],
   889 ['๐ผ','$276 score','note'],['๐ต','$276 note','$50'],['๐ถ','$276 notes','$50'],
   890 ['๐๏ธ','studio microphone','$58'],['๐๏ธ','level slider','$58'],
   891 ['๐๏ธ','control knobs','$58'],['๐ค','microphone','karaoke $58 sing $50'],
   892 ['๐ง๏ธ','headphone','earbud $50'],['๐ป๏ธ','radio','$95 tbt $113'],
   893 ['๐ท','saxophone','$132 $58'],
   894 ['๐ช','accordion','box concertina $132 $58 squeeze squeezebox'],
   895 ['๐ธ','guitar','$132 $58 strat'],['๐น','$276 keyboard','$132 piano'],
   896 ['๐บ','trumpet','$132 $58'],['๐ป','violin','$132 $58'],
   897 ['๐ช','banjo','$58 stringed'],['๐ฅ','drum','drumsticks $58'],
   898 ['๐ช','long drum','beat conga $132 rhythm'],['๐ฑ','$162 $177','$163 $48 $109'],
   899 ['๐ฒ','$162 $177 $2 $5','build call $163 $48 receive $109'],['โ๏ธ','$109',''],
   900 ['๐','$109 receiver','$48 voip'],['๐๏ธ','pager','$48'],['๐ ','fax machine','$48'],
   901 ['๐','battery',''],['๐','$208 plug','electricity'],
   902 ['๐ป๏ธ','laptop','$76 $230 pc personal'],['๐ฅ๏ธ','desktop $76','monitor'],
   903 ['๐จ๏ธ','printer','$76'],['โจ๏ธ','keyboard','$76'],['๐ฑ๏ธ','$76 $305',''],
   904 ['๐ฒ๏ธ','trackball','$76'],['๐ฝ','$76 $275','minidisk optical'],
   905 ['๐พ','floppy $275','$76'],['๐ฟ๏ธ','optical $275','blu-ray cd $76 dvd'],
   906 ['๐','dvd','blu-ray cd $76 $275 optical'],
   907 ['๐งฎ','abacus','calculation calculator'],
   908 ['๐ฅ','$169 $178','bollywood $274 $273 hollywood record'],
   909 ['๐๏ธ','$273 frames','$274 $169'],['๐ฝ๏ธ','$273 projector','$274 $169 $113'],
   910 ['๐ฌ๏ธ','clapper board','action $169'],['๐บ๏ธ','television','tv $113'],
   911 ['๐ท๏ธ','$178','photo selfie snap tbt trip $113'],['๐ธ','$178 $2 flash','$113'],
   912 ['๐น๏ธ','$113 $178','camcorder tbt'],
   913 ['๐ผ','videocassette','old $136 tape vcr vhs'],
   914 ['๐๏ธ','magnifying $168 tilted $118','lab left-pointing $140 search $7'],
   915 ['๐','magnifying $168 tilted $77','contact lab right-pointing $140 search $7'],
   916 ['๐ฏ๏ธ','candle','$73'],['๐ก','$73 bulb','$53 $208 idea'],
   917 ['๐ฆ','flashlight','$208 $7 torch'],['๐ฎ','red $131 lantern','bar $73 $46'],
   918 ['๐ช','diya lamp','$73 oil'],
   919 ['๐','notebook $2 decorative cover','decorated $94 $136 writing'],
   920 ['๐','$82 $202','$94'],['๐','$43 $202','$94 $13 knowledge $201 novels $200'],
   921 ['๐','$120 $202','$94 $13 $201 $200'],['๐','$79 $202','$94 $13 $201 $200'],
   922 ['๐','$145 $202','$94 $13 $201 $200'],
   923 ['๐๏ธ','books','$94 $13 knowledge $201 novels $200 $136 study'],
   924 ['๐','notebook',''],['๐','ledger','notebook'],
   925 ['๐','page $2 curl','document $131'],['๐','scroll','$131'],
   926 ['๐','page facing up','document $131'],['๐ฐ','newspaper','$48'],
   927 ['๐๏ธ','rolled-up newspaper',''],['๐','bookmark tabs','marker'],
   928 ['๐','bookmark',''],['๐ท๏ธ','label','tag'],
   929 ['๐ฐ๏ธ','$45 bag','$137 bet $272 $161 cost $199 $281 million moneybag paid paying pot $332 win'],
   930 ['๐ช','coin','$199 euro $281 metal $45 $332 silver treasure'],
   931 ['๐ด','yen $197','$198 $130 $45'],['๐ต','$199 $197','$198 $130 $45'],
   932 ['๐ถ','euro $197','100 $198 $130 $45 $332'],
   933 ['๐ท','pound $197','$198 $272 $161 $130 $45 pounds'],
   934 ['๐ธ','$45 $2 wings','$137 $197 $198 $272 $161 $199 fly million note pay'],
   935 ['๐ณ๏ธ','credit $70','$137 $161 charge $45 pay'],
   936 ['๐งพ','receipt','accounting bookkeeping evidence invoice proof'],
   937 ['๐น','$270 increasing $2 yen','$137 $130 $271 growth market $45 rise trend upward'],
   938 ['โ๏ธ','$282','$269 $160 $147'],['๐ง','$269','$160 $147'],
   939 ['๐จ','incoming $282','delivering $269 $160 $147 $182 receive sent'],
   940 ['๐ฉ','$282 $2 $5','$48 $100 $269 $160 $147 $182 outgoing send sent'],
   941 ['๐ค๏ธ','outbox tray','$160 $147 $182 sent'],
   942 ['๐ฅ๏ธ','inbox tray','$160 $147 $182 receive zero'],
   943 ['๐ฆ๏ธ','package','box $48 delivery parcel shipping'],
   944 ['๐ซ๏ธ','$82 $195 $2 $124 $205','$48 $196'],
   945 ['๐ช๏ธ','$82 $195 $2 lowered $205','$196'],['๐ฌ๏ธ','$43 $195 $2 $124 $205','$196'],
   946 ['๐ญ๏ธ','$43 $195 $2 lowered $205','$196'],['๐ฎ','$196','$182 $195'],
   947 ['๐ณ๏ธ','ballot box $2 ballot',''],['โ๏ธ','pencil',''],['โ๏ธ','$101 nib','pen'],
   948 ['๐๏ธ','fountain pen',''],['๐๏ธ','pen','ballpoint'],
   949 ['๐๏ธ','paintbrush','painting'],['๐๏ธ','crayon',''],
   950 ['๐','memo','$48 media notes pencil'],['๐ผ','briefcase','$230'],
   951 ['๐','$268 folder',''],['๐','$43 $268 folder',''],['๐๏ธ','$70 $142 dividers',''],
   952 ['๐
','calendar','$67'],['๐','tear-off calendar',''],['๐๏ธ','spiral notepad',''],
   953 ['๐๏ธ','spiral calendar','pad'],['๐','$70 $142','old rolodex $136'],
   954 ['๐','$270 increasing','data $271 growth $77 trend up upward'],
   955 ['๐','$270 decreasing','data $100 downward $271 negative trend'],
   956 ['๐','bar $270','data $271'],['๐๏ธ','clipboard','do list notes'],
   957 ['๐','pushpin','collage'],['๐','round pushpin','location map'],
   958 ['๐','paperclip',''],['๐๏ธ','linked paperclips',''],
   959 ['๐','straight ruler','angle edge $267 straightedge'],
   960 ['๐','triangular ruler','angle $267 set slide $108'],
   961 ['โ๏ธ','scissors','cut cutting $131 $7'],['๐๏ธ','$70 $268 box',''],
   962 ['๐๏ธ','$268 cabinet','filing $131'],['๐๏ธ','wastebasket','can garbage trash'],
   963 ['๐๏ธ','locked','$82 private'],['๐๏ธ','unlocked','cracked $43'],
   964 ['๐','locked $2 pen','ink nib privacy'],['๐','locked $2 key','bike $82 secure'],
   965 ['๐','key','keys lock major password unlock'],['๐๏ธ','old key','clue lock'],
   966 ['๐จ','$266','$138 improvement repairs $7'],
   967 ['๐ช','axe','chop hatchet split wood'],['โ๏ธ','pick','$266 mining $7'],
   968 ['โ๏ธ','$266 and pick','$7'],['๐ ๏ธ','$266 and wrench','spanner $7'],
   969 ['๐ก๏ธ','dagger','$298 $114'],['โ๏ธ','crossed swords','$114'],
   970 ['๐ฃ๏ธ','bomb','$239 $53 dangerous explosion hot'],
   971 ['๐ช','boomerang','rebound repercussion $114'],
   972 ['๐น','bow and $5','archer archery sagittarius $7 $114 $11'],
   973 ['๐ก๏ธ','shield','$114'],['๐ช','carpentry saw','carpenter cut lumber $7 trim'],
   974 ['๐ง','wrench','$138 improvement spanner $7'],
   975 ['๐ช','screwdriver','flathead handy $7'],
   976 ['๐ฉ','nut and bolt','$138 improvement $7'],['โ๏ธ','gear','cog cogwheel $7'],
   977 ['๐๏ธ','clamp','compress $7 vice'],
   978 ['โ๏ธ','balance scale','justice libra scales $7 weight $11'],
   979 ['๐ฆฏ','$34 cane','$64 blind probing'],['๐','link','links'],['โ๏ธ','chains',''],
   980 ['๐ช','hook','catch crook curve ensnare point selling'],
   981 ['๐งฐ','toolbox','chest mechanic red'],
   982 ['๐งฒ','magnet','attraction horseshoe magnetic negative positive shape u'],
   983 ['๐ช','ladder','climb rung step'],['โ๏ธ','alembic','chemistry $7'],
   984 ['๐งช','test tube','chemist chemistry experiment lab $140'],
   985 ['๐งซ','petri dish','bacteria biologist biology culture lab'],
   986 ['๐งฌ','dna','biologist evolution gene genetics life'],
   987 ['๐ฌ','microscope','experiment lab $140 $7'],
   988 ['๐ญ','telescope','contact extraterrestrial $140 $7'],
   989 ['๐ก','satellite antenna','aliens contact dish $140'],
   990 ['๐','syringe','$153 flu $152 needle shot $122 $7 vaccination'],
   991 ['๐ฉธ','drop of blood','bleed donation injury $152 menstruation'],
   992 ['๐','pill','$153 drugs medicated $152 pills $122 vitamin'],
   993 ['๐ฉน','adhesive bandage',''],['๐ฉบ','stethoscope','$153 $6 $152'],
   994 ['๐ช','door','back closet front'],['๐','elevator','$64 hoist lift'],
   995 ['๐ช','mirror','makeup reflection reflector speculum'],
   996 ['๐ช','window','air frame fresh opening transparent view'],
   997 ['๐๏ธ','bed','$165 sleep'],['๐๏ธ','couch and lamp','$165'],
   998 ['๐ช','chair','seat sit'],['๐ฝ','$129','$159'],
   999 ['๐ช ','plunger','cup force plumber poop suction $129'],['๐ฟ','shower','$78'],
  1000 ['๐','bathtub',''],['๐ชค','$305 trap','bait $304 lure mousetrap snare'],
  1001 ['๐ช','razor','sharp shave'],['๐งด','lotion $300','moisturizer shampoo sunscreen'],
  1002 ['๐งท','safety pin','diaper punk $235'],['๐งน','broom','cleaning sweeping witch'],
  1003 ['๐งบ','basket','farming laundry picnic'],['๐งป','roll of $131','$129 towels'],
  1004 ['๐ชฃ','bucket','cask pail vat'],
  1005 ['๐งผ','soap','bar $204 clean cleaning lather soapdish'],
  1006 ['๐ชฅ','toothbrush','$159 clean dental hygiene $128 toiletry'],
  1007 ['๐งฝ','sponge','absorbing cleaning porous soak'],
  1008 ['๐งฏ','fire extinguisher','quench'],['๐','$59 cart','trolley'],
  1009 ['๐ฌ','cigarette','smoking'],['โฐ๏ธ','coffin','$123 $327 vampire'],
  1010 ['๐ชฆ','headstone','cemetery $123 grave graveyard memorial rip tomb tombstone'],
  1011 ['โฑ๏ธ','funeral urn','ashes $327'],
  1012 ['๐งฟ','nazar amulet','bead $79 charm evil-eye talisman'],
  1013 ['๐ฟ','moai','$0 moyai statue stoneface $62'],
  1014 ['๐ชง','placard','demonstration notice picket plaque protest $51'],
  1015 ['๐ง','ATM $51','atm automated $137 $161 $45 teller'],
  1016 ['๐ฎ','litter in bin $51','litterbin'],['๐ฐ','potable $78','$167'],
  1017 ['โฟ๏ธ','wheelchair $119','access handicap'],
  1018 ['๐น๏ธ','menโs room','$159 $265 man $264 $129 wc'],
  1019 ['๐บ๏ธ','womenโs room','$159 $265 $264 $129 wc $86'],
  1020 ['๐ป','$264','$159 $265 $129 wc'],['๐ผ๏ธ','$116 $119','changing'],
  1021 ['๐พ','$78 closet','$159 $265 $264 $129 wc'],['๐','passport control',''],
  1022 ['๐','customs','packing'],
  1023 ['๐','baggage claim','arrived bags case $263 journey packing plane ready $62 trip'],
  1024 ['๐
','$118 luggage','baggage case locker'],['โ ๏ธ','warning','caution'],
  1025 ['๐ธ','children crossing','pedestrian $290'],
  1026 ['โ๏ธ','no entry','do fail $66 not pass $52 $290'],
  1027 ['๐ซ','$52','entry $66 no not smoke'],['๐ณ','no bicycles','bike $66 not $52'],
  1028 ['๐ญ๏ธ','no smoking','$66 not $52 smoke'],['๐ฏ','no littering','$66 not $52'],
  1029 ['๐ฑ','non-potable $78','dry non-drinking $52'],
  1030 ['๐ท','no pedestrians','$66 not $52'],
  1031 ['๐ต','no $162 phones','$163 $66 not $52 $109'],
  1032 ['๐','no one under eighteen','18 age $66 not $52 restriction underage'],
  1033 ['โข๏ธ','radioactive','$51'],['โฃ๏ธ','biohazard','$51'],
  1034 ['โฌ๏ธ','up $5','$262 $96 north'],['โ๏ธ','up-right $5','$96 $261 northeast'],
  1035 ['โก๏ธ','$77 $5','$262 $96 east'],['โ๏ธ','down-right $5','$96 $261 southeast'],
  1036 ['โฌ๏ธ','$100 $5','$262 $96 south'],['โ๏ธ','down-left $5','$96 $261 southwest'],
  1037 ['โฌ
๏ธ','$118 $5','$262 $96 west'],['โ๏ธ','up-left $5','$96 $261 northwest'],
  1038 ['โ๏ธ','up-down $5',''],['โ๏ธ','left-right $5',''],['โฉ๏ธ','$77 $5 $260 $118',''],
  1039 ['โช๏ธ','$118 $5 $260 $77',''],['โคด๏ธ','$77 $5 $260 up',''],
  1040 ['โคต๏ธ','$77 $5 $260 $100',''],['๐','clockwise vertical arrows','refresh reload'],
  1041 ['๐','counterclockwise arrows $4','again anticlockwise deja refresh rewindershins vu'],
  1042 ['๐','BACK $5','back'],['๐','END $5','end'],['๐','ON! $5','$33 on!'],
  1043 ['๐','SOON $5','brb omw soon'],['๐','TOP $5','homie top up'],
  1044 ['๐','$280 of worship','pray $37'],['โ๏ธ','atom $119','atheist'],
  1045 ['๐๏ธ','om','hindu $37'],['โก๏ธ','$87 of David','david jew $295 $294 $37'],
  1046 ['โธ๏ธ','wheel of dharma','buddhist $37'],
  1047 ['โฏ๏ธ','yin yang','difficult lives $37 tao taoist total yinyang'],
  1048 ['โ๏ธ','$259 $164','christ christian $37'],
  1049 ['โฆ๏ธ','orthodox $164','christian $37'],
  1050 ['โช๏ธ','$87 and $218','islam muslim ramadan $37'],
  1051 ['โฎ๏ธ','$339 $119','healing peaceful'],
  1052 ['๐','menorah','candelabrum candlestick hanukkah $295 $294 $37'],
  1053 ['๐ฏ','dotted six-pointed $87','fortune $295 $294'],
  1054 ['โ๏ธ','Aries','aries $57 ram $11'],['โ๏ธ','Taurus','bull $57 ox taurus $11'],
  1055 ['โ๏ธ','Gemini','gemini $57 $309 $11'],['โ๏ธ','Cancer','cancer crab $57 $11'],
  1056 ['โ๏ธ','Leo','$57 leo lion $11'],['โ๏ธ','Virgo','$57 virgo $11'],
  1057 ['โ๏ธ','Libra','balance $57 justice libra scales $11'],
  1058 ['โ๏ธ','Scorpio','$57 scorpio scorpion scorpius $11'],
  1059 ['โ๏ธ','Sagittarius','archer $57 sagittarius $11'],
  1060 ['โ๏ธ','Capricorn','capricorn goat $57 $11'],
  1061 ['โ๏ธ','Aquarius','aquarius bearer $57 $78 $11'],
  1062 ['โ๏ธ','Pisces','$225 $57 pisces $11'],
  1063 ['โ๏ธ','Ophiuchus','bearer ophiuchus serpent snake $11'],
  1064 ['๐','shuffle tracks $4','$5 crossed'],['๐','repeat $4','$5 clockwise'],
  1065 ['๐','repeat single $4','$5 clockwise once'],['โถ๏ธ','play $4','$5 $77 $108'],
  1066 ['โฉ๏ธ','fast-forward $4','$5 $85'],['โญ๏ธ','next track $4','$5 scene $108'],
  1067 ['โฏ๏ธ','play or pause $4','$5 $77 $108'],['โ๏ธ','reverse $4','$5 $118 $108'],
  1068 ['โช๏ธ','$144 reverse $4','$5 $85 rewind'],
  1069 ['โฎ๏ธ','last track $4','$5 previous scene $108'],['๐ผ','upwards $4','$5 red'],
  1070 ['โซ๏ธ','$144 up $4','$5 $85'],['๐ฝ','downwards $4','$5 red'],
  1071 ['โฌ๏ธ','$144 $100 $4','$5 $85'],['โธ๏ธ','pause $4','bar $85 vertical'],
  1072 ['โน๏ธ','$143 $4','$20'],['โบ๏ธ','record $4','$69'],['โ๏ธ','eject $4',''],
  1073 ['๐ฆ','$274','$178 $273 $169'],['๐
','dim $4','brightness low'],
  1074 ['๐','$246 $4','brightness $73'],
  1075 ['๐ถ','antenna bars','$163 $48 $162 $177 signal $109'],
  1076 ['๐ณ','vibration mode','$163 $48 $162 $177 $109'],
  1077 ['๐ด','$162 $177 off','$163 $109'],['โ๏ธ','female $51','$86'],
  1078 ['โ๏ธ','male $51','man'],['โง๏ธ','transgender $119',''],
  1079 ['โ๏ธ','multiply','cancel multiplication $51 x ร'],['โ๏ธ','plus','+'],
  1080 ['โ๏ธ','minus','- $146 $267 $51 โ'],['โ๏ธ','divide','division $146 $267 $51 รท'],
  1081 ['โพ๏ธ','infinity','forever unbounded universal'],
  1082 ['โผ๏ธ','$85 $242 $33','! !! bangbang $121'],
  1083 ['โ๏ธ','$242 question $33','! !? ? interrobang $121'],
  1084 ['โ๏ธ','red question $33','? $121'],['โ๏ธ','$34 question $33','? $343 $121'],
  1085 ['โ๏ธ','$34 $242 $33','! $343 $121'],['โ๏ธ','red $242 $33','! $121'],
  1086 ['ใฐ๏ธ','wavy dash','$121'],['๐ฑ','$130 exchange','$137 $45'],
  1087 ['๐ฒ','$146 $199 $51','$272 $161 charge $130 million $45 pay'],
  1088 ['โ๏ธ','medical $119','aesculapius $152 staff'],
  1089 ['โป๏ธ','recycling $119','recycle'],['โ๏ธ','fleur-de-lis','knights'],
  1090 ['๐ฑ','$315 emblem','anchor poseidon $289 $7'],['๐','name badge',''],
  1091 ['โญ๏ธ','hollow red $69','$146 $106'],
  1092 ['โ
๏ธ','check $33 $4','$263 checkmark complete completed $179 fixed tick โ'],
  1093 ['โ๏ธ','check box $2 check','ballot $263 $179 off tick โ'],
  1094 ['โ๏ธ','check $33','$263 checkmark $179 $146 tick โ'],
  1095 ['โ๏ธ','$164 $33','cancel multiplication multiply x ร'],
  1096 ['โ๏ธ','$164 $33 $4','multiplication multiply $20 x ร'],['โฐ๏ธ','curly loop',''],
  1097 ['โฟ๏ธ','$85 curly loop',''],['ใฝ๏ธ','part alternation $33',''],
  1098 ['โณ๏ธ','eight-spoked asterisk','*'],['โด๏ธ','eight-pointed $87','*'],
  1099 ['โ๏ธ','sparkle','*'],['ยฉ๏ธ','copyright',''],['ยฎ๏ธ','registered',''],
  1100 ['โข๏ธ','trade $33','tm trademark'],['๐ ','$194 $259 uppercase','abcd letters'],
  1101 ['๐ก','$194 $259 lowercase','abcd letters'],['๐ข','$194 numbers','1234'],
  1102 ['๐ฃ','$194 symbols','% & โช ใ'],['๐ค','$194 $259 letters','abc alphabet'],
  1103 ['๐
ฐ๏ธ','A $4 $258 $257',''],['๐','AB $4 $258 $257','ab'],
  1104 ['๐
ฑ๏ธ','B $4 $258 $257',''],['๐','CL $4','cl'],['๐','COOL $4','cool'],
  1105 ['๐','FREE $4','free'],['โน๏ธ','information',''],['๐','ID $4','id identity'],
  1106 ['โ๏ธ','circled M','m'],['๐','NEW $4','new'],['๐','NG $4','ng'],
  1107 ['๐
พ๏ธ','O $4 $258 $257',''],['๐','OK $4','ok okay'],['๐
ฟ๏ธ','P $4','p parking'],
  1108 ['๐','SOS $4','help sos'],['๐','UP! $4','$33 up up!'],['๐','VS $4','versus vs'],
  1109 ['๐ด','red $69','$15'],['๐ ','$145 $69',''],['๐ก','$241 $69',''],
  1110 ['๐ข','$120 $69',''],['๐ต','$79 $69','$15'],['๐ฃ','$184 $69',''],
  1111 ['๐ค','$240 $69',''],['โซ๏ธ','$101 $69','$15'],['โช๏ธ','$34 $69','$15'],
  1112 ['๐ฅ','red $20','$70 penalty'],['๐ง','$145 $20',''],
  1113 ['๐จ','$241 $20','$70 penalty'],['๐ฉ','$120 $20',''],['๐ฆ','$79 $20',''],
  1114 ['๐ช','$184 $20',''],['๐ซ','$240 $20',''],['โฌ๏ธ','$101 $106 $20','$15'],
  1115 ['โฌ๏ธ','$34 $106 $20','$15'],['โผ๏ธ','$101 $284 $20','$15'],
  1116 ['โป๏ธ','$34 $284 $20','$15'],['โพ๏ธ','$101 medium-small $20','$15'],
  1117 ['โฝ๏ธ','$34 medium-small $20','$15'],['โช๏ธ','$101 $105 $20','$15'],
  1118 ['โซ๏ธ','$34 $105 $20','$15'],['๐ถ','$106 $145 $112','$15'],
  1119 ['๐ท','$106 $79 $112','$15'],['๐ธ','$105 $145 $112','$15'],
  1120 ['๐น','$105 $79 $112','$15'],['๐บ','red $108 pointed up','$15'],
  1121 ['๐ป','red $108 pointed $100','$15'],['๐ ','$112 $2 a dot','$53 $15'],
  1122 ['๐','radio $4','$15'],['๐ณ','$34 $20 $4','$15 $343'],['๐ฒ','$101 $20 $4','$15'],
  1123 ]  // End of FC.data.emoji
  1124 }; // End of FC.data