Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/clone/wp-inclu.../js/dist
File: blocks.js
* @param {string} str string to split
[1500] Fix | Delete
* @param {int} index index to split string at
[1501] Fix | Delete
* @returns {[string,string]}
[1502] Fix | Delete
* @throws InvalidArgumentError
[1503] Fix | Delete
*/
[1504] Fix | Delete
showdown.helper.splitAtIndex = function (str, index) {
[1505] Fix | Delete
'use strict';
[1506] Fix | Delete
if (!showdown.helper.isString(str)) {
[1507] Fix | Delete
throw 'InvalidArgumentError: first parameter of showdown.helper.regexIndexOf function must be a string';
[1508] Fix | Delete
}
[1509] Fix | Delete
return [str.substring(0, index), str.substring(index)];
[1510] Fix | Delete
};
[1511] Fix | Delete
[1512] Fix | Delete
/**
[1513] Fix | Delete
* Obfuscate an e-mail address through the use of Character Entities,
[1514] Fix | Delete
* transforming ASCII characters into their equivalent decimal or hex entities.
[1515] Fix | Delete
*
[1516] Fix | Delete
* Since it has a random component, subsequent calls to this function produce different results
[1517] Fix | Delete
*
[1518] Fix | Delete
* @param {string} mail
[1519] Fix | Delete
* @returns {string}
[1520] Fix | Delete
*/
[1521] Fix | Delete
showdown.helper.encodeEmailAddress = function (mail) {
[1522] Fix | Delete
'use strict';
[1523] Fix | Delete
var encode = [
[1524] Fix | Delete
function (ch) {
[1525] Fix | Delete
return '&#' + ch.charCodeAt(0) + ';';
[1526] Fix | Delete
},
[1527] Fix | Delete
function (ch) {
[1528] Fix | Delete
return '&#x' + ch.charCodeAt(0).toString(16) + ';';
[1529] Fix | Delete
},
[1530] Fix | Delete
function (ch) {
[1531] Fix | Delete
return ch;
[1532] Fix | Delete
}
[1533] Fix | Delete
];
[1534] Fix | Delete
[1535] Fix | Delete
mail = mail.replace(/./g, function (ch) {
[1536] Fix | Delete
if (ch === '@') {
[1537] Fix | Delete
// this *must* be encoded. I insist.
[1538] Fix | Delete
ch = encode[Math.floor(Math.random() * 2)](ch);
[1539] Fix | Delete
} else {
[1540] Fix | Delete
var r = Math.random();
[1541] Fix | Delete
// roughly 10% raw, 45% hex, 45% dec
[1542] Fix | Delete
ch = (
[1543] Fix | Delete
r > 0.9 ? encode[2](ch) : r > 0.45 ? encode[1](ch) : encode[0](ch)
[1544] Fix | Delete
);
[1545] Fix | Delete
}
[1546] Fix | Delete
return ch;
[1547] Fix | Delete
});
[1548] Fix | Delete
[1549] Fix | Delete
return mail;
[1550] Fix | Delete
};
[1551] Fix | Delete
[1552] Fix | Delete
/**
[1553] Fix | Delete
*
[1554] Fix | Delete
* @param str
[1555] Fix | Delete
* @param targetLength
[1556] Fix | Delete
* @param padString
[1557] Fix | Delete
* @returns {string}
[1558] Fix | Delete
*/
[1559] Fix | Delete
showdown.helper.padEnd = function padEnd (str, targetLength, padString) {
[1560] Fix | Delete
'use strict';
[1561] Fix | Delete
/*jshint bitwise: false*/
[1562] Fix | Delete
// eslint-disable-next-line space-infix-ops
[1563] Fix | Delete
targetLength = targetLength>>0; //floor if number or convert non-number to 0;
[1564] Fix | Delete
/*jshint bitwise: true*/
[1565] Fix | Delete
padString = String(padString || ' ');
[1566] Fix | Delete
if (str.length > targetLength) {
[1567] Fix | Delete
return String(str);
[1568] Fix | Delete
} else {
[1569] Fix | Delete
targetLength = targetLength - str.length;
[1570] Fix | Delete
if (targetLength > padString.length) {
[1571] Fix | Delete
padString += padString.repeat(targetLength / padString.length); //append to original to ensure we are longer than needed
[1572] Fix | Delete
}
[1573] Fix | Delete
return String(str) + padString.slice(0,targetLength);
[1574] Fix | Delete
}
[1575] Fix | Delete
};
[1576] Fix | Delete
[1577] Fix | Delete
/**
[1578] Fix | Delete
* POLYFILLS
[1579] Fix | Delete
*/
[1580] Fix | Delete
// use this instead of builtin is undefined for IE8 compatibility
[1581] Fix | Delete
if (typeof console === 'undefined') {
[1582] Fix | Delete
console = {
[1583] Fix | Delete
warn: function (msg) {
[1584] Fix | Delete
'use strict';
[1585] Fix | Delete
alert(msg);
[1586] Fix | Delete
},
[1587] Fix | Delete
log: function (msg) {
[1588] Fix | Delete
'use strict';
[1589] Fix | Delete
alert(msg);
[1590] Fix | Delete
},
[1591] Fix | Delete
error: function (msg) {
[1592] Fix | Delete
'use strict';
[1593] Fix | Delete
throw msg;
[1594] Fix | Delete
}
[1595] Fix | Delete
};
[1596] Fix | Delete
}
[1597] Fix | Delete
[1598] Fix | Delete
/**
[1599] Fix | Delete
* Common regexes.
[1600] Fix | Delete
* We declare some common regexes to improve performance
[1601] Fix | Delete
*/
[1602] Fix | Delete
showdown.helper.regexes = {
[1603] Fix | Delete
asteriskDashAndColon: /([*_:~])/g
[1604] Fix | Delete
};
[1605] Fix | Delete
[1606] Fix | Delete
/**
[1607] Fix | Delete
* EMOJIS LIST
[1608] Fix | Delete
*/
[1609] Fix | Delete
showdown.helper.emojis = {
[1610] Fix | Delete
'+1':'\ud83d\udc4d',
[1611] Fix | Delete
'-1':'\ud83d\udc4e',
[1612] Fix | Delete
'100':'\ud83d\udcaf',
[1613] Fix | Delete
'1234':'\ud83d\udd22',
[1614] Fix | Delete
'1st_place_medal':'\ud83e\udd47',
[1615] Fix | Delete
'2nd_place_medal':'\ud83e\udd48',
[1616] Fix | Delete
'3rd_place_medal':'\ud83e\udd49',
[1617] Fix | Delete
'8ball':'\ud83c\udfb1',
[1618] Fix | Delete
'a':'\ud83c\udd70\ufe0f',
[1619] Fix | Delete
'ab':'\ud83c\udd8e',
[1620] Fix | Delete
'abc':'\ud83d\udd24',
[1621] Fix | Delete
'abcd':'\ud83d\udd21',
[1622] Fix | Delete
'accept':'\ud83c\ude51',
[1623] Fix | Delete
'aerial_tramway':'\ud83d\udea1',
[1624] Fix | Delete
'airplane':'\u2708\ufe0f',
[1625] Fix | Delete
'alarm_clock':'\u23f0',
[1626] Fix | Delete
'alembic':'\u2697\ufe0f',
[1627] Fix | Delete
'alien':'\ud83d\udc7d',
[1628] Fix | Delete
'ambulance':'\ud83d\ude91',
[1629] Fix | Delete
'amphora':'\ud83c\udffa',
[1630] Fix | Delete
'anchor':'\u2693\ufe0f',
[1631] Fix | Delete
'angel':'\ud83d\udc7c',
[1632] Fix | Delete
'anger':'\ud83d\udca2',
[1633] Fix | Delete
'angry':'\ud83d\ude20',
[1634] Fix | Delete
'anguished':'\ud83d\ude27',
[1635] Fix | Delete
'ant':'\ud83d\udc1c',
[1636] Fix | Delete
'apple':'\ud83c\udf4e',
[1637] Fix | Delete
'aquarius':'\u2652\ufe0f',
[1638] Fix | Delete
'aries':'\u2648\ufe0f',
[1639] Fix | Delete
'arrow_backward':'\u25c0\ufe0f',
[1640] Fix | Delete
'arrow_double_down':'\u23ec',
[1641] Fix | Delete
'arrow_double_up':'\u23eb',
[1642] Fix | Delete
'arrow_down':'\u2b07\ufe0f',
[1643] Fix | Delete
'arrow_down_small':'\ud83d\udd3d',
[1644] Fix | Delete
'arrow_forward':'\u25b6\ufe0f',
[1645] Fix | Delete
'arrow_heading_down':'\u2935\ufe0f',
[1646] Fix | Delete
'arrow_heading_up':'\u2934\ufe0f',
[1647] Fix | Delete
'arrow_left':'\u2b05\ufe0f',
[1648] Fix | Delete
'arrow_lower_left':'\u2199\ufe0f',
[1649] Fix | Delete
'arrow_lower_right':'\u2198\ufe0f',
[1650] Fix | Delete
'arrow_right':'\u27a1\ufe0f',
[1651] Fix | Delete
'arrow_right_hook':'\u21aa\ufe0f',
[1652] Fix | Delete
'arrow_up':'\u2b06\ufe0f',
[1653] Fix | Delete
'arrow_up_down':'\u2195\ufe0f',
[1654] Fix | Delete
'arrow_up_small':'\ud83d\udd3c',
[1655] Fix | Delete
'arrow_upper_left':'\u2196\ufe0f',
[1656] Fix | Delete
'arrow_upper_right':'\u2197\ufe0f',
[1657] Fix | Delete
'arrows_clockwise':'\ud83d\udd03',
[1658] Fix | Delete
'arrows_counterclockwise':'\ud83d\udd04',
[1659] Fix | Delete
'art':'\ud83c\udfa8',
[1660] Fix | Delete
'articulated_lorry':'\ud83d\ude9b',
[1661] Fix | Delete
'artificial_satellite':'\ud83d\udef0',
[1662] Fix | Delete
'astonished':'\ud83d\ude32',
[1663] Fix | Delete
'athletic_shoe':'\ud83d\udc5f',
[1664] Fix | Delete
'atm':'\ud83c\udfe7',
[1665] Fix | Delete
'atom_symbol':'\u269b\ufe0f',
[1666] Fix | Delete
'avocado':'\ud83e\udd51',
[1667] Fix | Delete
'b':'\ud83c\udd71\ufe0f',
[1668] Fix | Delete
'baby':'\ud83d\udc76',
[1669] Fix | Delete
'baby_bottle':'\ud83c\udf7c',
[1670] Fix | Delete
'baby_chick':'\ud83d\udc24',
[1671] Fix | Delete
'baby_symbol':'\ud83d\udebc',
[1672] Fix | Delete
'back':'\ud83d\udd19',
[1673] Fix | Delete
'bacon':'\ud83e\udd53',
[1674] Fix | Delete
'badminton':'\ud83c\udff8',
[1675] Fix | Delete
'baggage_claim':'\ud83d\udec4',
[1676] Fix | Delete
'baguette_bread':'\ud83e\udd56',
[1677] Fix | Delete
'balance_scale':'\u2696\ufe0f',
[1678] Fix | Delete
'balloon':'\ud83c\udf88',
[1679] Fix | Delete
'ballot_box':'\ud83d\uddf3',
[1680] Fix | Delete
'ballot_box_with_check':'\u2611\ufe0f',
[1681] Fix | Delete
'bamboo':'\ud83c\udf8d',
[1682] Fix | Delete
'banana':'\ud83c\udf4c',
[1683] Fix | Delete
'bangbang':'\u203c\ufe0f',
[1684] Fix | Delete
'bank':'\ud83c\udfe6',
[1685] Fix | Delete
'bar_chart':'\ud83d\udcca',
[1686] Fix | Delete
'barber':'\ud83d\udc88',
[1687] Fix | Delete
'baseball':'\u26be\ufe0f',
[1688] Fix | Delete
'basketball':'\ud83c\udfc0',
[1689] Fix | Delete
'basketball_man':'\u26f9\ufe0f',
[1690] Fix | Delete
'basketball_woman':'\u26f9\ufe0f‍\u2640\ufe0f',
[1691] Fix | Delete
'bat':'\ud83e\udd87',
[1692] Fix | Delete
'bath':'\ud83d\udec0',
[1693] Fix | Delete
'bathtub':'\ud83d\udec1',
[1694] Fix | Delete
'battery':'\ud83d\udd0b',
[1695] Fix | Delete
'beach_umbrella':'\ud83c\udfd6',
[1696] Fix | Delete
'bear':'\ud83d\udc3b',
[1697] Fix | Delete
'bed':'\ud83d\udecf',
[1698] Fix | Delete
'bee':'\ud83d\udc1d',
[1699] Fix | Delete
'beer':'\ud83c\udf7a',
[1700] Fix | Delete
'beers':'\ud83c\udf7b',
[1701] Fix | Delete
'beetle':'\ud83d\udc1e',
[1702] Fix | Delete
'beginner':'\ud83d\udd30',
[1703] Fix | Delete
'bell':'\ud83d\udd14',
[1704] Fix | Delete
'bellhop_bell':'\ud83d\udece',
[1705] Fix | Delete
'bento':'\ud83c\udf71',
[1706] Fix | Delete
'biking_man':'\ud83d\udeb4',
[1707] Fix | Delete
'bike':'\ud83d\udeb2',
[1708] Fix | Delete
'biking_woman':'\ud83d\udeb4‍\u2640\ufe0f',
[1709] Fix | Delete
'bikini':'\ud83d\udc59',
[1710] Fix | Delete
'biohazard':'\u2623\ufe0f',
[1711] Fix | Delete
'bird':'\ud83d\udc26',
[1712] Fix | Delete
'birthday':'\ud83c\udf82',
[1713] Fix | Delete
'black_circle':'\u26ab\ufe0f',
[1714] Fix | Delete
'black_flag':'\ud83c\udff4',
[1715] Fix | Delete
'black_heart':'\ud83d\udda4',
[1716] Fix | Delete
'black_joker':'\ud83c\udccf',
[1717] Fix | Delete
'black_large_square':'\u2b1b\ufe0f',
[1718] Fix | Delete
'black_medium_small_square':'\u25fe\ufe0f',
[1719] Fix | Delete
'black_medium_square':'\u25fc\ufe0f',
[1720] Fix | Delete
'black_nib':'\u2712\ufe0f',
[1721] Fix | Delete
'black_small_square':'\u25aa\ufe0f',
[1722] Fix | Delete
'black_square_button':'\ud83d\udd32',
[1723] Fix | Delete
'blonde_man':'\ud83d\udc71',
[1724] Fix | Delete
'blonde_woman':'\ud83d\udc71‍\u2640\ufe0f',
[1725] Fix | Delete
'blossom':'\ud83c\udf3c',
[1726] Fix | Delete
'blowfish':'\ud83d\udc21',
[1727] Fix | Delete
'blue_book':'\ud83d\udcd8',
[1728] Fix | Delete
'blue_car':'\ud83d\ude99',
[1729] Fix | Delete
'blue_heart':'\ud83d\udc99',
[1730] Fix | Delete
'blush':'\ud83d\ude0a',
[1731] Fix | Delete
'boar':'\ud83d\udc17',
[1732] Fix | Delete
'boat':'\u26f5\ufe0f',
[1733] Fix | Delete
'bomb':'\ud83d\udca3',
[1734] Fix | Delete
'book':'\ud83d\udcd6',
[1735] Fix | Delete
'bookmark':'\ud83d\udd16',
[1736] Fix | Delete
'bookmark_tabs':'\ud83d\udcd1',
[1737] Fix | Delete
'books':'\ud83d\udcda',
[1738] Fix | Delete
'boom':'\ud83d\udca5',
[1739] Fix | Delete
'boot':'\ud83d\udc62',
[1740] Fix | Delete
'bouquet':'\ud83d\udc90',
[1741] Fix | Delete
'bowing_man':'\ud83d\ude47',
[1742] Fix | Delete
'bow_and_arrow':'\ud83c\udff9',
[1743] Fix | Delete
'bowing_woman':'\ud83d\ude47‍\u2640\ufe0f',
[1744] Fix | Delete
'bowling':'\ud83c\udfb3',
[1745] Fix | Delete
'boxing_glove':'\ud83e\udd4a',
[1746] Fix | Delete
'boy':'\ud83d\udc66',
[1747] Fix | Delete
'bread':'\ud83c\udf5e',
[1748] Fix | Delete
'bride_with_veil':'\ud83d\udc70',
[1749] Fix | Delete
'bridge_at_night':'\ud83c\udf09',
[1750] Fix | Delete
'briefcase':'\ud83d\udcbc',
[1751] Fix | Delete
'broken_heart':'\ud83d\udc94',
[1752] Fix | Delete
'bug':'\ud83d\udc1b',
[1753] Fix | Delete
'building_construction':'\ud83c\udfd7',
[1754] Fix | Delete
'bulb':'\ud83d\udca1',
[1755] Fix | Delete
'bullettrain_front':'\ud83d\ude85',
[1756] Fix | Delete
'bullettrain_side':'\ud83d\ude84',
[1757] Fix | Delete
'burrito':'\ud83c\udf2f',
[1758] Fix | Delete
'bus':'\ud83d\ude8c',
[1759] Fix | Delete
'business_suit_levitating':'\ud83d\udd74',
[1760] Fix | Delete
'busstop':'\ud83d\ude8f',
[1761] Fix | Delete
'bust_in_silhouette':'\ud83d\udc64',
[1762] Fix | Delete
'busts_in_silhouette':'\ud83d\udc65',
[1763] Fix | Delete
'butterfly':'\ud83e\udd8b',
[1764] Fix | Delete
'cactus':'\ud83c\udf35',
[1765] Fix | Delete
'cake':'\ud83c\udf70',
[1766] Fix | Delete
'calendar':'\ud83d\udcc6',
[1767] Fix | Delete
'call_me_hand':'\ud83e\udd19',
[1768] Fix | Delete
'calling':'\ud83d\udcf2',
[1769] Fix | Delete
'camel':'\ud83d\udc2b',
[1770] Fix | Delete
'camera':'\ud83d\udcf7',
[1771] Fix | Delete
'camera_flash':'\ud83d\udcf8',
[1772] Fix | Delete
'camping':'\ud83c\udfd5',
[1773] Fix | Delete
'cancer':'\u264b\ufe0f',
[1774] Fix | Delete
'candle':'\ud83d\udd6f',
[1775] Fix | Delete
'candy':'\ud83c\udf6c',
[1776] Fix | Delete
'canoe':'\ud83d\udef6',
[1777] Fix | Delete
'capital_abcd':'\ud83d\udd20',
[1778] Fix | Delete
'capricorn':'\u2651\ufe0f',
[1779] Fix | Delete
'car':'\ud83d\ude97',
[1780] Fix | Delete
'card_file_box':'\ud83d\uddc3',
[1781] Fix | Delete
'card_index':'\ud83d\udcc7',
[1782] Fix | Delete
'card_index_dividers':'\ud83d\uddc2',
[1783] Fix | Delete
'carousel_horse':'\ud83c\udfa0',
[1784] Fix | Delete
'carrot':'\ud83e\udd55',
[1785] Fix | Delete
'cat':'\ud83d\udc31',
[1786] Fix | Delete
'cat2':'\ud83d\udc08',
[1787] Fix | Delete
'cd':'\ud83d\udcbf',
[1788] Fix | Delete
'chains':'\u26d3',
[1789] Fix | Delete
'champagne':'\ud83c\udf7e',
[1790] Fix | Delete
'chart':'\ud83d\udcb9',
[1791] Fix | Delete
'chart_with_downwards_trend':'\ud83d\udcc9',
[1792] Fix | Delete
'chart_with_upwards_trend':'\ud83d\udcc8',
[1793] Fix | Delete
'checkered_flag':'\ud83c\udfc1',
[1794] Fix | Delete
'cheese':'\ud83e\uddc0',
[1795] Fix | Delete
'cherries':'\ud83c\udf52',
[1796] Fix | Delete
'cherry_blossom':'\ud83c\udf38',
[1797] Fix | Delete
'chestnut':'\ud83c\udf30',
[1798] Fix | Delete
'chicken':'\ud83d\udc14',
[1799] Fix | Delete
'children_crossing':'\ud83d\udeb8',
[1800] Fix | Delete
'chipmunk':'\ud83d\udc3f',
[1801] Fix | Delete
'chocolate_bar':'\ud83c\udf6b',
[1802] Fix | Delete
'christmas_tree':'\ud83c\udf84',
[1803] Fix | Delete
'church':'\u26ea\ufe0f',
[1804] Fix | Delete
'cinema':'\ud83c\udfa6',
[1805] Fix | Delete
'circus_tent':'\ud83c\udfaa',
[1806] Fix | Delete
'city_sunrise':'\ud83c\udf07',
[1807] Fix | Delete
'city_sunset':'\ud83c\udf06',
[1808] Fix | Delete
'cityscape':'\ud83c\udfd9',
[1809] Fix | Delete
'cl':'\ud83c\udd91',
[1810] Fix | Delete
'clamp':'\ud83d\udddc',
[1811] Fix | Delete
'clap':'\ud83d\udc4f',
[1812] Fix | Delete
'clapper':'\ud83c\udfac',
[1813] Fix | Delete
'classical_building':'\ud83c\udfdb',
[1814] Fix | Delete
'clinking_glasses':'\ud83e\udd42',
[1815] Fix | Delete
'clipboard':'\ud83d\udccb',
[1816] Fix | Delete
'clock1':'\ud83d\udd50',
[1817] Fix | Delete
'clock10':'\ud83d\udd59',
[1818] Fix | Delete
'clock1030':'\ud83d\udd65',
[1819] Fix | Delete
'clock11':'\ud83d\udd5a',
[1820] Fix | Delete
'clock1130':'\ud83d\udd66',
[1821] Fix | Delete
'clock12':'\ud83d\udd5b',
[1822] Fix | Delete
'clock1230':'\ud83d\udd67',
[1823] Fix | Delete
'clock130':'\ud83d\udd5c',
[1824] Fix | Delete
'clock2':'\ud83d\udd51',
[1825] Fix | Delete
'clock230':'\ud83d\udd5d',
[1826] Fix | Delete
'clock3':'\ud83d\udd52',
[1827] Fix | Delete
'clock330':'\ud83d\udd5e',
[1828] Fix | Delete
'clock4':'\ud83d\udd53',
[1829] Fix | Delete
'clock430':'\ud83d\udd5f',
[1830] Fix | Delete
'clock5':'\ud83d\udd54',
[1831] Fix | Delete
'clock530':'\ud83d\udd60',
[1832] Fix | Delete
'clock6':'\ud83d\udd55',
[1833] Fix | Delete
'clock630':'\ud83d\udd61',
[1834] Fix | Delete
'clock7':'\ud83d\udd56',
[1835] Fix | Delete
'clock730':'\ud83d\udd62',
[1836] Fix | Delete
'clock8':'\ud83d\udd57',
[1837] Fix | Delete
'clock830':'\ud83d\udd63',
[1838] Fix | Delete
'clock9':'\ud83d\udd58',
[1839] Fix | Delete
'clock930':'\ud83d\udd64',
[1840] Fix | Delete
'closed_book':'\ud83d\udcd5',
[1841] Fix | Delete
'closed_lock_with_key':'\ud83d\udd10',
[1842] Fix | Delete
'closed_umbrella':'\ud83c\udf02',
[1843] Fix | Delete
'cloud':'\u2601\ufe0f',
[1844] Fix | Delete
'cloud_with_lightning':'\ud83c\udf29',
[1845] Fix | Delete
'cloud_with_lightning_and_rain':'\u26c8',
[1846] Fix | Delete
'cloud_with_rain':'\ud83c\udf27',
[1847] Fix | Delete
'cloud_with_snow':'\ud83c\udf28',
[1848] Fix | Delete
'clown_face':'\ud83e\udd21',
[1849] Fix | Delete
'clubs':'\u2663\ufe0f',
[1850] Fix | Delete
'cocktail':'\ud83c\udf78',
[1851] Fix | Delete
'coffee':'\u2615\ufe0f',
[1852] Fix | Delete
'coffin':'\u26b0\ufe0f',
[1853] Fix | Delete
'cold_sweat':'\ud83d\ude30',
[1854] Fix | Delete
'comet':'\u2604\ufe0f',
[1855] Fix | Delete
'computer':'\ud83d\udcbb',
[1856] Fix | Delete
'computer_mouse':'\ud83d\uddb1',
[1857] Fix | Delete
'confetti_ball':'\ud83c\udf8a',
[1858] Fix | Delete
'confounded':'\ud83d\ude16',
[1859] Fix | Delete
'confused':'\ud83d\ude15',
[1860] Fix | Delete
'congratulations':'\u3297\ufe0f',
[1861] Fix | Delete
'construction':'\ud83d\udea7',
[1862] Fix | Delete
'construction_worker_man':'\ud83d\udc77',
[1863] Fix | Delete
'construction_worker_woman':'\ud83d\udc77‍\u2640\ufe0f',
[1864] Fix | Delete
'control_knobs':'\ud83c\udf9b',
[1865] Fix | Delete
'convenience_store':'\ud83c\udfea',
[1866] Fix | Delete
'cookie':'\ud83c\udf6a',
[1867] Fix | Delete
'cool':'\ud83c\udd92',
[1868] Fix | Delete
'policeman':'\ud83d\udc6e',
[1869] Fix | Delete
'copyright':'\u00a9\ufe0f',
[1870] Fix | Delete
'corn':'\ud83c\udf3d',
[1871] Fix | Delete
'couch_and_lamp':'\ud83d\udecb',
[1872] Fix | Delete
'couple':'\ud83d\udc6b',
[1873] Fix | Delete
'couple_with_heart_woman_man':'\ud83d\udc91',
[1874] Fix | Delete
'couple_with_heart_man_man':'\ud83d\udc68‍\u2764\ufe0f‍\ud83d\udc68',
[1875] Fix | Delete
'couple_with_heart_woman_woman':'\ud83d\udc69‍\u2764\ufe0f‍\ud83d\udc69',
[1876] Fix | Delete
'couplekiss_man_man':'\ud83d\udc68‍\u2764\ufe0f‍\ud83d\udc8b‍\ud83d\udc68',
[1877] Fix | Delete
'couplekiss_man_woman':'\ud83d\udc8f',
[1878] Fix | Delete
'couplekiss_woman_woman':'\ud83d\udc69‍\u2764\ufe0f‍\ud83d\udc8b‍\ud83d\udc69',
[1879] Fix | Delete
'cow':'\ud83d\udc2e',
[1880] Fix | Delete
'cow2':'\ud83d\udc04',
[1881] Fix | Delete
'cowboy_hat_face':'\ud83e\udd20',
[1882] Fix | Delete
'crab':'\ud83e\udd80',
[1883] Fix | Delete
'crayon':'\ud83d\udd8d',
[1884] Fix | Delete
'credit_card':'\ud83d\udcb3',
[1885] Fix | Delete
'crescent_moon':'\ud83c\udf19',
[1886] Fix | Delete
'cricket':'\ud83c\udfcf',
[1887] Fix | Delete
'crocodile':'\ud83d\udc0a',
[1888] Fix | Delete
'croissant':'\ud83e\udd50',
[1889] Fix | Delete
'crossed_fingers':'\ud83e\udd1e',
[1890] Fix | Delete
'crossed_flags':'\ud83c\udf8c',
[1891] Fix | Delete
'crossed_swords':'\u2694\ufe0f',
[1892] Fix | Delete
'crown':'\ud83d\udc51',
[1893] Fix | Delete
'cry':'\ud83d\ude22',
[1894] Fix | Delete
'crying_cat_face':'\ud83d\ude3f',
[1895] Fix | Delete
'crystal_ball':'\ud83d\udd2e',
[1896] Fix | Delete
'cucumber':'\ud83e\udd52',
[1897] Fix | Delete
'cupid':'\ud83d\udc98',
[1898] Fix | Delete
'curly_loop':'\u27b0',
[1899] Fix | Delete
'currency_exchange':'\ud83d\udcb1',
[1900] Fix | Delete
'curry':'\ud83c\udf5b',
[1901] Fix | Delete
'custard':'\ud83c\udf6e',
[1902] Fix | Delete
'customs':'\ud83d\udec3',
[1903] Fix | Delete
'cyclone':'\ud83c\udf00',
[1904] Fix | Delete
'dagger':'\ud83d\udde1',
[1905] Fix | Delete
'dancer':'\ud83d\udc83',
[1906] Fix | Delete
'dancing_women':'\ud83d\udc6f',
[1907] Fix | Delete
'dancing_men':'\ud83d\udc6f‍\u2642\ufe0f',
[1908] Fix | Delete
'dango':'\ud83c\udf61',
[1909] Fix | Delete
'dark_sunglasses':'\ud83d\udd76',
[1910] Fix | Delete
'dart':'\ud83c\udfaf',
[1911] Fix | Delete
'dash':'\ud83d\udca8',
[1912] Fix | Delete
'date':'\ud83d\udcc5',
[1913] Fix | Delete
'deciduous_tree':'\ud83c\udf33',
[1914] Fix | Delete
'deer':'\ud83e\udd8c',
[1915] Fix | Delete
'department_store':'\ud83c\udfec',
[1916] Fix | Delete
'derelict_house':'\ud83c\udfda',
[1917] Fix | Delete
'desert':'\ud83c\udfdc',
[1918] Fix | Delete
'desert_island':'\ud83c\udfdd',
[1919] Fix | Delete
'desktop_computer':'\ud83d\udda5',
[1920] Fix | Delete
'male_detective':'\ud83d\udd75\ufe0f',
[1921] Fix | Delete
'diamond_shape_with_a_dot_inside':'\ud83d\udca0',
[1922] Fix | Delete
'diamonds':'\u2666\ufe0f',
[1923] Fix | Delete
'disappointed':'\ud83d\ude1e',
[1924] Fix | Delete
'disappointed_relieved':'\ud83d\ude25',
[1925] Fix | Delete
'dizzy':'\ud83d\udcab',
[1926] Fix | Delete
'dizzy_face':'\ud83d\ude35',
[1927] Fix | Delete
'do_not_litter':'\ud83d\udeaf',
[1928] Fix | Delete
'dog':'\ud83d\udc36',
[1929] Fix | Delete
'dog2':'\ud83d\udc15',
[1930] Fix | Delete
'dollar':'\ud83d\udcb5',
[1931] Fix | Delete
'dolls':'\ud83c\udf8e',
[1932] Fix | Delete
'dolphin':'\ud83d\udc2c',
[1933] Fix | Delete
'door':'\ud83d\udeaa',
[1934] Fix | Delete
'doughnut':'\ud83c\udf69',
[1935] Fix | Delete
'dove':'\ud83d\udd4a',
[1936] Fix | Delete
'dragon':'\ud83d\udc09',
[1937] Fix | Delete
'dragon_face':'\ud83d\udc32',
[1938] Fix | Delete
'dress':'\ud83d\udc57',
[1939] Fix | Delete
'dromedary_camel':'\ud83d\udc2a',
[1940] Fix | Delete
'drooling_face':'\ud83e\udd24',
[1941] Fix | Delete
'droplet':'\ud83d\udca7',
[1942] Fix | Delete
'drum':'\ud83e\udd41',
[1943] Fix | Delete
'duck':'\ud83e\udd86',
[1944] Fix | Delete
'dvd':'\ud83d\udcc0',
[1945] Fix | Delete
'e-mail':'\ud83d\udce7',
[1946] Fix | Delete
'eagle':'\ud83e\udd85',
[1947] Fix | Delete
'ear':'\ud83d\udc42',
[1948] Fix | Delete
'ear_of_rice':'\ud83c\udf3e',
[1949] Fix | Delete
'earth_africa':'\ud83c\udf0d',
[1950] Fix | Delete
'earth_americas':'\ud83c\udf0e',
[1951] Fix | Delete
'earth_asia':'\ud83c\udf0f',
[1952] Fix | Delete
'egg':'\ud83e\udd5a',
[1953] Fix | Delete
'eggplant':'\ud83c\udf46',
[1954] Fix | Delete
'eight_pointed_black_star':'\u2734\ufe0f',
[1955] Fix | Delete
'eight_spoked_asterisk':'\u2733\ufe0f',
[1956] Fix | Delete
'electric_plug':'\ud83d\udd0c',
[1957] Fix | Delete
'elephant':'\ud83d\udc18',
[1958] Fix | Delete
'email':'\u2709\ufe0f',
[1959] Fix | Delete
'end':'\ud83d\udd1a',
[1960] Fix | Delete
'envelope_with_arrow':'\ud83d\udce9',
[1961] Fix | Delete
'euro':'\ud83d\udcb6',
[1962] Fix | Delete
'european_castle':'\ud83c\udff0',
[1963] Fix | Delete
'european_post_office':'\ud83c\udfe4',
[1964] Fix | Delete
'evergreen_tree':'\ud83c\udf32',
[1965] Fix | Delete
'exclamation':'\u2757\ufe0f',
[1966] Fix | Delete
'expressionless':'\ud83d\ude11',
[1967] Fix | Delete
'eye':'\ud83d\udc41',
[1968] Fix | Delete
'eye_speech_bubble':'\ud83d\udc41‍\ud83d\udde8',
[1969] Fix | Delete
'eyeglasses':'\ud83d\udc53',
[1970] Fix | Delete
'eyes':'\ud83d\udc40',
[1971] Fix | Delete
'face_with_head_bandage':'\ud83e\udd15',
[1972] Fix | Delete
'face_with_thermometer':'\ud83e\udd12',
[1973] Fix | Delete
'fist_oncoming':'\ud83d\udc4a',
[1974] Fix | Delete
'factory':'\ud83c\udfed',
[1975] Fix | Delete
'fallen_leaf':'\ud83c\udf42',
[1976] Fix | Delete
'family_man_woman_boy':'\ud83d\udc6a',
[1977] Fix | Delete
'family_man_boy':'\ud83d\udc68‍\ud83d\udc66',
[1978] Fix | Delete
'family_man_boy_boy':'\ud83d\udc68‍\ud83d\udc66‍\ud83d\udc66',
[1979] Fix | Delete
'family_man_girl':'\ud83d\udc68‍\ud83d\udc67',
[1980] Fix | Delete
'family_man_girl_boy':'\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc66',
[1981] Fix | Delete
'family_man_girl_girl':'\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc67',
[1982] Fix | Delete
'family_man_man_boy':'\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc66',
[1983] Fix | Delete
'family_man_man_boy_boy':'\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc66‍\ud83d\udc66',
[1984] Fix | Delete
'family_man_man_girl':'\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67',
[1985] Fix | Delete
'family_man_man_girl_boy':'\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc66',
[1986] Fix | Delete
'family_man_man_girl_girl':'\ud83d\udc68‍\ud83d\udc68‍\ud83d\udc67‍\ud83d\udc67',
[1987] Fix | Delete
'family_man_woman_boy_boy':'\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66',
[1988] Fix | Delete
'family_man_woman_girl':'\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67',
[1989] Fix | Delete
'family_man_woman_girl_boy':'\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc66',
[1990] Fix | Delete
'family_man_woman_girl_girl':'\ud83d\udc68‍\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc67',
[1991] Fix | Delete
'family_woman_boy':'\ud83d\udc69‍\ud83d\udc66',
[1992] Fix | Delete
'family_woman_boy_boy':'\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66',
[1993] Fix | Delete
'family_woman_girl':'\ud83d\udc69‍\ud83d\udc67',
[1994] Fix | Delete
'family_woman_girl_boy':'\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc66',
[1995] Fix | Delete
'family_woman_girl_girl':'\ud83d\udc69‍\ud83d\udc67‍\ud83d\udc67',
[1996] Fix | Delete
'family_woman_woman_boy':'\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc66',
[1997] Fix | Delete
'family_woman_woman_boy_boy':'\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc66‍\ud83d\udc66',
[1998] Fix | Delete
'family_woman_woman_girl':'\ud83d\udc69‍\ud83d\udc69‍\ud83d\udc67',
[1999] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function