获取emoji网页的内容保存到本地

来源:互联网 发布:js判断对象是否为null 编辑:程序博客网 时间:2024/06/04 19:28
var http = require('http');var fs = require('fs');var cheerio = require('cheerio');var readof = require('readof');// 先将网页下载到本地// var url = "http://apps.timwhitlock.info/emoji/tables/unicode#block-4-enclosed-characters";// http.get(url, function(res) {//     var html = "";//     res.on('data', function(data) {//         html += data;//     });//     res.on('end', function() {//         fs.writeFile('emojiHandle.txt', html, function(err) {//             if (err) {//                 console.log(err);//             }//         })//     });// }).on('error', function(err) {//     console.log(err);// });var codes = {};fs.readFile('emojiHandle.txt', 'utf8', function(err, data) {    if (err) {        console.log(err);    }    // 构建编码表    var $ = cheerio.load(data);    $('tr').each(function() {        var idstr = $(this).attr('id');        $(this).child        if (idstr) {            var strList = idstr.split('-');            if (strList.length > 1 && strList[0] == 'emoji') {                var uecode = strList[1];                var name = $(this).children(".name").text();                name = name.toLowerCase();                var u8code = $(this).children(".code").eq(1).text();                u8code = u8code.split("\\x").join('');                if (u8code.length == 8) {                    u8code = u8code.toLowerCase();                    codes[uecode] = {                        code: u8code,                        desc: name,                    };                }            }        }    })    // 下载emoji图片,保存在xml文件中    var order = 0;    $('img.emoji').each(function() {        var path = $(this).attr('data-src');        var pos = path.indexOf('emoji-apple');        if (pos > 0) {            var imagePath = 'http://apps.timwhitlock.info' + path;            var tmpList = imagePath.split('/');            var name = tmpList[tmpList.length - 1];            name = name.substr(0, 5);            var result = codes[name];            if (result) {                var x = result.code;                var y = result.desc;                readof.read(imagePath, 'emoji/' + x + '.png', function(err, data) {                    if (err) {                        console.log(err);                    } else {                        var line = `<face name=":/emoji/${x}.png" pathname="${x}.png" shortcut="" order="${order++}" describe="${y}" />`                        fs.appendFileSync('emoji.xml', (line + '\n'));                    }                })            }        }    });});


结果:

<face name=":/emoji/f09f9886.png" pathname="f09f9886.png" shortcut="" order="0" describe="smiling face with open mouth and tightly-closed eyes" /><face name=":/emoji/f09f98a2.png" pathname="f09f98a2.png" shortcut="" order="1" describe="crying face" /><face name=":/emoji/f09f92a2.png" pathname="f09f92a2.png" shortcut="" order="2" describe="anger symbol" /><face name=":/emoji/f09f85b0.png" pathname="f09f85b0.png" shortcut="" order="3" describe="negative squared latin capital letter a" /><face name=":/emoji/f09f9882.png" pathname="f09f9882.png" shortcut="" order="4" describe="face with tears of joy" /><face name=":/emoji/f09f9892.png" pathname="f09f9892.png" shortcut="" order="5" describe="unamused face" /><face name=":/emoji/f09f8e82.png" pathname="f09f8e82.png" shortcut="" order="6" describe="birthday cake" /><face name=":/emoji/f09f8692.png" pathname="f09f8692.png" shortcut="" order="7" describe="squared cool" /><face name=":/emoji/f09f8693.png" pathname="f09f8693.png" shortcut="" order="8" describe="squared free" /><face name=":/emoji/f09f88b9.png" pathname="f09f88b9.png" shortcut="" order="9" describe="squared cjk unified ideograph-5272" /><face name=":/emoji/f09f8d9a.png" pathname="f09f8d9a.png" shortcut="" order="10" describe="cooked rice" /><face name=":/emoji/f09f8ebe.png" pathname="f09f8ebe.png" shortcut="" order="11" describe="tennis racquet and ball" /><face name=":/emoji/f09f8e93.png" pathname="f09f8e93.png" shortcut="" order="12" describe="graduation cap" /><face name=":/emoji/f09f92b4.png" pathname="f09f92b4.png" shortcut="" order="13" describe="banknote with yen sign" /><face name=":/emoji/f09f989d.png" pathname="f09f989d.png" shortcut="" order="14" describe="face with stuck-out tongue and tightly-closed eyes" /><face name=":/emoji/f09f8c91.png" pathname="f09f8c91.png" shortcut="" order="15" describe="new moon symbol" /><face name=":/emoji/f09f8c88.png" pathname="f09f8c88.png" shortcut="" order="16" describe="rainbow" /><face name=":/emoji/f09f8dac.png" pathname="f09f8dac.png" shortcut="" order="17" describe="candy" /><face name=":/emoji/f09f98a3.png" pathname="f09f98a3.png" shortcut="" order="18" describe="persevering face" /><face name=":/emoji/f09f9aa2.png" pathname="f09f9aa2.png" shortcut="" order="19" describe="ship" /><face name=":/emoji/f09f9894.png" pathname="f09f9894.png" shortcut="" order="20" describe="pensive face" /><face name=":/emoji/f09f9980.png" pathname="f09f9980.png" shortcut="" order="21" describe="weary cat face" /><face name=":/emoji/f09f988d.png" pathname="f09f988d.png" shortcut="" order="22" describe="smiling face with heart-shaped eyes" /><face name=":/emoji/f09f9985.png" pathname="f09f9985.png" shortcut="" order="23" describe="face with no good gesture" /><face name=":/emoji/f09f9a83.png" pathname="f09f9a83.png" shortcut="" order="24" describe="railway car" /><face name=":/emoji/f09f9987.png" pathname="f09f9987.png" shortcut="" order="25" describe="person bowing deeply" /><face name=":/emoji/f09f988b.png" pathname="f09f988b.png" shortcut="" order="26" describe="face savouring delicious food" /><face name=":/emoji/f09f98ad.png" pathname="f09f98ad.png" shortcut="" order="27" describe="loudly crying face" /><face name=":/emoji/f09f98bf.png" pathname="f09f98bf.png" shortcut="" order="28" describe="crying cat face" /><face name=":/emoji/f09f8d9b.png" pathname="f09f8d9b.png" shortcut="" order="29" describe="curry and rice" /><face name=":/emoji/f09f95a0.png" pathname="f09f95a0.png" shortcut="" order="30" describe="clock face five-thirty" /><face name=":/emoji/f09f95a2.png" pathname="f09f95a2.png" shortcut="" order="31" describe="clock face seven-thirty" /><face name=":/emoji/f09f93af.png" pathname="f09f93af.png" shortcut="" order="32" describe="postal horn" /><face name=":/emoji/f09f95a4.png" pathname="f09f95a4.png" shortcut="" order="33" describe="clock face nine-thirty" /><face name=":/emoji/f09f94ad.png" pathname="f09f94ad.png" shortcut="" order="34" describe="telescope" /><face name=":/emoji/f09f95a1.png" pathname="f09f95a1.png" shortcut="" order="35" describe="clock face six-thirty" /><face name=":/emoji/f09f9486.png" pathname="f09f9486.png" shortcut="" order="36" describe="high brightness symbol" /><face name=":/emoji/f09f959d.png" pathname="f09f959d.png" shortcut="" order="37" describe="clock face two-thirty" /><face name=":/emoji/f09f95a6.png" pathname="f09f95a6.png" shortcut="" order="38" describe="clock face eleven-thirty" /><face name=":/emoji/f09f98b2.png" pathname="f09f98b2.png" shortcut="" order="39" describe="astonished face" /><face name=":/emoji/f09f98a0.png" pathname="f09f98a0.png" shortcut="" order="40" describe="angry face" /><face name=":/emoji/f09f9a80.png" pathname="f09f9a80.png" shortcut="" order="41" describe="rocket" /><face name=":/emoji/f09f98a8.png" pathname="f09f98a8.png" shortcut="" order="42" describe="fearful face" /><face name=":/emoji/f09f94ac.png" pathname="f09f94ac.png" shortcut="" order="43" describe="microscope" /><face name=":/emoji/f09f9484.png" pathname="f09f9484.png" shortcut="" order="44" describe="anticlockwise downwards and upwards open circle arrows" /><face name=":/emoji/f09f95a7.png" pathname="f09f95a7.png" shortcut="" order="45" describe="clock face twelve-thirty" /><face name=":/emoji/f09f8c8f.png" pathname="f09f8c8f.png" shortcut="" order="46" describe="earth globe asia-australia" /><face name=":/emoji/f09f959e.png" pathname="f09f959e.png" shortcut="" order="47" describe="clock face three-thirty" /><face name=":/emoji/f09f8c93.png" pathname="f09f8c93.png" shortcut="" order="48" describe="first quarter moon symbol" /><face name=":/emoji/f09f8d8a.png" pathname="f09f8d8a.png" shortcut="" order="49" describe="tangerine" /><face name=":/emoji/f09f9893.png" pathname="f09f9893.png" shortcut="" order="50" describe="face with cold sweat" /><face name=":/emoji/f09f98a4.png" pathname="f09f98a4.png" shortcut="" order="51" describe="face with look of triumph" /><face name=":/emoji/f09f988c.png" pathname="f09f988c.png" shortcut="" order="52" describe="relieved face" /><face name=":/emoji/f09f8c89.png" pathname="f09f8c89.png" shortcut="" order="53" describe="bridge at night" /><face name=":/emoji/f09f989c.png" pathname="f09f989c.png" shortcut="" order="54" describe="face with stuck-out tongue and winking eye" /><face name=":/emoji/f09f9480.png" pathname="f09f9480.png" shortcut="" order="55" describe="twisted rightwards arrows" /><face name=":/emoji/f09f88b6.png" pathname="f09f88b6.png" shortcut="" order="56" describe="squared cjk unified ideograph-6709" /><face name=":/emoji/f09f9aaa.png" pathname="f09f9aaa.png" shortcut="" order="57" describe="door" /><face name=":/emoji/f09f98a1.png" pathname="f09f98a1.png" shortcut="" order="58" describe="pouting face" /><face name=":/emoji/f09f8084.png" pathname="f09f8084.png" shortcut="" order="59" describe="mahjong tile red dragon" /><face name=":/emoji/f09f988f.png" pathname="f09f988f.png" shortcut="" order="60" describe="smirking face" /><face name=":/emoji/f09f9896.png" pathname="f09f9896.png" shortcut="" order="61" describe="confounded face" /><face name=":/emoji/f09f8daf.png" pathname="f09f8daf.png" shortcut="" order="62" describe="honey pot" /><face name=":/emoji/f09f989a.png" pathname="f09f989a.png" shortcut="" order="63" describe="kissing face with closed eyes" /><face name=":/emoji/f09f8d95.png" pathname="f09f8d95.png" shortcut="" order="64" describe="slice of pizza" /><face name=":/emoji/f09f8d80.png" pathname="f09f8d80.png" shortcut="" order="65" describe="four leaf clover" /><face name=":/emoji/f09f8699.png" pathname="f09f8699.png" shortcut="" order="66" describe="squared up with exclamation mark" /><face name=":/emoji/f09f9a9a.png" pathname="f09f9a9a.png" shortcut="" order="67" describe="delivery truck" /><face name=":/emoji/f09f9a8c.png" pathname="f09f9a8c.png" shortcut="" order="68" describe="bus" /><face name=":/emoji/f09f88b2.png" pathname="f09f88b2.png" shortcut="" order="69" describe="squared cjk unified ideograph-7981" /><face name=":/emoji/f09f8cbb.png" pathname="f09f8cbb.png" shortcut="" order="70" describe="sunflower" /><face name=":/emoji/f09f9aba.png" pathname="f09f9aba.png" shortcut="" order="71" describe="womens symbol" /><face name=":/emoji/f09f9aad.png" pathname="f09f9aad.png" shortcut="" order="72" describe="no smoking symbol" /><face name=":/emoji/f09f9aa9.png" pathname="f09f9aa9.png" shortcut="" order="73" describe="triangular flag on post" /><face name=":/emoji/f09f88b5.png" pathname="f09f88b5.png" shortcut="" order="74" describe="squared cjk unified ideograph-6e80" /><face name=":/emoji/f09f948d.png" pathname="f09f948d.png" shortcut="" order="75" describe="left-pointing magnifying glass" /><face name=":/emoji/f09f93b6.png" pathname="f09f93b6.png" shortcut="" order="76" describe="antenna with bars" /><face name=":/emoji/f09f92b1.png" pathname="f09f92b1.png" shortcut="" order="77" describe="currency exchange" /><face name=":/emoji/f09f9382.png" pathname="f09f9382.png" shortcut="" order="78" describe="open file folder" /><face name=":/emoji/f09f9389.png" pathname="f09f9389.png" shortcut="" order="79" describe="chart with downwards trend" /><face name=":/emoji/f09f93a4.png" pathname="f09f93a4.png" shortcut="" order="80" describe="outbox tray" /><face name=":/emoji/f09f9ab6.png" pathname="f09f9ab6.png" shortcut="" order="81" describe="pedestrian" /><face name=":/emoji/f09f98aa.png" pathname="f09f98aa.png" shortcut="" order="82" describe="sleepy face" /><face name=":/emoji/f09f9396.png" pathname="f09f9396.png" shortcut="" order="83" describe="open book" /><face name=":/emoji/f09f8d8e.png" pathname="f09f8d8e.png" shortcut="" order="84" describe="red apple" /><face name=":/emoji/f09f869a.png" pathname="f09f869a.png" shortcut="" order="85" describe="squared vs" /><face name=":/emoji/f09f9abe.png" pathname="f09f9abe.png" shortcut="" order="86" describe="water closet" /><face name=":/emoji/f09f9a93.png" pathname="f09f9a93.png" shortcut="" order="87" describe="police car" /><face name=":/emoji/f09f98b7.png" pathname="f09f98b7.png" shortcut="" order="88" describe="face with medical mask" /><face name=":/emoji/f09f9883.png" pathname="f09f9883.png" shortcut="" order="89" describe="smiling face with open mouth" /><face name=":/emoji/f09f9398.png" pathname="f09f9398.png" shortcut="" order="90" describe="blue book" /><face name=":/emoji/f09f93b3.png" pathname="f09f93b3.png" shortcut="" order="91" describe="vibration mode" /><face name=":/emoji/f09f93a8.png" pathname="f09f93a8.png" shortcut="" order="92" describe="incoming envelope" /><face name=":/emoji/f09f93b7.png" pathname="f09f93b7.png" shortcut="" order="93" describe="camera" /><face name=":/emoji/f09f948c.png" pathname="f09f948c.png" shortcut="" order="94" describe="electric plug" /><face name=":/emoji/f09f9a8f.png" pathname="f09f9a8f.png" shortcut="" order="95" describe="bus stop" /><face name=":/emoji/f09f88b3.png" pathname="f09f88b3.png" shortcut="" order="96" describe="squared cjk unified ideograph-7a7a" /><face name=":/emoji/f09f9399.png" pathname="f09f9399.png" shortcut="" order="97" describe="orange book" /><face name=":/emoji/f09f8881.png" pathname="f09f8881.png" shortcut="" order="98" describe="squared katakana koko" /><face name=":/emoji/f09f8db9.png" pathname="f09f8db9.png" shortcut="" order="99" describe="tropical drink" /><face name=":/emoji/f09f98a5.png" pathname="f09f98a5.png" shortcut="" order="100" describe="disappointed but relieved face" /><face name=":/emoji/f09f9986.png" pathname="f09f9986.png" shortcut="" order="101" describe="face with ok gesture" /><face name=":/emoji/f09f9392.png" pathname="f09f9392.png" shortcut="" order="102" describe="ledger" /><face name=":/emoji/f09f93a6.png" pathname="f09f93a6.png" shortcut="" order="103" describe="package" /><face name=":/emoji/f09f98a9.png" pathname="f09f98a9.png" shortcut="" order="104" describe="weary face" /><face name=":/emoji/f09f90aa.png" pathname="f09f90aa.png" shortcut="" order="105" describe="dromedary camel" /><face name=":/emoji/f09f998e.png" pathname="f09f998e.png" shortcut="" order="106" describe="person with pouting face" /><face name=":/emoji/f09f9ab2.png" pathname="f09f9ab2.png" shortcut="" order="107" describe="bicycle" /><face name=":/emoji/f09f9482.png" pathname="f09f9482.png" shortcut="" order="108" describe="clockwise rightwards and leftwards open circle arrows with circled one overlay" /><face name=":/emoji/f09f93ac.png" pathname="f09f93ac.png" shortcut="" order="109" describe="open mailbox with raised flag" /><face name=":/emoji/f09f92ba.png" pathname="f09f92ba.png" shortcut="" order="110" describe="seat" /><face name=":/emoji/f09f8c82.png" pathname="f09f8c82.png" shortcut="" order="111" describe="closed umbrella" /><face name=":/emoji/f09f98ba.png" pathname="f09f98ba.png" shortcut="" order="112" describe="smiling cat face with open mouth" /><face name=":/emoji/f09f9a97.png" pathname="f09f9a97.png" shortcut="" order="113" describe="automobile" /><face name=":/emoji/f09f989e.png" pathname="f09f989e.png" shortcut="" order="114" describe="disappointed face" /><face name=":/emoji/f09f8d88.png" pathname="f09f8d88.png" shortcut="" order="115" describe="melon" /><face name=":/emoji/f09f8d83.png" pathname="f09f8d83.png" shortcut="" order="116" describe="leaf fluttering in wind" /><face name=":/emoji/f09f9293.png" pathname="f09f9293.png" shortcut="" order="117" describe="beating heart" /><face name=":/emoji/f09f93a3.png" pathname="f09f93a3.png" shortcut="" order="118" describe="cheering megaphone" /><face name=":/emoji/f09f9898.png" pathname="f09f9898.png" shortcut="" order="119" describe="face throwing a kiss" /><face name=":/emoji/f09f92b2.png" pathname="f09f92b2.png" shortcut="" order="120" describe="heavy dollar sign" /><face name=":/emoji/f09f93b4.png" pathname="f09f93b4.png" shortcut="" order="121" describe="mobile phone off" /><face name=":/emoji/f09f959f.png" pathname="f09f959f.png" shortcut="" order="122" describe="clock face four-thirty" /><face name=":/emoji/f09f98ab.png" pathname="f09f98ab.png" shortcut="" order="123" describe="tired face" /><face name=":/emoji/f09f9387.png" pathname="f09f9387.png" shortcut="" order="124" describe="card index" /><face name=":/emoji/f09f98b0.png" pathname="f09f98b0.png" shortcut="" order="125" describe="face with open mouth and cold sweat" /><face name=":/emoji/f09f8694.png" pathname="f09f8694.png" shortcut="" order="126" describe="squared id" /><face name=":/emoji/f09f8da2.png" pathname="f09f8da2.png" shortcut="" order="127" describe="oden" /><face name=":/emoji/f09f998d.png" pathname="f09f998d.png" shortcut="" order="128" describe="person frowning" /><face name=":/emoji/f09f8691.png" pathname="f09f8691.png" shortcut="" order="129" describe="squared cl" /><face name=":/emoji/f09f9aa4.png" pathname="f09f9aa4.png" shortcut="" order="130" describe="speedboat" /><face name=":/emoji/f09f8cb4.png" pathname="f09f8cb4.png" shortcut="" order="131" describe="palm tree" /><face name=":/emoji/f09f8d98.png" pathname="f09f8d98.png" shortcut="" order="132" describe="rice cracker" /><face name=":/emoji/f09f9aa7.png" pathname="f09f9aa7.png" shortcut="" order="133" describe="construction sign" /><face name=":/emoji/f09f98b1.png" pathname="f09f98b1.png" shortcut="" order="134" describe="face screaming in fear" /><face name=":/emoji/f09f9aab.png" pathname="f09f9aab.png" shortcut="" order="135" describe="no entry sign" /><face name=":/emoji/f09f9abb.png" pathname="f09f9abb.png" shortcut="" order="136" describe="restroom" /><face name=":/emoji/f09f8695.png" pathname="f09f8695.png" shortcut="" order="137" describe="squared new" /><face name=":/emoji/f09f868e.png" pathname="f09f868e.png" shortcut="" order="138" describe="negative squared ab" /><face name=":/emoji/f09f9394.png" pathname="f09f9394.png" shortcut="" order="139" describe="notebook with decorative cover" /><face name=":/emoji/f09f98bb.png" pathname="f09f98bb.png" shortcut="" order="140" describe="smiling cat face with heart-shaped eyes" /><face name=":/emoji/f09f9386.png" pathname="f09f9386.png" shortcut="" order="141" describe="tear-off calendar" /><face name=":/emoji/f09f85b1.png" pathname="f09f85b1.png" shortcut="" order="142" describe="negative squared latin capital letter b" /><face name=":/emoji/f09f8d94.png" pathname="f09f8d94.png" shortcut="" order="143" describe="hamburger" /><face name=":/emoji/f09f9881.png" pathname="f09f9881.png" shortcut="" order="144" describe="grinning face with smiling eyes" /><face name=":/emoji/f09f88b4.png" pathname="f09f88b4.png" shortcut="" order="145" describe="squared cjk unified ideograph-5408" /><face name=":/emoji/f09f9a85.png" pathname="f09f9a85.png" shortcut="" order="146" describe="high-speed train with bullet nose" /><face name=":/emoji/f09f988a.png" pathname="f09f988a.png" shortcut="" order="147" describe="smiling face with smiling eyes" /><face name=":/emoji/f09f98be.png" pathname="f09f98be.png" shortcut="" order="148" describe="pouting cat face" /><face name=":/emoji/f09f98bc.png" pathname="f09f98bc.png" shortcut="" order="149" describe="cat face with wry smile" /><face name=":/emoji/f09f9a84.png" pathname="f09f9a84.png" shortcut="" order="150" describe="high-speed train" /><face name=":/emoji/f09f92af.png" pathname="f09f92af.png" shortcut="" order="151" describe="hundred points symbol" /><face name=":/emoji/f09f938b.png" pathname="f09f938b.png" shortcut="" order="152" describe="clipboard" /><face name=":/emoji/f09f9a87.png" pathname="f09f9a87.png" shortcut="" order="153" describe="metro" /><face name=":/emoji/f09f85be.png" pathname="f09f85be.png" shortcut="" order="154" describe="negative squared latin capital letter o" /><face name=":/emoji/f09f9aa8.png" pathname="f09f9aa8.png" shortcut="" order="155" describe="police cars revolving light" /><face name=":/emoji/f09f8cb1.png" pathname="f09f8cb1.png" shortcut="" order="156" describe="seedling" /><face name=":/emoji/f09f8d9f.png" pathname="f09f8d9f.png" shortcut="" order="157" describe="french fries" /><face name=":/emoji/f09f998b.png" pathname="f09f998b.png" shortcut="" order="158" describe="happy person raising one hand" /><face name=":/emoji/f09f93bb.png" pathname="f09f93bb.png" shortcut="" order="159" describe="radio" /><face name=":/emoji/f09f9485.png" pathname="f09f9485.png" shortcut="" order="160" describe="low brightness symbol" /><face name=":/emoji/f09f98b5.png" pathname="f09f98b5.png" shortcut="" order="161" describe="dizzy face" /><face name=":/emoji/f09f93a0.png" pathname="f09f93a0.png" shortcut="" order="162" describe="fax machine" /><face name=":/emoji/f09f8d9d.png" pathname="f09f8d9d.png" shortcut="" order="163" describe="spaghetti" /><face name=":/emoji/f09f9885.png" pathname="f09f9885.png" shortcut="" order="164" describe="smiling face with open mouth and cold sweat" /><face name=":/emoji/f09f85bf.png" pathname="f09f85bf.png" shortcut="" order="165" describe="negative squared latin capital letter p" /><face name=":/emoji/f09f938c.png" pathname="f09f938c.png" shortcut="" order="166" describe="pushpin" /><face name=":/emoji/f09f94aa.png" pathname="f09f94aa.png" shortcut="" order="167" describe="hocho" /><face name=":/emoji/f09f93ad.png" pathname="f09f93ad.png" shortcut="" order="168" describe="open mailbox with lowered flag" /><face name=":/emoji/f09f9391.png" pathname="f09f9391.png" shortcut="" order="169" describe="bookmark tabs" /><face name=":/emoji/f09f93b9.png" pathname="f09f93b9.png" shortcut="" order="170" describe="video camera" /><face name=":/emoji/f09f9884.png" pathname="f09f9884.png" shortcut="" order="171" describe="smiling face with open mouth and smiling eyes" /><face name=":/emoji/f09f8d9c.png" pathname="f09f8d9c.png" shortcut="" order="172" describe="steaming bowl" /><face name=":/emoji/f09f9390.png" pathname="f09f9390.png" shortcut="" order="173" describe="triangular ruler" /><face name=":/emoji/f09f998f.png" pathname="f09f998f.png" shortcut="" order="174" describe="person with folded hands" /><face name=":/emoji/f09f998a.png" pathname="f09f998a.png" shortcut="" order="175" describe="speak-no-evil monkey" /><face name=":/emoji/f09f9a89.png" pathname="f09f9a89.png" shortcut="" order="176" describe="station" /><face name=":/emoji/f09f9388.png" pathname="f09f9388.png" shortcut="" order="177" describe="chart with upwards trend" /><face name=":/emoji/f09f9889.png" pathname="f09f9889.png" shortcut="" order="178" describe="winking face" /><face name=":/emoji/f09f8d86.png" pathname="f09f8d86.png" shortcut="" order="179" describe="aubergine" /><face name=":/emoji/f09f938e.png" pathname="f09f938e.png" shortcut="" order="180" describe="paperclip" /><face name=":/emoji/f09f9a91.png" pathname="f09f9a91.png" shortcut="" order="181" describe="ambulance" /><face name=":/emoji/f09f8ca0.png" pathname="f09f8ca0.png" shortcut="" order="182" describe="shooting star" /><face name=":/emoji/f09f8d8d.png" pathname="f09f8d8d.png" shortcut="" order="183" describe="pineapple" /><face name=":/emoji/f09f9aac.png" pathname="f09f9aac.png" shortcut="" order="184" describe="smoking symbol" /><face name=":/emoji/f09f8d84.png" pathname="f09f8d84.png" shortcut="" order="185" describe="mushroom" /><face name=":/emoji/f09f9abc.png" pathname="f09f9abc.png" shortcut="" order="186" describe="baby symbol" /><face name=":/emoji/f09f8696.png" pathname="f09f8696.png" shortcut="" order="187" describe="squared ng" /><face name=":/emoji/f09f8c94.png" pathname="f09f8c94.png" shortcut="" order="188" describe="waxing gibbous moon symbol" /><face name=":/emoji/f09f8991.png" pathname="f09f8991.png" shortcut="" order="189" describe="circled ideograph accept" /><face name=":/emoji/f09f9abd.png" pathname="f09f9abd.png" shortcut="" order="190" describe="toilet" /><face name=":/emoji/f09f8697.png" pathname="f09f8697.png" shortcut="" order="191" describe="squared ok" /><face name=":/emoji/f09f88b7.png" pathname="f09f88b7.png" shortcut="" order="192" describe="squared cjk unified ideograph-6708" /><face name=":/emoji/f09f889a.png" pathname="f09f889a.png" shortcut="" order="193" describe="squared cjk unified ideograph-7121" /><face name=":/emoji/f09f8c8a.png" pathname="f09f8c8a.png" shortcut="" order="194" describe="water wave" /><face name=":/emoji/f09f8c86.png" pathname="f09f8c86.png" shortcut="" order="195" describe="cityscape at dusk" /><face name=":/emoji/f09f8c8b.png" pathname="f09f8c8b.png" shortcut="" order="196" describe="volcano" /><face name=":/emoji/f09f8cba.png" pathname="f09f8cba.png" shortcut="" order="197" describe="hibiscus" /><face name=":/emoji/f09f8c83.png" pathname="f09f8c83.png" shortcut="" order="198" describe="night with stars" /><face name=":/emoji/f09f9b80.png" pathname="f09f9b80.png" shortcut="" order="199" describe="bath" /><face name=":/emoji/f09f8cb0.png" pathname="f09f8cb0.png" shortcut="" order="200" describe="chestnut" /><face name=":/emoji/f09f88b8.png" pathname="f09f88b8.png" shortcut="" order="201" describe="squared cjk unified ideograph-7533" /><face name=":/emoji/f09f9a92.png" pathname="f09f9a92.png" shortcut="" order="202" describe="fire engine" /><face name=":/emoji/f09f998c.png" pathname="f09f998c.png" shortcut="" order="203" describe="person raising both hands in celebration" /><face name=":/emoji/f09f93a2.png" pathname="f09f93a2.png" shortcut="" order="204" describe="public address loudspeaker" /><face name=":/emoji/f09f838f.png" pathname="f09f838f.png" shortcut="" order="205" describe="playing card black joker" /><face name=":/emoji/f09f8c95.png" pathname="f09f8c95.png" shortcut="" order="206" describe="full moon symbol" /><face name=":/emoji/f09f8c99.png" pathname="f09f8c99.png" shortcut="" order="207" describe="crescent moon" /><face name=":/emoji/f09f8cbe.png" pathname="f09f8cbe.png" shortcut="" order="208" describe="ear of rice" /><face name=":/emoji/f09f8ea3.png" pathname="f09f8ea3.png" shortcut="" order="209" describe="fishing pole and fish" /><face name=":/emoji/f09f9988.png" pathname="f09f9988.png" shortcut="" order="210" describe="see-no-evil monkey" /><face name=":/emoji/f09f8cbf.png" pathname="f09f8cbf.png" shortcut="" order="211" describe="herb" /><face name=":/emoji/f09f8d97.png" pathname="f09f8d97.png" shortcut="" order="212" describe="poultry leg" /><face name=":/emoji/f09f9989.png" pathname="f09f9989.png" shortcut="" order="213" describe="hear-no-evil monkey" /><face name=":/emoji/f09f8dbb.png" pathname="f09f8dbb.png" shortcut="" order="214" describe="clinking beer mugs" /><face name=":/emoji/f09f8cb5.png" pathname="f09f8cb5.png" shortcut="" order="215" describe="cactus" /><face name=":/emoji/f09f8db0.png" pathname="f09f8db0.png" shortcut="" order="216" describe="shortcake" /><face name=":/emoji/f09f92b9.png" pathname="f09f92b9.png" shortcut="" order="217" describe="chart with upwards trend and yen sign" /><face name=":/emoji/f09f98b9.png" pathname="f09f98b9.png" shortcut="" order="218" describe="cat face with tears of joy" /><face name=":/emoji/f09f98b3.png" pathname="f09f98b3.png" shortcut="" order="219" describe="flushed face" /><face name=":/emoji/f09f98bd.png" pathname="f09f98bd.png" shortcut="" order="220" describe="kissing cat face with closed eyes" /><face name=":/emoji/f09f8e88.png" pathname="f09f8e88.png" shortcut="" order="221" describe="balloon" /><face name=":/emoji/f09f8c85.png" pathname="f09f8c85.png" shortcut="" order="222" describe="sunrise" /><face name=":/emoji/f09f8e8f.png" pathname="f09f8e8f.png" shortcut="" order="223" describe="carp streamer" /><face name=":/emoji/f09f8ea2.png" pathname="f09f8ea2.png" shortcut="" order="224" describe="roller coaster" /><face name=":/emoji/f09f939f.png" pathname="f09f939f.png" shortcut="" order="225" describe="pager" /><face name=":/emoji/f09f8d85.png" pathname="f09f8d85.png" shortcut="" order="226" describe="tomato" /><face name=":/emoji/f09f9a99.png" pathname="f09f9a99.png" shortcut="" order="227" describe="recreational vehicle" /><face name=":/emoji/f09f8cbc.png" pathname="f09f8cbc.png" shortcut="" order="228" describe="blossom" /><face name=":/emoji/f09f8990.png" pathname="f09f8990.png" shortcut="" order="229" describe="circled ideograph advantage" /><face name=":/emoji/f09f8e86.png" pathname="f09f8e86.png" shortcut="" order="230" describe="fireworks" /><face name=":/emoji/f09f8cbd.png" pathname="f09f8cbd.png" shortcut="" order="231" describe="ear of maize" /><face name=":/emoji/f09f8d93.png" pathname="f09f8d93.png" shortcut="" order="232" describe="strawberry" /><face name=":/emoji/f09f8db7.png" pathname="f09f8db7.png" shortcut="" order="233" describe="wine glass" /><face name=":/emoji/f09f8e8a.png" pathname="f09f8e8a.png" shortcut="" order="234" describe="confetti ball" /><face name=":/emoji/f09f8db4.png" pathname="f09f8db4.png" shortcut="" order="235" describe="fork and knife" /><face name=":/emoji/f09f8ea4.png" pathname="f09f8ea4.png" shortcut="" order="236" describe="microphone" /><face name=":/emoji/f09f8db6.png" pathname="f09f8db6.png" shortcut="" order="237" describe="sake bottle and cup" /><face name=":/emoji/f09f8698.png" pathname="f09f8698.png" shortcut="" order="238" describe="squared sos" /><face name=":/emoji/f09f8db3.png" pathname="f09f8db3.png" shortcut="" order="239" describe="cooking" /><face name=":/emoji/f09f8c81.png" pathname="f09f8c81.png" shortcut="" order="240" describe="foggy" /><face name=":/emoji/f09f8d89.png" pathname="f09f8d89.png" shortcut="" order="241" describe="watermelon" /><face name=":/emoji/f09f8d96.png" pathname="f09f8d96.png" shortcut="" order="242" describe="meat on bone" /><face name=":/emoji/f09f8da6.png" pathname="f09f8da6.png" shortcut="" order="243" describe="soft ice cream" /><face name=":/emoji/f09f8da4.png" pathname="f09f8da4.png" shortcut="" order="244" describe="fried shrimp" /><face name=":/emoji/f09f8db1.png" pathname="f09f8db1.png" shortcut="" order="245" describe="bento box" /><face name=":/emoji/f09f8da3.png" pathname="f09f8da3.png" shortcut="" order="246" describe="sushi" /><face name=":/emoji/f09f8e8d.png" pathname="f09f8e8d.png" shortcut="" order="247" describe="pine decoration" /><face name=":/emoji/f09f8e8e.png" pathname="f09f8e8e.png" shortcut="" order="248" describe="japanese dolls" /><face name=":/emoji/f09f8ea7.png" pathname="f09f8ea7.png" shortcut="" order="249" describe="headphone" /><face name=":/emoji/f09f8eb6.png" pathname="f09f8eb6.png" shortcut="" order="250" describe="multiple musical notes" /><face name=":/emoji/f09f8882.png" pathname="f09f8882.png" shortcut="" order="251" describe="squared katakana sa" /><face name=":/emoji/f09f9ab9.png" pathname="f09f9ab9.png" shortcut="" order="252" describe="mens symbol" /><face name=":/emoji/f09f8e8b.png" pathname="f09f8e8b.png" shortcut="" order="253" describe="tanabata tree" /><face name=":/emoji/f09f92bc.png" pathname="f09f92bc.png" shortcut="" order="254" describe="briefcase" /><face name=":/emoji/f09f8da0.png" pathname="f09f8da0.png" shortcut="" order="255" describe="roasted sweet potato" /><face name=":/emoji/f09f8d81.png" pathname="f09f8d81.png" shortcut="" order="256" describe="maple leaf" /><face name=":/emoji/f09f88ba.png" pathname="f09f88ba.png" shortcut="" order="257" describe="squared cjk unified ideograph-55b6" /><face name=":/emoji/f09f88af.png" pathname="f09f88af.png" shortcut="" order="258" describe="squared cjk unified ideograph-6307" /><face name=":/emoji/f09f8c8c.png" pathname="f09f8c8c.png" shortcut="" order="259" describe="milky way" /><face name=":/emoji/f09f8e85.png" pathname="f09f8e85.png" shortcut="" order="260" describe="father christmas" /><face name=":/emoji/f09f8e81.png" pathname="f09f8e81.png" shortcut="" order="261" describe="wrapped present" /><face name=":/emoji/f09f8c84.png" pathname="f09f8c84.png" shortcut="" order="262" describe="sunrise over mountains" /><face name=":/emoji/f09f8d8c.png" pathname="f09f8d8c.png" shortcut="" order="263" describe="banana" /><face name=":/emoji/f09f92b5.png" pathname="f09f92b5.png" shortcut="" order="264" describe="banknote with dollar sign" /><face name=":/emoji/f09f8cb7.png" pathname="f09f8cb7.png" shortcut="" order="265" describe="tulip" /><face name=":/emoji/f09f8c80.png" pathname="f09f8c80.png" shortcut="" order="266" describe="cyclone" /><face name=":/emoji/f09f8d99.png" pathname="f09f8d99.png" shortcut="" order="267" describe="rice ball" /><face name=":/emoji/f09f8cb9.png" pathname="f09f8cb9.png" shortcut="" order="268" describe="rose" /><face name=":/emoji/f09f98b8.png" pathname="f09f98b8.png" shortcut="" order="269" describe="grinning cat face with smiling eyes" /><face name=":/emoji/f09f93a9.png" pathname="f09f93a9.png" shortcut="" order="270" describe="envelope with downwards arrow above" /><face name=":/emoji/f09f8c9b.png" pathname="f09f8c9b.png" shortcut="" order="271" describe="first quarter moon with face" /><face name=":/emoji/f09f8e80.png" pathname="f09f8e80.png" shortcut="" order="272" describe="ribbon" /><face name=":/emoji/f09f9a95.png" pathname="f09f9a95.png" shortcut="" order="273" describe="taxi" /><face name=":/emoji/f09f8dba.png" pathname="f09f8dba.png" shortcut="" order="274" describe="beer mug" /><face name=":/emoji/f09f8dad.png" pathname="f09f8dad.png" shortcut="" order="275" describe="lollipop" /><face name=":/emoji/f09f8d91.png" pathname="f09f8d91.png" shortcut="" order="276" describe="peach" /><face name=":/emoji/f09f8da8.png" pathname="f09f8da8.png" shortcut="" order="277" describe="ice cream" /><face name=":/emoji/f09f8e8c.png" pathname="f09f8e8c.png" shortcut="" order="278" describe="crossed flags" /><face name=":/emoji/f09f8f81.png" pathname="f09f8f81.png" shortcut="" order="279" describe="chequered flag" /><face name=":/emoji/f09f8eae.png" pathname="f09f8eae.png" shortcut="" order="280" describe="video game" /><face name=":/emoji/f09f8d92.png" pathname="f09f8d92.png" shortcut="" order="281" describe="cherries" /><face name=":/emoji/f09f8da1.png" pathname="f09f8da1.png" shortcut="" order="282" describe="dango" /><face name=":/emoji/f09f8da5.png" pathname="f09f8da5.png" shortcut="" order="283" describe="fish cake with swirl design" /><face name=":/emoji/f09f8db2.png" pathname="f09f8db2.png" shortcut="" order="284" describe="pot of food" /><face name=":/emoji/f09f8db5.png" pathname="f09f8db5.png" shortcut="" order="285" describe="teacup without handle" /><face name=":/emoji/f09f8dab.png" pathname="f09f8dab.png" shortcut="" order="286" describe="chocolate bar" /><face name=":/emoji/f09f8e84.png" pathname="f09f8e84.png" shortcut="" order="287" describe="christmas tree" /><face name=":/emoji/f09f8dae.png" pathname="f09f8dae.png" shortcut="" order="288" describe="custard" /><face name=":/emoji/f09f8ea9.png" pathname="f09f8ea9.png" shortcut="" order="289" describe="top hat" /><face name=":/emoji/f09f8eba.png" pathname="f09f8eba.png" shortcut="" order="290" describe="trumpet" /><face name=":/emoji/f09f8d87.png" pathname="f09f8d87.png" shortcut="" order="291" describe="grapes" /><face name=":/emoji/f09f8c9f.png" pathname="f09f8c9f.png" shortcut="" order="292" describe="glowing star" /><face name=":/emoji/f09f8e89.png" pathname="f09f8e89.png" shortcut="" order="293" describe="party popper" /><face name=":/emoji/f09f8e83.png" pathname="f09f8e83.png" shortcut="" order="294" describe="jack-o-lantern" /><face name=":/emoji/f09f8c87.png" pathname="f09f8c87.png" shortcut="" order="295" describe="sunset over buildings" /><face name=":/emoji/f09f8e87.png" pathname="f09f8e87.png" shortcut="" order="296" describe="firework sparkler" /><face name=":/emoji/f09f8ea0.png" pathname="f09f8ea0.png" shortcut="" order="297" describe="carousel horse" /><face name=":/emoji/f09f8eb2.png" pathname="f09f8eb2.png" shortcut="" order="298" describe="game die" /><face name=":/emoji/f09f8eb5.png" pathname="f09f8eb5.png" shortcut="" order="299" describe="musical note" /><face name=":/emoji/f09f8cb8.png" pathname="f09f8cb8.png" shortcut="" order="300" describe="cherry blossom" /><face name=":/emoji/f09f8d82.png" pathname="f09f8d82.png" shortcut="" order="301" describe="fallen leaf" /><face name=":/emoji/f09f8ead.png" pathname="f09f8ead.png" shortcut="" order="302" describe="performing arts" /><face name=":/emoji/f09f92b7.png" pathname="f09f92b7.png" shortcut="" order="303" describe="banknote with pound sign" /><face name=":/emoji/f09f8ea8.png" pathname="f09f8ea8.png" shortcut="" order="304" describe="artist palette" /><face name=":/emoji/f09f8eaf.png" pathname="f09f8eaf.png" shortcut="" order="305" describe="direct hit" /><face name=":/emoji/f09f90a1.png" pathname="f09f90a1.png" shortcut="" order="306" describe="blowfish" /><face name=":/emoji/f09f8fa8.png" pathname="f09f8fa8.png" shortcut="" order="307" describe="hotel" /><face name=":/emoji/f09f8eb9.png" pathname="f09f8eb9.png" shortcut="" order="308" describe="musical keyboard" /><face name=":/emoji/f09f8fa0.png" pathname="f09f8fa0.png" shortcut="" order="309" describe="house building" /><face name=":/emoji/f09f8eb1.png" pathname="f09f8eb1.png" shortcut="" order="310" describe="billiards" /><face name=":/emoji/f09f8ea6.png" pathname="f09f8ea6.png" shortcut="" order="311" describe="cinema" /><face name=":/emoji/f09f8d9e.png" pathname="f09f8d9e.png" shortcut="" order="312" describe="bread" /><face name=":/emoji/f09f8fb0.png" pathname="f09f8fb0.png" shortcut="" order="313" describe="european castle" /><face name=":/emoji/f09f8eb8.png" pathname="f09f8eb8.png" shortcut="" order="314" describe="guitar" /><face name=":/emoji/f09f8ebb.png" pathname="f09f8ebb.png" shortcut="" order="315" describe="violin" /><face name=":/emoji/f09f8f82.png" pathname="f09f8f82.png" shortcut="" order="316" describe="snowboarder" /><face name=":/emoji/f09f90a6.png" pathname="f09f90a6.png" shortcut="" order="317" describe="bird" /><face name=":/emoji/f09f8eac.png" pathname="f09f8eac.png" shortcut="" order="318" describe="clapper board" /><face name=":/emoji/f09f8e91.png" pathname="f09f8e91.png" shortcut="" order="319" describe="moon viewing ceremony" /><face name=":/emoji/f09f8ebc.png" pathname="f09f8ebc.png" shortcut="" order="320" describe="musical score" /><face name=":/emoji/f09f909c.png" pathname="f09f909c.png" shortcut="" order="321" describe="ant" /><face name=":/emoji/f09f90af.png" pathname="f09f90af.png" shortcut="" order="322" describe="tiger face" /><face name=":/emoji/f09f90a4.png" pathname="f09f90a4.png" shortcut="" order="323" describe="baby chick" /><face name=":/emoji/f09f8eb0.png" pathname="f09f8eb0.png" shortcut="" order="324" describe="slot machine" /><face name=":/emoji/f09f8ebd.png" pathname="f09f8ebd.png" shortcut="" order="325" describe="running shirt with sash" /><face name=":/emoji/f09f909a.png" pathname="f09f909a.png" shortcut="" order="326" describe="spiral shell" /><face name=":/emoji/f09f90b3.png" pathname="f09f90b3.png" shortcut="" order="327" describe="spouting whale" /><face name=":/emoji/f09f8eb4.png" pathname="f09f8eb4.png" shortcut="" order="328" describe="flower playing cards" /><face name=":/emoji/f09f8eaa.png" pathname="f09f8eaa.png" shortcut="" order="329" describe="circus tent" /><face name=":/emoji/f09f8e90.png" pathname="f09f8e90.png" shortcut="" order="330" describe="wind chime" /><face name=":/emoji/f09f8fa6.png" pathname="f09f8fa6.png" shortcut="" order="331" describe="bank" /><face name=":/emoji/f09f8da9.png" pathname="f09f8da9.png" shortcut="" order="332" describe="doughnut" /><face name=":/emoji/f09f8fa9.png" pathname="f09f8fa9.png" shortcut="" order="333" describe="love hotel" /><face name=":/emoji/f09f8d8f.png" pathname="f09f8d8f.png" shortcut="" order="334" describe="green apple" /><face name=":/emoji/f09f908c.png" pathname="f09f908c.png" shortcut="" order="335" describe="snail" /><face name=":/emoji/f09f8e92.png" pathname="f09f8e92.png" shortcut="" order="336" describe="school satchel" /><face name=":/emoji/f09f8f80.png" pathname="f09f8f80.png" shortcut="" order="337" describe="basketball and hoop" /><face name=":/emoji/f09f8fad.png" pathname="f09f8fad.png" shortcut="" order="338" describe="factory" /><face name=":/emoji/f09f90a8.png" pathname="f09f90a8.png" shortcut="" order="339" describe="koala" /><face name=":/emoji/f09f8eab.png" pathname="f09f8eab.png" shortcut="" order="340" describe="ticket" /><face name=":/emoji/f09f908d.png" pathname="f09f908d.png" shortcut="" order="341" describe="snake" /><face name=":/emoji/f09f90ad.png" pathname="f09f90ad.png" shortcut="" order="342" describe="mouse face" /><face name=":/emoji/f09f8faf.png" pathname="f09f8faf.png" shortcut="" order="343" describe="japanese castle" /><face name=":/emoji/f09f8ea5.png" pathname="f09f8ea5.png" shortcut="" order="344" describe="movie camera" /><face name=":/emoji/f09f8daa.png" pathname="f09f8daa.png" shortcut="" order="345" describe="cookie" /><face name=":/emoji/f09f8da7.png" pathname="f09f8da7.png" shortcut="" order="346" describe="shaved ice" /><face name=":/emoji/f09f8ea1.png" pathname="f09f8ea1.png" shortcut="" order="347" describe="ferris wheel" /><face name=":/emoji/f09f90b1.png" pathname="f09f90b1.png" shortcut="" order="348" describe="cat face" /><face name=":/emoji/f09f8db8.png" pathname="f09f8db8.png" shortcut="" order="349" describe="cocktail glass" /><face name=":/emoji/f09f909f.png" pathname="f09f909f.png" shortcut="" order="350" describe="fish" /><face name=":/emoji/f09f90a0.png" pathname="f09f90a0.png" shortcut="" order="351" describe="tropical fish" /><face name=":/emoji/f09f9099.png" pathname="f09f9099.png" shortcut="" order="352" describe="octopus" /><face name=":/emoji/f09f8eb3.png" pathname="f09f8eb3.png" shortcut="" order="353" describe="bowling" /><face name=":/emoji/f09f8eb7.png" pathname="f09f8eb7.png" shortcut="" order="354" describe="saxophone" /><face name=":/emoji/f09f8f8a.png" pathname="f09f8f8a.png" shortcut="" order="355" describe="swimmer" /><face name=":/emoji/f09f91b3.png" pathname="f09f91b3.png" shortcut="" order="356" describe="man with turban" /><face name=":/emoji/f09f8f83.png" pathname="f09f8f83.png" shortcut="" order="357" describe="runner" /><face name=":/emoji/f09f9091.png" pathname="f09f9091.png" shortcut="" order="358" describe="sheep" /><face name=":/emoji/f09f91b8.png" pathname="f09f91b8.png" shortcut="" order="359" describe="princess" /><face name=":/emoji/f09f91a2.png" pathname="f09f91a2.png" shortcut="" order="360" describe="womans boots" /><face name=":/emoji/f09f9194.png" pathname="f09f9194.png" shortcut="" order="361" describe="necktie" /><face name=":/emoji/f09f918b.png" pathname="f09f918b.png" shortcut="" order="362" describe="waving hand sign" /><face name=":/emoji/f09f8ebf.png" pathname="f09f8ebf.png" shortcut="" order="363" describe="ski and ski boot" /><face name=":/emoji/f09f91ba.png" pathname="f09f91ba.png" shortcut="" order="364" describe="japanese goblin" /><face name=":/emoji/f09f8f86.png" pathname="f09f8f86.png" shortcut="" order="365" describe="trophy" /><face name=":/emoji/f09f9286.png" pathname="f09f9286.png" shortcut="" order="366" describe="face massage" /><face name=":/emoji/f09f90be.png" pathname="f09f90be.png" shortcut="" order="367" describe="paw prints" /><face name=":/emoji/f09f8fab.png" pathname="f09f8fab.png" shortcut="" order="368" describe="school" /><face name=":/emoji/f09f91b2.png" pathname="f09f91b2.png" shortcut="" order="369" describe="man with gua pi mao" /><face name=":/emoji/f09f8fa2.png" pathname="f09f8fa2.png" shortcut="" order="370" describe="office building" /><face name=":/emoji/f09f9188.png" pathname="f09f9188.png" shortcut="" order="371" describe="white left pointing backhand index" /><face name=":/emoji/f09f8f84.png" pathname="f09f8f84.png" shortcut="" order="372" describe="surfer" /><face name=":/emoji/f09f9298.png" pathname="f09f9298.png" shortcut="" order="373" describe="heart with arrow" /><face name=":/emoji/f09f9180.png" pathname="f09f9180.png" shortcut="" order="374" describe="eyes" /><face name=":/emoji/f09f8fac.png" pathname="f09f8fac.png" shortcut="" order="375" describe="department store" /><face name=":/emoji/f09f8fa3.png" pathname="f09f8fa3.png" shortcut="" order="376" describe="japanese post office" /><face name=":/emoji/f09f8fa5.png" pathname="f09f8fa5.png" shortcut="" order="377" describe="hospital" /><face name=":/emoji/f09f8faa.png" pathname="f09f8faa.png" shortcut="" order="378" describe="convenience store" /><face name=":/emoji/f09f9097.png" pathname="f09f9097.png" shortcut="" order="379" describe="boar" /><face name=":/emoji/f09f9196.png" pathname="f09f9196.png" shortcut="" order="380" describe="jeans" /><face name=":/emoji/f09f908e.png" pathname="f09f908e.png" shortcut="" order="381" describe="horse" /><face name=":/emoji/f09f90b6.png" pathname="f09f90b6.png" shortcut="" order="382" describe="dog face" /><face name=":/emoji/f09f91b1.png" pathname="f09f91b1.png" shortcut="" order="383" describe="person with blond hair" /><face name=":/emoji/f09f91b9.png" pathname="f09f91b9.png" shortcut="" order="384" describe="japanese ogre" /><face name=":/emoji/f09f928c.png" pathname="f09f928c.png" shortcut="" order="385" describe="love letter" /><face name=":/emoji/f09f8fae.png" pathname="f09f8fae.png" shortcut="" order="386" describe="izakaya lantern" /><face name=":/emoji/f09f9191.png" pathname="f09f9191.png" shortcut="" order="387" describe="crown" /><face name=":/emoji/f09f9295.png" pathname="f09f9295.png" shortcut="" order="388" describe="two hearts" /><face name=":/emoji/f09f90bc.png" pathname="f09f90bc.png" shortcut="" order="389" describe="panda face" /><face name=":/emoji/f09f9284.png" pathname="f09f9284.png" shortcut="" order="390" describe="lipstick" /><face name=":/emoji/f09f9190.png" pathname="f09f9190.png" shortcut="" order="391" describe="open hands sign" /><face name=":/emoji/f09f928a.png" pathname="f09f928a.png" shortcut="" order="392" describe="pill" /><face name=":/emoji/f09f9280.png" pathname="f09f9280.png" shortcut="" order="393" describe="skull" /><face name=":/emoji/f09f91b7.png" pathname="f09f91b7.png" shortcut="" order="394" describe="construction worker" /><face name=":/emoji/f09f90b8.png" pathname="f09f90b8.png" shortcut="" order="395" describe="frog face" /><face name=":/emoji/f09f9292.png" pathname="f09f9292.png" shortcut="" order="396" describe="wedding" /><face name=":/emoji/f09f8f88.png" pathname="f09f8f88.png" shortcut="" order="397" describe="american football" /><face name=":/emoji/f09f9287.png" pathname="f09f9287.png" shortcut="" order="398" describe="haircut" /><face name=":/emoji/f09f918f.png" pathname="f09f918f.png" shortcut="" order="399" describe="clapping hands sign" /><face name=":/emoji/f09f91a8.png" pathname="f09f91a8.png" shortcut="" order="400" describe="man" /><face name=":/emoji/f09f8fa7.png" pathname="f09f8fa7.png" shortcut="" order="401" describe="automated teller machine" /><face name=":/emoji/f09f918a.png" pathname="f09f918a.png" shortcut="" order="402" describe="fisted hand sign" /><face name=":/emoji/f09f91bd.png" pathname="f09f91bd.png" shortcut="" order="403" describe="extraterrestrial alien" /><face name=":/emoji/f09f918c.png" pathname="f09f918c.png" shortcut="" order="404" describe="ok hand sign" /><face name=":/emoji/f09f9098.png" pathname="f09f9098.png" shortcut="" order="405" describe="elephant" /><face name=":/emoji/f09f91a0.png" pathname="f09f91a0.png" shortcut="" order="406" describe="high-heeled shoe" /><face name=":/emoji/f09f9197.png" pathname="f09f9197.png" shortcut="" order="407" describe="dress" /><face name=":/emoji/f09f90bd.png" pathname="f09f90bd.png" shortcut="" order="408" describe="pig nose" /><face name=":/emoji/f09f90b5.png" pathname="f09f90b5.png" shortcut="" order="409" describe="monkey face" /><face name=":/emoji/f09f9193.png" pathname="f09f9193.png" shortcut="" order="410" describe="eyeglasses" /><face name=":/emoji/f09f928e.png" pathname="f09f928e.png" shortcut="" order="411" describe="gem stone" /><face name=":/emoji/f09f9288.png" pathname="f09f9288.png" shortcut="" order="412" describe="barber pole" /><face name=":/emoji/f09f91be.png" pathname="f09f91be.png" shortcut="" order="413" describe="alien monster" /><face name=":/emoji/f09f919f.png" pathname="f09f919f.png" shortcut="" order="414" describe="athletic shoe" /><face name=":/emoji/f09f919d.png" pathname="f09f919d.png" shortcut="" order="415" describe="pouch" /><face name=":/emoji/f09f928f.png" pathname="f09f928f.png" shortcut="" order="416" describe="kiss" /><face name=":/emoji/f09f919c.png" pathname="f09f919c.png" shortcut="" order="417" describe="handbag" /><face name=":/emoji/f09f9283.png" pathname="f09f9283.png" shortcut="" order="418" describe="dancer" /><face name=":/emoji/f09f8fa1.png" pathname="f09f8fa1.png" shortcut="" order="419" describe="house with garden" /><face name=":/emoji/f09f9285.png" pathname="f09f9285.png" shortcut="" order="420" describe="nail polish" /><face name=":/emoji/f09f91aa.png" pathname="f09f91aa.png" shortcut="" order="421" describe="family" /><face name=":/emoji/f09f91b6.png" pathname="f09f91b6.png" shortcut="" order="422" describe="baby" /><face name=":/emoji/f09f919e.png" pathname="f09f919e.png" shortcut="" order="423" describe="mans shoe" /><face name=":/emoji/f09f9aa5.png" pathname="f09f9aa5.png" shortcut="" order="424" describe="horizontal traffic light" /><face name=":/emoji/f09f92b0.png" pathname="f09f92b0.png" shortcut="" order="425" describe="money bag" /><face name=":/emoji/f09f9297.png" pathname="f09f9297.png" shortcut="" order="426" describe="growing heart" /><face name=":/emoji/f09f9490.png" pathname="f09f9490.png" shortcut="" order="427" describe="closed lock with key" /><face name=":/emoji/f09f94a2.png" pathname="f09f94a2.png" shortcut="" order="428" describe="input symbol for numbers" /><face name=":/emoji/f09f948f.png" pathname="f09f948f.png" shortcut="" order="429" describe="lock with ink pen" /><face name=":/emoji/f09f9598.png" pathname="f09f9598.png" shortcut="" order="430" describe="clock face nine oclock" /><face name=":/emoji/f09f97be.png" pathname="f09f97be.png" shortcut="" order="431" describe="silhouette of japan" /><face name=":/emoji/f09f9499.png" pathname="f09f9499.png" shortcut="" order="432" describe="back with leftwards arrow above" /><face name=":/emoji/f09f94a1.png" pathname="f09f94a1.png" shortcut="" order="433" describe="input symbol for latin small letters" /><face name=":/emoji/f09f949f.png" pathname="f09f949f.png" shortcut="" order="434" describe="keycap ten" /><face name=":/emoji/f09f9595.png" pathname="f09f9595.png" shortcut="" order="435" describe="clock face six oclock" /><face name=":/emoji/f09f94b1.png" pathname="f09f94b1.png" shortcut="" order="436" describe="trident emblem" /><face name=":/emoji/f09f949e.png" pathname="f09f949e.png" shortcut="" order="437" describe="no one under eighteen symbol" /><face name=":/emoji/f09f948b.png" pathname="f09f948b.png" shortcut="" order="438" describe="battery" /><face name=":/emoji/f09f98af.png" pathname="f09f98af.png" shortcut="" order="439" describe="hushed face" /><face name=":/emoji/f09f9497.png" pathname="f09f9497.png" shortcut="" order="440" describe="link symbol" /><face name=":/emoji/f09f949d.png" pathname="f09f949d.png" shortcut="" order="441" describe="top with upwards arrow above" /><face name=":/emoji/f09f97bd.png" pathname="f09f97bd.png" shortcut="" order="442" describe="statue of liberty" /><face name=":/emoji/f09f97bf.png" pathname="f09f97bf.png" shortcut="" order="443" describe="moyai" /><face name=":/emoji/f09f9887.png" pathname="f09f9887.png" shortcut="" order="444" describe="smiling face with halo" /><face name=":/emoji/f09f97bc.png" pathname="f09f97bc.png" shortcut="" order="445" describe="tokyo tower" /><face name=":/emoji/f09f94a7.png" pathname="f09f94a7.png" shortcut="" order="446" describe="wrench" /><face name=":/emoji/f09f98a6.png" pathname="f09f98a6.png" shortcut="" order="447" describe="frowning face with open mouth" /><face name=":/emoji/f09f98ae.png" pathname="f09f98ae.png" shortcut="" order="448" describe="face with open mouth" /><face name=":/emoji/f09f9891.png" pathname="f09f9891.png" shortcut="" order="449" describe="expressionless face" /><face name=":/emoji/f09f94a0.png" pathname="f09f94a0.png" shortcut="" order="450" describe="input symbol for latin capital letters" /><face name=":/emoji/f09f94a6.png" pathname="f09f94a6.png" shortcut="" order="451" describe="electric torch" /><face name=":/emoji/f09f94a3.png" pathname="f09f94a3.png" shortcut="" order="452" describe="input symbol for symbols" /><face name=":/emoji/f09f94b7.png" pathname="f09f94b7.png" shortcut="" order="453" describe="large blue diamond" /><face name=":/emoji/f09f9890.png" pathname="f09f9890.png" shortcut="" order="454" describe="neutral face" /><face name=":/emoji/f09f94a4.png" pathname="f09f94a4.png" shortcut="" order="455" describe="input symbol for latin letters" /><face name=":/emoji/f09f9492.png" pathname="f09f9492.png" shortcut="" order="456" describe="lock" /><face name=":/emoji/f09f94b3.png" pathname="f09f94b3.png" shortcut="" order="457" describe="white square button" /><face name=":/emoji/f09f97bb.png" pathname="f09f97bb.png" shortcut="" order="458" describe="mount fuji" /><face name=":/emoji/f09f92a4.png" pathname="f09f92a4.png" shortcut="" order="459" describe="sleeping symbol" /><face name=":/emoji/f09f9491.png" pathname="f09f9491.png" shortcut="" order="460" describe="key" /><face name=":/emoji/f09f9594.png" pathname="f09f9594.png" shortcut="" order="461" describe="clock face five oclock" /><face name=":/emoji/f09f948e.png" pathname="f09f948e.png" shortcut="" order="462" describe="right-pointing magnifying glass" /><face name=":/emoji/f09f959a.png" pathname="f09f959a.png" shortcut="" order="463" describe="clock face eleven oclock" /><face name=":/emoji/f09f9a82.png" pathname="f09f9a82.png" shortcut="" order="464" describe="steam locomotive" /><face name=":/emoji/f09f9597.png" pathname="f09f9597.png" shortcut="" order="465" describe="clock face eight oclock" /><face name=":/emoji/f09f9a81.png" pathname="f09f9a81.png" shortcut="" order="466" describe="helicopter" /><face name=":/emoji/f09f98a7.png" pathname="f09f98a7.png" shortcut="" order="467" describe="anguished face" /><face name=":/emoji/f09f92a6.png" pathname="f09f92a6.png" shortcut="" order="468" describe="splashing sweat symbol" /><face name=":/emoji/f09f9281.png" pathname="f09f9281.png" shortcut="" order="469" describe="information desk person" /><face name=":/emoji/f09f92ae.png" pathname="f09f92ae.png" shortcut="" order="470" describe="white flower" /><face name=":/emoji/f09f9593.png" pathname="f09f9593.png" shortcut="" order="471" describe="clock face four oclock" /><face name=":/emoji/f09f92a0.png" pathname="f09f92a0.png" shortcut="" order="472" describe="diamond shape with a dot inside" /><face name=":/emoji/f09f929c.png" pathname="f09f929c.png" shortcut="" order="473" describe="purple heart" /><face name=":/emoji/f09f949c.png" pathname="f09f949c.png" shortcut="" order="474" describe="soon with rightwards arrow above" /><face name=":/emoji/f09f94b5.png" pathname="f09f94b5.png" shortcut="" order="475" describe="large blue circle" /><face name=":/emoji/f09f9897.png" pathname="f09f9897.png" shortcut="" order="476" describe="kissing face" /><face name=":/emoji/f09f98b4.png" pathname="f09f98b4.png" shortcut="" order="477" describe="sleeping face" /><face name=":/emoji/f09f92a9.png" pathname="f09f92a9.png" shortcut="" order="478" describe="pile of poo" /><face name=":/emoji/f09f929b.png" pathname="f09f929b.png" shortcut="" order="479" describe="yellow heart" /><face name=":/emoji/f09f94b4.png" pathname="f09f94b4.png" shortcut="" order="480" describe="large red circle" /><face name=":/emoji/f09f9290.png" pathname="f09f9290.png" shortcut="" order="481" describe="bouquet" /><face name=":/emoji/f09f92be.png" pathname="f09f92be.png" shortcut="" order="482" describe="floppy disk" /><face name=":/emoji/f09f918e.png" pathname="f09f918e.png" shortcut="" order="483" describe="thumbs down sign" /><face name=":/emoji/f09f9184.png" pathname="f09f9184.png" shortcut="" order="484" describe="mouth" /><face name=":/emoji/f09f9189.png" pathname="f09f9189.png" shortcut="" order="485" describe="white right pointing backhand index" /><face name=":/emoji/f09f90a3.png" pathname="f09f90a3.png" shortcut="" order="486" describe="hatching chick" /><face name=":/emoji/f09f90a2.png" pathname="f09f90a2.png" shortcut="" order="487" describe="turtle" /><face name=":/emoji/f09f909b.png" pathname="f09f909b.png" shortcut="" order="488" describe="bug" /><face name=":/emoji/f09f90b2.png" pathname="f09f90b2.png" shortcut="" order="489" describe="dragon face" /><face name=":/emoji/f09f90ac.png" pathname="f09f90ac.png" shortcut="" order="490" describe="dolphin" /><face name=":/emoji/f09f90b0.png" pathname="f09f90b0.png" shortcut="" order="491" describe="rabbit face" /><face name=":/emoji/f09f909e.png" pathname="f09f909e.png" shortcut="" order="492" describe="lady beetle" /><face name=":/emoji/f09f90b4.png" pathname="f09f90b4.png" shortcut="" order="493" describe="horse face" /><face name=":/emoji/f09f9186.png" pathname="f09f9186.png" shortcut="" order="494" describe="white up pointing backhand index" /><face name=":/emoji/f09f9b82.png" pathname="f09f9b82.png" shortcut="" order="495" describe="passport control" /><face name=":/emoji/f09f9ab5.png" pathname="f09f9ab5.png" shortcut="" order="496" describe="mountain bicyclist" /><face name=":/emoji/f09f9a9d.png" pathname="f09f9a9d.png" shortcut="" order="497" describe="monorail" /><face name=":/emoji/f09f8f87.png" pathname="f09f8f87.png" shortcut="" order="498" describe="horse racing" /><face name=":/emoji/f09f9a88.png" pathname="f09f9a88.png" shortcut="" order="499" describe="light rail" /><face name=":/emoji/f09f9087.png" pathname="f09f9087.png" shortcut="" order="500" describe="rabbit" /><face name=":/emoji/f09f9aa6.png" pathname="f09f9aa6.png" shortcut="" order="501" describe="vertical traffic light" /><face name=":/emoji/f09f8c9c.png" pathname="f09f8c9c.png" shortcut="" order="502" describe="last quarter moon with face" /><face name=":/emoji/f09f9b81.png" pathname="f09f9b81.png" shortcut="" order="503" describe="bathtub" /><face name=":/emoji/f09f8f89.png" pathname="f09f8f89.png" shortcut="" order="504" describe="rugby football" /><face name=":/emoji/f09f92ab.png" pathname="f09f92ab.png" shortcut="" order="505" describe="dizzy symbol" /><face name=":/emoji/f09f90ab.png" pathname="f09f90ab.png" shortcut="" order="506" describe="bactrian camel" /><face name=":/emoji/f09f8c96.png" pathname="f09f8c96.png" shortcut="" order="507" describe="waning gibbous moon symbol" /><face name=":/emoji/f09f8c9a.png" pathname="f09f8c9a.png" shortcut="" order="508" describe="new moon with face" /><face name=":/emoji/f09f8c90.png" pathname="f09f8c90.png" shortcut="" order="509" describe="globe with meridians" /><face name=":/emoji/f09f9a9b.png" pathname="f09f9a9b.png" shortcut="" order="510" describe="articulated lorry" /><face name=":/emoji/f09f90b9.png" pathname="f09f90b9.png" shortcut="" order="511" describe="hamster face" /><face name=":/emoji/f09f9095.png" pathname="f09f9095.png" shortcut="" order="512" describe="dog" /><face name=":/emoji/f09f90ba.png" pathname="f09f90ba.png" shortcut="" order="513" describe="wolf face" /><face name=":/emoji/f09f8dbc.png" pathname="f09f8dbc.png" shortcut="" order="514" describe="baby bottle" /><face name=":/emoji/f09f9a8d.png" pathname="f09f9a8d.png" shortcut="" order="515" describe="oncoming bus" /><face name=":/emoji/f09f90ae.png" pathname="f09f90ae.png" shortcut="" order="516" describe="cow face" /><face name=":/emoji/f09f90b7.png" pathname="f09f90b7.png" shortcut="" order="517" describe="pig face" /><face name=":/emoji/f09f9088.png" pathname="f09f9088.png" shortcut="" order="518" describe="cat" /><face name=":/emoji/f09f909d.png" pathname="f09f909d.png" shortcut="" order="519" describe="honeybee" /><face name=":/emoji/f09f90a5.png" pathname="f09f90a5.png" shortcut="" order="520" describe="front-facing baby chick" /><face name=":/emoji/f09f92aa.png" pathname="f09f92aa.png" shortcut="" order="521" describe="flexed biceps" /><face name=":/emoji/f09f9aa1.png" pathname="f09f9aa1.png" shortcut="" order="522" describe="aerial tramway" /><face name=":/emoji/f09f9093.png" pathname="f09f9093.png" shortcut="" order="523" describe="rooster" /><face name=":/emoji/f09f9a90.png" pathname="f09f9a90.png" shortcut="" order="524" describe="minibus" /><face name=":/emoji/f09f8c8e.png" pathname="f09f8c8e.png" shortcut="" order="525" describe="earth globe americas" /><face name=":/emoji/f09f8cb2.png" pathname="f09f8cb2.png" shortcut="" order="526" describe="evergreen tree" /><face name=":/emoji/f09f91a5.png" pathname="f09f91a5.png" shortcut="" order="527" describe="busts in silhouette" /><face name=":/emoji/f09f8fa4.png" pathname="f09f8fa4.png" shortcut="" order="528" describe="european post office" /><face name=":/emoji/f09f90bb.png" pathname="f09f90bb.png" shortcut="" order="529" describe="bear face" /><face name=":/emoji/f09f90a7.png" pathname="f09f90a7.png" shortcut="" order="530" describe="penguin" /><face name=":/emoji/f09f9ab0.png" pathname="f09f9ab0.png" shortcut="" order="531" describe="potable water symbol" /><face name=":/emoji/f09f90a9.png" pathname="f09f90a9.png" shortcut="" order="532" describe="poodle" /><face name=":/emoji/f09f918d.png" pathname="f09f918d.png" shortcut="" order="533" describe="thumbs up sign" /><face name=":/emoji/f09f908b.png" pathname="f09f908b.png" shortcut="" order="534" describe="whale" /><face name=":/emoji/f09f9a8e.png" pathname="f09f9a8e.png" shortcut="" order="535" describe="trolleybus" /><face name=":/emoji/f09f8d8b.png" pathname="f09f8d8b.png" shortcut="" order="536" describe="lemon" /><face name=":/emoji/f09f9b85.png" pathname="f09f9b85.png" shortcut="" order="537" describe="left luggage" /><face name=":/emoji/f09f9092.png" pathname="f09f9092.png" shortcut="" order="538" describe="monkey" /><face name=":/emoji/f09f9aae.png" pathname="f09f9aae.png" shortcut="" order="539" describe="put litter in its place symbol" /><face name=":/emoji/f09f9185.png" pathname="f09f9185.png" shortcut="" order="540" describe="tongue" /><face name=":/emoji/f09f9a9c.png" pathname="f09f9a9c.png" shortcut="" order="541" describe="tractor" /><face name=":/emoji/f09f9aa3.png" pathname="f09f9aa3.png" shortcut="" order="542" describe="rowboat" /><face name=":/emoji/f09f91ac.png" pathname="f09f91ac.png" shortcut="" order="543" describe="two men holding hands" /><face name=":/emoji/f09f8c9e.png" pathname="f09f8c9e.png" shortcut="" order="544" describe="sun with face" /><face name=":/emoji/f09f9ab8.png" pathname="f09f9ab8.png" shortcut="" order="545" describe="children crossing" /><face name=":/emoji/f09f9089.png" pathname="f09f9089.png" shortcut="" order="546" describe="dragon" /><face name=":/emoji/f09f91ae.png" pathname="f09f91ae.png" shortcut="" order="547" describe="police officer" /><face name=":/emoji/f09f919a.png" pathname="f09f919a.png" shortcut="" order="548" describe="womans clothes" /><face name=":/emoji/f09f91af.png" pathname="f09f91af.png" shortcut="" order="549" describe="woman with bunny ears" /><face name=":/emoji/f09f9187.png" pathname="f09f9187.png" shortcut="" order="550" describe="white down pointing backhand index" /><face name=":/emoji/f09f91ab.png" pathname="f09f91ab.png" shortcut="" order="551" describe="man and woman holding hands" /><face name=":/emoji/f09f91a6.png" pathname="f09f91a6.png" shortcut="" order="552" describe="boy" /><face name=":/emoji/f09f908f.png" pathname="f09f908f.png" shortcut="" order="553" describe="ram" /><face name=":/emoji/f09f9183.png" pathname="f09f9183.png" shortcut="" order="554" describe="nose" /><face name=":/emoji/f09f91a9.png" pathname="f09f91a9.png" shortcut="" order="555" describe="woman" /><face name=":/emoji/f09f91a4.png" pathname="f09f91a4.png" shortcut="" order="556" describe="bust in silhouette" /><face name=":/emoji/f09f9199.png" pathname="f09f9199.png" shortcut="" order="557" describe="bikini" /><face name=":/emoji/f09f9094.png" pathname="f09f9094.png" shortcut="" order="558" describe="chicken" /><face name=":/emoji/f09f9192.png" pathname="f09f9192.png" shortcut="" order="559" describe="womans hat" /><face name=":/emoji/f09f9198.png" pathname="f09f9198.png" shortcut="" order="560" describe="kimono" /><face name=":/emoji/f09f9195.png" pathname="f09f9195.png" shortcut="" order="561" describe="t-shirt" /><face name=":/emoji/f09f919b.png" pathname="f09f919b.png" shortcut="" order="562" describe="purse" /><face name=":/emoji/f09f9182.png" pathname="f09f9182.png" shortcut="" order="563" describe="ear" /><face name=":/emoji/f09f91a7.png" pathname="f09f91a7.png" shortcut="" order="564" describe="girl" />


0 0
原创粉丝点击