Spaces:
Running
Running
File size: 269,559 Bytes
51ecec3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 | <html dir='ltr' lang='in'>
<!--[ <head> Open ]-->
<head>
<!-- Name : Median UI Version : 1.7 Date : April 27, 2022 Demo : median-ui.jagodesain.com Type : Premium Designer : Muhammad Maki Website : www.lulzghost-team.eu.org ============================================================================ NOTE : This theme is premium (paid). You can only get it by purchasing officially. If you get it for free through any method, that means you get it illegally. ============================================================================ -->
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@graph":
[
{
"@type": "Webpage",
"url": "https://www.bernekellboy.biz.id/",
"name": "Blog BernekellBoy",
"headline":"Blog BernekellBoy",
"description": "LulzGhost Team",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/"
},
"publisher": {
"@type": "Organization",
"name": "Blog BernekellBoy",
"url": "https://www.bernekellboy.biz.id/",
"logo": {
"url": "https://4.bp.blogspot.com/-ly-uVAaUhCU/Wp9UvoRIsaI/AAAAAAAAv7U/kyXbByTLL8M84fwtPNCqM7v3QZZkFLGgACK4BGAYYCw/s1600/batic%2Bon%2Bwp.png",
"width": 600,
"height": 60,
"@type": "ImageObject"
}
},
"image": {
"@type": "ImageObject",
"url": "https://4.bp.blogspot.com/-ly-uVAaUhCU/Wp9UvoRIsaI/AAAAAAAAv7U/kyXbByTLL8M84fwtPNCqM7v3QZZkFLGgACK4BGAYYCw/s1600/batic%2Bon%2Bwp.png",
"width": 1280,
"height": 720
}
},
{
"@type": "WebSite",
"url": "https://www.bernekellboy.biz.id/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.bernekellboy.biz.id/search?q={q}",
"query-input": "required name=q"
}
}
]
}
</script>
<!--[ Homepage title ]-->
<title>Blog BernekellBoy</title>
<meta content='FAo5fVu96bzW_FwmvvCh0wZBUn1pvbZHatLJ0vFkbfs' name='google-site-verification'/>
<!--[ Meta for browser ]-->
<meta content='index,follow' name='robots'/>
<meta content='index,follow' name='googlebot-news'/>
<meta content='index,follow' name='googlebot'/>
<meta content='id' name='language'/>
<meta content='id' name='geo.country'/>
<meta content='id' http-equiv='content-language'/>
<meta content='Indonesia' name='geo.placename'/>
<meta charset='UTF-8'/>
<meta content='width=device-width, initial-scale=1, user-scalable=1, minimum-scale=1, maximum-scale=5' name='viewport'/>
<meta content='IE=edge' http-equiv='X-UA-Compatible'/>
<!--[ Browser data, description and keyword ]-->
<link href='https://www.bernekellboy.biz.id/' rel='canonical'/>
<meta content='LulzGhost Team' name='description'/>
<meta content='Blog BernekellBoy, , Keyword_1, Keyword_2, Keyword_3 ' name='keywords'/>
<!--[ Generator and rrs ]-->
<meta content='O4V4JEdubjNzGTxIux6MyqKEcSPc0fpAGHbKBrTPkyg' name='google-site-verification'/>
<meta content='9Y3SpRtXW0sx3U6KBLwY_gYrMMJ4sjrka-2WnF7DLag' name='google-site-verification'/>
<meta content='blogger' name='generator'/>
<link href='https://www.bernekellboy.biz.id/feeds/posts/default' rel='alternate' title='Blog BernekellBoy » Atom' type='application/atom+xml'/>
<link href='https://www.bernekellboy.biz.id/feeds/posts/default?alt=rss' rel='alternate' title='Blog BernekellBoy » Feed' type='application/rss+xml'/>
<link href='https://www.bernekellboy.biz.id/feeds/comments/default?alt=rss' rel='alternate' title='Blog BernekellBoy » Comments Feed' type='application/rss+xml'/>
<!--[ Theme Color ]-->
<meta content='#fefefe' name='theme-color'/>
<meta content='#fefefe' name='msapplication-navbutton-color'/>
<meta content='#fefefe' name='apple-mobile-web-app-status-bar-style'/>
<meta content='true' name='apple-mobile-web-app-capable'/>
<!--[ Favicon ]-->
<link href='https://www.bernekellboy.biz.id/favicon.ico' rel='apple-touch-icon' sizes='120x120'/>
<link href='https://www.bernekellboy.biz.id/favicon.ico' rel='apple-touch-icon' sizes='152x152'/>
<link href='https://www.bernekellboy.biz.id/favicon.ico' rel='icon' type='image/x-icon'/>
<link href='https://www.bernekellboy.biz.id/favicon.ico' rel='shortcut icon' type='image/x-icon'/>
<!--[ Open graph ]-->
<meta content='Blog BernekellBoy' property='og:title'/>
<meta content='https://www.bernekellboy.biz.id/' property='og:url'/>
<meta content='Blog BernekellBoy' property='og:site_name'/>
<meta content='website' property='og:type'/>
<meta content='LulzGhost Team' property='og:description'/>
<meta content='Blog BernekellBoy' property='og:image:alt'/>
<meta content='Add_your_image_url_here' property='og:image'/>
<!--[ Twitter Card ]-->
<meta content='Blog BernekellBoy' name='twitter:title'/>
<meta content='https://www.bernekellboy.biz.id/' name='twitter:url'/>
<meta content='LulzGhost Team' name='twitter:description'/>
<meta content='summary_large_image' name='twitter:card'/>
<meta content='Blog BernekellBoy' name='twitter:image:alt'/>
<meta content='Add_your_image_url_here' name='twitter:image:src'/>
<!--[ CSS stylesheet ]-->
<style><!-- /* <style id='page-skin-1' type='text/css'><!--
/* Variable color */
:root{
--head-color: #262d3d ;
--body-color: #48525c ;
--body-altColor: #767676 ;
--body-bg: #fefefe ;
--link-color: #204ecf ;
--link-bg: #204ecf ;
--icon-color: #48525c ;
--icon-alt: #455065 ;
--icon-sec: #767676 ;
--header-text: #48525c ;
--header-title: 17px ;
--header-bg: #fefefe ;
--header-icon: #262d3d ;
--header-height: 60px ;
--notif-height: 45px ;
--notif-bg: #e1f5fe ;
--notif-color: #01579b ;
--content-bg: #fefefe ;
--content-border: #eceff1 ;
--transparent-bg: rgba(0,0,0,.03);
--page-maxContent: 780px ;
--post-titleSize: 32px ;
--post-fontSize: 15px ;
--post-titleSizeMobile: 22px ;
--post-fontSizeMobile: 15px ;
--widget-titleSize: 15px ;
--widget-titleWeight: 400 ; /* Fill with 400(normal) or 700(bold) */
--widget-titleAfter: 1px ;
--nav-width: 260px ;
--nav-border: 1px ;
--nav-text: #262d3d ;
--nav-icon: #48525c ;
--nav-bg: #fefefe ;
--font-head: 'Noto Sans', sans-serif ;
--font-body: 'Noto Sans', sans-serif ;
--font-code: 'Fira Mono', monospace ;
--transition-1: all .1s ease ;
--transition-2: all .2s ease ;
--transition-4: all .4s ease ;
--highlight-bg: #f6f6f6 ;
--highlight-color: #2f3337 ;
--highlight-orange: #b75501 ;
--highlight-blue: #015692 ;
--highlight-green: #54790d ;
--highlight-red: #f15a5a ;
--highlight-comment: #656e77 ;
--dark-text: #fefefe ;
--dark-textAlt: #989b9f ;
--dark-link: #005af0 ;
--dark-bg: #1e1e1e ;
--dark-bgAlt: #2d2d30 ;
--dark-bgSec: #252526 ;
}
@keyframes text-flicker {
0% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
2% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
8% {
opacity:0.1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
9% {
opacity:1;
text-shadow: 0px 0px 29px rgba(242, 22, 22, 1);
}
12% {
opacity:0.1;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
20% {
opacity:1;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
25% {
opacity:0.3;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
30% {
opacity:1;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
70% {
opacity:0.7;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
72% {
opacity:0.2;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
77% {
opacity:0.9;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
100% {
opacity:0.9;
text-shadow: 0px 0px rgba(242, 22, 22, 1);
}
}
/* Safelink CSS */
#generatelink input:hover{color:#fff}
.panel-body button:hover{cursor:pointer}
#generatelink button:hover{cursor:pointer}
.wcSafeClose:hover{cursor:pointer}
.safeWrap{position:fixed;top:0;left:0;bottom:0;right:0;background:rgba(0,0,0,.5);z-index:999999;-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.panel-primary{background:#fff;text-align:center;display:block;overflow:hidden;width:100%;max-width:95%;padding:0 0 25px 0;border-radius:5px;margin:15% auto;box-shadow:0 1px 3px rgba(0,0,0,0.12),0 1px 2px rgba(0,0,0,0.24)}.panel-body{position:relative;margin:0 25px}.panel-heading h2{background:#282828;color:#fff;margin:0 auto 25px auto;font-weight:400;padding:15px;font-size:20px}.panel-body input{background:rgba(0,0,0,0.04);width:100%;padding:15px;border-radius:5px;border:1px solid transparent;font-size:16px;color:#000;outline:none;text-indent:60px;transition:all .3s}.panel-body input:focus{background:#fff;color:#000;border-color:#282828;outline:none;box-shadow:0 0 5px rgba(0,0,0,0.1)}.panel-body .input-group-btn{position:absolute;top:0;right:0}.panel-body button{border-radius:0 5px 5px 0;background:#282828;color:#fff;border:0;padding:17px 52px;font-weight:500;outline:none;transition:all .3s}.panel-body button:hover,.panel-body button:focus{background:#282828;outline:none}#generatelink{margin:20px auto 0 auto}#generatelink button{background:#282828;border-radius:5px;font-size:14px;padding:14px 32px}#generatelink button:hover,#generatelink button:focus{background:#282828;border-radius:5px;font-size:14px}#generatelink input{background:rgba(0,0,0,0.05);text-indent:0}#generatelink input:hover,#generatelink input:focus{background:#282828;border-color:transparent;box-shadow:none}#generateloading{margin:20px auto 0 auto;font-size:20px;color:#282828;font-weight:normal}
.panel-body:before{content:'\279C';background:rgba(0,0,0,0.05);position:absolute;left:0;top:0;color:#888;padding:17px 20px;border-radius:5px 0 0 5px;border-right:1px solid transparent;transition:all .6s}.panel-body:focus-within:before{content:'\279C';background:#282828;color:#fff}.bt-success{display:inline-flex;align-items:center;margin:15px 15px;padding:10px 20px;outline:0;border:0;border-radius:2px;color:#fefefe;background-color:#282828;font-size:14px;white-space:nowrap;overflow:hidden;max-width:100%;line-height:2em}.bt-success:hover{color:#282828;background-color:transparent;border:1px solid #282828}.hidden,.bt-success.hidden{display:none}.wcSafeClose{display:inline-flex;align-items:center;margin:15px auto -15px;padding:5px 15px;outline:0;border:0;border-radius:2px;color:#fefefe;background-color:#282828;font-size:14px;white-space:nowrap;overflow:hidden;max-width:100%;line-height:2em}.copytoclipboard{margin:10px auto 5px}
#timer{margin:0 auto 20px auto;width:80px;text-align:center}.pietimer{position:relative;font-size:200px;width:1em;height:1em}.pietimer > .percent{position:absolute;top:25px;left:12px;width:3.33em;font-size:18px;text-align:center;display:none}.pietimer > .slice{position:absolute;width:1em;height:1em;clip:rect(0px,1em,1em,0.5em)}.pietimer >.slice.gt50{clip:rect(auto,auto,auto,auto)}.pietimer > .slice > .pie{border:0.06em solid #c0c0c0;position:absolute;width:1em;height:1em;clip:rect(0em,0.5em,1em,0em);border-radius:0.5em}.pietimer > .slice > .pie.fill{-moz-transform:rotate(180deg)!important;-webkit-transform:rotate(180deg)!important;-o-transform:rotate(180deg)!important;transform:rotate(180deg)!important}.pietimer.fill > .percent{display:none}.pietimer.fill > .slice > .pie{border:transparent;background-color:#c0c0c0;width:1em;height:1em}
#generateloading svg{width:22px;height:22px;fill:#282828}
.btn-primary svg,.darkMode .btn-primary svg{fill:none;stroke:#fff;stroke-width:1.5;width:22px;height:22px;vertical-align:-5px;margin-right:10px}
@media screen and (max-width:768px){.panel-body .input-group-btn{display:block;position:relative;overflow:hidden;margin:20px auto 0 auto}.panel-body button{border-radius:5px;width:100%}}
@media screen and (max-width:480px){.panel-primary{margin-top:30%}}
.darkMode .panel-primary{background:#2d2d30;color:#fefefe}
.darkMode .panel-body input,.darkMode .panel-body input:focus{background:#2d2d30;color:#fefefe}
.darkMode .wcSafeClose{color:#fefefe}
--></style>
<style>/*<![CDATA[*/
/* Font Body */
@font-face{font-family: 'Noto Sans';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0OIpQlx3QUlC5A4PNr4ARMQ_m87A.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0OIpQlx3QUlC5A4PNr4DRG.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0TIpQlx3QUlC5A4PNr4Az5ZuyDzW0.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0TIpQlx3QUlC5A4PNr4Az5ZtyH.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0IIpQlx3QUlC5A4PNr5TRA.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0IIpQlx3QUlC5A4PNb4Q.woff) format('woff')}
@font-face{font-family: 'Noto Sans';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/notosans/v11/o-0NIpQlx3QUlC5A4PNjXhFVZNyB.woff2) format('woff2'), url(https://fonts.gstatic.com/s/notosans/v11/o-0NIpQlx3QUlC5A4PNjXhFlYA.woff) format('woff')}
/* Font Heading */
@font-face {font-family: 'Poppins';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/poppins/v13/pxiByp8kv8JHgFVrLCz7V1g.woff) format('woff'), url(https://fonts.gstatic.com/s/poppins/v13/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2')}
@font-face {font-family: 'Poppins';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15lEw.woff) format('woff'), url(https://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2) format('woff2')}
@font-face {font-family: 'Poppins';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6V1g.woff) format('woff'), url(https://fonts.gstatic.com/s/poppins/v15/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2')}
@font-face {font-family: 'Poppins';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19lEw.woff) format('woff'), url(https://fonts.gstatic.com/s/poppins/v15/pxiDyp8kv8JHgFVrJJLmr19VF9eO.woff2) format('woff2')}
/* Source Code Font */
@font-face {font-family: 'Fira Mono';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtQIg.woff) format('woff'), url(https://fonts.gstatic.com/s/firamono/v9/N0bX2SlFPv1weGeLZDtgJv7S.woff2) format('woff2')}
/* Standar CSS */
*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box} h1, h2, h3, h4, h5, h6{margin:0;font-weight:700;font-family:var(--font-head);color:var(--head-color)} h1{font-size:1.8rem} h2{font-size:1.7rem} h3{font-size:1.5rem} h4{font-size:1.3rem} h5{font-size:1.2rem} h6{font-size:1.1rem} a{color:var(--link-color);text-decoration:none} a:hover{opacity:.7;transition:opacity .15s} table{border-spacing:0} iframe{max-width:100%;border:0;margin-left:auto;margin-right:auto} input, button, select, textarea{font:inherit;font-size:100%;color:inherit;line-height:normal;vertical-align:baseline} img{display:block;position:relative;max-width:100%;height:auto} svg{width:22px;height:22px;fill:var(--icon-color)} svg.line, svg .line{fill:none!important;stroke:var(--icon-color);stroke-linecap:round;stroke-linejoin:round;stroke-width:1} svg.c-1, svg .c-1{fill:var(--icon-alt)} svg.c-2, svg .c-2{fill:var(--icon-sec); opacity:.4} .hidden, .replaced{display:none} .invisible{visibility:hidden} .clear{width:100%;display:block;margin:0;padding:0;float:none;clear:both} .fullClose{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:2;-webkit-transition:var(--transition-1);transition:var(--transition-1);background:transparent;opacity:0;visibility:hidden} .free:after, .new:after{display:inline-block;content:'Free!';color:var(--link-color);font-size:85%;font-weight:400;margin:0 5px} .new:after{content:'New!'}
/* Main Element */
html{scroll-behavior:smooth;overflow-x:hidden} body{position:relative;margin:0;padding:0!important;width:100%;font-family:var(--font-body);font-size:14px;color:var(--body-color);background-color:var(--body-bg);-webkit-font-smoothing: antialiased; word-break: break-word; } .mainWrapper{position:relative}
/* Header Notification */
.notifContent{display:flex;align-items:center; position:relative; background-color:var(--notif-bg);color:var(--notif-color); padding:10px 25px; font-size:90%;line-height:normal; -webkit-transition:var(--transition-1);transition:var(--transition-1);overflow:hidden} .notifContent label{margin-left:auto; display:flex;align-items:center} .notifContent label svg.line{width:20px;height:20px; stroke:var(--notif-color)} .notifText{width:calc(100% - 20px); padding-right:12px} .notifInput:checked ~ .notifContent{height:0; padding-top:0;padding-bottom:0; opacity:0;visibility:hidden} .notifAlt{display:flex;align-items:center;justify-content:center} .notifAlt a{flex-shrink:0;white-space:nowrap;display:block; margin-left:10px;padding:8px 12px;border-radius:3px; background-color:#fff; font-size:12px; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)}
/* Header Section */
header{width:100%;background-color:var(--header-bg);color:var(--header-text);z-index:10; -webkit-transition:var(--transition-1);transition:var(--transition-1);border-bottom:1px solid var(--content-border); position:-webkit-sticky;position:sticky;top:0} header a{color:inherit} header svg{width:20px;height:20px;fill:var(--header-icon)} header svg.line, header svg .line{fill:none;stroke:var(--header-icon)}
.Header{margin:auto 0;background-repeat:no-repeat;background-size:100%;background-position:center} .Header a{display:block} .Header img{max-width:150px;max-height:45px;background:url(https://lh5.googleusercontent.com/proxy/8pFzttS9q8jwN_vA-_u7dSEDH2WlAZ4SA2YSEgzGWiqmdYhUejwgcv-nKmpx1hlwrL8oTVz1DfK_daTeAt_it_MHRA42jmPHFk-6smvJ5LocCs-5Pw=s0-d) repeat scroll 0% 0% transparent} .Header h1, .Header h2{display:block; font-size:var(--header-title); font-weight:700;color:inherit} .Header .headerTitle{max-width:170px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis; display:block}
.headerContent{position:relative;height:var(--header-height);display:flex} .headerDiv{display:flex;align-items:center} .headerLeft{padding-left:25px;flex:0 0 auto;width:var(--nav-width)} .headerLeft .headerIcon{margin-right:15px} .headerRight{padding-left:25px;padding-right:25px; flex:1 0 auto;width:calc(100% - var(--nav-width))} .headerRight .headerIcon{margin-left:auto; position:relative}
.headerSearch{/*width:100%;max-width:550px*/flex-shrink:0; position: absolute; right:166px; margin-top:10px;} .headerSearch form{position:relative;width:100%;font-size:95%} .headerSearch input[type=text]{display:block;width:100%;outline:0;border:0;border-radius:50px; background-color:var(--transparent-bg); padding:12px 48px} .headerSearch input[type=text]:focus ~ .close{opacity:1;visibility:visible} .headerSearch button{background:transparent;border:0;outline:0;padding:0; position:absolute;left:15px;top:0;bottom:0; display:flex;align-items:center} .headerSearch button svg{width:18px;height:18px; opacity:.7} .headerSearch button.close{right:12px;left:auto;opacity:0;visibility:hidden; transition:var(--transition-4)} .headerSearch button.close svg{width:16px;height:16px}
.headerIcon{display:flex;align-items:center; font-size:11px} .headerIcon > *{display:flex;align-items:center; position:relative;cursor:pointer;} .headerIcon > *:not(:first-child){margin-left:12px} .headerIcon label.navMenu:after{content:'';width:45px;height:45px;display:block; background-color:var(--transparent-bg); border-radius:50%; position:absolute;top:-12.5px;left:-12.5px;right:-12.5px; opacity:0;visibility:hidden; -webkit-transition:var(--transition-1);transition:var(--transition-1);transform: scale(.75,.75)} .headerIcon a.navMenu:after{content:attr(data-text); opacity:.7;margin:0 8px} .headerIcon .navMenu:hover:after{opacity:1;visibility:visible;transform: scale(1,1)} .headerIcon .navMenu svg, .headerIcon .navMenu .ham{display:block; -webkit-transition:var(--transition-2);transition:var(--transition-2);z-index:2} .headerIcon .navMenu .svg-2{position:absolute; opacity:0;visibility:hidden} .headerIcon .navMenu .ham{width:20px;height:20px; display:flex;align-items:center} .headerIcon .navMenu .ham span{display:block;padding: 0 2px; width:inherit; opacity:.8} .headerIcon .navMenu .ham i, .headerIcon .navMenu .ham span:before, .headerIcon .navMenu .ham span:after{content:'';display:block;width:100%; border-top:1px solid var(--header-icon)} .headerIcon .navMenu .ham i{margin:4px 0} .headerIcon .navSearch, .headerIcon a.navMenu{display:none} .headerIcon .navDark i{display:flex;align-items:center; width:26px;height:18px; border-radius:10px;border:1px solid var(--header-icon); opacity:.8} .headerIcon .navDark i:before{content:'';display:block;position:relative;left:3px; width:10px;height:10px; border-radius:50%;background-color:var(--header-icon); -webkit-transition:var(--transition-1);transition:var(--transition-1)} .headerIcon .navDark:before{content:attr(data-text);opacity:0; -webkit-transition:var(--transition-2);transition:var(--transition-2); white-space:nowrap; position:absolute;right:0} .headerIcon .navDark:hover:before{opacity:.7;/*padding-right:8px;padding-left:8px;right:26px*/padding-top:35px}
header .headerIcon .navNight .svg-2, .darkMode .headerIcon .navNight .svg-1{display:none} .darkMode .headerIcon .navNight .svg-2{display:block}
header .headerIcon .navNight:before{content:attr(data-text);font-size:11px;opacity:0;transition:var(--transition-2);-webkit-transition:var(--transition-2);white-space:nowrap; position:absolute;top:15px;left:-2px}
header .headerIcon .navNight:hover:before{opacity:.6;top: 20px} .darkMode .headerIcon .navNight:before{content:'Light'}
/* Widget Social Media */
.socialLink{display:flex;align-items:flex-start;justify-content:center; margin:0;padding:0;list-style:none} .socialLink li{margin:0 5px} .socialLink li .link{display:flex;align-items:center} .socialLink li a{opacity:.8}
#LinkList002{position:fixed;left:0;right:0;bottom:0; width:calc(var(--nav-width) - var(--nav-border));background-color:var(--nav-bg); padding:20px 20px 30px 25px; -webkit-transition:var(--transition-1);transition:var(--transition-1)} #LinkList002 ul{justify-content:flex-start} #LinkList002 li:first-child{margin-left:0} #LinkList002 label{display:none;align-items:center; opacity:0;visibility:hidden}
#mobile-menu{position:fixed;left:0;right:0;bottom:0; background-color:var(--nav-bg);border-top:var(--nav-border) solid var(--content-border); padding:0 25px; border-radius:0px 0px 0 0; box-shadow:0 5px 15px 0 rgb(0 0 0 / 12%); z-index:1} #mobile-menu .mobileMenu{display:flex;align-items:center;justify-content:center; height:50px; margin:0;padding:0;list-style:none} #mobile-menu .mobileMenu li{width:20%;text-align:center} #mobile-menu .mobileMenu li > *{display:inline-flex;align-items:center} #mobile-menu .mobileMenu li > *:hover svg, .onHome #mobile-menu .mobileMenu li.mHome svg{opacity:.7} #mobile-menu .mobileMenu li > *:hover svg .fill, .onHome #mobile-menu .mobileMenu li.mHome svg .fill{fill:var(--nav-icon)} .darkMode #mobile-menu .mobileMenu li > *:hover svg .fill, .darkMode #mobile-menu .mobileMenu li.mDark svg .fill, .darkMode.onHome #mobile-menu .mobileMenu li.mHome svg .fill{fill:var(--dark-text)}
/* Mobile Menu */
#mobile-menu{display:none}
/* Main Menu */
.mainInner{margin-left:var(--nav-width);margin-bottom:0; padding:25px; -webkit-transition:var(--transition-1);transition:var(--transition-1); position:relative; background: url(https://lh3.ggpht.com/-oqWTls1qrOg/WsBZxyCnu9I/AAAAAAAAAVg/m9j8Hz-63Qsj_xz2u629vpb3i4G0qaaPwCEwYBhgL/s1600/da-muoi-hong-1.png) no-repeat fixed top right;} .mainMenu{position:fixed;top:0;left:0;bottom:0; height:100%;width:var(--nav-width);background-color:var(--nav-bg);border-right:var(--nav-border) solid var(--content-border); font-size:13px;color:var(--nav-text); -webkit-transition:var(--transition-1);transition:var(--transition-1); z-index:2} .mainMenu .section{padding-top:calc(var(--header-height) + 15px);padding-bottom:90px; height:100%; overflow-y:auto} .mainMenu .section:hover{overflow-y:auto} .mainMenu .fullClose.menu{-webkit-transition:var(--transition-1);transition:var(--transition-1)} .mainMenu svg{width:20px;height:20px;fill:var(--nav-icon)} .mainMenu svg.line{fill:none;stroke:var(--nav-icon)} .mainMenu ul{margin:0;padding:0;list-style:none} .htmlMenu > li{position:relative} .htmlMenu > li.break:after{content:'';display:block;width:calc(100% - 50px);border-bottom:1px solid var(--content-border);margin:12px 25px} .htmlMenu > li li{-webkit-transition:var(--transition-2);transition:var(--transition-2); max-height:0;opacity:0;visibility:hidden} .htmlMenu > li li a{white-space:nowrap; display:block;position:relative; padding:10px 25px 10px 60px; color:inherit; opacity:.7} .htmlMenu .link:before, .htmlMenu > li li a:before{content:''; white-space:nowrap;overflow:hidden;text-overflow:ellipsis; position:absolute;top:0;left:0;bottom:0; display:block;background-color:transparent; width:2px; border-radius:0 2px 2px 0} .htmlMenu .link:hover:before, .htmlMenu > li li a:hover:before{background-color:var(--link-color); opacity:.7} .htmlMenu .link:hover svg, #LinkList002 label:hover svg, .socialLink li .link:hover svg{fill:var(--link-color)} .htmlMenu .link:hover svg.line, #LinkList002 label:hover svg.line, .socialLink li .link:hover svg.line{fill:none;stroke:var(--link-color)} .htmlMenu .link{white-space:nowrap; display:flex;align-items:center;width:100%; padding:10px 25px;position:relative; color:inherit} .htmlMenu .link svg{flex-shrink:0;margin-right:15px} .htmlMenu .link svg.down{width:16px;height:16px; margin-left:auto;margin-right:0} .htmlMenu .link .name{display:block; white-space:nowrap;overflow:hidden;text-overflow:ellipsis; font-weight:400} .htmlMenu a.link:hover, .htmlMenu > li li a:hover{background-color:var(--transparent-bg)} .htmlMenu .close{position:fixed;top:0;left:0;right:0; width:calc(var(--nav-width) - var(--nav-border));height:var(--header-height);background-color:var(--nav-bg); display:flex;align-items:center; -webkit-transition:var(--transition-1);transition:var(--transition-1); z-index:2} .htmlMenu .close .link:before{display:none} .htmlMenu .close .link .name:before{content:attr(data-text); font-size:12px;opacity:.7}
.htmlMenu .dropMenu:checked ~ .link svg.down{transform: rotate(180deg)} .htmlMenu .dropMenu:checked ~ ul li{max-height:40px; opacity:1;visibility:visible} .navInput:checked ~ .mainWrapper .mainInner, .navInput:checked ~ .mainWrapper footer{margin-left:68px} .navInput:checked ~ .mainWrapper .mainMenu{width:68px} .navInput:checked ~ .mainWrapper .htmlMenu .close, .navInput:checked ~ .mainWrapper .mainMenu #LinkList002{width:calc(68px - var(--nav-border))} .navInput:checked ~ .mainWrapper .mainMenu #LinkList002 ul{display:none} .navInput:checked ~ .mainWrapper .mainMenu #LinkList002 label{display:flex; opacity:1;visibility:visible} .navInput:checked ~ .mainWrapper .htmlMenu a.link:hover{background-color:transparent} .navInput:checked ~ .mainWrapper .htmlMenu .link .name, .navInput:checked ~ .mainWrapper .htmlMenu .link svg.down{display:none} .navInput:checked ~ .mainWrapper .htmlMenu .dropMenu:checked ~ ul li{max-height:0; opacity:0;visibility:hidden} .navInput:checked ~ .mainWrapper .htmlMenu > li.break:after{width:calc(100% - 45px)}
@media screen and (max-width:896px){ .headerIcon .navSearch{display:flex} header{position:relative;border-bottom:0} .Header .headerTitle{max-width:170px} .headerLeft{width:auto; flex-grow:1;padding-right:20px} .headerRight{width:auto; flex:0 0 auto} .headerSearch{position:fixed;top:0;left:0;right:0; padding:0 20px;max-width:none;z-index:10} .headerSearch button{z-index:3} .headerSearch input[type=text]{position:relative;background-color:var(--content-bg); padding:20px 48px;margin-top:-100%;z-index:3; -webkit-transition:var(--transition-1);transition:var(--transition-1)} .headerSearch input[type=text]:focus{margin-top:25px;box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)} .headerSearch input[type=text]:focus ~ .fullClose.search{background:rgba(0,0,0,.5);opacity:1;visibility:visible} .headerSearch input[type=text]:focus ~ .fullClose.search, .navInput:checked ~ .mainWrapper .mainMenu .fullClose.menu{-webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px)}
#LinkList002{width:85%;max-width:480px;margin-left:-100%; border-radius:0 0 15px 0} #mobile-menu{display:block}
.mainMenu{width:100%;background-color:transparent;overflow:hidden; margin-left:-100%; border-right:0; z-index:11} .mainMenu .section{background-color:var(--nav-bg); position:relative; width:85%;max-width:480px; z-index:3;overflow-y:auto; -webkit-transition:var(--transition-1);transition:var(--transition-1); box-shadow:-4px 9px 25px -6px rgb(0 0 0 / 10%);border-radius:0 15px 15px 0} .htmlMenu .close{width:85%;max-width:480px;margin-left:-100%; border-radius:0 15px 0 0} .htmlMenu .link, #LinkList002{padding-left:20px;padding-right:20px} .htmlMenu > li li a{padding:10px 20px 10px 55px} .htmlMenu > li.break:after{width:calc(100% - 40px);margin-left:20px;margin-right:20px}
.navInput:checked ~ .mainWrapper .mainMenu{width:100%; margin-left:0} .navInput:checked ~ .mainWrapper .mainMenu .section{} .navInput:checked ~ .mainWrapper .mainMenu .fullClose.menu{background:rgba(0,0,0,.5);opacity:1;visibility:visible} .navInput:checked ~ .mainWrapper .htmlMenu .link .name, .navInput:checked ~ .mainWrapper .htmlMenu .link svg.down{display:block} .navInput:checked ~ .mainWrapper .htmlMenu .dropMenu:checked ~ ul li{max-height:40px;opacity:1;visibility:visible} .navInput:checked ~ .mainWrapper .htmlMenu a.link:hover{background-color:var(--transparent-bg)} .navInput:checked ~ .mainWrapper .mainInner, .mainInner, .navInput:checked ~ .mainWrapper footer{margin-left:0} .navInput:checked ~ .mainWrapper .htmlMenu .close, .navInput:checked ~ .mainWrapper .mainMenu #LinkList002{width:85%;max-width:480px;margin-left:0} .navInput:checked ~ .mainWrapper .mainMenu #LinkList002 label{display:none} .navInput:checked ~ .mainWrapper .mainMenu #LinkList002 ul{display:flex}}
/* Large Section */
.largeSection .widget{margin-bottom:30px}
/* blogTitle Section */
.blogTitle{display:flex;justify-content:space-between;align-items:flex-start} .blogTitle .postMode{display:flex;align-items:center;font-size:11px;line-height:20px} .blogTitle .postMode:before{content:'List';margin:0 8px;opacity:.7} .blogTitle .postMode svg{width:20px;height:20px} .blogTitle .postMode .svg-2, .listMode .blogTitle .postMode .svg-1{display:none} .listMode .blogTitle .postMode .svg-2{display:block} .listMode .blogTitle .postMode:before{content:'Grid'}
/* blogContent Section */
.blogContent .widget .title{display:flex;align-items:center;justify-content:space-between; margin:0 0 30px; font-size:var(--widget-titleSize);/*font-weight:var(--widget-titleWeight)*/;font-family:var(--font-body);position:relative} .blogContent .widget .title:after{ content: '';
display: block;
width: 60px;
height: 9px;
background: rgb(128 138 157 / 47%);
position: absolute;
bottom: 2px;
z-index: -1;} .blogContent .widget .title.search{font-size:14px; display:block} .blogContent .widget .title.search:after{display:none} .blogContent .widget .title.search span{font-weight:400;font-size:90%; opacity:.7; margin-right:8px} .blogContent .widget .title.search span:before{content:attr(data-text)} .blogContent .widget .title.search span.home:after{content:'/'; margin-left:8px} .blogContent .widget .title svg{height:18px;width:18px; opacity:.7} .blogContent .widget .imgThumb{display:block;position:absolute;top:50%;left:50%;max-width:none;max-height:105%; font-size:12px;text-align:center; transform:translate(-50%, -50%)} .blogContent .widget:not(:last-child), .blogContent .sidebar > *:not(:last-child){margin-bottom:50px} .blogContent .widget input[type=text], .blogContent .widget input[type=email], .blogContent .widget textarea{display:block;width:100%;border:1px solid rgba(230,230,230,1);border-radius:2px;outline:0; padding:15px 15px;margin-bottom:15px} .blogContent .widget input[type=text]:focus, .blogContent .widget input[type=email]:focus, .blogContent .widget textarea:focus{border-color:var(--body-altColor)} .blogContent .widget input[type=button], .blogContent .widget input[type=submit]{display:inline-flex;align-items:center; margin:15px 0 0;padding:10px 20px; outline:0;border:0;border-radius:2px; color:#fefefe; background-color:var(--link-bg); font-size:14px;font-family:var(--font-body); white-space:nowrap;overflow:hidden;max-width:100%} .blogContent .widget input[type=button]:hover, .blogContent .widget input[type=submit]:hover{opacity:.7} .blogContent{display:flex;flex-wrap:wrap} .blogContent .mainbar{flex:1 0 calc(100% - 330px);width:calc(100% - 330px); } .blogContent .mainbar{margin-right:auto;margin-left:auto; -webkit-transition:var(--transition-1);transition:var(--transition-1)} .blogContent .mainbar > *:not(:last-child){margin-bottom:25px;padding-bottom:25px; border-bottom:1px solid var(--content-border)} .blogContent .mainbar > .no-items{margin-bottom:0;padding-bottom:0;border-bottom:0} .blogContent .mainbar{max-width:780px} .blogContent .sidebar{max-width:600px} .blogContent .sidebar{flex:0 0 330px;width:330px; padding-left:30px} .blogContent .sidebar #side-sticky{position:-webkit-sticky;position:sticky;top:75px}
.onPage .blogContent .mainbar, .onPage footer .creditInner{max-width:var(--page-maxContent); margin-left:auto;margin-right:auto}
/* blogPosts Section */
.blogPosts{display:flex;flex-wrap:wrap; position:relative;width:calc(100% + 20px);left:-10px;right:-10px} .blogPosts.empty{width:100%;left:0} .blogPosts.empty ~ .blogPager{justify-content:flex-start} .blogPosts .hentry{display:block;position:relative; width:calc(33.333% - 20px); margin-left:10px;margin-right:10px;margin-bottom:40px; padding-bottom:38px} .blogPosts .hentry.noInfo, .blogPosts .hentry.product, .blogPosts div.hentry, .blogPosts .hentry.noComment{padding-bottom:0} .blogPosts .hentry.noAd .widget, .Blog ~ .HTML{display:none} .onItem .blogPosts{display:block; width:100%;left:0;right:0} .onItem .blogPosts .hentry{width:100%; margin-left:0;margin-right:0;margin-bottom:0;padding-bottom:0}
/* gridLayout */
@media screen and (max-width:480px){.gridLayout .blogPosts .hentry{width:calc(100% - 15px); margin-bottom:0} .gridLayout .blogPosts .hentry:not(:last-child){margin-bottom:50px} .gridLayout .postEntry.snippet, .gridLayout .postHeader, .gridLayout .postInfo, .gridLayout .postLabel.sponsored{font-size:90%} .gridLayout .postEntry.snippet.productPrice, .gridLayout.listMode .blogPosts .postEntry.snippet.productPrice{font-size:14px} .gridLayout .postTitle{font-size:1.1rem} .gridLayout.listMode .blogPosts .hentry, .gridLayout.listMode .blogPosts .hentry:not(:last-child){margin-bottom:30px} .gridLayout.listMode .blogPosts .postEntry.snippet, .gridLayout.listMode .blogPosts .postHeader, .gridLayout.listMode .blogPosts .postInfo, .gridLayout.listMode .blogPosts .postLabel.sponsored{font-size:12px}}
/* blogPager */
/* blogPager */
.blogPager, .postNav{display:flex;flex-wrap:wrap;justify-content:center; font-size:90%;line-height:20px; color:#fefefe; margin-top:30px;margin-bottom:0;text-transform: uppercase;font-family:Noto Sans; Sans-serif;}
.blogPager > *, .postNav > * { display: flex; align-items: center; padding: 10px 13px; margin-bottom: 10px; color: inherit; background-color: black; border: 2px solid white; border-radius: 6px; }
.blogPager > * svg{width:18px;height:18px; fill:#fefefe}
.blogPager > * svg.line{fill:none;stroke:#fefefe
; stroke-width:1}
.blogPager > *:before{content:attr(data-text)}
.blogPager .moreLink{padding:10px 35px}
.blogPager .newerLink:before, .blogPager .jsLoad:before{display:none}
.blogPager .newerLink:after, .blogPager .jsLoad:after{content:attr(data-text)}
.blogPager .newerLink svg , .blogPager .jsLoad svg{margin-right:8px}
.blogPager .newerLink{margin-right:auto} .blogPager .olderLink{margin-left:auto}
.blogPager .olderLink svg{margin-left:8px}
.blogPager .noPost{cursor:not-allowed}
.blogPager .noPost, .blogPager .current, .postNav .current{background-color:var(--transparent-bg); color:var(--dark-textAlt)}
.blogPager .noPost svg, .blogPager .noPost.jsLoad svg{fill:var(--dark-textAlt)}
.blogPager .noPost svg.line{fill:none;stroke:var(--dark-textAlt)}
.blogPager .newerLink{margin-right:15px;}
.blogPager .olderLink{margin-left:15px;}
/* Breadcrumbs */
.breadcrumbs{display:flex;align-items:baseline; margin-bottom:10px} .breadcrumbs a{color:inherit} .breadcrumbs > *:not(:last-child):after{content:'/'; margin-left:8px;font-size:90%;opacity:.7} .breadcrumbs > *{display:inline-flex;align-items:baseline;flex-shrink:0; margin-right:8px} .breadcrumbs .titleLink:before{content:attr(data-text)} .breadcrumbs .homeLink a{font-size:90%;opacity:.8}
/* Article Section */
.postThumbnail{flex:0 0 calc(33.333% - 12.5px);overflow:hidden;border-radius:6px; margin-bottom:20px} .postThumbnail > *{display:block;position:relative;padding-top:55%; transition:var(--transition-2); color:inherit} .postThumbnail a{background: var(--transparent-bg) url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 50 50'><path d='M25.251,6.461c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615V6.461z' fill='rgba(0,0,0,.1)'><animateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/></path></svg>") center / 26px no-repeat} .postThumbnail div{background: var(--transparent-bg)} .postThumbnail div span:before{content:attr(data-text); opacity:.7; white-space:nowrap} .postTitle{font-size:.9rem;line-height:normal} .postTitle a, .postEntry.snippet, .itemTitle a, .itemEntry{color:inherit; display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden} .postTitle a, .itemTitle a{-webkit-line-clamp:3}
.postTitle a:hover, .itemTitle a:hover{} /* Add color here to change Post Title hover efect */
.postEntry.snippet, .itemEntry{display:-webkit-box} /* Change to display:none if you want to hide post snippets */
.postEntry.snippet, .itemEntry{margin:12px 0 0;font-size:90%;line-height:1.6em; opacity:.8} .postEntry.snippet, .postHeader, .postInfo, .postLabel.sponsored{font-size:90%} .postEntry.snippet.productPrice, .itemEntry.productPrice{display:block; font-size:14px; color:var(--link-color);opacity:1} .postHeader{margin-bottom:8px; line-height:normal} .postInfo{display:flex;align-items:flex-start;justify-content:space-between;margin-top:18px; position:absolute;bottom:0;left:0;right:0} .postInfo a{color:inherit} .postTimestamp, .postMore{padding-right:10px} .postComment, .postTimestamp, .postMore{overflow:hidden} .postComment:before, .postTimestamp:after, .postMore:before{content:attr(data-text); display:block;line-height:20px; white-space:nowrap;text-overflow:ellipsis;overflow:hidden; opacity:.8} .postComment{display:flex;align-items:flex-start;flex-shrink:0} .postComment svg{width:16px;height:16px; margin-left:5px} .postComment:hover svg{fill:var(--link-color)} .postComment:hover svg.line{fill:none;stroke:var(--link-color)} .postComments, .postTimes > *{display:flex;align-items:center; flex-shrink:0} .postComments > *{display:flex;align-items:center;justify-content:center; width:34px;height:34px; border:1px solid rgb(230,230,230);border-radius:12px; position:relative} .postComments > a{overflow:visible} .postComments > a:before{line-height:18px; position:absolute;top:-7px;right:-5px; padding:0 6px;border-radius:10px;font-size:11px; z-index:1;opacity:1; background-color:rgb(230,230,230)} .postComments > *:not(:last-child){margin-right:8px} .postComments svg{width:18px;height:18px; margin:0} .postComments > *:hover{border-color:var(--icon-color); opacity:.8} .postComments > *:hover svg, .postComments > *:hover svg.line .fill{fill:var(--icon-color)} .postComments > *:hover svg.line{fill:none;stroke:var(--icon-color)}
.postLabel{font-size:inherit; white-space:nowrap;text-overflow:ellipsis;overflow:hidden} .postLabel:before{content:attr(data-text) ' '; opacity:.7} .postLabel > *{font-weight:400;color:inherit} .postLabel > *:before{content:attr(data-text)} .postLabel > *:not(:last-child):after{content:','} .postLabel > a{display:inline-flex} .postLabel > a:hover, .postMore:hover{color:var(--link-color)} .postLabel.sponsored{display:flex;align-items:center; margin-bottom:8px; line-height:normal} .postLabel.sponsored svg{width:14px;height:14px; margin-right:5px; flex-shrink:0} .postLabel.sponsored svg:before, .postLabel.sponsored > *:not(:last-child):after{display:none} .postLabel.sponsored span{width:calc(100% - 23px); white-space:nowrap;text-overflow:ellipsis;overflow:hidden; opacity:.8} .postLabel.sponsored a{opacity:.8}
.postAuthor, .postTimes{display:flex;align-items:center;flex-grow:1; width:50%;padding-right:15px} .postAuthorImage{flex-shrink:0; margin-right:12px} .postAuthorImage .authorImage, .postAuthors .authorImg{width:34px;height:34px;border-radius:12px; background-size:100%;background-position:center;background-repeat:no-repeat} .postAuthorName{flex-grow:1; width:calc(100% - 44px)} .postAuthorName .authorName:after{content:attr(data-write); opacity:.7;display:block;font-size:11px} .postAuthorName .authorName{max-width:170px; display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .postAuthorName .authorName > *:before{content:attr(data-text)} .postAuthorName .authorName > *:hover{text-decoration:underline}
.postAuthors{display:flex; max-width:400px;margin:30px 0; padding:12px;line-height:1.7em; border:1px solid var(--content-border);border-radius:5px; box-shadow: 0 10px 8px -8px rgb(0 0 0 / 12%); font-size:13px} .postAuthors .authorImage{flex-shrink:0; margin-top:6px;margin-right:12px} .postAuthors .authorImg{display:flex;align-items:center;justify-content:center} .postAuthors .authorInfo{flex-grow:1; width:calc(100% - 46px)} .postAuthors .authorName:before{content:attr(data-write) ' '; font-size:12px; opacity:.7} .postAuthors .authorName:after, .postAuthors .authorAbout:before{content:attr(data-text)} .postAuthors .authorAbout{margin:0; font-size:12px;opacity:.8;line-height:normal; display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden} .darkMode .postAuthors{background-color:var(--dark-bgSec); border:0}
.postTimes{width:100%; margin-top:25px; font-size:90%;line-height:20px} .postTimes svg{width:14px;height:14px; margin-right:6px} .postTimes .postTimestamp{padding-right:20px} .postTimes .postTimestamp:before{opacity:.8} .postTimes .postTimestamp:after{display:inline} .postTimes .postReadtime span{opacity:.8}
.postTimes .postTimestamp.updated:before{content:'Updated: '}
.postTimes .postTimestamp.published:before{content:'Published: '}
.postShare{margin:30px 0;padding-bottom:30px;border-bottom:1px solid var(--content-border)} .postShare svg.line{stroke-width:1.5} .shareContent{display:flex;align-items:center;line-height:1.8em} .shareContent:before{content:attr(data-text); flex:0 0 auto;margin-right:30px;line-height:20px} .shareIcon:not(:last-child){margin-right:10px} .shareIcon > *{display:flex;align-items:center; padding:10px 12px;border:1px solid var(--body-altColor);border-radius:2px; font-size:90%;color:#fefefe;line-height:20px;white-space:nowrap} .shareIcon svg{width:20px;height:20px; flex-shrink:0} .shareIcon.facebook a{background-color:#568fce;border-color:#568fce} .shareIcon.twitter a{background-color:#27c2f5;border-color:#27c2f5} .shareIcon.whatsapp a{background-color:#25D366;border-color:#25D366} .shareIcon a svg{fill:#fefefe} .shareIcon a:after{content:attr(aria-label); padding-left:12px} .darkMode .shareIcon svg{opacity:.8} .shareInner{position:fixed;top:0;right:0;bottom:0;left:0; width:100%;height:100%; display:flex;align-items:center;justify-content:center; z-index:20; -webkit-transition:var(--transition-1);transition:var(--transition-1); opacity:0;visibility:hidden} .shareBlock{width:100%;max-width:500px;max-height:90%; display:flex; margin:0 auto -50%; background-color:var(--content-bg);border-radius:8px; transition:inherit; z-index:3;overflow:hidden; position:relative; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)} .shareBox{padding-top:60px;max-height:100%;width:100%;overflow-y:auto} .shareHeader{padding:20px; background-color:inherit; display:flex;align-items:center;justify-content:space-between; position:absolute;top:0;left:0;right:0; z-index:1} .shareHeader:before, .sharePreview .previewTitle:before, .sharePreview .previewLabel > *:before{content:attr(data-text)} .shareHeader label{display:flex;align-items:center; font-size:11px} .shareHeader label svg.line{width:20px;height:20px; stroke-width:1} .shareHeader label:before{content:'Close'; opacity:.7;padding:0 8px} .sharePreview{padding:15px 20px; border:1px solid var(--content-border);border-left:0;border-right:0; display:flex;align-items:center} .sharePreview .previewImg{width:70px;height:70px;display:flex;flex-shrink:0;align-items:center;justify-content:center; background-color:var(--transparent-bg);background-size:cover;background-position:center;background-repeat:no-repeat; border-radius:5px; margin-right:15px} .sharePreview .previewImg svg{stroke-width:1;opacity:.6} .sharePreview .previewTitle{font-size:13px;line-height:1.5em; display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden} .sharePreview .previewLabel{font-size:12px;opacity:.7; margin-top:5px} .shareInner ul{display:flex;flex-wrap:wrap; list-style:none;margin:0;padding:10px 20px 20px} .shareInner li{width:25%;text-align:center} .shareInner li a, .shareInner li .copyLink{display:block; max-width:80px;height:80px; margin:0 auto;padding:15px 0;border-radius:2px;color:inherit} .shareInner li a:hover, .shareInner li .copyLink:hover{background-color:rgba(0,0,0,.03)} .shareInner li > * svg{width:26px;height:26px; opacity:.8} .shareInner li a:after, .shareInner li .copyLink:after{content:attr(data-text);display:block; margin-top:3px;font-size:12px;opacity:.7} .shareInner li input{margin:0;padding:0;outline:0;border:0;width:1px;height:0;opacity:0} .shareNotif span{position:absolute;left:0;right:0;bottom:-70px; font-size:90%; display:block;width:240px;margin:0 auto 20px;padding:15px 10px; border-radius:3px; background-color:rgba(0,0,0,.8);color:#fefefe; line-height:20px;text-align:center; opacity:0; -webkit-transition:var(--transition-1);transition:var(--transition-1); -webkit-animation:slidein 2s ease forwards;animation:slidein 2s ease forwards} .shareIn:checked ~ .shareInner{opacity:1;visibility:visible} .shareIn:checked ~ .shareInner .shareBlock{margin:0 auto} .shareIn:checked ~ .shareInner .fullClose{background:rgba(0,0,0,.5);opacity:1;visibility:visible; -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px)} .darkMode .shareBlock{background-color:var(--dark-bgSec)} .darkMode .sharePreview .previewImg{background-color:rgba(255,255,255,.1)} @media screen and (max-width: 640px){.shareIcon a:after{display:none}} @media screen and (max-width: 480px){.postShare:before{content:attr(data-text); display:block;width:100%;margin:0 0 15px} .shareContent:before{display:none} .shareIcon.facebook{flex-grow:1} .shareIcon.facebook a:after{content:attr(data-text); display:block} .shareInner{align-items:flex-end} .shareIn:checked ~ .shareInner .shareBlock{border-radius:15px 15px 0 0} .shareInner li > * svg{width:24px;height:24px}}
.rtlMode .shareContent:before{margin-right:0;margin-left:30px} .rtlMode .shareIcon:not(:last-child){margin-right:0;margin-left:10px} .rtlMode .shareIcon a:after{padding-left:0;padding-right:12px} .rtlMode .sharePreview .previewImg{margin-right:0;margin-left:15px}
.onItem .postTitle{font-size:var(--post-titleSize); line-height:1.4em} .onItem .postInfo{align-items:center;position:relative; margin-top:30px} .onItem .postInfo.noAuthor.noComment, .onItem .postInfo.onSponsored{margin-top:0; display:none} .onItem .postEntry{margin-top:40px; font-size:var(--post-fontSize); line-height:1.8em}
/* Article Style */
.postEntry h1, .postEntry h2, .postEntry h3, .postEntry h4, .postEntry h5, .postEntry h6{margin:1.7em 0 20px; font-weight:700; line-height:1.4em} .postEntry h1:target, .postEntry h2:target, .postEntry h3:target, .postEntry h4:target, .postEntry h5:target, .postEntry h6:target{padding-top:70px;margin-top:0} .postEntry p{margin:1.7em 0} .postEntry img{display:inline-block;border-radius:2px;height:auto !important} .postEntry img.fullImg{display:block!important; margin-bottom:10px; position:relative;left:0; width:100%;max-width:none} .postEntry .widget, .post .postAd > *{margin:50px 0}
.post .separate{display:block;margin:4em 0} .post .separate:before{content:'\2027 \2027 \2027'; display:block;text-align:center; font-size:28px;font-style:normal; letter-spacing:0.6em;text-indent:0.6em;clear:both}
.post .note{position:relative; padding:20px 30px 20px 50px; background-color:#e1f5fe;color:#01579b; font-size:.85rem; line-height:1.62em;border-radius:2px} .post .note:before{content:'';position:absolute;left:18px;top:23px; width:20px;height:20px; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2301579b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><path d='M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z'/><line x1='4' y1='22' x2='4' y2='15'/></svg>") center / 20px no-repeat} .post .noteAlert{background-color:#ffdfdf;color:#48525c} .post .noteAlert:before{background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348525c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><path d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/><line x1='12' y1='9' x2='12' y2='13'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>") center / 20px no-repeat}
.post .textIndent{text-indent:2.2rem} .post .dropCap{float:left;margin:4px 8px 0 0; font-size:55px;line-height:45px} .post .extLink{display:inline-flex;align-items:center} .post .extLink:after{content:''; width:16px;height:16px; display:inline-block;margin-left:5px; background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23989b9f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/><polyline points='15 3 21 3 21 9'/><line x1='10' x2='21' y1='14' y2='3'/></svg>") center / 16px no-repeat} .post .extLink.alt:after{background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23989b9f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3'/><line x1='8' y1='12' x2='16' y2='12'/></svg>")} .post .postCaption{display:block; font-size:13px;line-height:normal; margin-top:5px} .post .postReference{display:block; font-size:13px;line-height:normal; opacity:.8}
.post .scrollImage, .post .gridImage, .post .hideImage, .post .showImage{display:flex;flex-wrap:wrap;align-items:flex-start;justify-content:center; margin:2em 0; position:relative;left:-7.5px;right:-7.5px; width:calc(100% + 15px)} .post .scrollImage > *{width:calc(33.333% - 15px); margin:0 7.5px 15px}
.post .gridImage > *, .post .hideImage > *, .post .showImage > *{width:calc(50% - 15px); margin:0 7.5px 15px} .post .gridImage > *:nth-last-child(1){margin-bottom:0} .post .gridImage img, .post .hideImage img{display:block}
.post .buttonImage{position:relative} .post .buttonImage label{position:absolute;top:0;left:0;right:0;bottom:0; border-radius:2px; display:flex;align-items:center;justify-content:center; background-color:rgba(0,0,0,.5); -webkit-transition:var(--transition-2);transition:var(--transition-2); -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px)} .post .buttonImage label:before{content:'Show All'; color:var(--dark-text); font-size:13px} .post .hideImage .showImage{width:100%;margin:0; left:0;right:0; -webkit-transition:var(--transition-2);transition:var(--transition-2); max-height:0;opacity:0;visibility:hidden} .post .imageInput:checked ~ .hideImage .showImage{max-height:1000vh;opacity:1;visibility:visible} .post .imageInput:checked ~ .hideImage .buttonImage label{opacity:0;visibility:hidden}
.postRelated{position:relative; margin:42px 0;padding:1.5em 0; border:1px solid var(--content-border);border-left:0;border-right:0; font-size:14px;line-height:1.8em} .postRelated h3, .postRelated h4, .postRelated b{font-size:13px;font-weight:400; margin:0;padding:2px 14px;background-color:var(--content-bg);border:1px solid var(--content-border);border-radius:15px; position:absolute;top:-15.5px;left:20px} .postRelated ul, .postRelated ol{margin:8px 0 0;padding-left:20px} .darkMode .postRelated h3, .darkMode .postRelated h4, .darkMode .postRelated b, .darkMode .post .tabsHead > *:after{background-color:var(--dark-bg)}
.post blockquote, .commentContent i[rel="quote"]{position:relative;font-size:.97rem; opacity:.8; line-height:1.7em ;margin-left:0;margin-right:0; padding:30px 25px; border-left:1px solid var(--content-border)} .post blockquote.style-1{font-size:15px; padding:30px 25px 30px 55px; border:1px solid var(--content-border);border-left:0;border-right:0} .post blockquote.style-1:before{content:'\201D';display:block; position:absolute;top:18px;left:0; font-weight:700;font-size:60px; line-height:normal}
.post table{min-width:70%;margin:0 auto;border:0;overflow:hidden;font-size:14px; word-break: normal} .post table th{padding:17px 25px; border:1px solid rgba(0,0,0,.1);border-left-width:0} .post table th:last-child{border-radius:0 5px 0 0} .post table th:first-child{border-left-width:1px;border-radius:5px 0 0} .post table td:first-child{border-left-width:1px} .post table td{padding:20px 25px; border:1px solid rgba(0,0,0,.1);border-left-width:0;border-top:0; vertical-align:middle} .post table tr:last-child td:first-child{border-radius:0 0 0 5px} .post table tr:last-child td:last-child{border-radius:0 0 5px 0} .post table tr:nth-child(2n+1) td{background-color:rgba(0,0,0,.01)} .post .table{display:block; overflow-y:hidden;overflow-x:auto;scroll-behavior:smooth}
.post .tr-caption-container{min-width:0;width:auto;margin:0 auto;border:0;position:relative;overflow:inherit} .post .tr-caption-container tr td, .post .tr-caption-container tr:nth-child(2n+1) td{border:0;background:transparent;padding:0} .post .tr-caption-container .tr-caption{display:block; font-size:13px;opacity:.8;line-height:normal}
.post pre{position:relative;font-family:var(--font-code);line-height:1.6em;font-size:.8rem; direction:ltr} .post pre:before, .commentContent i[rel="pre"]:before{content:'</>';position:absolute;right:0;top:0;color:var(--highlight-comment);font-size:10px;padding:0 10px;z-index:2;line-height:35px} .post pre.html:before{content:'.html'} .post pre.css:before{content:'.css'} .post pre.js:before{content:'.js'} .post code, .commentContent i[rel="pre"]{display:block;white-space:pre; font-size:.8rem; position:relative;width:100%; border-radius:2px;background-color:var(--highlight-bg);color:var(--highlight-color); padding:20px;margin:25px auto; -moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;overflow:auto; font-family:var(--font-code);line-height:1.6em; text-align:left} .post pre span{color:var(--highlight-green)} .post pre span.block{color:#fff;background:var(--highlight-blue)} .post pre i{color:var(--highlight-blue);font-style:normal} .post pre i{user-select:none;-moz-user-select:none;-ms-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-webkit-touch-callout:none} .post pre i.comment, article pre i.tag, article pre i.blue{color:var(--highlight-comment);user-select:text;-moz-user-select:text;-ms-user-select:text;-khtml-user-select:text;-webkit-user-select:text;-webkit-touch-callout:text;} article pre i.tag{color:var(--highlight-orange)} article pre i.blue{color:var(--highlight-blue)} .post .code{display:inline;padding:2px 4px;font-size:85%;line-height:inherit;color:var(--highlight-color);background-color:rgba(0,0,0,.05);font-family:var(--font-code)} .darkMode .post code, .darkMode .commentContent i[rel="pre"]{background-color:rgba(0,0,0,.09);color:var(--dark-textAlt)} .darkMode .post .code{color:var(--dark-textAlt);background-color:rgba(255,255,255,.1)}
.post .tocInner, .post .spoiler{border:1px solid var(--content-border);border-left:0;border-right:0; padding:15px 15px;margin:30px 0; font-size:14px} .post .tocTitle, .post .spoilerTitle{outline:0;font-weight:700;line-height:1.8em; display:flex;align-items:center;justify-content:space-between} .post .tocTitle:after{content:'Hide all'; font-weight:400;font-size:85%;font-family:var(--font-body)} .post .tocContent, .post .spoilerContent{max-height:1000vh; -webkit-transition:var(--transition-4);transition:var(--transition-4); overflow:hidden} .post .tocInput:checked ~ .tocContent{max-height:0} .post .tocInput:checked ~ .tocTitle:after{content:'Show all'} .post .tocInner a{display:flex;color:inherit} .post .tocInner ol, .post .tocInner ul, .tableOfContent ol{padding:0;list-style:none; font-size:inherit;font-weight:400; counter-reset:toc-count;line-height:1.75em} .post .tocInner li, .tableOfContent li{display:flex;flex-wrap:wrap} .post .tocInner li ol, .post .tocInner li ul, .tableOfContent li ol{width:100%; padding-left:26px;margin-bottom:10px;margin-top:5px} .post .tocInner li > *:before, .tableOfContent li > a:before{content:counters(toc-count,'.')'. ';counter-increment:toc-count; display:inline-block;min-width:20px;margin-right:5px;flex-shrink:0;font-weight:400}
.post .spoilerTitle label{color:#fefefe;background-color:var(--link-bg); border-radius:2px;padding:0 15px; line-height:30px;font-size:12px;font-weight:400;font-family:var(--font-body)} .post .spoilerTitle label:before{content:'Show all'} .post .spoilerContent{max-height:0} .post .spoilerInput:checked ~ .spoilerTitle label:before{content:'Hide all'} .post .spoilerInput:checked ~ .spoilerContent{max-height:1000vh}
.post .tabsHead{display:flex; border-bottom:1px solid var(--content-border);margin-bottom:30px;font-size:13px;line-height:1.7em} .post .tabsHead > *:not(:last-child){margin-right:8px} .post .tabsHead > *{padding:8px 12px; border:1px solid var(--content-border);border-bottom:0; border-radius:4px 4px 0 0; position:relative} .post .tabsHead > *:before{content:attr(data-text)} .post .tabsHead > *:after{content:'';display:block;width:100%;height:2px;background-color:var(--body-bg); position:absolute;left:0;bottom:-1px; visibility:hidden;opacity:0} .post .tabsContent{position:relative} .post .tabsContent > *{display:none;width:100%} .post .tabsContent > * p:first-child{margin-top:0} .post .postBody input[id*="1"]:checked ~ .postTabs label[for*="1"]:after, .post .postBody input[id*="2"]:checked ~ .postTabs label[for*="2"]:after, .post .postBody input[id*="3"]:checked ~ .postTabs label[for*="3"]:after, .post .postBody input[id*="4"]:checked ~ .postTabs label[for*="4"]:after{visibility:visible;opacity:1} .post .postBody input[id*="1"]:checked ~ .postTabs .tabsContent div[class*="Content-1"], .post .postBody input[id*="2"]:checked ~ .postTabs .tabsContent div[class*="Content-2"], .post .postBody input[id*="3"]:checked ~ .postTabs .tabsContent div[class*="Content-3"], .post .postBody input[id*="4"]:checked ~ .postTabs .tabsContent div[class*="Content-4"]{display:block}
.post .postNav{font-size:13px; margin:50px 0; justify-content:center} .post .postNav > *{padding:8px 15px;border-radius:2px;margin-bottom:8px} .post .postNav > *:not(:last-child){margin-right:8px}
.post .proPrice, .post .proInfoL, .post .proInfoR, .post .proInfo.one{padding:15px 0;margin-bottom:0; border-bottom:1px solid var(--content-border); flex:0 0 50%;display:block} .post .proPrice{font-size:22px; color:var(--link-color)} .post .proPrice:before, .post .proInfo small{content:attr(data-text); font-size:small;color:var(--body-color);display:block; opacity:.8} .post .proInfo{display:flex; font-size:14px; line-height:1.6em} .post .proInfoL{padding-right:20px} .post .proInfoR{padding-left:0} .post .proMarket{margin:20px 0 30px; display:flex;flex-wrap:wrap; line-height:1.6em} .post .proMarket > *{display:block} .post .proMarket > small{width:100%; margin-bottom:10px} .post .proMarket > a{display:inline-flex;align-items:center;justify-content:center; width:40px;height:40px; margin:0 8px 8px 0;border:1px solid var(--content-border);border-radius:3px} .post .proMarket > a:last-of-type{margin-right:0} .post .proMarket > a img{width:20px;height:20px;display:block} .darkMode .post .proPrice:before, .darkMode .post .proInfo small{color:var(--dark-textAlt)}
/* Article Style Responsive */
@media screen and (max-width: 640px){.post .postEntry img.fullImg{width:calc(100% + 40px);left:-20px;right:-20px; border-radius:0} .post .note{width:calc(100% + 40px);left:-20px;right:-20px; font-size:.8rem;border-radius:0}} @media screen and (max-width:480px){.post .scrollImage{flex-wrap:nowrap;justify-content:flex-start;position:relative;width:calc(100% + 40px);left:-20px;right:-20px;padding:0 20px; overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth;scroll-snap-type:x mandatory; -ms-overflow-style:none;-webkit-overflow-scrolling:touch} .post .scrollImage > *{display:block;flex-shrink:0; width:80%; margin:0 15px 0 0; scroll-snap-align:center} .post .scrollImage > *:last-child{margin-right:0} .post .scrollImage:after{content:'';display:block;flex-shrink:0; align-self:stretch;padding-left:20px} .post .hideImage > *, .post .showImage > *{width:calc(100% - 15px)} .post .table{position:relative; width:calc(100% + 40px);left:-20px;right:-20px;padding:0 20px; display:flex}article .table:after{content:'';display:block;padding-left:20px} .post blockquote, .post blockquote.style-1{font-size:14px} .postRelated > *{font-size:13px} .postRelated h3, .postRelated h4, .postRelated b, .post .tabsHead, .post .postNav{font-size:12px}}
/* Article Style RTL */
.rtlMode .post .note{padding:20px 50px 20px 30px} .rtlMode .post .note:before{left:auto;right:18px} .rtlMode .postRelated h3, .rtlMode .postRelated h4, .rtlMode .postRelated b{left:auto;right:20px} .rtlMode .postRelated ul, .rtlMode .postRelated ol{padding-left:0;padding-right:20px} .rtlMode .post .separate:before{text-indent:-0.6em} .rtlMode .post .dropCap{margin:0;line-height:inherit;font-size:inherit;float:none} .rtlMode .post blockquote, .rtlMode .commentContent i[rel="quote"]{border-left:0;border-right:1px solid var(--content-border)} .rtlMode .post blockquote.style-1{padding:30px 55px 30px 25px;border-right:0} .rtlMode .post blockquote.style-1:before{left:auto;right:0} .rtlMode .post table th, .rtlMode .post table td{border-left-width:1px;border-right-width:0} .rtlMode .post table th:first-child{border-right-width:1px; border-radius:0 5px 0 0} .rtlMode .post table th:last-child{border-radius:5px 0 0} .rtlMode .post table td:first-child{border-right-width:1px} .rtlMode .post table tr:last-child td:first-child{border-radius:0 0 5px} .rtlMode .post table tr:last-child td:last-child{border-radius:0 0 0 5px} .rtlMode .post .tocInner li ol, .rtlMode .post .tocInner li ul, .rtlMode .tableOfContent li ol{padding-left:0;padding-right:26px} .rtlMode .post .tocInner li > *:before, .rtlMode .tableOfContent li > a:before{margin-right:0;margin-left:5px} @media screen and (max-width:480px){.rtlMode .post .scrollImage > *{margin:0 0 0 15px} .rtlMode .post .scrollImage > *:last-child{margin-left:0}}
/* Article Comments */
.comments iframe{width:100%} .commentsDisable{text-align:center} .blogComments{margin:40px 0 0} .blogComments .commentsTitle{display:flex;justify-content:space-between; margin:0 0 30px;padding-bottom:15px;border-bottom:1px solid var(--content-border)} .blogComments .commentsTitle .title{margin:0; flex-grow:1} .blogComments .commentsTitle .title:after{display:none} .commentsIcon{display:flex;flex-shrink:0; font-size:12px} .commentsIcon > *{display:flex;align-items:center} .commentsIcon svg{width:20px;height:20px} .commentsIcon .commentClose{margin-left:12px;padding-left:0;border-left:0px solid var(--content-border)} .commentsIcon .commentSort:before{content:attr(data-text);opacity:.7;margin:0 8px} .commentAll:checked ~ .commentsTitle .commentsIcon .commentSort:before{content:attr(data-new)} .commentAll:checked ~ .commentsTitle .commentsIcon .commentSort svg.line{stroke:var(--link-color)} .commentAll:checked ~ .commentsInner .commentsContent > ol{flex-direction:column-reverse} .commentsButton.button.outline{font-size:14px} .commentsButton.button.outline, .commentsAdd .commentsReply{margin:0;padding:20px; display:block;text-align:center} .commentsButton.button.outline > *:before{content:attr(data-text)} .commentShow:checked ~ .commentsButton, .commentsButton ~ .comments, #comment:target .commentsButton{display:none} .commentShow:checked ~ .commentsButton ~ .comments, #comment:target .comments{display:block} #comment:target .commentShow:checked ~ .commentsButton ~ .comments{display:none} #comment:target .commentShow:checked ~ .commentsButton{display:block}
.commentsContent ol, .commentsContent ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column} .commentsContent ol > li{position:relative; margin:0 0 20px 21px; background-color:var(--content-bg);border:1px solid var(--content-border);border-radius:8px; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)} .commentsContent ol > li > .commentAvatar{position:absolute;top:10px;left:-21px} .commentsContent ol > li > .commentInner > .commentBlock{padding:20px 15px 0 35px} .commentsContent ol > li > .commentInner > .commentBlock > .commentContent{margin-bottom:12px} .commentsContent ul{padding:15px 15px 0 18px} .commentsContent ul > li{display:flex} .commentsContent ul > li:not(:last-child){margin-bottom:20px;padding-bottom:20px;border-bottom:1px dashed rgba(0,0,0,0.2)} .commentsContent ul > li > .commentAvatar{width:32px;height:32px; flex-shrink:0} .commentsContent ul > li > .commentInner{flex-grow:1;padding-left:12px;padding-top:5px; width:calc(100% - 32px)} .commentsContent ul > li > .commentInner .commentHeader{display:flex} .commentAvatar{width:42px;height:42px; border-radius:18px;background-color:#f6f6f6; overflow:hidden} .commentAvatar div{width:100%;height:100%;background-size:cover;background-position:center;background-repeat:no-repeat} .commentHeader{font-size:13px} .commentHeader .name{display:inline-flex;align-items:flex-start; font-family:var(--font-head);font-weight:600} .commentHeader .name span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap; max-width:180px} .commentHeader .name svg{width:20px;height:16px;fill:#519bd6;margin-left:3px} .commentHeader .datetime{margin-left:3px;font-size:12px;opacity:.8; overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .commentHeader .datetime:before{content:'\2022';margin-right:5px} .commentContent{margin-top:10px; line-height:1.6em} .commentContent.hasDeleted{border:1px dashed rgba(0,0,0,.1);padding:15px;font-size:.8rem;font-style:italic;opacity:.8; border-radius:3px} .commentContent i[rel="pre"], .commentContent i[rel="quote"]{margin:1.2em auto; font-style:normal} .commentContent i[rel="quote"]{display:block;font-style:italic;font-size:.85rem;padding:12px 20px} .commentContent i[rel="image"]{font-size:.8rem; display:block;position:relative; min-height:55px; overflow:hidden;text-overflow:ellipsis;white-space:nowrap; opacity:.8} .commentContent i[rel="image"]:before{content:'This feature isn\0027t available!';border:1px dashed rgba(0,0,0,.1);border-radius:3px;padding:15px;font-size:.8rem;white-space:nowrap;display:flex;align-items:center;position:absolute;top:0;left:0;bottom:0;right:0;background-color:var(--content-bg)} .commentReplies, .commentActions, .commentReply{margin-top:10px} .commentReplies ~ .commentActions{display:none} .commentActions{padding-bottom:15px} .commentReply{margin-left:62px} .commentReplies{padding:15px 0; background-color:var(--transparent-bg); border-radius:0 0 8px 8px} .commentReplies .threadShow:checked ~ .commentThread .threadToggle svg{transform:rotate(180deg)} .commentReplies .threadShow:checked ~ .commentThread .threadChrome, .commentReplies .threadShow:checked ~ .commentReply{display:none} .commentThread .threadToggle, .commentActions a{margin-left:35px} .commentThread .threadToggle, .commentActions a, .commentReply a{font-size:13px;opacity:.8;display:inline-flex;align-items:center; color:inherit} .commentThread .threadToggle:after, .commentActions a:after, .commentReply a:after{content:attr(data-text)} .commentThread .threadToggle svg, .commentActions svg, .commentReply svg{width:18px;height:16px;margin-right:8px} .comment-replybox-single{padding:15px 15px 15px 35px}
/* Article Comments RTL */
.rtlMode .commentsIcon .commentClose{margin-left:0;margin-right:12px} .rtlMode .commentsContent ol > li{margin:0 21px 20px 0} .rtlMode .commentsContent ol > li > .commentAvatar{left:auto;right:-21px} .rtlMode .commentsContent ol > li > .commentInner > .commentBlock{padding:20px 35px 0 15px} .rtlMode .commentHeader .name svg, .rtlMode .commentHeader .datetime{margin-left:0;margin-right:3px} .rtlMode .commentHeader .datetime:before{margin-left:5px;margin-right:0} .rtlMode .commentThread .threadToggle, .rtlMode .commentActions a{margin-left:0;margin-right:35px} .rtlMode .commentThread .threadToggle svg, .rtlMode .commentActions svg, .rtlMode .commentReply svg{margin-right:0;margin-left:8px} .rtlMode .commentReply{margin-left:0;margin-right:62px} .rtlMode .commentsContent ul{padding:15px 18px 0 15px} .rtlMode .commentsContent ul > li > .commentInner{padding-left:0;padding-right:12px} .rtlMode .comment-replybox-single{padding:15px 35px 15px 15px}@media screen and (max-width:480px){.commentsContent ol > li > .commentInner > .commentBlock > .commentHeader .datetime{margin-right:0}}
/* Widget FeaturedPost */
.itemTitle{line-height:normal; -webkit-transition:var(--transition-1);transition:var(--transition-1)} .itemInfo{position:relative} .itemFeatured .item{display:flex;align-items:center; position:relative} .itemFeatured .itemThumbnail{flex:1 0 310px; overflow:hidden;border-radius:2px; margin-bottom:0} .itemFeatured .itemContent{flex-grow:1; width:calc(100% - 310px);padding-left:25px} .itemFeatured .itemTitle{font-size:17px} .itemFeatured .itemEntry{font-size:95%} .itemFeatured .itemEntry.productPrice{font-size:14px}
/* Widget PopularPosts */
.itemPopulars{counter-reset:popular-count} .itemPopulars .itemThumbnail > *{padding-top:45%} .itemPopulars .itemTitle{font-size:.9rem} .itemPopular:not(:last-child){margin-bottom:25px} .itemPopular .itemInner{display:flex} .itemPopular .itemInner:before{flex-shrink:0; content:'0' counter(popular-count);counter-increment:popular-count; width:32px;font-weight:700;font-size:16px;font-family:var(--font-head); opacity:.3} .itemPopular .itemFlex{width:calc(100% - 32px)} .itemPopular .postHeader, .itemPopular .postLabel.sponsored{margin-left:32px;margin-bottom:5px} .itemPopular .itemInfo, .itemPopular .itemEntry{margin-top:10px}
/* Widget ContactForm */
.ContactForm{max-width:500px;font-size:92%;margin-bottom:40px} .ContactForm .inputArea{position:relative} .ContactForm label{display:inline-block;margin-bottom:8px} .ContactForm label span{color:var(--highlight-red);font-size:small}
/* Widget Label */
.Label{font-size:90%} .Label ul, .Label .cloud, .Label .cloud .labelAll{display:flex;flex-wrap:wrap; list-style:none;margin:0;padding:0} .Label li{width:calc(50% - 10px); margin-bottom:15px} .Label li:nth-child(2n+1){margin-right:20px} .Label li a .labelTitle:hover{text-decoration:underline} .Label li > *{display:flex;align-items:center; color:inherit} .Label li > * svg{flex-shrink:0; width:18px;height:18px; margin-left:5px} .Label li > a:hover svg{fill:var(--link-color)} .Label li > a:hover svg.line{fill:none;stroke:var(--link-color)} .Label li:nth-child(2n+1).labelShow{margin:0} .Label .labelShow .hidden{display:none} .Label .labelShow{width:100%;margin:0} .Label .labelShow ul, .Label .cloud .labelAll{width:100%;margin:0;padding:0; max-height:0; overflow:hidden; transition:var(--transition-4)} .Label .labelShow label{display:inline-flex;align-items:baseline; margin-top:10px;line-height:20px; color:var(--link-color)} .Label .labelShow label:before{content:attr(data-show)} .Label .labelShow label:after, .Label .labelCount:before{content:attr(data-text)} .Label .labelInput:checked ~ .labelAll ul, .Label .cloud .labelInput:checked ~ .labelAll{max-height:1000vh} .Label .labelInput:checked ~ label:before{content:attr(data-hide)} .Label .labelInput:checked ~ label:after{visibility:hidden} .Label .labelTitle{margin-right:auto; overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .Label .labelCount, .Label .labelShow label:after{flex-shrink:0; font-size:11px; margin-left:8px; opacity:.7} .Label .cloud > *, .Label .cloud .labelAll > *{display:block;max-width:100%} .Label .cloud .labelName{display:flex;justify-content:space-between; margin:0 8px 8px 0;padding:9px 13px; border:1px solid rgb(230,230,230);border-radius:2px; color:inherit;line-height:20px} .Label .cloud .labelSize > *:hover, .Label .cloud div.labelName, .darkMode .Label .cloud .labelSize > *:hover, .darkMode .Label .cloud div.labelName{border-color:var(--link-bg)} .Label .cloud .labelSize > *:hover .labelCount, .Label .cloud div.labelName .labelCount{color:var(--link-bg); opacity:1}
/* Footer */
footer{margin-left:var(--nav-width); padding:0 25px; -webkit-transition:var(--transition-1);transition:var(--transition-1); font-size:90%} footer .creditInner{display:flex;align-items:baseline;justify-content:space-between; padding:20px 0} footer .creditInner p{margin:0;padding-right:20px;overflow:hidden;white-space:nowrap} footer .creditInner .creator{opacity:0} footer .toTop{display:flex;align-items:center; white-space:nowrap} footer .toTop:before{content:'To top'; opacity:.7} footer .toTop svg{width:20px;height:20px;margin-left:5px}
/* Error Page */
.error404{display:flex;align-items:center;justify-content:center;height:100vh;text-align:center;padding:0} .errorPage{width:calc(100% - 40px);max-width:500px;margin:auto} .errorPage h3{font-size:1.414rem;font-family:var(--font-body)} .errorPage h3 span{display:block;font-size:140px;line-height:.8;margin-bottom:-1rem;color:#ebebf0} .errorPage p{margin:30px 5%;line-height:1.6em;font-family:var(--font-body)} .errorPage .button{margin:0;padding-left:2em;padding-right:2em;font-size:14px}
/* Button */
.button{display:inline-flex;align-items:center; margin:12px 12px 12px 0;padding:10px 15px;outline:0;border:0; border-radius:2px;line-height:20px; color:#fefefe; background-color:var(--link-bg); font-size:13px;font-family:var(--font-body); white-space:nowrap;overflow:hidden;max-width:100%} .button.outline{color:inherit; background-color:transparent; border:1px solid var(--body-altColor)} .button.outline:hover{border-color:var(--link-bg)} .button.whatsapp{background-color:#25D366} .buttonInfo{display:flex;flex-wrap:wrap;justify-content:center; margin:12px 0 0} .buttonInfo > *{margin:0 12px 12px 0} .buttonInfo > *:last-child{margin-right:0} @media screen and (max-width:480px){.buttonInfo > *{flex-grow:1;justify-content:center} .buttonInfo > *:last-child{flex:0 0 auto}}
/* Button Download */
.downloadInfo{max-width:500px;background-color:#fefefe; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%); border:1px solid var(--content-border);border-radius:5px; padding:15px;margin-top:20px;margin-bottom:20px; display:flex;align-items:center; line-height:1.8em;font-size:14px} .downloadInfo a, .downloadInfo .fileType{flex-shrink:0;display:flex;align-items:center;justify-content:center; width:50px;height:50px; padding:10px; background:#f1f1f0;border-radius:10px} .downloadInfo a{background-color:var(--link-bg);color:#fefefe; margin:0;padding:10px 12px;border-radius:3px; width:auto;height:auto; line-height:20px;font-size:13px} .downloadInfo a:after{content:attr(aria-label)} .downloadInfo .fileType:before{content:attr(data-text)} .downloadInfo .fileName{flex-grow:1; width:calc(100% - 150px);padding:0 15px} .downloadInfo .fileName > *{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis} .downloadInfo .fileSize{line-height:1.4em;font-size:12px;opacity:.8} .darkMode .downloadInfo{background-color:var(--dark-bgSec); border:0} .darkMode .downloadInfo .fileType{background-color:var(--dark-bg)} @media screen and (max-width:480px){.downloadInfo{padding:12px} .downloadInfo a{width:50px;height:50px;border-radius:10px} .downloadInfo a:after{display:none} .downloadInfo a .icon{margin:0}}
/* CSS icon background */
.icon{flex-shrink:0; display:inline-block;margin-right:12px; width:18px;height:18px; background-size:cover;background-repeat:no-repeat;background-position:center} .icon.download, .darkMode .button.outline .icon.download{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fefefe' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><path d='M3 17v3a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-3'/><polyline points='8 12 12 16 16 12'/><line x1='12' x2='12' y1='2' y2='16'/></svg>")} .icon.demo{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fefefe' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' viewBox='0 0 24 24'><path d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/><polyline points='15 3 21 3 21 9'/><line x1='10' x2='21' y1='14' y2='3'/></svg>")} .icon.cart{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fefefe' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M7.42226 19.8203C7.84426 19.8203 8.18726 20.1633 8.18726 20.5853C8.18726 21.0073 7.84426 21.3493 7.42226 21.3493C7.00026 21.3493 6.65826 21.0073 6.65826 20.5853C6.65826 20.1633 7.00026 19.8203 7.42226 19.8203Z'/><path d='M18.6747 19.8203C19.0967 19.8203 19.4397 20.1633 19.4397 20.5853C19.4397 21.0073 19.0967 21.3493 18.6747 21.3493C18.2527 21.3493 17.9097 21.0073 17.9097 20.5853C17.9097 20.1633 18.2527 19.8203 18.6747 19.8203Z'/><path d='M2.74988 3.25L4.82988 3.61L5.79288 15.083C5.87088 16.018 6.65188 16.736 7.58988 16.736H18.5019C19.3979 16.736 20.1579 16.078 20.2869 15.19L21.2359 8.632C21.3529 7.823 20.7259 7.099 19.9089 7.099H5.16388'/></svg>")} .icon.whatsapp{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='%23fefefe'><g><path d='M16,2A13,13,0,0,0,8,25.23V29a1,1,0,0,0,.51.87A1,1,0,0,0,9,30a1,1,0,0,0,.51-.14l3.65-2.19A12.64,12.64,0,0,0,16,28,13,13,0,0,0,16,2Zm0,24a11.13,11.13,0,0,1-2.76-.36,1,1,0,0,0-.76.11L10,27.23v-2.5a1,1,0,0,0-.42-.81A11,11,0,1,1,16,26Z'/><path d='M19.86,15.18a1.9,1.9,0,0,0-2.64,0l-.09.09-1.4-1.4.09-.09a1.86,1.86,0,0,0,0-2.64L14.23,9.55a1.9,1.9,0,0,0-2.64,0l-.8.79a3.56,3.56,0,0,0-.5,3.76,10.64,10.64,0,0,0,2.62,4A8.7,8.7,0,0,0,18.56,21a2.92,2.92,0,0,0,2.1-.79l.79-.8a1.86,1.86,0,0,0,0-2.64Zm-.62,3.61c-.57.58-2.78,0-4.92-2.11a8.88,8.88,0,0,1-2.13-3.21c-.26-.79-.25-1.44,0-1.71l.7-.7,1.4,1.4-.7.7a1,1,0,0,0,0,1.41l2.82,2.82a1,1,0,0,0,1.41,0l.7-.7,1.4,1.4Z'/></g></svg>")} .button.outline .icon.download{background-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2348525c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'><path d='M3 17v3a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-3'/><polyline points='8 12 12 16 16 12'/><line x1='12' x2='12' y1='2' y2='16'/></svg>")}
/* Accordion */
.accordion{position:relative; list-style:none;margin:30px 0 0;padding:0; font-size:14px;line-height:1.7em} .accordion li{width:100%;padding:18px 0;border-bottom:1px solid var(--content-border)} .accordion .content{margin:0;padding-left:32px; position:relative; font-family:var(--font-body); overflow:hidden;max-height:0; -webkit-transition:var(--transition-2);transition:var(--transition-2); opacity:.8} .accordion p:first-child{margin-top:0} .accordion p:last-child{margin-bottom:0} .accorTitle{display:flex;align-items:center; font-weight:900;font-family:var(--font-body); color:var(--head-color);padding:0 5px} .accorTitle span{flex-grow:1} .accorIcon{flex-shrink:0; display:flex;align-items:center;justify-content:center; width:12px;height:12px;margin-right:15px;position:relative} .accorIcon:before, .accorIcon:after{content:''; display:block;width:100%;height:2px; border-radius:2px; background-color:var(--head-color)} .accorIcon:after{position:absolute; transform:rotate(90deg)} .accorMenu:checked ~ .accorTitle span{color:var(--link-color)} .accorMenu:checked ~ .accorTitle .accorIcon:before, .accorMenu:checked ~ .accorTitle .accorIcon:after{background-color:var(--link-color)} .accorMenu:checked ~ .accorTitle .accorIcon:after{visibility:hidden;opacity:0} .accorMenu:checked ~ .content{max-height:100vh;padding-top:15px;padding-bottom:8px} .darkMode .accorTitle{color:var(--dark-text)} .darkMode .accorIcon:before, .darkMode .accorIcon:after{background-color:var(--dark-text)}
/* Slider */
.slider, .sliderSection{position:relative} .sliderViewport{position:relative;height:100%;display:flex;overflow-y:hidden;overflow-x:scroll; scroll-behavior:smooth;scroll-snap-type:x mandatory;list-style:none;margin:0;padding:0; -ms-overflow-style: none;} .sliderViewport::-webkit-scrollbar{width:0} .sliderViewport::-webkit-scrollbar-track{background:transparent} .sliderViewport::-webkit-scrollbar-thumb{background:transparent;border:none} .sliderDiv{position:relative;flex:0 0 100%;width:100%;background-color:transparent; outline:0;border:0} .sliderDiv:nth-child(even){background-color:inherit} .sliderSnapper{position:absolute;top:0;left:0;width:100%;height:100%;scroll-snap-align:center;z-index:-1} .sliderImg{background-repeat:no-repeat;background-size:cover;background-position:center;display:block;padding-top:40%;border-radius:3px} @media (hover:hover){.sliderSnapper{animation-name:tonext, snap;animation-timing-function:ease;animation-duration:4s;animation-iteration-count:infinite} .rtlMode .sliderSnapper{animation-name:tonext-rev, snap} .sliderDiv:last-child .sliderSnapper{animation-name:tostart, snap} .rtlMode .sliderDiv:last-child .sliderSnapper{animation-name:tostart-rev, snap}} @media (prefers-reduced-motion:reduce){.sliderSnapper, .rtlMode .sliderSnapper{animation-name:none}} .slider:hover .sliderSnapper, .rtlMode .slider:hover .sliderSnapper, .slider:focus-within .sliderSnapper, .rtlMode .slider:focus-within .sliderSnapper{animation-name:none} @media screen and (max-width:896px){.sliderSection .widget{margin-top:30px} .sliderViewport{width:100%;padding:0 20px 10px} .sliderViewport:after{content:'';display:block;position:relative;padding:10px} .sliderDiv{flex:0 0 90%;width:90%;margin-right:15px; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)} .rtlMode .sliderDiv{margin-right:0;margin-left:15px} .sliderDiv:last-child{margin-right:0} .rtlMode .sliderDiv:last-child{margin-left:0} .slider{width:calc(100% + 50px);left:-25px;right:-25px} .sliderSnapper{animation-name:none}} @media screen and (max-width:640px){.slider{width:calc(100% + 40px);left:-20px;right:-20px}}
/* Keyframes Animation */
@-webkit-keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:0}50%{opacity:1;bottom:0}80%{opacity:1;bottom:0}100%{opacity:0;bottom:-70px;visibility:hidden}} @keyframes slidein{0%{opacity:0}20%{opacity:1;bottom:0}50%{opacity:1;bottom:0}80%{opacity:1;bottom:0}100%{opacity:0;bottom:-70px;visibility:hidden}} @-webkit-keyframes nudge{0%{transform:translateX(0)}30%{transform:translateX(-5px)}50%{transform:translateX(5px)}70%{transform:translateX(-2px)}100%{transform:translateX(0)}} @keyframes nudge{0%{transform:translateX(0)}30%{transform:translateX(-5px)}50%{transform:translateX(5px)}70%{transform:translateX(-2px)}100%{transform:translateX(0)}} @keyframes tonext{ 75%{left:0} 95%{left:100%} 98%{left:100%} 99%{left:0}} @keyframes tostart{ 75%{left:0} 95%{left:-300%} 98%{left:-300%} 99%{left:0}} @keyframes tonext-rev{ 75%{right:0} 95%{right:100%} 98%{right:100%} 99%{right:0}} @keyframes tostart-rev{ 75%{right:0} 95%{right:-300%} 98%{right:-300%} 99%{right:0}} @keyframes snap{ 96%{scroll-snap-align:center} 97%{scroll-snap-align:none} 99%{scroll-snap-align:none} 100%{scroll-snap-align:center}}
/* Sticky Ad */
.stickAd{position:fixed;bottom:0;left:0;right:0;width:100%;min-height:70px;max-height:200px;padding:5px 5px;box-shadow:0 -6px 18px 0 rgba(9,32,76,.1); -webkit-transition:var(--transition-1);transition:var(--transition-1);display:flex;align-items:center;justify-content:center;background-color:#fefefe;z-index:50;border-top:1px solid var(--content-border)} .stickAdclose{width:40px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:12px 0 0;border:1px solid var(--content-border);border-bottom:0;border-right:0;position:absolute;right:0;top:-30px;background-color:inherit} .stickAdclose svg{width:18px;height:18px} .stickAdcontent{flex-grow:1;overflow:hidden;display:block;position:relative} .stickAdin:checked ~ .stickAd{padding:0;min-height:0} .stickAdin:checked ~ .stickAd .stickAdcontent{display:none} .darkMode .stickAd{background-color:var(--dark-bgAlt)} .darkMode .stickAd, .darkMode .stickAdclose{border-color:rgba(255,255,255,.1)}
/* Responsive */
@media screen and (min-width:768px){::-webkit-scrollbar{-webkit-appearance:none;width:4px;height:5px}::-webkit-scrollbar-track{background-color:transparent}::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.15);border-radius:10px}::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.45)}::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.45)}}
@media screen and (min-width:1600px){.blogContent .mainbar{max-width:896px}}
@media screen and (max-width:1100px){.blogContent .sidebar{flex:0 0 300px;width:300px} .itemFeatured .item{flex-wrap:nowrap} .itemFeatured .itemThumbnail{flex:0 0 calc(50% - 10px); margin-bottom:0} .itemFeatured .itemContent{padding-left:20px} .itemFeatured .itemEntry, .shareIcon a:after{display:none} .blogPosts .hentry{width:calc(50% - 20px)}}
@media screen and (max-width:896px){.itemFeatured .item{flex-wrap:nowrap} .itemFeatured .itemThumbnail{flex:1 0 310px; margin-bottom:0} .itemFeatured .itemContent{padding-left:25px} .itemFeatured .itemEntry{display:-webkit-box} .blogPosts .hentry{width:calc(33.333% - 20px)} .shareIcon a:after{display:block} .blogContent{display:block} .blogContent .mainbar, .blogContent .sidebar{width:100%;padding:0; margin-right:auto;margin-left:auto} .blogContent .sidebar{margin-top:50px} .blogPosts div.hentry{width:calc(100% - 20px)} .onIndex .blogContent .mainbar{max-width:none} .onItem .postTitle{font-size:26px} footer{padding-bottom:50px;margin-left:0}}
@media screen and (max-width:640px){.Header h1, .Header h2{font-size:16px} .headerLeft{padding-left:20px} .headerRight, .notifContent, .sectionInner{padding-left:20px;padding-right:20px} .blogPosts .hentry{width:calc(50% - 20px)} .itemFeatured .itemThumbnail{flex:1 0 calc(50% - 10px)} .itemFeatured .itemContent{width:calc(50% + 10px)} .itemFeatured .itemTitle, .itemPopulars .itemTitle{font-size:16px} .shareIcon a:after{display:none}}
@media screen and (max-width:480px){.blogContent .widget .title, .tableOfHeader{font-size:14px} .blogContent .widget .title.search, .breadcrumbs, .commentContent{font-size:13px} .blogPosts{width:calc(100% + 15px);left:-7.5px;right:-7.5px} .blogPosts .hentry{width:calc(50% - 15px); margin-left:7.5px;margin-right:7.5px} .blogPosts div.hentry{width:calc(100% - 15px)} .postTitle, .itemFeatured .itemTitle, .itemPopulars .itemTitle{font-size:14px} .postEntry.snippet, .postHeader, .postInfo, .postTimes, .postLabel.sponsored, .blogPager, .postNav, .itemFeatured .itemEntry, footer, .commentHeader{font-size:12px} .postEntry .separator, .postEntry .separator a{margin-left:auto!important;margin-right:auto!important} .onItem .headerIcon label.navMenu, .onItem #header-widget{display:none} .onItem .headerIcon a.navMenu{display:flex; margin-left:0;left:-5px} .onItem .postTitle{font-size:var(--post-titleSizeMobile)} .onItem .postEntry{font-size:var(--post-fontSizeMobile)} .itemFeatured{padding-bottom:70px} .itemFeatured .item{display:block} .itemFeatured .itemContent{position:absolute;left:0;right:0;bottom:-70px; width:calc(100% - 30px);margin:auto;padding:12.5px;border-radius:8px;box-shadow:0 10px 15px 0 rgb(30 30 30 / 7%); background-color:var(--content-bg)} .itemFeatured .itemTitle a, .itemPopulars .itemTitle a{-webkit-line-clamp:2} footer .toTop:before{content:'Top'}}
/* RTL Mode */
.rtlMode .headerLeft{padding-left:0;padding-right:25px} .rtlMode .headerLeft .headerIcon, .rtlMode .htmlMenu .link svg, .rtlMode .accorIcon{margin-right:0;margin-left:15px} .rtlMode .headerRight .headerIcon{margin-left:0;margin-right:auto} .rtlMode .headerSearch button{left:auto;right:15px} .rtlMode .headerSearch button.close{left:12px;right:auto} .rtlMode .headerIcon > *:not(:first-child){margin-left:0;margin-right:12px} .rtlMode .headerIcon .closeProfile{margin:0} .rtlMode .headerIcon .navDark i:before{left:auto;right:10px} .rtlMode.darkMode .headerIcon .navDark i:before{left:auto;right:3px} .rtlMode .headerIcon .navDark:before{right:auto;left:0} .rtlMode .headerIcon .navDark:hover:before{right:auto;left:26px} .rtlMode .headerIcon .headerProfile{margin:0;left:0;right:auto} .rtlMode .Profile .profileHeader svg, .rtlMode .blogPager .newerLink svg, .rtlMode .blogPager .olderLink svg, .rtlMode .htmlMenu .close svg, .rtlMode .tableOfHeader svg{transform:rotate(180deg)} .rtlMode .mainInner, .rtlMode footer{margin-left:0;margin-right:var(--nav-width)} .rtlMode .mainMenu{left:auto;right:0; border-right:0;border-left:var(--nav-border) solid var(--content-border)} .rtlMode .htmlMenu .link svg.down{margin-right:auto;margin-left:0} .rtlMode .htmlMenu .link:before, .rtlmode .htmlMenu > li li a:before{left:auto;right:0} .rtlMode .htmlMenu > li li a{padding:10px 60px 10px 25px} .rtlMode #LinkList002{padding:20px 25px 30px 20px} .rtlMode #LinkList002 li:first-child{margin:0 0 0 5px} .rtlMode .navInput:checked ~ .mainWrapper .mainInner, .rtlMode .navInput:checked ~ .mainWrapper footer{margin-left:0;margin-right:68px} .rtlMode .blogContent .sidebar{padding-left:0;padding-right:30px} .rtlMode .postLabel.sponsored svg{margin-right:0;margin-left:5px} .rtlMode .postComment svg, .rtlMode footer .toTop svg, .rtlMode .Label li > * svg, .rtlMode .post .extLink:after{margin-right:5px;margin-left:0} .rtlMode .postTimestamp, .rtlMode .postMore{padding-left:10px;padding-right:0} .rtlMode .blogPager .newerLink svg, .rtlMode .blogPager .jsLoad svg{margin-left:8px;margin-right:0} .rtlMode .blogPager .olderLink svg, .rtlMode .Label .labelCount, .rtlMode .Label .labelShow label:after, .rtlMode .breadcrumbs > *:not(:last-child):after{margin-left:0;margin-right:8px} .rtlMode .itemFeatured .itemContent, .rtlMode.listMode .blogPosts .postContent{padding-right:25px;padding-left:0} .rtlMode .itemPopular .postHeader, .rtlMode .itemPopular .postLabel.sponsored{margin-left:0;margin-right:32px} .rtlMode .Label .cloud .labelName, .rtlMode .post .proMarket > a{margin:0 0 8px 8px} .rtlMode .Label li:nth-child(2n+1){margin-right:0;margin-left:20px} .rtlMode .Label li:nth-child(2n+1).labelShow, .rtlMode .postComments svg{margin:0} .rtlMode .Label .labelTitle{margin-right:0;margin-left:auto} .rtlMode footer .creditInner p{padding-right:0;padding-left:20px} .rtlMode footer .creditInner .creator{display:none} .rtlMode .post .postNav > *:not(:last-child), .rtlMode .post .tabsHead > *:not(:last-child), .rtlMode .breadcrumbs > *, .rtlMode .postComments > *:not(:last-child){margin-right:0;margin-left:8px} .rtlMode .post .proInfoL{padding-right:0;padding-left:20px} .rtlMode .post .proMarket > a:last-of-type{margin-left:0} .rtlMode .postAuthor, .rtlMode .postTimes{padding-right:0;padding-left:15px} .rtlMode .postAuthorImage, .rtlMode .postAuthors .authorImage{margin-right:0;margin-left:12px} .rtlMode .postTimes svg{margin-right:0;margin-left:6px} .rtlMode .accordion .content{padding-left:0;padding-right:32px} .rtlMode .icon{margin-right:0;margin-left:12px} .rtlMode .buttonInfo > *{margin:0 0 12px 12px} .rtlMode .buttonInfo > *:last-child{margin-left:0}
@media screen and (max-width:896px){.rtlMode .headerLeft{padding-right:20px} .rtlMode .htmlMenu > li li a{padding:10px 55px 10px 20px} .rtlMode #LinkList002{padding-left:20px;padding-right:20px;margin-left:auto;margin-right:-100%; border-radius:0 0 0 15px} .rtlMode .htmlMenu .close{margin-left:auto;margin-right:-100%; border-radius:15px 0 0 0} .rtlMode .mainMenu{border-left:0; margin-left:auto;margin-right:-100%} .rtlMode .mainMenu .section{border-radius:15px 0 0 15px} .rtlMode .navInput:checked ~ .mainWrapper .mainMenu, .rtlMode .navInput:checked ~ .mainWrapper .htmlMenu .close, .rtlMode .navInput:checked ~ .mainWrapper .mainMenu #LinkList002{margin-left:auto;margin-right:0} .rtlMode .navInput:checked ~ .mainWrapper .mainInner, .rtlMode .mainInner, .rtlMode .navInput:checked ~ .mainWrapper footer, .rtlMode footer{margin-right:0} .rtlMode .blogContent .sidebar{padding:0}} @media screen and (max-width:640px){.rtlMode .headerLeft{padding-left:20px} .rtlMode.listMode .blogPosts .postContent{padding-left:25px;padding-right:0}} @media screen and (max-width:480px){.rtlMode.onItem .headerIcon a.navMenu{left:0;right:-5px;margin-right:0} .rtlMode.onItem .headerIcon a.navMenu svg{transform: rotate(180deg)} .rtlMode .headerIcon .headerProfile{margin:0 auto auto;left:0;right:0} .rtlMode .itemFeatured .itemContent{padding:12.5px} .rtlMode.listMode .blogPosts .postContent{padding-left:20px}}
.Style-2{transition:var(--transition-1)}
.Style-2, .Style-2 header, .Style-2 .mainMenu, .Style-2 .htmlMenu .close, .Style-2 #LinkList002{border:0}
.Style-2 .htmlMenu .close, .Style-2 #LinkList002{width:calc(var(--nav-width))}
.Style-2 .mainInner:before{content:''; display:block; position:absolute;top:0;left:0;right:0;bottom:0; background-color:#fefefe;z-index:-1; border-radius:15px 15px 15px 15px; transition:var(--transition-1); box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%)}
.Style-2 .htmlMenu .link, .Style-2 .htmlMenu > li li a{width:calc(100% - 20px);border-radius:0 20px 20px 0; padding-right:0}
.Style-2 .navInput:checked ~ .mainWrapper .htmlMenu .link, .Style-2 .navInput:checked ~ .mainWrapper .htmlMenu > li li a{}
.Style-2.darkMode .mainInner:before, .Style-2.darkMode .postRelated h3, .Style-2.darkMode .postRelated h4, .Style-2.darkMode .postRelated b, .Style-2.darkMode .post .tabsHead > *:after, .Style-2.darkMode .tableOfContainer, .Style-2.darkMode .tableOfHeader{background-color:var(--dark-bgSec)}
.Style-2.darkMode .downloadInfo, .Style-2.darkMode .postAuthors{background-color:var(--dark-bgAlt)}
@media screen and (max-width:896px){
.Style-2 .mainInner:before, .darkMode.Style-2 .mainInner:before{background-color:transparent;box-shadow:none}
.Style-2 .htmlMenu .close, .Style-2 #LinkList002{background-color:var(--nav-bg)}
.Style-2.darkMode .postRelated h3, .Style-2.darkMode .postRelated h4, .Style-2.darkMode .postRelated b, .Style-2.darkMode .post .tabsHead > *:after{background-color:var(--dark-bg)}
.Style-2.darkMode .downloadInfo, .Style-2.darkMode .postAuthors{background-color:var(--dark-bgSec)}
}
/* Hide Menu */
@media screen and (min-width:897px){
.mainWrapper .mainInner, .mainWrapper footer{margin-left:68px}
.mainMenu{width:68px}
.mainMenu #LinkList002, .htmlMenu .close{width:calc(68px - var(--nav-border))}
.mainMenu #LinkList002 ul, .htmlMenu .link .name, .htmlMenu .link svg.down{display:none}
.mainMenu #LinkList002 label{display:flex; opacity:1;visibility:visible}
.htmlMenu a.link:hover{background-color:transparent}
.htmlMenu .dropMenu:checked ~ ul li{max-height:0; opacity:0;visibility:hidden}
.htmlMenu > li.break:after{width:calc(100% - 44px);margin-left:25px}
.navInput:checked ~ .mainWrapper .mainInner, .navInput:checked ~ .mainWrapper footer{margin-left:var(--nav-width)}
.navInput:checked ~ .mainWrapper .mainMenu{width:var(--nav-width)}
.navInput:checked ~ .mainWrapper .htmlMenu .close,
.navInput:checked ~ .mainWrapper .mainMenu #LinkList002{width:calc(var(--nav-width) - var(--nav-border))}
.navInput:checked ~ .mainWrapper .mainMenu #LinkList002 ul{display:flex}
.navInput:checked ~ .mainWrapper .mainMenu #LinkList002 label{display:none; opacity:0;visibility:hidden}
.navInput:checked ~ .mainWrapper .htmlMenu a.link:hover{background-color:var(--transparent-bg)}
.navInput:checked ~ .mainWrapper .htmlMenu .link .name,
.navInput:checked ~ .mainWrapper .htmlMenu .link svg.down{display:block}
.navInput:checked ~ .mainWrapper .htmlMenu .dropMenu:checked ~ ul li{max-height:40px; opacity:1;visibility:visible}
.navInput:checked ~ .mainWrapper .htmlMenu > li.break:after{width:calc(100% - 44px);margin-left:25px}
.darkMode .mainWrapper .htmlMenu a.link:hover{background-color:transparent}
.darkMode .navInput:checked ~ .mainWrapper .htmlMenu a.link:hover{background-color:rgba(255,255,255,.1)}
}
/*]]>*/</style>
<style>/*<![CDATA[*/
.headerIcon .headerProfile{display:block; position:absolute;top:-10px;right:0; margin:0; width:250px;max-height:400px; background-color:var(--content-bg); border:1px solid var(--content-border);border-radius:8px;box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%); -webkit-transition:var(--transition-1);transition:var(--transition-1); overflow:hidden;z-index:3;opacity:0;visibility:hidden; font-size:12px} .headerIcon .headerProfile ul{margin:0;padding:0;list-style:none} .headerIcon .headerProfile .socialLink{padding:15px 15px; border-top:1px solid var(--content-border)} .headerIcon .headerProfile .widget:not(:first-child){margin-top:15px} .headerIcon .closeProfile{display:block;position:fixed;margin:0}
.profInput:checked ~ .mainWrapper .headerIcon .headerProfile{opacity:1;visibility:visible; top:0} .profInput:checked ~ .mainWrapper .headerIcon .closeProfile{opacity:1;visibility:visible} .navInput:checked ~ .mainWrapper .headerIcon .navMenu .svg-1{opacity:0;visibility:hidden} .navInput:checked ~ .mainWrapper .headerIcon .navMenu .svg-2{opacity:1;visibility:visible} .darkMode .headerIcon label.navMenu:after, .darkMode .headerSearch input[type=text]{background-color:rgba(255,255,255,.1)} .darkMode .headerIcon .navDark i, .darkMode .headerIcon .navMenu .ham i, .darkMode .headerIcon .navMenu .ham span:before, .darkMode .headerIcon .navMenu .ham span:after{border-color:var(--dark-text)} .darkMode .headerIcon .navDark i:before{left:10px;background-color:var(--dark-text)}
/* Widget Profile */
.Profile .profileHeader{padding:12px 10px 10px; font-size:12px} .Profile .profileHeader svg{width:18px;height:18px} .Profile .profileHeader label{display:flex;align-items:center} .Profile .profileHeader label:after{content:attr(data-text);padding-left:8px;padding-right:8px;opacity:.7} .Profile .defaultAvatar{width:100%;height:100%; display:flex;align-items:center;justify-content:center} .Profile .profileImg{width:100%;height:100%;background-repeat:no-repeat;background-size:100%;background-position:center} .Profile .team{padding:10px 0; overflow-y:auto;max-height:280px} .Profile .team .profileLink{display:flex;align-items:center;padding:7px 15px} .Profile .team .profileLink:hover{background-color:var(--transparent-bg)} .Profile .team .profileImage{flex-shrink:0; width:36px;height:36px; border-radius:27px;background-color:var(--transparent-bg); overflow:hidden} .Profile .team .profileName{flex-grow:1;padding-left:12px;padding-right:12px; color:inherit; font-weight:600;font-family:var(--font-head); overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .Profile .team .profileName:after{content: 'Author' ; display:block; font-weight:400;font-size:11px;font-family:var(--font-body); opacity:.7} .Profile .team li:not(:first-child) .profileName:after{content: 'Contributor' }
.Profile .solo{padding:15px;text-align:center} .Profile .solo .profileImage{margin:0 auto 10px; width:60px;height:60px; border-radius:30px;background-color:var(--transparent-bg); overflow:hidden} .Profile .solo .profileLink{display:block;color:inherit; font-weight:600;font-size:13px;font-family:var(--font-head); overflow:hidden;text-overflow:ellipsis;white-space:nowrap} .Profile .solo .profileText{opacity:.7; line-height:1.6em} .Profile .solo .profileData{display:inline-flex;margin-top:10px; font-size:12px; color:var(--link-color)} .Profile .solo .profileData:after{content:attr(data-text); padding-left:8px} .Profile .solo .profileData svg{width:18px;height:18px;fill:var(--link-color)} .Profile .solo .profileData svg.line{fill:none;stroke:var(--link-color)}
@media screen and (max-width:480px){.headerIcon .headerProfile{position:fixed;left:0; margin:0 auto auto; width:calc(100vw - 40px); border:0;border-radius:15px} .profInput:checked ~ .mainWrapper .headerIcon .headerProfile{top:25px} .profInput:checked ~ .mainWrapper .headerIcon .closeProfile{background:rgba(0,0,0,.5); -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px)} .Profile .team .profileLink{padding:7px 35px} .Profile .solo{padding:35px 30px 15px}}
/* listMode */
.listMode .blogPosts .hentry{width:calc(100% - 20px); display:flex;align-items:center; padding-bottom:0;margin-bottom:25px} .listMode .blogPosts div.hentry{display:block} .listMode .blogPosts .postThumbnail{margin-bottom:0} .listMode .blogPosts .postContent{width:calc(100% - (33.333% - 12.5px)); padding-left:25px} .listMode .blogPosts .postTitle{font-size:18px} .listMode .blogPosts .postEntry.snippet{display:none} .listMode .blogPosts .postEntry.snippet.productPrice{display:block} .listMode .blogPosts .postInfo{position:relative} @media screen and (max-width:640px){.listMode .blogPosts .hentry{flex-direction:row-reverse; margin-bottom:30px} .listMode .blogPosts .postContent{padding-left:0;padding-right:25px}} @media screen and (max-width:480px){.listMode .blogPosts .hentry{width:calc(100% - 15px)} .listMode .blogPosts .postThumbnail{flex:0 0 95px} .listMode .blogPosts .postThumbnail > *{padding-top:100%} .listMode .blogPosts .postContent{width:calc(100% - 95px); padding-right:20px} .listMode .blogPosts .postTitle, .gridLayout.listMode .blogPosts .postTitle{font-size:14px} .listMode .blogPosts .postHeader{margin-bottom:5px} .listMode .blogPosts .postInfo{margin-top:15px}}
/* Dark Mode */
.darkMode{background-color:var(--dark-bg);color:var(--dark-text)} .darkMode a, .darkMode .free:after, .darkMode .new:after, .darkMode .postLabel > a:hover, .darkMode .postMore:hover{color:var(--dark-link)} .darkMode svg{fill:var(--dark-text)} .darkMode svg.line, .darkMode svg .line{fill:none;stroke:var(--dark-text)} .darkMode svg.c-1, .darkMode svg .c-1{fill:var(--dark-text)} .darkMode svg.c-2, .darkMode svg .c-2{fill:var(--dark-textAlt); opacity:.4} .darkMode h1, .darkMode h2, .darkMode h3, .darkMode h4, .darkMode h5, .darkMode h6, .darkMode header a, .darkMode footer{color:inherit} .darkMode header, .darkMode .mainMenu, .darkMode .htmlMenu .close, .darkMode #LinkList002{background-color:var(--dark-bg);color:inherit} .darkMode .headerIcon .headerProfile, .darkMode #mobile-menu, .darkMode .commentsContent ol > li, .darkMode .commentContent i[rel="image"]:before{background-color:var(--dark-bgSec)} .darkMode header, .darkMode .headerIcon .headerProfile, .darkMode .headerIcon .headerProfile .socialLink, .darkMode .blogContent .mainbar > *, .darkMode .mainMenu, .darkMode .htmlMenu > li.break:after, .darkMode .Label .cloud .labelName, .darkMode .postComments > *, .darkMode .postTimes, .darkMode .postRelated, .darkMode .postRelated h3, .darkMode .postRelated h4, .darkMode .postRelated b, .darkMode .post blockquote, .darkMode .post .commentContent i[rel="quote"], .darkMode .post table th, .darkMode .post table td, .darkMode .post .tocInner, .darkMode .post .spoiler, .darkMode .accordion li, .darkMode .postShare, .darkMode .shareIcon > *, .darkMode .sharePreview, .darkMode .blogComments .commentsTitle, .darkMode .commentsIcon .commentClose, .darkMode .commentsContent ul > li:not(:last-child), .darkMode .commentContent.hasDeleted, .darkMode .commentContent i[rel="image"]:before, .darkMode .commentContent i[rel="quote"], .darkMode .post .tabsHead, .darkMode .post .tabsHead > *, .darkMode .post .proPrice, .darkMode .post .proInfoL, .darkMode .post .proInfoR, .darkMode .post .proInfo.one, .darkMode .post .proMarket > a{border-color:rgba(255,255,255,.1)} .darkMode .Profile .team .profileLink:hover, .darkMode .htmlMenu a.link:hover, .darkMode .htmlMenu > li li a:hover, .darkMode .postThumbnail div, .darkMode .postThumbnail a, .darkMode .blogPager .noPost, .darkMode .blogPager .current, .darkMode .postNav .current{background-color:rgba(255,255,255,.1)} .darkMode #mobile-menu, .darkMode .commentsContent ol > li{border-color:transparent;color:inherit} .darkMode .postLabel > a, .darkMode .postTitle a, .darkMode .itemTitle a, .darkMode .postInfo a, .darkMode .blogPager a, .darkMode .postNav a, .darkMode .breadcrumbs a, .darkMode .button, .darkMode .shareIcon a, .darkMode .commentActions a, .darkMode .commentReply a, .darkMode .tableOfContent a, .darkMode .post .tocInner a{color:var(--dark-text)} .darkMode .commentReplies{background-color:rgba(0,0,0,.1)} .darkMode .postComments > a:before{background-color:var(--dark-bgAlt)} .darkMode .postComments svg, .darkMode .postComments > *:hover svg.line .fill{fill:var(--dark-text);opacity:.8} .darkMode .postComments svg.line{fill:none;stroke:var(--dark-text);opacity:.8} .darkMode .blogContent .widget input[type=text], .darkMode .blogContent .widget input[type=email], .darkMode .blogContent .widget textarea{border-color:rgba(255,255,255,.1); background-color:var(--dark-bgAlt)} .darkMode .blogContent .widget input[type=text]:focus, .darkMode .blogContent .widget input[type=email]:focus, .darkMode .blogContent .widget textarea:focus{border-color:var(--body-altColor)} @media screen and (max-width:896px){.darkMode .headerSearch input[type=text]{background-color:var(--dark-bgAlt)} .darkMode .mainMenu{background-color:transparent} .darkMode .mainMenu .section{background-color:var(--dark-bg)} .darkMode .navInput:checked ~ .mainWrapper .htmlMenu a.link:hover{background-color:rgba(255,255,255,.1)}}@media screen and (max-width:480px){.darkMode .itemFeatured .itemContent{background-color:var(--dark-bgSec)}}
/*]]>*/</style>
<style>/*<![CDATA[*/
/* Related Posts */
.relatedPosts{margin:40px 0 0;line-height:1.6em} .relatedPosts ul{display:flex;flex-wrap:wrap; position:relative;width:calc(100% + 20px);left:-10px;right:-10px; list-style:none;margin:0;padding:0} .relatedPosts li{display:block;width:calc(33.333% - 20px); margin:0 10px 30px} .relatedPosts .itemThumbnail a{background-image:none; color:inherit} .relatedPosts .itemThumbnail > *:before{content:'No image';display:block;position:absolute;top:50%;left:50%;max-width:none;max-height:100%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%); font-size:12px; opacity:.7} .relatedPosts .itemThumbnail div{background-position:center;background-size:cover;background-repeat:no-repeat; display:block;position:absolute;top:0;left:0;bottom:0;right:0} .relatedPosts .itemTitle{font-size:.85rem;line-height:normal; font-family:var(--font-head);font-weight:700}
@media screen and (max-width:1100px){.relatedPosts li{width:calc(50% - 20px)}} @media screen and (max-width:896px){.relatedPosts li{width:calc(33.333% - 20px)}} @media screen and (max-width:640px){.relatedPosts li{width:calc(50% - 20px)}} @media screen and (max-width:480px){.relatedPosts ul{flex-wrap:nowrap;width:calc(100% + 40px);left:-20px;right:-20px;margin-bottom:50px;padding:0 20px; overflow-y:hidden;overflow-x:scroll;scroll-behavior:smooth;scroll-snap-type:x mandatory; -ms-overflow-style:none;-webkit-overflow-scrolling:touch} .relatedPosts li{display:block;flex-shrink:0; width:70%; margin:0 15px 0 0; scroll-snap-align:center} .relatedPosts li:last-child{margin-right:0} .relatedPosts ul:after{content:'';display:block;flex-shrink:0; align-self:stretch;padding-left:20px} .relatedPosts .itemTitle{font-size:13px} .rtlMode .relatedPosts li{margin:0 0 0 15px} .rtlMode .relatedPosts li:last-child{margin-left:0}}
.blogComments .commentFixed{display:flex;align-items:center;justify-content:flex-end; position:fixed;top:0;left:0;right:0;bottom:0; z-index:20; -webkit-transition:var(--transition-1);transition:var(--transition-1); opacity:0;visibility:hidden} .blogComments .commentFixed .commentSection{width:100%;max-width:600px;max-height:calc(100% - 40px); margin:auto -100% auto auto;background-color:var(--content-bg);border-radius:10px; position:relative; box-shadow:0 10px 8px -8px rgb(0 0 0 / 12%); display:flex; overflow:hidden; transition:inherit;z-index:3} .blogComments .commentFixed .commentsTitle{position:absolute;left:0;top:0;right:0; padding:15px;z-index:3;background-color:var(--content-bg)} .blogComments .commentFixed .commentsInner{padding:81px 15px 15px; overflow-y:auto; width:100%} .blogComments .commentShow:checked ~ .commentFixed, #comment:target .commentFixed{display:flex; opacity:1;visibility:visible} .blogComments .commentShow:checked ~ .commentFixed .commentSection, #comment:Target .commentFixed .commentSection{margin-right:20px} .blogComments .commentShow:checked ~ .commentFixed .fullClose, #comment:target .commentFixed .fullClose{background:rgba(0,0,0,.5);opacity:1;visibility:visible; -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px)} #comment:target .commentShow:checked ~ .commentsButton ~ .commentFixed{display:flex} #comment:target .commentShow:checked ~ .commentFixed{opacity:0;visibility:hidden} #comment:target .commentShow:checked ~ .commentFixed .commentSection{margin-right:-100%} #comment:target .commentShow:checked ~ .commentFixed .fullClose{background:transparent;opacity:0;visibility:hidden; -webkit-backdrop-filter:blur(0); backdrop-filter:blur(0)} .darkMode .blogComments .commentFixed .commentSection, .darkMode .blogComments .commentFixed .commentsTitle{background-color:var(--dark-bg)} @media screen and (max-width:480px){.commentsContent ol > li > .commentInner > .commentBlock{padding-top:15px} .commentsContent ol > li > .commentInner > .commentBlock > .commentHeader .name{display:flex} .commentsContent ol > li > .commentInner > .commentBlock > .commentHeader .datetime{margin-left:0} .commentsContent ol > li > .commentInner > .commentBlock > .commentHeader .datetime:before{display:none} .blogComments .commentFixed .commentSection{margin:auto auto -100%; border-radius:15px 15px 0 0} .blogComments .commentFixed .commentSection.show{border-radius:0;max-height:100%} .blogComments .commentFixed .commentsTitle{padding:20px 15px} .blogComments .commentFixed .commentsInner{padding-top:91px} .blogComments .commentShow:checked ~ .commentFixed .commentSection, #comment:Target .commentFixed .commentSection{margin:auto auto 0} #comment:target .commentShow:checked ~ .commentFixed .commentSection{margin-right:-100%}}
.postToc{position:fixed;top:0;right:-355px;bottom:0;left:0; width:355px;margin-left:auto; -webkit-transition:var(--transition-1);transition:var(--transition-1); display:flex;align-items:center;justify-content:flex-end; z-index:2} .tableOfContainer{width:100%;height:100%; background-color:var(--body-bg); -webkit-transition:var(--transition-1);transition:var(--transition-1); display:flex; position:relative;z-index:3} .tableOfHeader{display:flex;align-items:center;justify-content:space-between; padding:15px 20px 15px 30px; background-color:var(--body-bg); font-size:var(--widget-titleSize);font-weight:var(--widget-titleWeight); position:absolute;top:70px;right:0;left:0; z-index:1; transition:inherit} .tableOfHeader svg{width:20px;height:20px} .tableOfHeader span:before{content:attr(data-text)} .tableOfIcon{width:55px;height:40px; display:flex;align-items:center;justify-content:center; background-color:var(--content-bg); border-radius:50px 0 0 50px;border:1px solid var(--content-border);border-right-width:0;box-shadow:0 10px 20px 0 rgb(30 30 30 / 8%); position:absolute;top:10px;left:-55px; -webkit-transition:var(--transition-1);transition:var(--transition-1)} .tableOfIcon:before{content:'';display:block; width:12px;height:12px; background-color:red;border:2px solid var(--content-bg); border-radius:50%; position:absolute;top:8px;left:15px} .tableOfInner{margin-top:70px;padding:50px 25px 50px 30px; width:100%; overflow-y:auto} .tableOfContent a{color:inherit; display:flex} .tableOfContent ol{margin:0} .tableOfContent li > a:before{opacity:.7} .tocMenu:checked ~ .postToc{right:0} .tocMenu:checked ~ .postToc .tableOfIcon{opacity:0;visibility:hidden} .darkMode .tableOfContainer, .darkMode .tableOfHeader{background-color:var(--dark-bg)} .darkMode .tableOfIcon{background-color:var(--dark-bgAlt);border-color:transparent} .darkMode .tableOfIcon:before{border-color:red} @media screen and (max-width:896px){.postToc{right:0;width:75%;max-width:480px;margin-right:-480px} .tableOfContainer{ border-radius:15px 0 0 15px} .tableOfHeader, .tableOfIcon{top:40px} .tableOfInner{margin-top:40px} .tocMenu:checked ~ .postToc{z-index:10;margin-right:0} .tocMenu:checked ~ .postToc .fullClose{background:rgba(0,0,0,.25);opacity:1;visibility:visible} .darkMode .tableOfContainer, .darkMode .tableOfHeader{background-color:var(--dark-bgSec)}} @media screen and (max-width:480px){.postToc{margin-right:-75%} .tableOfHeader, .tableOfInner{padding-left:20px;padding-right:20px}} .rtlMode .postToc{left:-355px;right:0; margin-left:0;margin-right:auto} .rtlMode .tocMenu:checked ~ .postToc{left:0} .rtlMode .tableOfHeader{padding:15px 30px 15px 20px} .rtlMode .tableOfIcon{border-radius:0 50px 50px 0;border-right-width:1px;border-left-width:0;left:auto;right:-55px} .rtlMode .tableOfInner{padding:50px 30px 50px 25px} @media screen and (max-width:896px){.rtlMode .postToc{margin-left:-480px} .rtlMode .tocMenu:checked ~ .postToc{margin-left:0;margin-right:auto} .rtlMode .tableOfContainer{border-radius:0 15px 15px 0}} @media screen and (max-width:480px){.rtlMode .postToc{margin-left:-75%}.rtlMode .tableOfHeader, .rtlMode .tableOfInner{padding-left:20px;padding-right:20px}} @media screen and (max-width:1100px){.postToc{right:-325px;width:325px} .rtlMode .postToc{left:-325px;right:0}} @media screen and (max-width:896px){.postToc{right:0;width:75%} .rtlMode .postToc{left:0}}
/* Lazy Youtube */
.lazyYoutube{background-color:var(--highlight-bg);position:relative;overflow:hidden;padding-top:56.25%;border-radius:2px} .lazyYoutube img{width:100%;top:-16.84%;left:0;opacity:.95} .lazyYoutube img, .lazyYoutube iframe, .lazyYoutube .playBut{position:absolute} .lazyYoutube iframe{width:100%;height:100%;bottom:0;right:0} .lazyYoutube .playBut{top:50%;left:50%; transform:translate3d(-50%,-50%,0); transition:all .5s ease} .lazyYoutube .playBut{display:block;width:70px;height:70px;z-index:1} .lazyYoutube .playBut svg{width:inherit;height:inherit; fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-width:8} .lazyYoutube .playBut .circle{stroke:rgba(255,255,255,.85);stroke-dasharray:650;stroke-dashoffset:650; transition:all .4s ease-in-out; opacity:.3} .lazyYoutube .playBut .triangle{stroke:rgba(255,255,255,.75);stroke-dasharray:240;stroke-dashoffset:480; transition:all .6s ease-in-out; transform:translateY(0);-webkit-transform:translateY(0)} .lazyYoutube .playBut:hover .triangle{animation:nudge .6s ease-in-out;-webkit-animation:nudge .6s ease-in-out} .lazyYoutube .playBut:hover .triangle, .lazyYoutube .playBut:hover .circle{stroke-dashoffset:0; opacity:1;stroke:var(--highlight-red)}
/*]]>*/</style>
<style type='text/css'>@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvtg2H68T.woff2)format('woff2');unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F;}@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvtE2H68T.woff2)format('woff2');unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116;}@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvtY2H68T.woff2)format('woff2');unicode-range:U+0370-03FF;}@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvto2H68T.woff2)format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB;}@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvts2H68T.woff2)format('woff2');unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;}@font-face{font-family:'Play';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/play/v12/6aez4K2oVqwIvtU2Hw.woff2)format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}</style>
<!--<script> //<![CDATA[ document.addEventListener ("DOMContentLoaded", jquery); function jquery() {let script = document.createElement('script');script.defer = true; script.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"; document.body.append(script);}; //]]> </script>-->
<!--<script async='async' data-ad-client='ca-pub-4164890912840988' src='https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js'/> -->
<!--[ Adsense script placement ]-->
<!--<script defer='defer' src='https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-0000000000000000' crossorigin='anonymous'/>-->
<!--[ </head> close ]-->
<!--<head><style type='text/css'>@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:url(//fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf)format('truetype');}</style>
<meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/>
<meta name='google-adsense-platform-domain' content='blogspot.com'/>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8534434999548564&host=ca-host-pub-1556223355139109" crossorigin="anonymous"></script>
<!-- data-ad-client=ca-pub-8534434999548564 -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?display=swap&family=Shadows+Into+Light&family=Fira+Sans+Condensed&family=Indie+Flower&family=Archivo+Black&family=Yanone+Kaffeesatz&family=Sarabun&family=Acme&family=Didact+Gothic&family=Bree+Serif&family=Patua+One&family=Crete+Round&family=Gloria+Hallelujah"></head>--></head>
<!--[ <body> open ]-->
<body class='Style-2 onIndex onHome' id='mainContent'>
<script>/*<![CDATA[*/ (localStorage.getItem('mode')) === 'darkmode' ? document.querySelector('#mainContent').classList.add('darkMode') : document.querySelector('#mainContent').classList.remove('darkMode') /*]]>*/</script>
<!--[ Active function ]-->
<input class='profInput hidden' id='offprofile-box' type='checkbox'/>
<input class='navInput hidden' id='offnav-input' type='checkbox'/>
<div class='mainWrapper'>
<!--[ Header section ]-->
<header class='header' id='header'>
<!--[ Header Notification ]-->
<div class='section' id='header-notif'><div class='widget HTML' data-version='2' id='HTML0'>
<input class='notifInput hidden' id='offnotif-box' type='checkbox'/>
<div class='notifContent'>
<div class='notifText'><!--[ Your content here ]-->
<!--Lorem ipsum dolor sit amet, consectetur adipiscing elit.-->
<!--[ Alternatif content with button link ]-->
<div class='notifAlt'>
<span>
Selamat Datang Selamat Membaca Teman²
</span>
<a href='https://google.com/' target='_blank' rel='noopener'>Belanja App</a>
</div></div>
<label for='offnotif-box'>
<svg class='line' viewBox='0 0 24 24'><line x1='18' x2='6' y1='6' y2='18'></line><line x1='6' x2='18' y1='6' y2='18'></line></svg>
</label>
</div>
</div></div>
<!--[ Header content ]-->
<div class='headerContent'>
<div class='headerDiv headerLeft'>
<!--[ Header button and icon ]-->
<div class='headerIcon'>
<!--[ Nav button ]-->
<label aria-label='Menu Navigation' class='navMenu' for='offnav-input'>
<!--<span class='ham svg-1'><span><i/></span></span>-->
<svg class='line svg-1' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M 3 18 H 14 M 10 6 H 21'></path><line stroke='rgba(128 138 157 / 47%)' x1='3' x2='21' y1='12' y2='12'></line></svg>
<svg class='line svg-2' viewBox='0 0 24 24'><g transform='translate(12.000000, 12.000000) rotate(-90.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
</label>
</div>
<!--[ Header widget ]-->
<div class='section' id='header-widget'><div class='widget Header' data-version='2' id='Header1'>
<a href='https://www.bernekellboy.biz.id/'><img alt='Blog BernekellBoy' src='https://blogger.googleusercontent.com/img/a/AVvXsEh-5u_TB2CJdA4QMwVJMu7HC5tJHD7qrHJ_mzwHJ1m1UQs7Y5pDir0cE0MQelqY_r1W9H_2MrZZ6vpg7u0-lbycs1ebjonhNLwAJXX_2i3cRz7c9R2cji-sAAylJFHGfV5H2LkaeNTMcNXclUPeQeY7zr8u3v2b4mF8r_fNhef4WOq5_5mXfjETzdT02guz=w300' title='Blog BernekellBoy'/></a>
<div class='headerInner replaced'>
<h1>
<span class='headerTitle'>
Blog BernekellBoy
</span>
</h1>
</div>
</div></div>
</div>
<div class='headerDiv headerRight'>
<!--[ Header Search ]-->
<div class='headerSearch'>
<!--[ Search Form ]-->
<form action='https://www.bernekellboy.biz.id/search' class='searchForm' method='get' target='_top'>
<input aria-label='Search' autocomplete='off' id='searchInput' name='q' placeholder='Telusuri...' type='text'/>
<button aria-label='Search button' class='searchButton' type='submit'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.000000, 2.000000)'><circle class='fill' cx='9.76659044' cy='9.76659044' r='8.9885584' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></circle><line x1='16.0183067' x2='19.5423342' y1='16.4851259' y2='20.0000001'></line><circle class='fill' cx='9.76659044' cy='9.76659044' r='8.9885584'></circle><line x1='16.0183067' x2='19.5423342' y1='16.4851259' y2='20.0000001'></line></g></svg>
</button>
<button aria-label='Search close' class='close' type='reset'>
<!--[ Close icon ]-->
<svg class='line' viewBox='0 0 24 24'><line x1='18' x2='6' y1='6' y2='18'></line><line x1='6' x2='18' y1='6' y2='18'></line></svg>
</button>
<span class='fullClose search'></span>
</form>
</div>
<!--[ Header button and icon ]-->
<div class='headerIcon'>
<label for='wcCheckPop'>
<span id='sobinhluan' style=' position: relative; top: -9px; left: 9px; font-size: 8px; font-weight: 900; color: white; background: rgb(242 22 22); padding: 3px 4px; border-radius: 30px;animation: text-flicker 4s linear infinite; '></span>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.000000, 2.000000)'><line x1='13.9394' x2='13.9484' y1='10.413' y2='10.413'></line><line x1='9.9304' x2='9.9394' y1='10.413' y2='10.413'></line><line x1='5.9214' x2='5.9304' y1='10.413' y2='10.413'></line><path d='M17.0710351,17.0698449 C14.0159481,20.1263505 9.48959549,20.7867004 5.78630747,19.074012 C5.23960769,18.8538953 1.70113357,19.8338667 0.933341969,19.0669763 C0.165550368,18.2990808 1.14639409,14.7601278 0.926307229,14.213354 C-0.787154393,10.5105699 -0.125888852,5.98259958 2.93020311,2.9270991 C6.83146881,-0.9756997 13.1697694,-0.9756997 17.0710351,2.9270991 C20.9803405,6.8359285 20.9723008,13.1680512 17.0710351,17.0698449 Z' style='fill: rgb(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path>
<line x1='13.9394' x2='13.9484' y1='10.413' y2='10.413'></line><line x1='9.9304' x2='9.9394' y1='10.413' y2='10.413'></line><line x1='5.9214' x2='5.9304' y1='10.413' y2='10.413'></line><path d='M17.0710351,17.0698449 C14.0159481,20.1263505 9.48959549,20.7867004 5.78630747,19.074012 C5.23960769,18.8538953 1.70113357,19.8338667 0.933341969,19.0669763 C0.165550368,18.2990808 1.14639409,14.7601278 0.926307229,14.213354 C-0.787154393,10.5105699 -0.125888852,5.98259958 2.93020311,2.9270991 C6.83146881,-0.9756997 13.1697694,-0.9756997 17.0710351,2.9270991 C20.9803405,6.8359285 20.9723008,13.1680512 17.0710351,17.0698449 Z'></path>
</g></svg>
</label>
<span><a class='link dmca-badge' href='//www.dmca.com/Protection/Status.aspx?ID=0c33e6b7-3204-4a26-83ac-b3aeaadb2e9b' itemprop='url' style='display:flex' target='_blank' title='DMCA.com Protection Status'>
<script src='https://images.dmca.com/Badges/DMCABadgeHelper.min.js'></script>
<svg class='line' style='display:flex' viewBox='0 0 24 24'><g transform='translate(3.500000, 2.000000)'><path d='M8.4845,19.6057 C10.8195,19.6057 16.1565,17.2837 16.1565,10.8787 C16.1565,4.4747 16.4345,3.9737 15.8195,3.3577 C15.2035,2.7417 11.9935,0.7507 8.4845,0.7507 C4.9755,0.7507 1.7655,2.7417 1.1505,3.3577 C0.5345,3.9737 0.8125,4.4747 0.8125,10.8787 C0.8125,17.2837 6.1505,19.6057 8.4845,19.6057 Z' style='fill: rgb(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><polyline points='5.8859 9.8748 7.7779 11.7698 11.6759 7.8698'></polyline>
<path d='M8.4845,19.6057 C10.8195,19.6057 16.1565,17.2837 16.1565,10.8787 C16.1565,4.4747 16.4345,3.9737 15.8195,3.3577 C15.2035,2.7417 11.9935,0.7507 8.4845,0.7507 C4.9755,0.7507 1.7655,2.7417 1.1505,3.3577 C0.5345,3.9737 0.8125,4.4747 0.8125,10.8787 C0.8125,17.2837 6.1505,19.6057 8.4845,19.6057 Z'></path><polyline points='5.8859 9.8748 7.7779 11.7698 11.6759 7.8698'></polyline>
</g></svg>
</a></span>
<!--[ Dark mode button ]-->
<span aria-label='Dark' class='navNight' data-text='Dark' onclick='darkMode()' role='button'><svg class='svg-1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M183.72453,170.371a10.4306,10.4306,0,0,1-.8987,3.793,11.19849,11.19849,0,0,1-5.73738,5.72881,10.43255,10.43255,0,0,1-3.77582.89138,1.99388,1.99388,0,0,0-1.52447,3.18176,10.82936,10.82936,0,1,0,15.118-15.11819A1.99364,1.99364,0,0,0,183.72453,170.371Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(-168 -165)'></path><path class='line' d='M183.72453,170.371a10.4306,10.4306,0,0,1-.8987,3.793,11.19849,11.19849,0,0,1-5.73738,5.72881,10.43255,10.43255,0,0,1-3.77582.89138,1.99388,1.99388,0,0,0-1.52447,3.18176,10.82936,10.82936,0,1,0,15.118-15.11819A1.99364,1.99364,0,0,0,183.72453,170.371Z' transform='translate(-169.3959 -166.45548)'></path></svg>
<svg class='line svg-2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='5' style='fill: rgba(128 138 157 / 47%);stroke: none;'></circle><line x1='12' x2='12' y1='1' y2='3'></line><line x1='12' x2='12' y1='21' y2='23'></line><line x1='4.22' x2='5.64' y1='4.22' y2='5.64'></line><line x1='18.36' x2='19.78' y1='18.36' y2='19.78'></line><line x1='1' x2='3' y1='12' y2='12'></line><line x1='21' x2='23' y1='12' y2='12'></line><line x1='4.22' x2='5.64' y1='19.78' y2='18.36'></line><line x1='18.36' x2='19.78' y1='5.64' y2='4.22'></line></svg>
</span>
<!--[ Search button ] <label aria-label='Search' class='navSearch' for='searchInput'> <b:include name='search-icon'/> </label>-->
<!--[ Profile button ]-->
<label aria-label='profile' class='navProfile' for='offprofile-box'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(5.000000, 2.400000)'><path d='M6.84454545,19.261909 C3.15272727,19.261909 -8.52651283e-14,18.6874153 -8.52651283e-14,16.3866334 C-8.52651283e-14,14.0858516 3.13272727,11.961909 6.84454545,11.961909 C10.5363636,11.961909 13.6890909,14.0652671 13.6890909,16.366049 C13.6890909,18.6658952 10.5563636,19.261909 6.84454545,19.261909 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><path d='M6.84454545,19.261909 C3.15272727,19.261909 -8.52651283e-14,18.6874153 -8.52651283e-14,16.3866334 C-8.52651283e-14,14.0858516 3.13272727,11.961909 6.84454545,11.961909 C10.5363636,11.961909 13.6890909,14.0652671 13.6890909,16.366049 C13.6890909,18.6658952 10.5563636,19.261909 6.84454545,19.261909 Z'></path><path d='M6.83729838,8.77363636 C9.26002565,8.77363636 11.223662,6.81 11.223662,4.38727273 C11.223662,1.96454545 9.26002565,-1.0658141e-14 6.83729838,-1.0658141e-14 C4.41457111,-1.0658141e-14 2.45,1.96454545 2.45,4.38727273 C2.44184383,6.80181818 4.39184383,8.76545455 6.80638929,8.77363636 C6.81729838,8.77363636 6.82729838,8.77363636 6.83729838,8.77363636 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><path d='M6.83729838,8.77363636 C9.26002565,8.77363636 11.223662,6.81 11.223662,4.38727273 C11.223662,1.96454545 9.26002565,-1.0658141e-14 6.83729838,-1.0658141e-14 C4.41457111,-1.0658141e-14 2.45,1.96454545 2.45,4.38727273 C2.44184383,6.80181818 4.39184383,8.76545455 6.80638929,8.77363636 C6.81729838,8.77363636 6.82729838,8.77363636 6.83729838,8.77363636 Z'></path></g></svg>
</label>
<!--[ Profile widget ]-->
<div class='headerProfile'>
<div class='section' id='profile-widget'>
<div class='widget LinkList' data-version='2' id='LinkList001'>
<ul class='socialLink'>
<li>
<a aria-label='Facebook' class='link' href='https://www.facebook.com/'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M24,3H8A5,5,0,0,0,3,8V24a5,5,0,0,0,5,5H24a5,5,0,0,0,5-5V8A5,5,0,0,0,24,3Zm3,21a3,3,0,0,1-3,3H17V18h4a1,1,0,0,0,0-2H17V14a2,2,0,0,1,2-2h2a1,1,0,0,0,0-2H19a4,4,0,0,0-4,4v2H12a1,1,0,0,0,0,2h3v9H8a3,3,0,0,1-3-3V8A3,3,0,0,1,8,5H24a3,3,0,0,1,3,3Z'></path></svg>
</a>
</li>
<li>
<a aria-label='Twitter' class='link' href='https://twitter.com/?t=U9XHh2P4GDU8h9DmD_VCUw&s=09'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M13.35,28A13.66,13.66,0,0,1,2.18,22.16a1,1,0,0,1,.69-1.56l2.84-.39A12,12,0,0,1,5.44,4.35a1,1,0,0,1,1.7.31,9.87,9.87,0,0,0,5.33,5.68,7.39,7.39,0,0,1,7.24-6.15,7.29,7.29,0,0,1,5.88,3H29a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1.06L27,12.27c0,.14,0,.28-.05.41a12.46,12.46,0,0,1,.09,1.43A13.82,13.82,0,0,1,13.35,28ZM4.9,22.34A11.63,11.63,0,0,0,13.35,26,11.82,11.82,0,0,0,25.07,14.11,11.42,11.42,0,0,0,25,12.77a1.11,1.11,0,0,1,0-.26c0-.22.05-.43.06-.65a1,1,0,0,1,.22-.58l1.67-2.11H25.06a1,1,0,0,1-.85-.47,5.3,5.3,0,0,0-4.5-2.51,5.41,5.41,0,0,0-5.36,5.45,1.07,1.07,0,0,1-.4.83,1,1,0,0,1-.87.2A11.83,11.83,0,0,1,6,7,10,10,0,0,0,8.57,20.12a1,1,0,0,1,.37,1.05,1,1,0,0,1-.83.74Z'></path></svg>
</a>
</li>
</ul>
</div></div>
</div>
<label class='fullClose closeProfile' for='offprofile-box'></label>
</div>
</div>
</div>
</header>
<div class='mainContent'>
<!--[ Navigation section ]-->
<div class='mainMenu'>
<div class='section' id='main-menu'><div class='widget HTML' data-version='2' id='HTML000'>
<ul class='htmlMenu' itemscope='itemscope' itemtype='https://schema.org/SiteNavigationElement'>
<li class='close'>
<label class='link' for='offnav-input'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(12.000000, 12.000000) rotate(-270.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
<span class='name' data-text='Back'></span>
</label>
</li>
<li class='dropDown'>
<input class='dropMenu hidden' id='offdropMenu1' name='dropDown' type='checkbox'/>
<label class='link' for='offdropMenu1'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.500000, 2.500000)'><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z'></path></g></svg>
<span class='name'>Label News</span>
<svg class='line down' viewBox='0 0 24 24'><g transform='translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
</label>
<ul>
<li itemprop='name'><a href='#' itemprop='url'>Whatsapp's </a></li>
<li itemprop='name'><a href='#' itemprop='url'>Tutorial's </a></li>
<li itemprop='name'><a href='#' itemprop='url'>Teknologi</a></li>
<li itemprop='name'><a href='#' itemprop='url'>Web development</a></li>
<li itemprop='name'><a href='#' itemprop='url'>Artikel</a></li>
</ul>
</li>
<li>
<a class='link' href='/p/about.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><g transform='translate(2.749500, 2.549500)'><path d='M6.809,18.9067 C3.137,18.9067 9.41469125e-14,18.3517 9.41469125e-14,16.1277 C9.41469125e-14,13.9037 3.117,11.8997 6.809,11.8997 C10.481,11.8997 13.617,13.8847 13.617,16.1077 C13.617,18.3307 10.501,18.9067 6.809,18.9067 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path d='M6.809,18.9067 C3.137,18.9067 9.41469125e-14,18.3517 9.41469125e-14,16.1277 C9.41469125e-14,13.9037 3.117,11.8997 6.809,11.8997 C10.481,11.8997 13.617,13.8847 13.617,16.1077 C13.617,18.3307 10.501,18.9067 6.809,18.9067 Z'></path><path d='M6.809,8.728 C9.219,8.728 11.173,6.774 11.173,4.364 C11.173,1.954 9.219,-2.48689958e-14 6.809,-2.48689958e-14 C4.399,-2.48689958e-14 2.44496883,1.954 2.44496883,4.364 C2.436,6.766 4.377,8.72 6.778,8.728 L6.809,8.728 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path d='M6.809,8.728 C9.219,8.728 11.173,6.774 11.173,4.364 C11.173,1.954 9.219,-2.48689958e-14 6.809,-2.48689958e-14 C4.399,-2.48689958e-14 2.44496883,1.954 2.44496883,4.364 C2.436,6.766 4.377,8.72 6.778,8.728 L6.809,8.728 Z'></path><path d='M14.0517,7.5293 C15.4547,7.1543 16.4887007,5.8753 16.4887007,4.3533 C16.4897,2.7653 15.3627,1.4393 13.8647,1.1323'></path><path d='M14.7113,11.104 C16.6993,11.104 18.3973,12.452 18.3973,13.655 C18.3973,14.364 17.8123,15.092 16.9223,15.301'></path></g></svg>
<span class='name' itemprop='name'>About</span>
</a>
</li>
<li class='break'>
<a class='link' href='/p/contact.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.452080, 2.851980)'><path d='M15.0928322,6.167017 C15.0928322,6.167017 11.8828071,10.0196486 9.53493746,10.0196486 C7.18807029,10.0196486 3.941955,6.167017 3.941955,6.167017'></path><path d='M1.04805054e-13,9.11679198 C1.04805054e-13,2.27869674 2.38095238,8.8817842e-15 9.52380952,8.8817842e-15 C16.6666667,8.8817842e-15 19.047619,2.27869674 19.047619,9.11679198 C19.047619,15.9538847 16.6666667,18.233584 9.52380952,18.233584 C2.38095238,18.233584 1.04805054e-13,15.9538847 1.04805054e-13,9.11679198 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path d='M15.0928322,6.167017 C15.0928322,6.167017 11.8828071,10.0196486 9.53493746,10.0196486 C7.18807029,10.0196486 3.941955,6.167017 3.941955,6.167017'></path><path d='M1.04805054e-13,9.11679198 C1.04805054e-13,2.27869674 2.38095238,8.8817842e-15 9.52380952,8.8817842e-15 C16.6666667,8.8817842e-15 19.047619,2.27869674 19.047619,9.11679198 C19.047619,15.9538847 16.6666667,18.233584 9.52380952,18.233584 C2.38095238,18.233584 1.04805054e-13,15.9538847 1.04805054e-13,9.11679198 Z'></path></g></svg>
<span class='name' itemprop='name'>Contact Kami</span>
</a>
</li>
<li>
<a class='link' href='https://www.lulzghost-team.eu.org/' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.500000, 2.500000)'><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z'></path></g></svg>
<span class='name new' itemprop='name'>Market Place</span>
</a>
</li>
<li>
<a class='link' href='https://www.kawainime.my.id' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.500000, 2.500000)'><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.000000, 1.400000)'></path><line x1='6.6787' x2='12.4937' y1='12.0742685' y2='12.0742685'></line><path d='M-1.13686838e-13,5.29836453 C-1.13686838e-13,2.85645977 1.25,0.75931691 3.622,0.272650243 C5.993,-0.214968804 7.795,-0.0463973758 9.292,0.761221672 C10.79,1.56884072 10.361,2.76122167 11.9,3.63645977 C13.44,4.51265024 15.917,3.19645977 17.535,4.94217405 C19.229,6.7697931 19.2200005,9.57550739 19.2200005,11.3640788 C19.2200005,18.1602693 15.413,18.6993169 9.61,18.6993169 C3.807,18.6993169 -1.13686838e-13,18.2288407 -1.13686838e-13,11.3640788 L-1.13686838e-13,5.29836453 Z'></path></g></svg>
<span class='name free' itemprop='name'>Tentang Anime</span>
</a>
</li>
<li>
<a class='link' href='/p/sitemap.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(3.610000, 2.750100)'><line x1='11.9858' x2='4.7658' y1='12.9463' y2='12.9463'></line><line x1='11.9858' x2='4.7658' y1='9.1865' y2='9.1865'></line><line x1='7.521' x2='4.766' y1='5.4272' y2='5.4272'></line><path d='M7.63833441e-14,9.25 C7.63833441e-14,16.187 2.098,18.5 8.391,18.5 C14.685,18.5 16.782,16.187 16.782,9.25 C16.782,2.313 14.685,0 8.391,0 C2.098,0 7.63833441e-14,2.313 7.63833441e-14,9.25 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><line x1='11.9858' x2='4.7658' y1='12.9463' y2='12.9463'></line><line x1='11.9858' x2='4.7658' y1='9.1865' y2='9.1865'></line><line x1='7.521' x2='4.766' y1='5.4272' y2='5.4272'></line><path d='M7.63833441e-14,9.25 C7.63833441e-14,16.187 2.098,18.5 8.391,18.5 C14.685,18.5 16.782,16.187 16.782,9.25 C16.782,2.313 14.685,0 8.391,0 C2.098,0 7.63833441e-14,2.313 7.63833441e-14,9.25 Z'></path></g></svg>
<span class='name' itemprop='name'>Sitemap Blog</span>
</a>
</li>
<li>
<a class='link' href='/p/disclaimer.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(3.500000, 2.000000)'><path d='M8.4845,19.6057 C10.8195,19.6057 16.1565,17.2837 16.1565,10.8787 C16.1565,4.4747 16.4345,3.9737 15.8195,3.3577 C15.2035,2.7417 11.9935,0.7507 8.4845,0.7507 C4.9755,0.7507 1.7655,2.7417 1.1505,3.3577 C0.5345,3.9737 0.8125,4.4747 0.8125,10.8787 C0.8125,17.2837 6.1505,19.6057 8.4845,19.6057 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path d='M8.4845,19.6057 C10.8195,19.6057 16.1565,17.2837 16.1565,10.8787 C16.1565,4.4747 16.4345,3.9737 15.8195,3.3577 C15.2035,2.7417 11.9935,0.7507 8.4845,0.7507 C4.9755,0.7507 1.7655,2.7417 1.1505,3.3577 C0.5345,3.9737 0.8125,4.4747 0.8125,10.8787 C0.8125,17.2837 6.1505,19.6057 8.4845,19.6057 Z'></path><polyline points='5.8859 9.8748 7.7779 11.7698 11.6759 7.8698'></polyline></g></svg>
<span class='name' itemprop='name'>Disclaimers</span>
</a>
</li>
<li>
<a class='link' href='/p/privacy-policy.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(3.500000, 2.000000)'><path d='M12.9709,7.4033 L12.9709,5.2543 C12.9399,2.7353 10.8719,0.7193 8.3539,0.7503 C5.8869,0.7813 3.8919,2.7673 3.8499,5.2343 L3.8499,7.4033' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><line x1='8.4103' x2='8.4103' y1='12.1562' y2='14.3772'></line><path d='M12.9709,7.4033 L12.9709,5.2543 C12.9399,2.7353 10.8719,0.7193 8.3539,0.7503 C5.8869,0.7813 3.8919,2.7673 3.8499,5.2343 L3.8499,7.4033'></path><line x1='8.4103' x2='8.4103' y1='12.1562' y2='14.3772'></line><path d='M8.4103,6.8242 C2.6653,6.8242 0.7503,8.3922 0.7503,13.0952 C0.7503,17.7992 2.6653,19.3672 8.4103,19.3672 C14.1553,19.3672 16.0713,17.7992 16.0713,13.0952 C16.0713,8.3922 14.1553,6.8242 8.4103,6.8242 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><line x1='8.4103' x2='8.4103' y1='12.1562' y2='14.3772'></line><path d='M8.4103,6.8242 C2.6653,6.8242 0.7503,8.3922 0.7503,13.0952 C0.7503,17.7992 2.6653,19.3672 8.4103,19.3672 C14.1553,19.3672 16.0713,17.7992 16.0713,13.0952 C16.0713,8.3922 14.1553,6.8242 8.4103,6.8242 Z'></path></g></svg>
<span class='name' itemprop='name'>Privacy Policy</span>
</a>
</li>
<li>
<a class='link' href='/p/term-of-condition.html' itemprop='url'>
<svg class='line' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='10' style='fill: rgba(128 138 157 / 47%);'></circle><line x1='12' x2='12' y1='8' y2='12'></line><line x1='12' x2='12' y1='16' y2='16'></line></svg>
<span class='name' itemprop='name'>Terms And Conditions</span>
</a>
</li>
</ul>
</div>
<div class='widget LinkList' data-version='2' id='LinkList002'>
<label class='link' for='offnav-input'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.300000, 2.300000)'><line x1='9.73684179' x2='9.73684179' y1='6.162632' y2='13.3110531'></line><line x1='13.3146315' x2='6.158842' y1='9.73684179' y2='9.73684179'></line><path d='M-3.55271368e-14,9.73684211 C-3.55271368e-14,2.43473684 2.43473684,2.13162821e-14 9.73684211,2.13162821e-14 C17.0389474,2.13162821e-14 19.4736842,2.43473684 19.4736842,9.73684211 C19.4736842,17.0389474 17.0389474,19.4736842 9.73684211,19.4736842 C2.43473684,19.4736842 -3.55271368e-14,17.0389474 -3.55271368e-14,9.73684211 Z'></path></g></svg>
</label>
<ul class='socialLink'>
<li>
<a aria-label='Facebook' class='link' href='https://www.facebook.com//'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M24,3H8A5,5,0,0,0,3,8V24a5,5,0,0,0,5,5H24a5,5,0,0,0,5-5V8A5,5,0,0,0,24,3Zm3,21a3,3,0,0,1-3,3H17V18h4a1,1,0,0,0,0-2H17V14a2,2,0,0,1,2-2h2a1,1,0,0,0,0-2H19a4,4,0,0,0-4,4v2H12a1,1,0,0,0,0,2h3v9H8a3,3,0,0,1-3-3V8A3,3,0,0,1,8,5H24a3,3,0,0,1,3,3Z'></path></svg>
</a>
</li>
<li>
<a aria-label='Youtube' class='link' href='https://youtube.com/channel/'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M29.73,9.9A5,5,0,0,0,25.1,5.36a115.19,115.19,0,0,0-18.2,0A5,5,0,0,0,2.27,9.9a69,69,0,0,0,0,12.2A5,5,0,0,0,6.9,26.64c3,.24,6.06.36,9.1.36s6.08-.12,9.1-.36a5,5,0,0,0,4.63-4.54A69,69,0,0,0,29.73,9.9Zm-2,12A3,3,0,0,1,25,24.65a113.8,113.8,0,0,1-17.9,0,3,3,0,0,1-2.78-2.72,65.26,65.26,0,0,1,0-11.86A3,3,0,0,1,7.05,7.35C10,7.12,13,7,16,7s6,.12,9,.35a3,3,0,0,1,2.78,2.72A65.26,65.26,0,0,1,27.73,21.93Z'></path><path d='M21.45,15.11l-8-4A1,1,0,0,0,12,12v8a1,1,0,0,0,.47.85A1,1,0,0,0,13,21a1,1,0,0,0,.45-.11l8-4a1,1,0,0,0,0-1.78ZM14,18.38V13.62L18.76,16Z'></path></svg>
</a>
</li>
<li>
<a aria-label='Telegram' class='link' href='https://t.me/anonsecteam'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z'></path><path d='M16,9.5A6.5,6.5,0,1,0,22.5,16,6.51,6.51,0,0,0,16,9.5Zm0,11A4.5,4.5,0,1,1,20.5,16,4.51,4.51,0,0,1,16,20.5Z'></path></svg>
</a>
</li>
<li>
<a aria-label='Twitter' class='link' href='https://twitter.com/'>
<svg class='c-1' viewBox='0 0 32 32'><path d='M13.35,28A13.66,13.66,0,0,1,2.18,22.16a1,1,0,0,1,.69-1.56l2.84-.39A12,12,0,0,1,5.44,4.35a1,1,0,0,1,1.7.31,9.87,9.87,0,0,0,5.33,5.68,7.39,7.39,0,0,1,7.24-6.15,7.29,7.29,0,0,1,5.88,3H29a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1.06L27,12.27c0,.14,0,.28-.05.41a12.46,12.46,0,0,1,.09,1.43A13.82,13.82,0,0,1,13.35,28ZM4.9,22.34A11.63,11.63,0,0,0,13.35,26,11.82,11.82,0,0,0,25.07,14.11,11.42,11.42,0,0,0,25,12.77a1.11,1.11,0,0,1,0-.26c0-.22.05-.43.06-.65a1,1,0,0,1,.22-.58l1.67-2.11H25.06a1,1,0,0,1-.85-.47,5.3,5.3,0,0,0-4.5-2.51,5.41,5.41,0,0,0-5.36,5.45,1.07,1.07,0,0,1-.4.83,1,1,0,0,1-.87.2A11.83,11.83,0,0,1,6,7,10,10,0,0,0,8.57,20.12a1,1,0,0,1,.37,1.05,1,1,0,0,1-.83.74Z'></path></svg>
</a>
</li>
</ul>
</div></div>
<label class='fullClose menu' for='offnav-input'></label>
</div>
<!--[ Content section ]-->
<div class='mainInner sectionInner'>
<!--[ Large ads ]-->
<div class='largeSection'>
<div class='no-items section' id='large-content'>
</div>
</div>
<!--[ Blog content ]-->
<div class='blogContent'>
<!--[ Main content ]-->
<main class='mainbar'>
<div class='section' id='top-widget'>
<div class='widget HTML' data-version='2' id='HTML04'>
<div class='widget-content'>
<a href="//www.dmca.com/Protection/Status.aspx?ID=090f6134-5e5e-46fd-a879-b366b9a65060" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca-badge-w200-5x1-01.png?ID=090f6134-5e5e-46fd-a879-b366b9a65060" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script>
</div>
</div><div class='widget FeaturedPost' data-version='2' id='FeaturedPost00'>
<h2 class='title'>Pinned Post
<svg class='line' viewBox='0 0 24 24'><path d='M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path d='M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z'></path><line x1='16' x2='2' y1='8' y2='22'></line><line x1='17' x2='9' y1='15' y2='15'></line></svg>
</h2>
<div class='itemFeatured' role='feed'>
<article class='item'>
<div class='itemThumbnail postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/apa-itu-parafrase-cara-menulis-konten.html'>
<img alt='Apa Itu Parafrase : Cara Menulis Konten Unik untuk Otoritas Blog' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgt4ClTcwxqeyawaoPcA4ydJVyT_Zy65kbfPiR_67_9FbSfLEOglGnspNd6BUzO3v02X4Tv44Zl8kADedToOUpR1bZuUrMY4Z8IKtFeR2i5LhT5TgxiJzbLqyL2ahjZoIuuhqHffRpJxjpUSarz-na8UFRX4olo1EOxWZsFgK95E32S2eVbiyRGQ7UqunQS/w600-h337-p-k-no-nu/images%20(3).png' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='itemContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Apaitu' data-text='Apaitu' href='https://www.bernekellboy.biz.id/search/label/Apaitu' rel='tag'>
</a>
<a aria-label='aplikasi' data-text='aplikasi' href='https://www.bernekellboy.biz.id/search/label/aplikasi' rel='tag'>
</a>
</div>
</div>
<h3 class='itemTitle'><a href='https://www.bernekellboy.biz.id/2023/08/apa-itu-parafrase-cara-menulis-konten.html'>Apa Itu Parafrase : Cara Menulis Konten Unik untuk Otoritas Blog</a></h3>
<p class='itemEntry'>
Menjadi seorang blogger atau pemilik situs web, Anda selalu ingin menempatkan blog Anda di posisi t…
</p>
<div class='itemInfo postInfo'>
<time class='postTimestamp published' data-text='Agustus 29, 2023' datetime='2023-08-29T11:30:00-07:00' title='Published: Agustus 29, 2023'></time>
</div>
</div>
</article>
</div>
</div><!--Gagal merender gadget 'HTML13'.
The tag 'remove' is not a known Blogger tag.
--><div class='widget PageList' data-version='1' id='PageList1'>
</div><!--Gagal merender gadget 'HTML3'.
The tag 'remove' is not a known Blogger tag.
--></div>
<div class='section' id='main-widget'>
<div class='widget Blog' data-version='2' id='Blog1'>
<div class='blogTitle'>
<h2 class='title'>
Postingan Terbaru
</h2>
<div class='postMode' onclick='listMode()'>
<svg class='line svg-1' viewBox='0 0 24 24'><rect height='7' rx='2' ry='2' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='18' x='3' y='3'></rect><rect height='7' rx='2' ry='2' width='18' x='3' y='3'></rect><rect height='7' rx='2' ry='2' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='18' x='3' y='14'></rect><rect height='7' rx='2' ry='2' width='18' x='3' y='14'></rect></svg>
<svg class='line svg-2' viewBox='0 0 24 24'><rect height='7' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='7' x='3' y='3'></rect><rect height='7' width='7' x='3' y='3'></rect><rect height='7' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='7' x='14' y='3'></rect><rect height='7' width='7' x='14' y='3'></rect><rect height='7' width='7' x='14' y='14'></rect><rect height='7' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='7' x='14' y='14'></rect><rect height='7' width='7' x='14' y='14'></rect><rect height='7' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)' width='7' x='3' y='14'></rect><rect height='7' width='7' x='3' y='14'></rect></svg>
</div>
<script>/*<![CDATA[*/ (localStorage.getItem('list')) === 'listmode' ? document.querySelector('#mainContent').classList.add('listMode') : document.querySelector('#mainContent').classList.remove('listMode') /*]]>*/</script>
</div>
<div class='blogPosts'>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/schema-markup-structured-data-webpage.html'>
<img alt='Schema Markup Structured Data Webpage, WebSite, dan Blogposting' class='imgThumb lazy' data-src='https://1.bp.blogspot.com/-k3B6PiiP4n4/XkeQff-trjI/AAAAAAABDNc/8CbF-vtjfIkgYPc22tIGCG0R246a81mogCLcBGAsYHQ/w600-h337-p-k-no-nu/schema-markup-blog-seo.JPG' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Apaitu' data-text='Apaitu' href='https://www.bernekellboy.biz.id/search/label/Apaitu' rel='tag'>
</a>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Schema Markup Structured Data Webpage, WebSite, dan Blogposting' href='https://www.bernekellboy.biz.id/2023/08/schema-markup-structured-data-webpage.html' rel='bookmark'>
Schema Markup Structured Data Webpage, WebSite, dan Blogposting
</a>
</h2>
<p class='postEntry snippet'>
Schema Markup Webpage, WebSite, dan Blogposting merupakan skema blog atau website terpenting dalam …
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 29, 2023' datetime='2023-08-29T10:18:00-07:00' title='Published: Agustus 29, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/schema-markup-structured-data-webpage.html"
},
"headline": "Schema Markup Structured Data Webpage, WebSite, dan Blogposting","description": "Schema Markup Webpage, WebSite, dan Blogposting merupakan skema blog atau website terpenting dalam Structured Data (Data Terstruktur). Denga...","datePublished": "2023-08-29T10:18:00-07:00",
"dateModified": "2023-08-29T10:18:03-07:00","image": {
"@type": "ImageObject","url": "https://1.bp.blogspot.com/-k3B6PiiP4n4/XkeQff-trjI/AAAAAAABDNc/8CbF-vtjfIkgYPc22tIGCG0R246a81mogCLcBGAsYHQ/w1200-h630-p-k-no-nu/schema-markup-blog-seo.JPG",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/cara-membuat-schema-markup-pada-blogger.html'>
<img alt='Cara Membuat Schema Markup pada Blogger' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwBPvjEH5wJ-er_3_coP6CRRX4ng9oWLaUhidpsgj7dg0IOFFva2R0lo0lhQGWQyJlZPIjnQr_XTo5oCMWKPZd9Abh6eW1swDGZg3hFWIUUGzIFjmHVEzTSPq1aFVfuNNSSi020mlxqbXomleIsM9booM7LVuXuFLMvEQ_cxN5aIiuFCeftPMHVZMs5j0L/w600-h337-p-k-no-nu/schema-markup-blog.JPG' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
<a aria-label='Blogger' data-text='Blogger' href='https://www.bernekellboy.biz.id/search/label/Blogger' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Cara Membuat Schema Markup pada Blogger' href='https://www.bernekellboy.biz.id/2023/08/cara-membuat-schema-markup-pada-blogger.html' rel='bookmark'>
Cara Membuat Schema Markup pada Blogger
</a>
</h2>
<p class='postEntry snippet'>
Schema Markup sudah banyak digunakan pada Website, tetapi hanya beberapa yang mengetahui tentang …
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 29, 2023' datetime='2023-08-29T09:55:00-07:00' title='Published: Agustus 29, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/cara-membuat-schema-markup-pada-blogger.html"
},
"headline": "Cara Membuat Schema Markup pada Blogger","description": "Schema Markup sudah banyak digunakan pada Website, tetapi hanya beberapa yang mengetahui tentang Schema Markup atau Rich Snippet . Jangan ...","datePublished": "2023-08-29T09:55:00-07:00",
"dateModified": "2023-08-29T09:56:36-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwBPvjEH5wJ-er_3_coP6CRRX4ng9oWLaUhidpsgj7dg0IOFFva2R0lo0lhQGWQyJlZPIjnQr_XTo5oCMWKPZd9Abh6eW1swDGZg3hFWIUUGzIFjmHVEzTSPq1aFVfuNNSSi020mlxqbXomleIsM9booM7LVuXuFLMvEQ_cxN5aIiuFCeftPMHVZMs5j0L/w1200-h630-p-k-no-nu/schema-markup-blog.JPG",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/belajar-sintaks-yang-harus-di-pahami.html'>
<img alt='Belajar: Sintaks Yang Harus Di Pahami Dalam CSS.' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqJ1QXSJLIP-jQmYnUDFGmM5yBwykH6q6FAq2EdrPVLkbebhFApSOgdJJ6xUVwcMBtSwsWiui-dY6aPlSDtSKWgg3MUi2tmSHqxJv7Cu73mX7yhSVvlflDolA0P2y8B37QDrQu5dqmW96zmYxC3Ib0wEsO3yvZels37D4WOAD04z1Q2dmZqNu3aAE_aQ/w600-h337-p-k-no-nu/images%20(5).png' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='coding' data-text='coding' href='https://www.bernekellboy.biz.id/search/label/coding' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Belajar: Sintaks Yang Harus Di Pahami Dalam CSS.' href='https://www.bernekellboy.biz.id/2023/08/belajar-sintaks-yang-harus-di-pahami.html' rel='bookmark'>
Belajar: Sintaks Yang Harus Di Pahami Dalam CSS.
</a>
</h2>
<p class='postEntry snippet'>
Sintaks CSS terdiri dari dua bagian utama, yaitu declaration dan selector. 1. Declaration menghu…
</p>
<div class='postInfo'>
<time class='postTimestamp updated' data-text='Agustus 29, 2023' datetime='2023-08-29T09:41:41-07:00' title='Last updated: Agustus 29, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/belajar-sintaks-yang-harus-di-pahami.html"
},
"headline": "Belajar: Sintaks Yang Harus Di Pahami Dalam CSS.","description": "  Sintaks CSS terdiri dari dua bagian utama, yaitu declaration dan selector. 1. Declaration menghubungkan antara sebuah properti dan nilain...","datePublished": "2023-08-28T16:20:00-07:00",
"dateModified": "2023-08-29T09:41:41-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqJ1QXSJLIP-jQmYnUDFGmM5yBwykH6q6FAq2EdrPVLkbebhFApSOgdJJ6xUVwcMBtSwsWiui-dY6aPlSDtSKWgg3MUi2tmSHqxJv7Cu73mX7yhSVvlflDolA0P2y8B37QDrQu5dqmW96zmYxC3Ib0wEsO3yvZels37D4WOAD04z1Q2dmZqNu3aAE_aQ/w1200-h630-p-k-no-nu/images%20(5).png",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "NEKELL CODERS"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/konsep-burnout-dalam-konteks-islam.html'>
<img alt='Konsep Burnout dalam Konteks Islam' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGskOk-8RohxEU3NM7KXo-AT64DT0jDcSjkcxGubUebXtz2nFty6uG53A3NUHgOcvG0ff6yYbtuVUl8LcVK9l9WriGByYYcFZYFoDiLB-rGoMzXDwDvmJyb-qCrGwIw_1HGLqPimRtCFMaYLDC7bXIlHVRGjuqH5ZdftdKWwhrajqy80zTWfWf5z-dYoY/w600-h337-p-k-no-nu/m-t-elgassier-cugryvziO_M-unsplash.jpg' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
<a aria-label='Islami' data-text='Islami' href='https://www.bernekellboy.biz.id/search/label/Islami' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Konsep Burnout dalam Konteks Islam' href='https://www.bernekellboy.biz.id/2023/08/konsep-burnout-dalam-konteks-islam.html' rel='bookmark'>
Konsep Burnout dalam Konteks Islam
</a>
</h2>
<p class='postEntry snippet'>
Manusia saat ini dituntut untuk selalu produktif hingga berpikir dunia penuh tekanan dan tuntutan, …
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 27, 2023' datetime='2023-08-27T15:13:00-07:00' title='Published: Agustus 27, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/konsep-burnout-dalam-konteks-islam.html"
},
"headline": "Konsep Burnout dalam Konteks Islam","description": "Manusia saat ini dituntut untuk selalu produktif hingga berpikir dunia penuh tekanan dan tuntutan, tidak heran banyak yang mengalami burnout...","datePublished": "2023-08-27T15:13:00-07:00",
"dateModified": "2023-08-27T15:13:00-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGskOk-8RohxEU3NM7KXo-AT64DT0jDcSjkcxGubUebXtz2nFty6uG53A3NUHgOcvG0ff6yYbtuVUl8LcVK9l9WriGByYYcFZYFoDiLB-rGoMzXDwDvmJyb-qCrGwIw_1HGLqPimRtCFMaYLDC7bXIlHVRGjuqH5ZdftdKWwhrajqy80zTWfWf5z-dYoY/w1200-h630-p-k-no-nu/m-t-elgassier-cugryvziO_M-unsplash.jpg",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/10-kelebihan-aplikasi-pixellab-mengedit.html'>
<img alt='10 Kelebihan Aplikasi PixelLab: Mengedit Gambar dan Desain Menjadi Lebih Menarik' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihUT0Eu83jLsPhQNGKIdzLESBCeV2_s5bAaVcdZCn1ywlFG2EtxL7HazPO0w1F_Iqp27GiPYr8TG0aqSR-JY_mjU4gD-ZB6VOJReS_0YPrNNrJohzKTNusRA_gxIxVvPIXOUG-Ey9GHkRpBHMjVpX8XHNRkau8xuuXgeJer3pGNKS9Jsr5rgLhpYj_ZMI/w600-h337-p-k-no-nu/10%20Kelebihan%20Aplikasi%20PixelLab%20Mengedit%20Gambar%20dan%20Desain%20Menjadi%20Lebih%20Menarik.webp' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Android' data-text='Android' href='https://www.bernekellboy.biz.id/search/label/Android' rel='tag'>
</a>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='10 Kelebihan Aplikasi PixelLab: Mengedit Gambar dan Desain Menjadi Lebih Menarik' href='https://www.bernekellboy.biz.id/2023/08/10-kelebihan-aplikasi-pixellab-mengedit.html' rel='bookmark'>
10 Kelebihan Aplikasi PixelLab: Mengedit Gambar dan Desain Menjadi Lebih Menarik
</a>
</h2>
<p class='postEntry snippet'>
PixelLab adalah aplikasi pengeditan gambar dan desain yang sangat populer dan dapat diandalkan. Dal…
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 26, 2023' datetime='2023-08-26T15:10:00-07:00' title='Published: Agustus 26, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/10-kelebihan-aplikasi-pixellab-mengedit.html"
},
"headline": "10 Kelebihan Aplikasi PixelLab: Mengedit Gambar dan Desain Menjadi Lebih Menarik","description": "PixelLab adalah aplikasi pengeditan gambar dan desain yang sangat populer dan dapat diandalkan. Dalam artikel ini, kami akan menyoroti 10 ke...","datePublished": "2023-08-26T15:10:00-07:00",
"dateModified": "2023-08-26T15:10:00-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihUT0Eu83jLsPhQNGKIdzLESBCeV2_s5bAaVcdZCn1ywlFG2EtxL7HazPO0w1F_Iqp27GiPYr8TG0aqSR-JY_mjU4gD-ZB6VOJReS_0YPrNNrJohzKTNusRA_gxIxVvPIXOUG-Ey9GHkRpBHMjVpX8XHNRkau8xuuXgeJer3pGNKS9Jsr5rgLhpYj_ZMI/w1200-h630-p-k-no-nu/10%20Kelebihan%20Aplikasi%20PixelLab%20Mengedit%20Gambar%20dan%20Desain%20Menjadi%20Lebih%20Menarik.webp",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/keunggulan-aplikasi-threads.html'>
<img alt='Keunggulan Aplikasi Threads Dibandingkan Twitter' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQaRPvwRqpzKofgvBcHLgH2SY9kO09D0jcixKKGrP6E0JvPJqkslxDCgp1v8ZF_jQmZo1NDK6toQK4e9zTIPBOE341uBKiMIEKVgLnuuqZCA-AIgZ7TUsn6NDUvIUleEci2x-_3xNJ2JsmCFtcnPgQacnVfNSyybCMJP1ni6lPjrICOuVWwzRBwKDop_s/w600-h337-p-k-no-nu/Keunggulan%20Aplikasi%20Threads%20Dibandingkan%20Twitter.jpg' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
<a aria-label='informasi' data-text='informasi' href='https://www.bernekellboy.biz.id/search/label/informasi' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Keunggulan Aplikasi Threads Dibandingkan Twitter' href='https://www.bernekellboy.biz.id/2023/08/keunggulan-aplikasi-threads.html' rel='bookmark'>
Keunggulan Aplikasi Threads Dibandingkan Twitter
</a>
</h2>
<p class='postEntry snippet'>
Aplikasi Threads adalah platform media sosial berbasis teks yang dikembangkan oleh Twitter. Meskipu…
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 26, 2023' datetime='2023-08-26T14:57:00-07:00' title='Published: Agustus 26, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/keunggulan-aplikasi-threads.html"
},
"headline": "Keunggulan Aplikasi Threads Dibandingkan Twitter","description": "Aplikasi Threads adalah platform media sosial berbasis teks yang dikembangkan oleh Twitter. Meskipun memiliki banyak kesamaan dengan Twitter...","datePublished": "2023-08-26T14:57:00-07:00",
"dateModified": "2023-08-26T14:57:00-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQaRPvwRqpzKofgvBcHLgH2SY9kO09D0jcixKKGrP6E0JvPJqkslxDCgp1v8ZF_jQmZo1NDK6toQK4e9zTIPBOE341uBKiMIEKVgLnuuqZCA-AIgZ7TUsn6NDUvIUleEci2x-_3xNJ2JsmCFtcnPgQacnVfNSyybCMJP1ni6lPjrICOuVWwzRBwKDop_s/w1200-h630-p-k-no-nu/Keunggulan%20Aplikasi%20Threads%20Dibandingkan%20Twitter.jpg",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/cara-menghilangkan-bulan-tahun-pada-url.html'>
<img alt='Cara Menghilangkan Bulan & Tahun Pada URL Blogger Agar Terlihat Seperti WordPress.' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFLzHVW6ELf6oO9RB5MJp7udiMsHv_sFNoeNtTYbMi6ju2ONMIk3NKCCno4TV3DjJyiBtXjnwoDb1jpwokMhp2lC1KlEuAjqVKsFA3xpSh4BZ7uQtUEfrzPGQNsDhZP88Ri6p-n_9tyzC9KfOYMPLyrzp1UE3LRw9yllZDQ998oolQbY57vOXUlw3sPhM/w600-h337-p-k-no-nu/images%20(8).png' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Blogger' data-text='Blogger' href='https://www.bernekellboy.biz.id/search/label/Blogger' rel='tag'>
</a>
<a aria-label='Blogging' data-text='Blogging' href='https://www.bernekellboy.biz.id/search/label/Blogging' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Cara Menghilangkan Bulan & Tahun Pada URL Blogger Agar Terlihat Seperti WordPress.' href='https://www.bernekellboy.biz.id/2023/08/cara-menghilangkan-bulan-tahun-pada-url.html' rel='bookmark'>
Cara Menghilangkan Bulan & Tahun Pada URL Blogger Agar Terlihat Seperti WordPress.
</a>
</h2>
<p class='postEntry snippet'>
Dikalangan masyarakat Indonesia maupun luar Indonesia tidak akan pernah asing dengan yang namany…
</p>
<div class='postInfo'>
<time class='postTimestamp updated' data-text='Agustus 29, 2023' datetime='2023-08-29T09:42:56-07:00' title='Last updated: Agustus 29, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/cara-menghilangkan-bulan-tahun-pada-url.html"
},
"headline": "Cara Menghilangkan Bulan \u0026 Tahun Pada URL Blogger Agar Terlihat Seperti WordPress.","description": "  Dikalangan masyarakat Indonesia maupun luar Indonesia tidak akan pernah asing dengan yang namanya Blogger/Blogspot untuk mencari informas...","datePublished": "2023-08-26T00:25:00-07:00",
"dateModified": "2023-08-29T09:42:56-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFLzHVW6ELf6oO9RB5MJp7udiMsHv_sFNoeNtTYbMi6ju2ONMIk3NKCCno4TV3DjJyiBtXjnwoDb1jpwokMhp2lC1KlEuAjqVKsFA3xpSh4BZ7uQtUEfrzPGQNsDhZP88Ri6p-n_9tyzC9KfOYMPLyrzp1UE3LRw9yllZDQ998oolQbY57vOXUlw3sPhM/w1200-h630-p-k-no-nu/images%20(8).png",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "NEKELL CODERS"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/penjelasan-tentang-cara-dapat-visitor_26.html'>
<img alt='Penjelasan tentang Cara Dapat Visitor dengan Menaikkan Rank Keyword di Google.' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0J3GCvdA89DoPEPmvWTadejO6CfXXgGatf1n6OjZkuDHqhi0WEnvcaIlKilOCyQp44iucWc-G08uCmarG0zo04qZCWIQIV_dcaZ1LE1QfcC9EaBmzzgOR_boAr4i_RP_yq88rqOBylklyq_f05TraG9Rv_pF5hj3U9KMmq3U0WfRSoFxBuq3LvTU1BYY/w600-h337-p-k-no-nu/images%20(54).jpeg' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='TIPS DAN INFO' data-text='TIPS DAN INFO' href='https://www.bernekellboy.biz.id/search/label/TIPS%20DAN%20INFO' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Penjelasan tentang Cara Dapat Visitor dengan Menaikkan Rank Keyword di Google.' href='https://www.bernekellboy.biz.id/2023/08/penjelasan-tentang-cara-dapat-visitor_26.html' rel='bookmark'>
Penjelasan tentang Cara Dapat Visitor dengan Menaikkan Rank Keyword di Google.
</a>
</h2>
<p class='postEntry snippet'>
Pada era digital saat ini, memiliki website atau blog yang populer dan mendapatkan banyak pengunj…
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 26, 2023' datetime='2023-08-26T00:08:00-07:00' title='Published: Agustus 26, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/penjelasan-tentang-cara-dapat-visitor_26.html"
},
"headline": "Penjelasan tentang Cara Dapat Visitor dengan Menaikkan Rank Keyword di Google.","description": "  Pada era digital saat ini, memiliki website atau blog yang populer dan mendapatkan banyak pengunjung menjadi tujuan utama bagi banyak pemi...","datePublished": "2023-08-26T00:08:00-07:00",
"dateModified": "2023-08-26T00:08:03-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0J3GCvdA89DoPEPmvWTadejO6CfXXgGatf1n6OjZkuDHqhi0WEnvcaIlKilOCyQp44iucWc-G08uCmarG0zo04qZCWIQIV_dcaZ1LE1QfcC9EaBmzzgOR_boAr4i_RP_yq88rqOBylklyq_f05TraG9Rv_pF5hj3U9KMmq3U0WfRSoFxBuq3LvTU1BYY/w1200-h630-p-k-no-nu/images%20(54).jpeg",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "NEKELL CODERS"
}
}</script>
</div>
</article>
<article class='hentry'>
<div class='postThumbnail'>
<a href='https://www.bernekellboy.biz.id/2023/08/meningkatkan-efisiensi-dengan-ktp.html'>
<img alt='Meningkatkan Efisiensi dengan KTP Digital: Transformasi Menuju Berbagai Layanan Publik Online' class='imgThumb lazy' data-src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ng0UGxthYAOnu-BaKLG6dsspBJ_uWSA9rWjDheMmQ5AT26D8Kv4ZuBlQrdtOcE0Cj9FZxv-DfvTONc58YY8VTE2sjxuz7VHNiOrxl16rwig6H8yOZrpHuzMuDEzeo-7ClLCnT1aLO6AJm0OJz7kMeY0Sh51vfVSJFYyy2gC1kZfZBmvFr3bvad7_yxs/w600-h337-p-k-no-nu/ktp%20digital.jpg' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='/>
</a>
</div>
<div class='postContent'>
<div class='postHeader'>
<div class='postLabel' data-text='in'>
<a aria-label='Artikel' data-text='Artikel' href='https://www.bernekellboy.biz.id/search/label/Artikel' rel='tag'>
</a>
<a aria-label='informasi' data-text='informasi' href='https://www.bernekellboy.biz.id/search/label/informasi' rel='tag'>
</a>
</div>
</div>
<h2 class='postTitle'>
<a data-text='Meningkatkan Efisiensi dengan KTP Digital: Transformasi Menuju Berbagai Layanan Publik Online' href='https://www.bernekellboy.biz.id/2023/08/meningkatkan-efisiensi-dengan-ktp.html' rel='bookmark'>
Meningkatkan Efisiensi dengan KTP Digital: Transformasi Menuju Berbagai Layanan Publik Online
</a>
</h2>
<p class='postEntry snippet'>
Dalam era di mana teknologi informasi semakin berkembang pesat pemerintah Indonesia mengambil inisi…
</p>
<div class='postInfo'>
<time class='postTimestamp published' data-text='Agustus 25, 2023' datetime='2023-08-25T14:51:00-07:00' title='Published: Agustus 25, 2023'></time>
</div>
<script type='application/ld+json'>{
"@context": "http://schema.org",
"@type": "BlogPosting",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.bernekellboy.biz.id/2023/08/meningkatkan-efisiensi-dengan-ktp.html"
},
"headline": "Meningkatkan Efisiensi dengan KTP Digital: Transformasi Menuju Berbagai Layanan Publik Online","description": "Dalam era di mana teknologi informasi semakin berkembang pesat pemerintah Indonesia mengambil inisiatif dengan memperkenalkan KTP digital se...","datePublished": "2023-08-25T14:51:00-07:00",
"dateModified": "2023-08-25T14:51:00-07:00","image": {
"@type": "ImageObject","url": "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ng0UGxthYAOnu-BaKLG6dsspBJ_uWSA9rWjDheMmQ5AT26D8Kv4ZuBlQrdtOcE0Cj9FZxv-DfvTONc58YY8VTE2sjxuz7VHNiOrxl16rwig6H8yOZrpHuzMuDEzeo-7ClLCnT1aLO6AJm0OJz7kMeY0Sh51vfVSJFYyy2gC1kZfZBmvFr3bvad7_yxs/w1200-h630-p-k-no-nu/ktp%20digital.jpg",
"height": 720,
"width": 1200},"publisher": {
"@type": "Organization",
"name": "Jago Desain",
"logo": {
"@type": "ImageObject",
"url": "https://1.bp.blogspot.com/-50s1RMWV7jI/X8OaYjJcMiI/AAAAAAAAQK4/sWcpbaP0Sq0hsW473Vnb8AyBvYvdSQEPwCNcBGAsYHQ/s0/jd-logo.png",
"width": 297,
"height": 45
}
},"author": {
"@type": "Person",
"name": "AnonSec Team"
}
}</script>
</div>
</article>
</div>
<div class='blogPager' id='blogPager'>
<div class='newerLink noPost' data-text='Terbaru'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(12.000000, 12.000000) rotate(-270.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
</div>
<div class='homeLink noPost'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.400000, 2.000000)'><path class='fill' d='M1.24344979e-14,11.713 C1.24344979e-14,6.082 0.614,6.475 3.919,3.41 C5.365,2.246 7.615,0 9.558,0 C11.5,0 13.795,2.235 15.254,3.41 C18.559,6.475 19.172,6.082 19.172,11.713 C19.172,20 17.213,20 9.586,20 C1.959,20 1.24344979e-14,20 1.24344979e-14,11.713 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M1.24344979e-14,11.713 C1.24344979e-14,6.082 0.614,6.475 3.919,3.41 C5.365,2.246 7.615,0 9.558,0 C11.5,0 13.795,2.235 15.254,3.41 C18.559,6.475 19.172,6.082 19.172,11.713 C19.172,20 17.213,20 9.586,20 C1.959,20 1.24344979e-14,20 1.24344979e-14,11.713 Z'></path></g></svg>
</div>
<a aria-label='Terlama' class='olderLink' data-text='Terlama' href='https://www.bernekellboy.biz.id/search?updated-max=2023-08-25T14:51:00-07:00&max-results=10'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(12.000000, 12.000000) rotate(-90.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
</a>
</div>
</div>
</div>
<div class='section' id='add-widget'>
<div class='widget Label' data-version='2' id='Label2'>
<h3 class='title'>
Label
</h3>
<div class='widget-content list-label-widget-content'>
<ul>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/5G'>5G</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Acer'>Acer</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Advan'>Advan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/alam'>alam</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Alcatel'>Alcatel</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Amazon'>Amazon</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Android'>Android</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20AYAM'>ANEKA AYAM</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20BUBUR%20KOLAK'>ANEKA BUBUR KOLAK</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20CAMILAN'>ANEKA CAMILAN</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20DAGING'>ANEKA DAGING</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20ES'>ANEKA ES</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20GORENGAN'>ANEKA GORENGAN</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20IKAN%20SEAFOOD'>ANEKA IKAN SEAFOOD</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20JAJANAN'>ANEKA JAJANAN</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20KUE'>ANEKA KUE</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20KUE%20BASAH'>ANEKA KUE BASAH</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20KUE%20KERING'>ANEKA KUE KERING</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20MIE%20PASTA'>ANEKA MIE PASTA</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20MINUMAN'>ANEKA MINUMAN</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20NASI'>ANEKA NASI</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20PUDING'>ANEKA PUDING</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20ROTI'>ANEKA ROTI</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20SAMBAL'>ANEKA SAMBAL</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20SAYUR%20MAYUR'>ANEKA SAYUR MAYUR</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20SUP%20SOTO'>ANEKA SUP SOTO</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20TAHU%20TEMPE'>ANEKA TAHU TEMPE</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ANEKA%20TELUR'>ANEKA TELUR</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/antiban'>antiban</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Apaitu'>Apaitu</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/aplikasi'>aplikasi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Apple'>Apple</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Artikel'>Artikel</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Artikel%20Tabungan'>Artikel Tabungan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Asiafone'>Asiafone</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Asus'>Asus</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Bank%20BPD'>Bank BPD</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Bank%20Syariah'>Bank Syariah</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Berbisnis'>Berbisnis</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/berita'>berita</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Berita%20Bank'>Berita Bank</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/berlibur'>berlibur</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Beyond'>Beyond</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Bisnis'>Bisnis</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/BlackBerry'>BlackBerry</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Blogger'>Blogger</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Blogging'>Blogging</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/bot'>bot</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Brancless%20Banking'>Brancless Banking</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Bunga%20Bank'>Bunga Bank</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Catatan%20Ringan'>Catatan Ringan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Centos'>Centos</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/cloud'>cloud</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/coding'>coding</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Cyberpanel'>Cyberpanel</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Daftar%20Harga%20Handphone'>Daftar Harga Handphone</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/debian'>debian</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Debug'>Debug</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Desain'>Desain</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Discord'>Discord</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Docker'>Docker</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/e-Banking'>e-Banking</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/e-Money'>e-Money</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Edukasi%20Perbankan'>Edukasi Perbankan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Facebook'>Facebook</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/filter'>filter</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/flaskdisk'>flaskdisk</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Free%20Fire'>Free Fire</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Ftp'>Ftp</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Game'>Game</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Growtopia'>Growtopia</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Honor'>Honor</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Hosting'>Hosting</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/HTC'>HTC</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/html'>html</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Huawei'>Huawei</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Indonesia'>Indonesia</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/informasi'>informasi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/instagram'>instagram</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/internet'>internet</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/IOS'>IOS</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Islami'>Islami</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Kesehataan'>Kesehataan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Komparasi'>Komparasi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Kredit%20Bank'>Kredit Bank</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Laku%20Pandai'>Laku Pandai</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/laravel'>laravel</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Lenovo'>Lenovo</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/LG'>LG</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/linux'>linux</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Live'>Live</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/log'>log</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/loker'>loker</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Mobile%20Legends'>Mobile Legends</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Motorola'>Motorola</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/news'>news</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/NFT'>NFT</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Nokia'>Nokia</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Oppo'>Oppo</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Pacar'>Pacar</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Panduan'>Panduan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/pelajaran'>pelajaran</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Pembiayaan%20Syariah'>Pembiayaan Syariah</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/phone'>phone</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Photo%20Editor'>Photo Editor</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/php'>php</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/prakerja'>prakerja</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/PUBG'>PUBG</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/rahasia'>rahasia</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Review'>Review</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Sakura%20School%20Simulator'>Sakura School Simulator</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Samsung'>Samsung</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Script'>Script</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/server'>server</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/shopee'>shopee</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Smartfren'>Smartfren</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Sony'>Sony</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Sql'>Sql</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ssh'>ssh</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/ssl'>ssl</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Survey'>Survey</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan'>Tabungan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Bebas%20Biaya%20Administrasi'>Tabungan Bebas Biaya Administrasi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Berjangka'>Tabungan Berjangka</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Harian'>Tabungan Harian</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Khusus'>Tabungan Khusus</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Perorangan'>Tabungan Perorangan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Syariah'>Tabungan Syariah</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tabungan%20Umroh%20%26%20Haji'>Tabungan Umroh & Haji</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Teknologi'>Teknologi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Teknologi%20iklan'>Teknologi iklan</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Telegram'>Telegram</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/template'>template</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tentang%20Kami'>Tentang Kami</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Termux'>Termux</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/tips'>tips</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/TIPS%20DAN%20INFO'>TIPS DAN INFO</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Transfer%20Bank'>Transfer Bank</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Tutorial'>Tutorial</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/UI'>UI</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/UX'>UX</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Vivo'>Vivo</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Vlog'>Vlog</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Whatsapp'>Whatsapp</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/windows'>windows</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/wisataalam'>wisataalam</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Xiaomi'>Xiaomi</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Youtube'>Youtube</a></li>
<li><a class='label-name' href='https://www.bernekellboy.biz.id/search/label/Zepeto'>Zepeto</a></li>
</ul>
</div>
</div><div class='widget Stats' data-version='2' id='Stats1'>
<h3 class='title'>
Total Tayangan Halaman
</h3>
<div class='widget-content'>
<div id='Stats1_content' style='display: none;'>
<script src='https://www.gstatic.com/charts/loader.js' type='text/javascript'></script>
<span id='Stats1_sparklinespan' style='display:inline-block; width:75px; height:30px'></span>
<span class='counter-wrapper graph-counter-wrapper' id='Stats1_totalCount'>
</span>
</div>
</div>
</div><div class='widget ContactForm' data-version='2' id='ContactForm1'>
<h3 class='title'>
Hubungi Kami
</h3>
<div class='contact-form-widget'>
<div class='form'>
<form name='contact-form'>
<p></p>
Nama
<br/>
<input class='contact-form-name' id='ContactForm1_contact-form-name' name='name' size='30' type='text' value=''/>
<p></p>
Email
<span style='font-weight: bolder;'>*</span>
<br/>
<input class='contact-form-email' id='ContactForm1_contact-form-email' name='email' size='30' type='text' value=''/>
<p></p>
Pesan
<span style='font-weight: bolder;'>*</span>
<br/>
<textarea class='contact-form-email-message' cols='25' id='ContactForm1_contact-form-email-message' name='email-message' rows='5'></textarea>
<p></p>
<input class='contact-form-button contact-form-button-submit' id='ContactForm1_contact-form-submit' type='button' value='Kirim'/>
<p></p>
<div style='text-align: center; max-width: 222px; width: 100%'>
<p class='contact-form-error-message' id='ContactForm1_contact-form-error-message'></p>
<p class='contact-form-success-message' id='ContactForm1_contact-form-success-message'></p>
</div>
</form>
</div>
</div>
</div><div class='widget LinkList' data-version='2' id='LinkList1'>
<h3 class='title'>
Tetap Terhubung Dengan Kami
</h3>
<div class='widget-content'>
<ul>
<li><a href='https://youtube.com/channel/'>YouTube </a></li>
<li><a href='https://www.facebook.com/'>Facebook </a></li>
<li><a href='https://twitter.com/'>Twitter </a></li>
<li><a href='#'>Youtube</a></li>
<li><a href='#'>LinkedIn</a></li>
<li><a href='https://www.bernekellboy.biz.id/p/ketentuan-dan-kebijakan-iklan.html?m=1'>Disclaimer</a></li>
</ul>
</div>
</div><div class='widget HTML' data-version='2' id='HTML06'>
<div class='widget-content'>
<a href="//www.dmca.com/Protection/Status.aspx?ID=090f6134-5e5e-46fd-a879-b366b9a65060" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca-badge-w100-5x1-09.png?ID=090f6134-5e5e-46fd-a879-b366b9a65060" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script>
</div>
</div></div>
</main>
<!--[ Sidebar content ]-->
<aside class='sidebar'>
<div class='no-items section' id='side-widget'>
</div>
<!--[ Sidebar sticky ]-->
</aside>
</div>
</div>
</div>
<!--[ Mobile Menu ]-->
<div class='section' id='mobile-menu'><div class='widget LinkList' data-version='2' id='LinkList003'>
<ul class='mobileMenu'>
<li class='mHome'>
<a aria-label='Home' href='https://www.bernekellboy.biz.id/' role='button'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.400000, 2.000000)'><path class='fill' d='M1.24344979e-14,11.713 C1.24344979e-14,6.082 0.614,6.475 3.919,3.41 C5.365,2.246 7.615,0 9.558,0 C11.5,0 13.795,2.235 15.254,3.41 C18.559,6.475 19.172,6.082 19.172,11.713 C19.172,20 17.213,20 9.586,20 C1.959,20 1.24344979e-14,20 1.24344979e-14,11.713 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M1.24344979e-14,11.713 C1.24344979e-14,6.082 0.614,6.475 3.919,3.41 C5.365,2.246 7.615,0 9.558,0 C11.5,0 13.795,2.235 15.254,3.41 C18.559,6.475 19.172,6.082 19.172,11.713 C19.172,20 17.213,20 9.586,20 C1.959,20 1.24344979e-14,20 1.24344979e-14,11.713 Z'></path></g></svg>
</a>
</li>
<li class='mSearch'>
<label for='searchInput'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.000000, 2.000000)'><circle class='fill' cx='9.76659044' cy='9.76659044' r='8.9885584' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></circle><line x1='16.0183067' x2='19.5423342' y1='16.4851259' y2='20.0000001'></line><circle class='fill' cx='9.76659044' cy='9.76659044' r='8.9885584'></circle><line x1='16.0183067' x2='19.5423342' y1='16.4851259' y2='20.0000001'></line></g></svg>
</label>
</li>
<li class='mNav'>
<label for='offnav-input'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(3.000000, 3.000000)'><path class='fill' d='M18.00036,3.6738 C18.00036,5.7024 16.35516,7.3476 14.32656,7.3476 C12.29796,7.3476 10.65366,5.7024 10.65366,3.6738 C10.65366,1.6452 12.29796,-6.39488462e-15 14.32656,-6.39488462e-15 C16.35516,-6.39488462e-15 18.00036,1.6452 18.00036,3.6738 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M18.00036,3.6738 C18.00036,5.7024 16.35516,7.3476 14.32656,7.3476 C12.29796,7.3476 10.65366,5.7024 10.65366,3.6738 C10.65366,1.6452 12.29796,-6.39488462e-15 14.32656,-6.39488462e-15 C16.35516,-6.39488462e-15 18.00036,1.6452 18.00036,3.6738 Z'></path><path class='fill' d='M7.3467,3.6738 C7.3467,5.7024 5.7024,7.3476 3.6729,7.3476 C1.6452,7.3476 4.79616347e-15,5.7024 4.79616347e-15,3.6738 C4.79616347e-15,1.6452 1.6452,-6.39488462e-15 3.6729,-6.39488462e-15 C5.7024,-6.39488462e-15 7.3467,1.6452 7.3467,3.6738 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M7.3467,3.6738 C7.3467,5.7024 5.7024,7.3476 3.6729,7.3476 C1.6452,7.3476 4.79616347e-15,5.7024 4.79616347e-15,3.6738 C4.79616347e-15,1.6452 1.6452,-6.39488462e-15 3.6729,-6.39488462e-15 C5.7024,-6.39488462e-15 7.3467,1.6452 7.3467,3.6738 Z'></path><path class='fill' d='M18.00036,14.26194 C18.00036,16.29054 16.35516,17.93484 14.32656,17.93484 C12.29796,17.93484 10.65366,16.29054 10.65366,14.26194 C10.65366,12.23334 12.29796,10.58814 14.32656,10.58814 C16.35516,10.58814 18.00036,12.23334 18.00036,14.26194 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M18.00036,14.26194 C18.00036,16.29054 16.35516,17.93484 14.32656,17.93484 C12.29796,17.93484 10.65366,16.29054 10.65366,14.26194 C10.65366,12.23334 12.29796,10.58814 14.32656,10.58814 C16.35516,10.58814 18.00036,12.23334 18.00036,14.26194 Z'></path><path class='fill' d='M7.3467,14.26194 C7.3467,16.29054 5.7024,17.93484 3.6729,17.93484 C1.6452,17.93484 4.79616347e-15,16.29054 4.79616347e-15,14.26194 C4.79616347e-15,12.23334 1.6452,10.58814 3.6729,10.58814 C5.7024,10.58814 7.3467,12.23334 7.3467,14.26194 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M7.3467,14.26194 C7.3467,16.29054 5.7024,17.93484 3.6729,17.93484 C1.6452,17.93484 4.79616347e-15,16.29054 4.79616347e-15,14.26194 C4.79616347e-15,12.23334 1.6452,10.58814 3.6729,10.58814 C5.7024,10.58814 7.3467,12.23334 7.3467,14.26194 Z'></path></g></svg>
</label>
</li>
<li class='mDark'>
<div onclick='darkMode()'>
<svg class='line' viewBox='0 0 24 24'><path class='fill' d='M183.72453,170.371a10.4306,10.4306,0,0,1-.8987,3.793,11.19849,11.19849,0,0,1-5.73738,5.72881,10.43255,10.43255,0,0,1-3.77582.89138,1.99388,1.99388,0,0,0-1.52447,3.18176,10.82936,10.82936,0,1,0,15.118-15.11819A1.99364,1.99364,0,0,0,183.72453,170.371Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(-168 -165)'></path><path class='fill' d='M183.72453,170.371a10.4306,10.4306,0,0,1-.8987,3.793,11.19849,11.19849,0,0,1-5.73738,5.72881,10.43255,10.43255,0,0,1-3.77582.89138,1.99388,1.99388,0,0,0-1.52447,3.18176,10.82936,10.82936,0,1,0,15.118-15.11819A1.99364,1.99364,0,0,0,183.72453,170.371Z' transform='translate(-169.3959 -166.45548)'></path></svg>
</div>
</li>
<li class='mTop'>
<div onclick='window.scrollTo({top: 0});'>
<svg class='line' viewBox='0 0 24 24'><g transform='translate(2.500000, 3.000000)'><path class='fill' d='M9.5,18 C3.00557739,18 0.456662548,17.5386801 0.0435259337,15.2033146 C-0.36961068,12.8679491 2.27382642,8.47741935 3.08841712,7.02846996 C5.81256986,2.18407813 7.66371927,0 9.5,0 C11.3362807,0 13.1874301,2.18407813 15.9115829,7.02846996 C16.7261736,8.47741935 19.3696107,12.8679491 18.9564741,15.2033146 C18.5443995,17.5386801 15.9944226,18 9.5,18 Z' style='fill: rgba(128 138 157 / 47%);stroke: none;' transform='translate(1.0000, 1.4000)'></path><path class='fill' d='M9.5,18 C3.00557739,18 0.456662548,17.5386801 0.0435259337,15.2033146 C-0.36961068,12.8679491 2.27382642,8.47741935 3.08841712,7.02846996 C5.81256986,2.18407813 7.66371927,0 9.5,0 C11.3362807,0 13.1874301,2.18407813 15.9115829,7.02846996 C16.7261736,8.47741935 19.3696107,12.8679491 18.9564741,15.2033146 C18.5443995,17.5386801 15.9944226,18 9.5,18 Z'></path></g></svg>
</div>
</li>
</ul>
</div></div>
<div class='safeWrap hidden'>
<div class='panel-primary'>
<div class='panel-heading'>
<h2>Generate Link</h2>
</div>
<div class='panel-body'>
<input autocomplete='off' id='generateurl' oninvalid='this.setCustomValidity('Please Enter valid link')' placeholder='Enter your link here...' required='required' type='url'/>
<span class='input-group-btn'>
<button class='btn-primary' id='btngenerate' oninvalid='this.setCustomValidity('Please Enter valid link')' required='required' type='button'>
<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M18.865 5.1238C19.302 5.2768 19.594 5.6888 19.594 6.1518V12.9248C19.594 14.8178 18.906 16.6248 17.691 18.0248C17.08 18.7298 16.307 19.2788 15.486 19.7228L11.928 21.6448L8.364 19.7218C7.542 19.2778 6.768 18.7298 6.156 18.0238C4.94 16.6238 4.25 14.8158 4.25 12.9208V6.1518C4.25 5.6888 4.542 5.2768 4.979 5.1238L11.561 2.8108C11.795 2.7288 12.05 2.7288 12.283 2.8108L18.865 5.1238Z'></path><path class='svg-c' d='M9.32251 11.9177L11.2145 13.8107L15.1125 9.91269'></path></svg>Generate</button></span>
<div class='hidden' id='generateloading'>
<svg viewBox='0 0 50 50' x='0px' y='0px'><path d='M25.251,6.461c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615V6.461z'><animateTransform attributeName='transform' attributeType='xml' dur='0.6s' from='0 25 25' repeatCount='indefinite' to='360 25 25' type='rotate'></animateTransform></path></svg></div>
<div class='hidden' id='generatelink'>
<input id='resulturl' onclick='this.focus();this.select()' readonly='readonly' type='text'/>
<button class='copytoclipboard' data-clipboard-action='copy' data-clipboard-target='#resulturl' id='copytoclipboard'>Copy URL</button></div></div>
<a class='wcSafeClose' href='javascript:void'>Close</a>
</div></div>
<!--[ Footer section ]-->
<footer class='sectionInner'>
<!--[ Credit ]-->
<div class='creditInner'>
<p>© <span id='getYear'><script></script></span> ‧ <a href='https://www.bernekellboy.biz.id/'>Blog BernekellBoy</a>. All rights reserved. <span class='creator'>Made with ♥ by <a href='https://smashershub.in/'>Smashers Hub</a></span></p>
<!--[ Back top button ]-->
<div class='toTop' onclick='window.scrollTo({top: 0});'>
<!--[ Arrow up icon ]-->
<svg class='line' viewBox='0 0 24 24'><g transform='translate(12.000000, 12.000000) rotate(-180.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'><path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path></g></svg>
</div>
</div>
</footer>
</div>
<script>/*<![CDATA[*/
/* clipboard.js v1.5.16 */
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).Clipboard=t()}}(function(){return function t(e,n,i){function o(a,c){if(!n[a]){if(!e[a]){var l="function"==typeof require&&require;if(!c&&l)return l(a,!0);if(r)return r(a,!0);var s=new Error("Cannot find module '"+a+"'");throw s.code="MODULE_NOT_FOUND",s}var u=n[a]={exports:{}};e[a][0].call(u.exports,function(t){var n=e[a][1][t];return o(n||t)},u,u.exports,t,e,n,i)}return n[a].exports}for(var r="function"==typeof require&&require,a=0;a<i.length;a++)o(i[a]);return o}({1:[function(t,e,n){var i=9;if(Element&&!Element.prototype.matches){var o=Element.prototype;o.matches=o.matchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector||o.webkitMatchesSelector}e.exports=function(t,e){for(;t&&t.nodeType!==i;){if(t.matches(e))return t;t=t.parentNode}}},{}],2:[function(t,e,n){function i(t,e,n,i){return function(n){n.delegateTarget=o(n.target,e),n.delegateTarget&&i.call(t,n)}}var o=t("./closest");e.exports=function(t,e,n,o,r){var a=i.apply(this,arguments);return t.addEventListener(n,a,r),{destroy:function(){t.removeEventListener(n,a,r)}}}},{"./closest":1}],3:[function(t,e,n){n.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},n.nodeList=function(t){var e=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===e||"[object HTMLCollection]"===e)&&"length"in t&&(0===t.length||n.node(t[0]))},n.string=function(t){return"string"==typeof t||t instanceof String},n.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},{}],4:[function(t,e,n){var i=t("./is"),o=t("delegate");e.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!i.string(e))throw new TypeError("Second argument must be a String");if(!i.fn(n))throw new TypeError("Third argument must be a Function");if(i.node(t))return function(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}(t,e,n);if(i.nodeList(t))return function(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}(t,e,n);if(i.string(t))return function(t,e,n){return o(document.body,t,e,n)}(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}},{"./is":3,delegate:2}],5:[function(t,e,n){e.exports=function(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName)t.focus(),t.setSelectionRange(0,t.value.length),e=t.value;else{t.hasAttribute("contenteditable")&&t.focus();var n=window.getSelection(),i=document.createRange();i.selectNodeContents(t),n.removeAllRanges(),n.addRange(i),e=n.toString()}return e}},{}],6:[function(t,e,n){function i(){}i.prototype={on:function(t,e,n){var i=this.e||(this.e={});return(i[t]||(i[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){function i(){o.off(t,i),e.apply(n,arguments)}var o=this;return i._=e,this.on(t,i,n)},emit:function(t){for(var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),i=0,o=n.length;i<o;i++)n[i].fn.apply(n[i].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),i=n[t],o=[];if(i&&e)for(var r=0,a=i.length;r<a;r++)i[r].fn!==e&&i[r].fn._!==e&&o.push(i[r]);return o.length?n[t]=o:delete n[t],this}},e.exports=i},{}],7:[function(t,e,n){!function(i,o){if(void 0!==n)o(e,t("select"));else{var r={exports:{}};o(r,i.select),i.clipboardAction=r.exports}}(this,function(t,e){"use strict";var n=function(t){return t&&t.__esModule?t:{default:t}}(e),i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),r=function(){function t(e){(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")})(this,t),this.resolveOptions(e),this.initSelection()}return o(t,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=document.body.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[e?"right":"left"]="-9999px";var i=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.addEventListener("focus",window.scrollTo(0,i)),this.fakeElem.style.top=i+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=(0,n.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(document.body.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,n.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":i(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=r})},{select:5}],8:[function(t,e,n){!function(i,o){if(void 0!==n)o(e,t("./clipboard-action"),t("tiny-emitter"),t("good-listener"));else{var r={exports:{}};o(r,i.clipboardAction,i.tinyEmitter,i.goodListener),i.clipboard=r.exports}}(this,function(t,e,n,i){"use strict";function o(t){return t&&t.__esModule?t:{default:t}}function r(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}var a=o(e),c=o(n),l=o(i),s=function(){function t(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(e,n,i){return n&&t(e.prototype,n),i&&t(e,i),e}}(),u=function(t){function e(t,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var i=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return i.resolveOptions(n),i.listenClick(t),i}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,c.default),s(e,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,l.default)(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new a.default({action:this.action(e),target:this.target(e),text:this.text(e),trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return r("action",t)}},{key:"defaultTarget",value:function(t){var e=r("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return r("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}]),e}();t.exports=u})},{"./clipboard-action":7,"good-listener":4,"tiny-emitter":6}]},{},[8])(8)});
function darkMode(){localStorage.setItem("mode","darkmode"===localStorage.getItem("mode")?"light":"darkmode"),"darkmode"===localStorage.getItem("mode")?document.querySelector("#mainContent").classList.add("darkMode"):document.querySelector("#mainContent").classList.remove("darkMode")}; function listMode(){localStorage.setItem("list","listmode"===localStorage.getItem("list")?"grid":"listmode"),"listmode"===localStorage.getItem("list")?document.querySelector("#mainContent").classList.add("listMode"):document.querySelector("#mainContent").classList.remove("listMode")}; function copyFunction(){document.getElementById("getlink").select(),document.execCommand("copy"),document.getElementById("shareNotif").innerHTML="<span>Link copied!</span>" };
/*! lazysizes - v5.3.0 by github.com/aFarkas */
!function(e){var t=function(u,D,f){"use strict";var k,H;if(function(){var e;var t={lazyClass:"lazy",loadedClass:"lazyloaded",loadingClass:"lazyloading",preloadClass:"lazypreload",errorClass:"lazyerror",autosizesClass:"lazyautosizes",fastLoadedClass:"ls-is-cached",iframeLoadMode:0,srcAttr:"data-src",srcsetAttr:"data-srcset",sizesAttr:"data-sizes",minSize:40,customMedia:{},init:true,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:true,ricTimeout:0,throttleDelay:125};H=u.lazySizesConfig||u.lazysizesConfig||{};for(e in t){if(!(e in H)){H[e]=t[e]}}}(),!D||!D.getElementsByClassName){return{init:function(){},cfg:H,noSupport:true}}var O=D.documentElement,i=u.HTMLPictureElement,P="addEventListener",$="getAttribute",q=u[P].bind(u),I=u.setTimeout,U=u.requestAnimationFrame||I,o=u.requestIdleCallback,j=/^picture$/i,r=["load","error","lazyincluded","_lazyloaded"],a={},G=Array.prototype.forEach,J=function(e,t){if(!a[t]){a[t]=new RegExp("(\\s|^)"+t+"(\\s|$)")}return a[t].test(e[$]("class")||"")&&a[t]},K=function(e,t){if(!J(e,t)){e.setAttribute("class",(e[$]("class")||"").trim()+" "+t)}},Q=function(e,t){var a;if(a=J(e,t)){e.setAttribute("class",(e[$]("class")||"").replace(a," "))}},V=function(t,a,e){var i=e?P:"removeEventListener";if(e){V(t,a)}r.forEach(function(e){t[i](e,a)})},X=function(e,t,a,i,r){var n=D.createEvent("Event");if(!a){a={}}a.instance=k;n.initEvent(t,!i,!r);n.detail=a;e.dispatchEvent(n);return n},Y=function(e,t){var a;if(!i&&(a=u.picturefill||H.pf)){if(t&&t.src&&!e[$]("srcset")){e.setAttribute("srcset",t.src)}a({reevaluate:true,elements:[e]})}else if(t&&t.src){e.src=t.src}},Z=function(e,t){return(getComputedStyle(e,null)||{})[t]},s=function(e,t,a){a=a||e.offsetWidth;while(a<H.minSize&&t&&!e._lazysizesWidth){a=t.offsetWidth;t=t.parentNode}return a},ee=function(){var a,i;var t=[];var r=[];var n=t;var s=function(){var e=n;n=t.length?r:t;a=true;i=false;while(e.length){e.shift()()}a=false};var e=function(e,t){if(a&&!t){e.apply(this,arguments)}else{n.push(e);if(!i){i=true;(D.hidden?I:U)(s)}}};e._lsFlush=s;return e}(),te=function(a,e){return e?function(){ee(a)}:function(){var e=this;var t=arguments;ee(function(){a.apply(e,t)})}},ae=function(e){var a;var i=0;var r=H.throttleDelay;var n=H.ricTimeout;var t=function(){a=false;i=f.now();e()};var s=o&&n>49?function(){o(t,{timeout:n});if(n!==H.ricTimeout){n=H.ricTimeout}}:te(function(){I(t)},true);return function(e){var t;if(e=e===true){n=33}if(a){return}a=true;t=r-(f.now()-i);if(t<0){t=0}if(e||t<9){s()}else{I(s,t)}}},ie=function(e){var t,a;var i=99;var r=function(){t=null;e()};var n=function(){var e=f.now()-a;if(e<i){I(n,i-e)}else{(o||r)(r)}};return function(){a=f.now();if(!t){t=I(n,i)}}},e=function(){var v,m,c,h,e;var y,z,g,p,C,b,A;var n=/^img$/i;var d=/^iframe$/i;var E="onscroll"in u&&!/(gle|ing)bot/.test(navigator.userAgent);var _=0;var w=0;var M=0;var N=-1;var L=function(e){M--;if(!e||M<0||!e.target){M=0}};var x=function(e){if(A==null){A=Z(D.body,"visibility")=="hidden"}return A||!(Z(e.parentNode,"visibility")=="hidden"&&Z(e,"visibility")=="hidden")};var W=function(e,t){var a;var i=e;var r=x(e);g-=t;b+=t;p-=t;C+=t;while(r&&(i=i.offsetParent)&&i!=D.body&&i!=O){r=(Z(i,"opacity")||1)>0;if(r&&Z(i,"overflow")!="visible"){a=i.getBoundingClientRect();r=C>a.left&&p<a.right&&b>a.top-1&&g<a.bottom+1}}return r};var t=function(){var e,t,a,i,r,n,s,o,l,u,f,c;var d=k.elements;if((h=H.loadMode)&&M<8&&(e=d.length)){t=0;N++;for(;t<e;t++){if(!d[t]||d[t]._lazyRace){continue}if(!E||k.prematureUnveil&&k.prematureUnveil(d[t])){R(d[t]);continue}if(!(o=d[t][$]("data-expand"))||!(n=o*1)){n=w}if(!u){u=!H.expand||H.expand<1?O.clientHeight>500&&O.clientWidth>500?500:370:H.expand;k._defEx=u;f=u*H.expFactor;c=H.hFac;A=null;if(w<f&&M<1&&N>2&&h>2&&!D.hidden){w=f;N=0}else if(h>1&&N>1&&M<6){w=u}else{w=_}}if(l!==n){y=innerWidth+n*c;z=innerHeight+n;s=n*-1;l=n}a=d[t].getBoundingClientRect();if((b=a.bottom)>=s&&(g=a.top)<=z&&(C=a.right)>=s*c&&(p=a.left)<=y&&(b||C||p||g)&&(H.loadHidden||x(d[t]))&&(m&&M<3&&!o&&(h<3||N<4)||W(d[t],n))){R(d[t]);r=true;if(M>9){break}}else if(!r&&m&&!i&&M<4&&N<4&&h>2&&(v[0]||H.preloadAfterLoad)&&(v[0]||!o&&(b||C||p||g||d[t][$](H.sizesAttr)!="auto"))){i=v[0]||d[t]}}if(i&&!r){R(i)}}};var a=ae(t);var S=function(e){var t=e.target;if(t._lazyCache){delete t._lazyCache;return}L(e);K(t,H.loadedClass);Q(t,H.loadingClass);V(t,B);X(t,"lazyloaded")};var i=te(S);var B=function(e){i({target:e.target})};var T=function(e,t){var a=e.getAttribute("data-load-mode")||H.iframeLoadMode;if(a==0){e.contentWindow.location.replace(t)}else if(a==1){e.src=t}};var F=function(e){var t;var a=e[$](H.srcsetAttr);if(t=H.customMedia[e[$]("data-media")||e[$]("media")]){e.setAttribute("media",t)}if(a){e.setAttribute("srcset",a)}};var s=te(function(t,e,a,i,r){var n,s,o,l,u,f;if(!(u=X(t,"lazybeforeunveil",e)).defaultPrevented){if(i){if(a){K(t,H.autosizesClass)}else{t.setAttribute("sizes",i)}}s=t[$](H.srcsetAttr);n=t[$](H.srcAttr);if(r){o=t.parentNode;l=o&&j.test(o.nodeName||"")}f=e.firesLoad||"src"in t&&(s||n||l);u={target:t};K(t,H.loadingClass);if(f){clearTimeout(c);c=I(L,2500);V(t,B,true)}if(l){G.call(o.getElementsByTagName("source"),F)}if(s){t.setAttribute("srcset",s)}else if(n&&!l){if(d.test(t.nodeName)){T(t,n)}else{t.src=n}}if(r&&(s||l)){Y(t,{src:n})}}if(t._lazyRace){delete t._lazyRace}Q(t,H.lazyClass);ee(function(){var e=t.complete&&t.naturalWidth>1;if(!f||e){if(e){K(t,H.fastLoadedClass)}S(u);t._lazyCache=true;I(function(){if("_lazyCache"in t){delete t._lazyCache}},9)}if(t.loading=="lazy"){M--}},true)});var R=function(e){if(e._lazyRace){return}var t;var a=n.test(e.nodeName);var i=a&&(e[$](H.sizesAttr)||e[$]("sizes"));var r=i=="auto";if((r||!m)&&a&&(e[$]("src")||e.srcset)&&!e.complete&&!J(e,H.errorClass)&&J(e,H.lazyClass)){return}t=X(e,"lazyunveilread").detail;if(r){re.updateElem(e,true,e.offsetWidth)}e._lazyRace=true;M++;s(e,t,r,i,a)};var r=ie(function(){H.loadMode=3;a()});var o=function(){if(H.loadMode==3){H.loadMode=2}r()};var l=function(){if(m){return}if(f.now()-e<999){I(l,999);return}m=true;H.loadMode=3;a();q("scroll",o,true)};return{_:function(){e=f.now();k.elements=D.getElementsByClassName(H.lazyClass);v=D.getElementsByClassName(H.lazyClass+" "+H.preloadClass);q("scroll",a,true);q("resize",a,true);q("pageshow",function(e){if(e.persisted){var t=D.querySelectorAll("."+H.loadingClass);if(t.length&&t.forEach){U(function(){t.forEach(function(e){if(e.complete){R(e)}})})}}});if(u.MutationObserver){new MutationObserver(a).observe(O,{childList:true,subtree:true,attributes:true})}else{O[P]("DOMNodeInserted",a,true);O[P]("DOMAttrModified",a,true);setInterval(a,999)}q("hashchange",a,true);["focus","mouseover","click","load","transitionend","animationend"].forEach(function(e){D[P](e,a,true)});if(/d$|^c/.test(D.readyState)){l()}else{q("load",l);D[P]("DOMContentLoaded",a);I(l,2e4)}if(k.elements.length){t();ee._lsFlush()}else{a()}},checkElems:a,unveil:R,_aLSL:o}}(),re=function(){var a;var n=te(function(e,t,a,i){var r,n,s;e._lazysizesWidth=i;i+="px";e.setAttribute("sizes",i);if(j.test(t.nodeName||"")){r=t.getElementsByTagName("source");for(n=0,s=r.length;n<s;n++){r[n].setAttribute("sizes",i)}}if(!a.detail.dataAttr){Y(e,a.detail)}});var i=function(e,t,a){var i;var r=e.parentNode;if(r){a=s(e,r,a);i=X(e,"lazybeforesizes",{width:a,dataAttr:!!t});if(!i.defaultPrevented){a=i.detail.width;if(a&&a!==e._lazysizesWidth){n(e,r,i,a)}}}};var e=function(){var e;var t=a.length;if(t){e=0;for(;e<t;e++){i(a[e])}}};var t=ie(e);return{_:function(){a=D.getElementsByClassName(H.autosizesClass);q("resize",t)},checkElems:t,updateElem:i}}(),t=function(){if(!t.i&&D.getElementsByClassName){t.i=true;re._();e._()}};return I(function(){H.init&&t()}),k={cfg:H,autoSizer:re,loader:e,init:t,uP:Y,aC:K,rC:Q,hC:J,fire:X,gW:s,rAF:ee}}(e,e.document,Date);e.lazySizes=t,"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:{});
/*! lazysizes unveilhooks - v5.3.0 */
!function(e,t){var a=function(){t(e.lazySizes),e.removeEventListener("lazyunveilread",a,!0)};t=t.bind(null,e,e.document),"object"==typeof module&&module.exports?t(require("lazysizes")):"function"==typeof define&&define.amd?define(["lazysizes"],t):e.lazySizes?a():e.addEventListener("lazyunveilread",a,!0)}(window,function(e,i,o){"use strict";var l,d,u={};function s(e,t,a){var n,r;u[e]||(n=i.createElement(t?"link":"script"),r=i.getElementsByTagName("script")[0],t?(n.rel="stylesheet",n.href=e):(n.onload=function(){n.onerror=null,n.onload=null,a()},n.onerror=n.onload,n.src=e),u[e]=!0,u[n.src||n.href]=!0,r.parentNode.insertBefore(n,r))}i.addEventListener&&(l=function(e,t){var a=i.createElement("img");a.onload=function(){a.onload=null,a.onerror=null,a=null,t()},a.onerror=a.onload,a.src=e,a&&a.complete&&a.onload&&a.onload()},addEventListener("lazybeforeunveil",function(e){var t,a,n;if(e.detail.instance==o&&!e.defaultPrevented){var r=e.target;if("none"==r.preload&&(r.preload=r.getAttribute("data-preload")||"auto"),null!=r.getAttribute("data-autoplay"))if(r.getAttribute("data-expand")&&!r.autoplay)try{r.play()}catch(e){}else requestAnimationFrame(function(){r.setAttribute("data-expand","-10"),o.aC(r,o.cfg.lazyClass)});(t=r.getAttribute("data-link"))&&s(t,!0),(t=r.getAttribute("data-script"))&&(e.detail.firesLoad=!0,s(t,null,function(){e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)})),(t=r.getAttribute("data-require"))&&(o.cfg.requireJs?o.cfg.requireJs([t]):s(t)),(a=r.getAttribute("data-bg"))&&(e.detail.firesLoad=!0,l(a,function(){r.style.backgroundImage="url("+(d.test(a)?JSON.stringify(a):a)+")",e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)})),(n=r.getAttribute("data-poster"))&&(e.detail.firesLoad=!0,l(n,function(){r.poster=n,e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)}))}},!(d=/\(|\)|\s|'/)))});
/* lazy youtube */
( function() {var youtube = document.querySelectorAll(".lazyYoutube"); for (var i = 0; i < youtube.length; i++) {var source = "https://img.youtube.com/vi/"+ youtube[i].dataset.embed +"/sddefault.jpg"; var image = new Image(); image.setAttribute("class", "lazy"); image.setAttribute("data-src",source); image.setAttribute("src","data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="); image.setAttribute("alt","Youtube video"); image.addEventListener( "load", function() {youtube[ i ].appendChild( image );}( i ) ); youtube[i].addEventListener( "click", function() {var iframe = document.createElement( "iframe" ); iframe.setAttribute( "frameborder", "0" ); iframe.setAttribute( "allowfullscreen", "" ); iframe.setAttribute( "src", "https://www.youtube.com/embed/"+ this.dataset.embed +"?rel=0&showinfo=0&autoplay=1" ); this.innerHTML = ""; this.appendChild( iframe ); }); }; })();
function cdClear(){var e=document.getElementById("codes");e.value="",e.focus();for(var t=document.querySelectorAll("#cvrt3, #cvrt4, #cvrt5, #cvrt6, #cvrt7, #cvrt8, #cvrt9, #cvrt10, #cvrt11"),c=0;c<t.length;c++)t[c].disabled=!1,document.getElementById("btnInfo").style.display="none",document.getElementById("button-link").style.display="none"}function preConvert(){var e=document.getElementById("codes"),t=e.value,c=document.getElementById("opt1"),l=document.getElementById("opt2"),n=document.getElementById("opt3"),o=document.getElementById("opt4"),d=document.getElementById("opt5"),u=document.getElementById("opt8");t=t.replace(/\t/g," ");u.checked&&(c.checked&&(t=t.replace(/&/g,"&")),l.checked&&(t=t.replace(/'/g,"'")),n.checked&&(t=t.replace(/"/g,""")),o.checked&&(t=t.replace(/</g,"<")),d.checked&&(t=t.replace(/>/g,">")),t=(t=t.replace(/^/,"<i rel='pre'>")).replace(/$/,"</i>"),e.value=t,e.focus(),document.getElementById("button-link").style.display="inline-block")}function codeConvert(){var e=document.getElementById("codes"),t=e.value,c=document.getElementById("opt1"),l=document.getElementById("opt2"),n=document.getElementById("opt3"),o=document.getElementById("opt4"),d=document.getElementById("opt5"),u=document.getElementById("opt9");t=t.replace(/\t/g," ");u.checked&&(c.checked&&(t=t.replace(/&/g,"&")),l.checked&&(t=t.replace(/'/g,"'")),n.checked&&(t=t.replace(/"/g,""")),o.checked&&(t=t.replace(/</g,"<")),d.checked&&(t=t.replace(/>/g,">")),t=(t=t.replace(/^/,"<i rel='code'>")).replace(/$/,"</i>"),e.value=t,e.focus(),document.getElementById("button-link").style.display="inline-block")}function imgConvert(){var e=document.getElementById("codes"),t=e.value,c=document.getElementById("opt6");t=t.replace(/\t/g," ");c.checked&&(t=(t=t.replace(/^/,"<i rel='img'>")).replace(/$/,"</i>"),e.value=t,e.focus(),document.getElementById("button-link").style.display="inline-block")}function quoteConvert(){var e=document.getElementById("codes"),t=e.value,c=document.getElementById("opt7");t=t.replace(/\t/g," ");c.checked&&(t=(t=t.replace(/^/,"<i rel='quote'>")).replace(/$/,"</i>"),e.value=t,e.focus(),document.getElementById("button-link").style.display="inline-block")}var clipboard=new Clipboard(".button-link");clipboard.on("success",function(e){console.log(e),document.getElementById("btnInfo").style.display="block",document.getElementById("codes").value=""}),clipboard.on("error",function(e){console.log(e)}); function repText(id) {var a = document.getElementById(id); if (!a) return; var b = a.innerHTML; b = b.replace(/<i rel="img">(.*?)<\/i>/ig, "<img class='lazy cm-image' data-src='$1' src='data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=' alt='loading...' \/>");a.innerHTML = b;} repText('commentHolder');
document.addEventListener("contextmenu",function(e){if (e.target.nodeName === "IMG"){e.preventDefault()}},false);
function wrap(t,e,r){for (var i = document.querySelectorAll(e),o = 0;o < i.length;o++){var a = t + i[o].outerHTML + r;i[o].outerHTML = a}}
wrap("<div class='zoomclick'>",".postBody img","</div>");var container = document.getElementsByClassName("zoomclick");for (var i = 0;i < container.length;i++){container[i].onclick = function(event){this.classList.toggle('active');var element = document.body;element.classList.toggle('flow')}}
function resizeHeaderOnScroll(){const e=window.pageYOffset||document.documentElement.scrollTop,o=document.querySelector("header");e>20?o.classList.add("show"):o.classList.remove("show")}window.addEventListener("scroll",resizeHeaderOnScroll);var prevScrollpos=window.pageYOffset;window.onscroll=function(){var e=window.pageYOffset;prevScrollpos>e?document.getElementById("header").classList.remove("show1"):document.getElementById("header").classList.add("show1"),prevScrollpos=e};
// Google Translate JavaScript
(function(){var gtConstEvalStartTime = new Date();/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var h=this||self,l=/^[\w+/_-]+[=]{0,2}$/,m=null;function n(a){return(a=a.querySelector&&a.querySelector("script[nonce]"))&&(a=a.nonce||a.getAttribute("nonce"))&&l.test(a)?a:""}function p(a,b){function c(){}c.prototype=b.prototype;a.i=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.h=function(g,f,k){for(var e=Array(arguments.length-2),d=2;d<arguments.length;d++)e[d-2]=arguments[d];return b.prototype[f].apply(g,e)}}function q(a){return a};function r(a){if(Error.captureStackTrace)Error.captureStackTrace(this,r);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))}p(r,Error);r.prototype.name="CustomError";function u(a,b){a=a.split("%s");for(var c="",g=a.length-1,f=0;f<g;f++)c+=a[f]+(f<b.length?b[f]:"%s");r.call(this,c+a[g])}p(u,r);u.prototype.name="AssertionError";function v(a,b){throw new u("Failure"+(a?": "+a:""),Array.prototype.slice.call(arguments,1));};var w;function x(a,b){this.g=b===y?a:""}x.prototype.toString=function(){return"TrustedResourceUrl{"+this.g+"}"};var y={};function z(a){var b=document.getElementsByTagName("head")[0];b||(b=document.body.parentNode.appendChild(document.createElement("head")));b.appendChild(a)}
function _loadJs(a){var b=document;var c="SCRIPT";"application/xhtml+xml"===b.contentType&&(c=c.toLowerCase());c=b.createElement(c);c.type="text/javascript";c.charset="UTF-8";if(void 0===w){b=null;var g=h.trustedTypes;if(g&&g.createPolicy){try{b=g.createPolicy("goog#html",{createHTML:q,createScript:q,createScriptURL:q})}catch(t){h.console&&h.console.error(t.message)}w=b}else w=b}a=(b=w)?b.createScriptURL(a):a;a=new x(a,y);a:{try{var f=c&&c.ownerDocument,k=f&&(f.defaultView||f.parentWindow);k=k||h;
if(k.Element&&k.Location){var e=k;break a}}catch(t){}e=null}if(e&&"undefined"!=typeof e.HTMLScriptElement&&(!c||!(c instanceof e.HTMLScriptElement)&&(c instanceof e.Location||c instanceof e.Element))){e=typeof c;if("object"==e&&null!=c||"function"==e)try{var d=c.constructor.displayName||c.constructor.name||Object.prototype.toString.call(c)}catch(t){d="<object could not be stringified>"}else d=void 0===c?"undefined":null===c?"null":typeof c;v("Argument is not a %s (or a non-Element, non-Location mock); got: %s",
"HTMLScriptElement",d)}a instanceof x&&a.constructor===x?d=a.g:(d=typeof a,v("expected object of type TrustedResourceUrl, got '"+a+"' of type "+("object"!=d?d:a?Array.isArray(a)?"array":d:"null")),d="type_error:TrustedResourceUrl");c.src=d;(d=c.ownerDocument&&c.ownerDocument.defaultView)&&d!=h?d=n(d.document):(null===m&&(m=n(h.document)),d=m);d&&c.setAttribute("nonce",d);z(c)}
function _loadCss(a){var b=document.createElement("link");b.type="text/css";b.rel="stylesheet";b.charset="UTF-8";b.href=a;z(b)}function _isNS(a){a=a.split(".");for(var b=window,c=0;c<a.length;++c)if(!(b=b[a[c]]))return!1;return!0}function _setupNS(a){a=a.split(".");for(var b=window,c=0;c<a.length;++c)b.hasOwnProperty?b.hasOwnProperty(a[c])?b=b[a[c]]:b=b[a[c]]={}:b=b[a[c]]||(b[a[c]]={});return b}
window.addEventListener&&"undefined"==typeof document.readyState&&window.addEventListener("DOMContentLoaded",function(){document.readyState="complete"},!1);
if (_isNS('google.translate.Element')){return}(function(){var c=_setupNS('google.translate._const');c._cest = gtConstEvalStartTime;gtConstEvalStartTime = undefined;c._cl='id';c._cuc='googleTranslateElementInit';c._cac='';c._cam='';c._ctkk='447223.766484856';var h='translate.googleapis.com';var s=(true?'https':window.location.protocol=='https:'?'https':'http')+'://';var b=s+h;c._pah=h;c._pas=s;c._pbi=b+'/translate_static/img/te_bk.gif';c._pci=b+'/translate_static/img/te_ctrl3.gif';c._pli=b+'/translate_static/img/loading.gif';c._plla=h+'/translate_a/l';c._pmi=b+'/translate_static/img/mini_google.png';c._ps=b+'/translate_static/css/translateelement.css';c._puh='translate.google.com';_loadCss(c._ps);_loadJs(b+'/translate_static/js/element/main_id.js');})();})();
var preclick = document.getElementsByTagName('pre');for (var i = 0;i < preclick.length;i++){preclick[i].addEventListener('dblclick',function (){var selection = getSelection();var range = document.createRange();range.selectNodeContents(this);selection.removeAllRanges();selection.addRange(range);},false);}
if ('serviceWorker' in navigator){window.addEventListener('load',() =>{navigator.serviceWorker.register('/serviceworker.js').then(registration =>{;}).catch(registrationError =>{console.log('SW registration failed:',registrationError);});});} /*]]>*/</script>
<!--[ Adsense Script with auto ads ]-->
<!--<script>/*<![CDATA[*/ (function() { var add = document.createElement('script'); var crs = document.createAttribute('crossorigin'); crs.value = 'anonymous'; add.setAttributeNode(crs); add.defer = true; add.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-0000000000000000'; var sc = document.getElementsByTagName('head')[0]; sc.parentNode.insertBefore(add, sc); })(); /*]]>*/</script>-->
<!--[ Lazy adsense Script with auto ads ]-->
<!--<script>/*<![CDATA[*/ var lazyadsense = false; window.addEventListener("scroll", function(){ if ((document.documentElement.scrollTop != 0 && lazyadsense === false) || (document.body.scrollTop != 0 && lazyadsense === false)) { (function() { var ad = document.createElement('script'); var crs = document.createAttribute('crossorigin'); crs.value = 'anonymous'; add.setAttributeNode(crs); ad.async = true; ad.src = 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-0000000000000000'; var sc = document.getElementsByTagName('head')[0]; sc.parentNode.insertBefore(ad, sc); })(); lazyadsense = true; } }, true) /*]]>*/</script>-->
<style>
/* multi pop up by Anh Tuấn Blog */
/*.wcIconNotif{position:relative;width:35px;height:35px;display:flex;margin:auto;/*left:-10px;*/cursor:pointer;}
/*.wcIconNotif path{fill:#444}*/
.wcIconNotif:before{content:attr(aria-label);position:relative;display:flex;/*padding:5px*/;font-size:10px;width:13px;height:13px;background-color:#e40101;color:#fefefe;justify-content: center;align-items: center;border-radius:50%;position:relative;top:-7px;left:9px;}*/
.fullClose{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:2;transition:all .1s ease;background:transparent;opacity:0;visibility:hidden}
.wcNotif{position:fixed;opacity:0;visibility:hidden;z-index:999999;overflow-y:auto;top:0;right:20px;background:#fff;border:1px solid #ddd;width:350px;height:auto;max-height:400px;display:block;border-radius:6px;color:#48525c;box-shadow:10px 10px 35px rgba(0,0,0,0.1),-10px -10px 35px rgba(0,0,0,0.1);transition:all .3s ease;}
.wcNotif:before{content:"";position:fixed;top:0;right:30px;border:10px solid;border-color:transparent transparent #fff transparent;opacity:0;visibility:hidden;transition:all .3s ease;}
.wcNotif li{/*border-bottom:1px solid #f1f2f4;padding:10px 20px 10px 0;*/display:block;align-items:center;margin:0 20px 0 -15px}
.wcNotifStart .more{margin:5px 0 0 -5px;font-size:12px}
#wcCheckPop:checked ~ .wcNotif{visibility:visible;opacity:1;top:80px}
#wcCheckPop:checked ~ .wcNotif:before{visibility:visible;opacity:1;top:62px}
#wcCheckPop:checked ~ .wcNotif + .fullClose{visibility:visible;opacity:1}
#wcCheckPop,.wcPopMenu{display:none}
.wcPopMore{display:flex;align-items:center; font-weight:900; color:#262d3d;padding:0 5px}
.wcPopMore span{flex-grow:1} .accorIcon{position:relative;flex-shrink:0; display:flex;align-items:center;justify-content:center; width:12px;height:12px;margin-right:15px}
.wcPopMenu:checked ~ .wcPopMore span{color:#f89000}
.wcPopMenu:checked ~ .wcPopMore .accorIcon:before, .wcPopMenu:checked ~ .wcPopMore .accorIcon:after{background-color:#f89000}
.wcPopMenu:checked ~ .wcPopMore .accorIcon:after{visibility:hidden;opacity:0}
.wcNotifStart .content{position:relative;margin-left:-30px;padding-left:32px;overflow:hidden;max-height:0; transition:all .2s ease; opacity:.8}
.wcPopMenu:checked ~ .content{max-height:100vh;padding-top:15px;padding-bottom:8px}
@media screen and (max-width:480px){
#wcCheckPop:checked ~ .wcNotif{top:0}
.wcNotifStart{border-top:1px solid #f1f2f4;margin-top:30px}
.wcNotif{min-height:100vh;width:100%;top:0;right:0;bottom:0;left:0;padding-top:25px}
.wcNotifClose{position:absolute;top:8px;right:15px;width:40px;height:40px;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M278.6 256l68.2-68.2c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0L256 233.4l-68.2-68.2c-6.2-6.2-16.4-6.2-22.6 0-3.1 3.1-4.7 7.2-4.7 11.3 0 4.1 1.6 8.2 4.7 11.3l68.2 68.2-68.2 68.2c-3.1 3.1-4.7 7.2-4.7 11.3 0 4.1 1.6 8.2 4.7 11.3 6.2 6.2 16.4 6.2 22.6 0l68.2-68.2 68.2 68.2c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6L278.6 256z' fill='%2348525c'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:35px;background-position:center;}
.wcNotifClose:before{content:'Close';position:relative;right:35px;top:10px;font-size:15px;color:#48525c;}
.wcNotif:before{display:none}
}
/* CSS darkmode */
/*.darkMode .wcIconNotif path{fill:#989b9f}*/
.darkMode .wcNotif,.darkMode .wcPopMore{background:#2d2d30;color:#fefefe;border:none}
.darkMode .wcNotif:before{border-color:transparent transparent #2d2d30 transparent}
.darkMode .wcNotif li,.darkMode .wcNotifStart{border-color:rgba(255,255,255,.1)}
.darkMode .wcNotif p{color:#fff}
.darkMode .wcNotif span{color:#fff}
/* CSS Avatar */
#rc-avatar-plus ul::-webkit-scrollbar{width:0}
#rc-avatar-plus ul:hover::-webkit-scrollbar{width:5px}
#rc-avatar-plus ul::-webkit-scrollbar-thumb{background:#ddd}
#rc-avatar-plus ul{margin:0!important;padding:0;overflow:auto;box-sizing:border-box}
#rc-avatar-plus li{position: relative; clear: both; margin: 0 0 5px!important; padding: 10px 0!important; /*border-bottom:1px solid #f1f2f4;*/ list-style-type: none!important; float: left; width: 100%; box-sizing: border-box;}
#rc-avatar-plus img{margin:0!important;padding:0!important;width:40px;height:40px;border-radius:50%}
#rc-avatar-plus h4{display:none; font-size: 16px; margin: 0!important; margin: 0; position: absolute; top: 8px; left: 65px; z-index: 1; color: #555;}
#rc-avatar-plus a{position: relative; line-height: 1.3;}
#rc-avatar-plus a,#rc-avatar-plus a:hover{color:#444!important;text-decoration:none}
#rc-avatar-plus a:after{content:"";position:absolute;top:0;width:0;height:0;line-height:0}
#rc-avatar-plus p{margin: 0; padding: 0; font-weight: 400; font-size: 16px; line-height: 1.4;}
#rc-avatar-plus .rc-author .rc-info,#rc-avatar-plus .rc-admin a{float: left;position:absolute;width:fit-content}
#rc-avatar-plus .rc-admin .rc-info,#rc-avatar-plus .rc-author a{float: left; margin:0 0 0 55px; width: fit-content;max-width:100%}
#rc-avatar-plus span {font-size:12px}
#rc-avatar-plus .rc-author a{word-break:break-word;background:none}
.idbcomments .left{float:left; padding:8px 0 10px 0;}
.idbcomments .right{float:right; padding:8px 0 20px 0;}
.idbcomments .right a{color: #000; display: flex; align-items: center;}
.darkMode .idbcomments .right a{color:#fff;}
</style>
<input id='wcCheckPop' type='checkbox'/>
<div class='wcNotif'>
<label class='wcNotifClose' for='wcCheckPop'></label>
<ul class='wcNotifStart'>
<li>
<p style=' font-size: 15px; text-align: center; font-weight: 800; '>Recent Comment
</p>
<div id='rc-avatar-plus'>
</div>
<div class='idbcomments'>
<div class='left'>
There Are Currently
<b>
<span id='Stats1_totalComments'></span>
</b> Comments.
</div>
<div class='right'>
<a href='https://somadanmedia.blogspot.com/?m=1' target='_blank' title=''>See More...
<svg class='line svg-2' viewBox='0 0 24 24'>
<g transform='translate(12.000000, 12.000000) rotate(-90.000000) translate(-12.000000, -12.000000) translate(5.000000, 8.500000)'>
<path d='M14,0 C14,0 9.856,7 7,7 C4.145,7 0,0 0,0'></path>
</g>
</svg>
</a>
</div>
</div>
</li>
</ul>
</div>
<label class='fullClose closeProfile' for='wcCheckPop'></label>
<script>//<![CDATA[
var _0x5ef8 = ["Recent Comments free version 3.2 by http://duypham.info", "https://1.bp.blogspot.com/-WRL121_tTDo/YKz7Nd9jQoI/AAAAAAAAFi4/0lrjmwDR1LEhB6QeLxJRXiuCTorR01jbQCLcBGAsYHQ/s0/favicon-180x180.png", "https://koleksibot.blogspot.com/?m=1", "https://www.facebook.com/", "U b=[\"\\E\\G\\R\\v\\M\\f\\A\",\"\\M\\e\\e\\v\\1p\\r\\r\",\"\\X\",\"\\q\\n\\H\\s\",\"\\M\\j\\h\\H\",\"\\1e\\A\\C\\2A\",\"\\q\\n\\E\\h\\W\\1G\\H\",\"\\r\\v\\r\",\"\\1f\\e\",\"\\e\\q\\e\\l\\h\",\"\\h\\n\\e\\j\\R\",\"\\H\\h\\h\\E\",\"\\s\\v\\h\\n\\2B\\h\\f\\j\\m\\M\\1f\\e\\s\\e\\f\\l\\1F\\h\\k\\G\\l\\e\\k\",\"\\G\\j\\q\",\"\\f\\G\\e\\M\\s\\j\",\"\\k\\j\\m\",\"\\J\\E\\1f\\q\\A\\f\\J\\h\",\"\\l\\h\\n\\J\\e\\M\",\"\\l\\q\\n\\1c\",\"\\r\",\"\\k\\v\\l\\q\\e\",\"\\e\\M\\j\\1f\\q\\n\\I\\j\\h\\v\\l\\R\\I\\e\\s\",\"\\L\\f\\l\\G\\h\",\"\\J\\E\\1f\\h\\W\\e\\h\\n\\E\\h\\E\\1L\\j\\s\\v\\h\\j\\e\\R\",\"\\m\\s\\n\\e\\h\\n\\e\",\"\\k\\G\\A\\A\\f\\j\\R\",\"\\T\\1v\\2z\\2y\\2u\\1j\\1H\",\"\\x\",\"\\j\\h\\v\\l\\f\\m\\h\",\"\",\"\\k\\G\\P\\k\\e\\j\\q\\n\\J\",\"\\l\\f\\k\\e\\1M\\n\\E\\h\\W\\1G\\H\",\"\\T\\1v\\1n\\1w\\1w\\1H\",\"\\n\\f\\A\\h\",\"\\M\\e\\e\\v\\1p\\r\\r\\q\\A\\J\\1n\\X\\P\\l\\s\\J\\P\\l\\s\\J\\X\\m\\s\\A\\r\\q\\A\\J\\r\\P\\l\\f\\n\\1c\\X\\J\\q\\H\",\"\\n\\s\\x\\f\\L\\f\\e\\f\\j\",\"\\D\\k\\m\\j\\q\\v\\e\\x\\e\\R\\v\\h\\C\\w\\e\\h\\W\\e\\r\\1b\\f\\L\\f\\k\\m\\j\\q\\v\\e\\w\\x\\k\\j\\m\\C\\w\\M\\e\\e\\v\\k\\1p\\r\\r\\1d\\1d\\1d\\X\\P\\l\\s\\J\\J\\h\\j\\X\\m\\s\\A\\r\\H\\h\\h\\E\\k\\r\",\"\\r\\v\\f\\J\\h\\k\\r\\E\\h\\H\\f\\G\\l\\e\\r\",\"\\1e\\f\\l\\e\\C\\1b\\k\\s\\n\\I\\q\\n\\I\\k\\m\\j\\q\\v\\e\\T\\m\\f\\l\\l\\P\\f\\m\\1c\\C\\j\\m\\1u\\f\\L\\f\\e\\f\\j\\1j\\w\\B\\D\\r\\k\\m\\j\\q\\v\\e\\B\",\"\\1d\\j\\q\\e\\h\",\"\\D\\k\\m\\j\\q\\v\\e\\x\\e\\R\\v\\h\\C\\w\\e\\h\\W\\e\\r\\1b\\f\\L\\f\\k\\m\\j\\q\\v\\e\\w\\x\\k\\j\\m\\C\\w\",\"\\r\\H\\h\\h\\E\\k\\r\",\"\\r\\m\\s\\A\\A\\h\\n\\e\\k\\r\\E\\h\\H\\f\\G\\l\\e\\1e\\f\\l\\e\\C\\1b\\k\\s\\n\\I\\q\\n\\I\\k\\m\\j\\q\\v\\e\\T\\A\\f\\W\\I\\j\\h\\k\\G\\l\\e\\k\\C\\1n\\T\\m\\f\\l\\l\\P\\f\\m\\1c\\C\\j\\m\\1u\\f\\L\\f\\e\\f\\j\\1j\\w\\B\\D\\r\\k\\m\\j\\q\\v\\e\\B\",\"\\1F\\h\\m\\h\\n\\e\\x\\1J\\s\\A\\A\\h\\n\\e\\k\\x\\H\\j\\h\\h\\x\\L\\h\\j\\k\\q\\s\\n\\x\\1w\\X\\1j\\x\\P\\R\\x\",\"\\r\\H\\h\\h\\E\\k\\r\\m\\s\\A\\A\\h\\n\\e\\k\\r\\E\\h\\H\\f\\G\\l\\e\\1e\\f\\l\\e\\C\\1b\\k\\s\\n\\I\\q\\n\\I\\k\\m\\j\\q\\v\\e\\T\\A\\f\\W\\I\\j\\h\\k\\G\\l\\e\\k\\C\",\"\\T\\m\\f\\l\\l\\P\\f\\m\\1c\\C\\j\\m\\1u\\f\\L\\f\\e\\f\\j\\1n\\w\\B\\D\\r\\k\\m\\j\\q\\v\\e\\B\",\"\\D\\G\\l\\B\",\"\\1J\\s\\A\\A\\h\\n\\e\\k\\x\\s\\n\\x\",\"\\1p\\x\",\"\\1v\\m\",\"\\m\\s\\A\\A\\h\\n\\e\\1L\\f\\J\\h\\C\",\"\\T\",\"\\1e\",\"\\D\\l\\q\\x\\m\\l\\f\\k\\k\\C\\w\",\"\\j\\m\\I\\f\\E\\A\\q\\n\",\"\\j\\m\\I\\f\\G\\e\\M\\s\\j\",\"\\w\\B\\D\\E\\q\\L\\x\\m\\l\\f\\k\\k\\C\\w\\j\\m\\I\\q\\n\\H\\s\\w\\B\\D\\q\\A\\J\\x\\f\\l\\e\\C\\w\",\"\\w\\x\\m\\l\\f\\k\\k\\C\\w\\j\\m\\I\\f\\L\\f\\e\\f\\j\\w\\x\\k\\j\\m\\C\\w\",\"\\w\\r\\B\\D\\M\\1K\\B\",\"\\D\\r\\M\\1K\\B\\D\\r\\E\\q\\L\\B\\D\\f\\x\\M\\j\\h\\H\\C\\w\",\"\\w\\x\\j\\h\\l\\C\\w\\n\\s\\H\\s\\l\\l\\s\\1d\\w\\x\\e\\q\\e\\l\\h\\C\\w\",\"\\x\\s\\n\\x\",\"\\w\\B\\D\\v\\B\",\"\\D\\r\\v\\B\",\"\\e\\j\\G\\h\",\"\\D\\k\\v\\f\\n\\B\",\"\\D\\r\\k\\v\\f\\n\\B\",\"\\D\\r\\f\\B\\D\\E\\q\\L\\x\\m\\l\\f\\k\\k\\C\\w\\m\\l\\h\\f\\j\\w\\B\\D\\r\\E\\q\\L\\B\\D\\r\\l\\q\\B\",\"\\D\\r\\G\\l\\B\",\"\\q\\n\\n\\h\\j\\2b\\2c\\2i\\2j\",\"\\j\\m\\I\\f\\L\\f\\e\\f\\j\\I\\v\\l\\G\\k\",\"\\J\\h\\e\\2k\\l\\h\\A\\h\\n\\e\\2N\\R\\1M\\E\"];1g=0;u=0;V=[];d=[];p=[];Z=[];1i=[];1B=[];t=[];1y=[];1z=[];a=[];Y=[];1h=[];1o=[];1C=[];1D=[];1R=b[0];1S=b[1];1Y=b[2];1Q=b[3];1N=2Y[b[4]];y=1N[b[6]](b[5]);1x 2W(1q){K(d[u][b[6]](b[7])!=-1){Z[u]=1;o=1q[b[10]][b[9]][b[8]];t[u]=o}O{o=1q[b[11]][b[9]][b[8]];t[u]=o;1O=1q[b[11]][b[12]][b[8]];i=2Q((1O-1)/2S)+1;Z[u]=i};u++};1x 2T(S){1g=S[b[11]][b[12]][b[8]];1B=S[b[11]][b[9]][b[8]];K(b[13]1m S[b[11]][b[14]][0]){1C=S[b[11]][b[14]][0][b[13]][b[8]]};1D=S[b[11]][b[14]][0][b[16]][b[15]];1W(g=0;(g<1A)&&(g<1g);g++){c=S[b[11]][b[10]][g];K(g==S[b[11]][b[10]][b[17]]){2U};V=c[b[18]][0][b[4]];V=V[b[20]](b[19]);1X=V[4];1s=V[5];1I=V[8];d[g]=c[b[21]][b[4]];K(y!=-1){d[g]=d[g]+b[5]};1y[g]=c[b[23]][0][b[22]];1z[g]=c[b[23]][1][b[22]];p[g]=1I;K(b[24]1m c){U F=c[b[24]][b[8]]}O{K(b[25]1m c){U F=c[b[25]][b[8]]}O{U F=b[26]}};F=F[b[28]](/<2P \\/>/g,b[27]);F=F[b[28]](/@<a.*?a>/g,b[29]);F=F[b[28]](/<[^>]*>/g,b[29]);K(F[b[17]]<1E){1i[g]=F}O{F=F[b[30]](0,1E);U 1l=F[b[31]](b[27]);F=F[b[30]](0,1l);1i[g]=F+b[32]};Q=c[b[14]][0][b[33]][b[8]];K(Q[b[17]]<1P){a[g]=Q}O{Q=Q[b[30]](0,1P);U 1l=Q[b[31]](b[29]);Q=Q[b[30]](0,1l);a[g]=Q+b[32]};K(b[13]1m c[b[14]][0]){1o[g]=c[b[14]][0][b[13]][b[8]]};K(c[b[14]][0][b[16]][b[15]]==b[34]){Y[g]=2m;1h[g]=b[35]}O{Y[g]=c[b[14]][0][b[16]][b[15]];1h[g]=a[g]};K(d[g][b[6]](b[7])!=-1){1k[b[1r]](b[36]+1X+b[37]+1s+b[38])}O{1k[b[1r]](b[1T]+1U+b[2V]+1s+b[2X])}}};K(2R==b[2Z]+1S+1R+1Y+1Q){1k[b[1r]](b[1T]+1U+b[2O]+1A+b[2l])};1x 2n(){U N=b[29];N+=b[2o];1W(z=0;(z<1A)&&(z<1g);z++){t[z]=t[z][b[28]](b[2r]+1B+b[2q],b[29]);U 1a=b[29];K(Z[z]==1){1a=b[1V]}O{1t=b[2p]+Z[z]+b[1V];K(y!=-1){1a=b[2a]+1t}O{1a=b[1Z]+1t}};N+=b[2d];K(((1o[z]==1C)&&(Y[z]==1D))||((1o[z]==2e)&&(Y[z]==2h))){N+=b[2g]}O{N+=b[2f]};N+=b[2s]+1h[z]+b[2t]+Y[z]+b[2H]+a[z]+b[2G]+d[z]+1a+p[z]+b[2F]+a[z]+b[2I]+t[z]+b[2J]+1i[z]+b[2M];K(1y[z]!=b[2L]){N+=b[2K]+1z[z]+b[2E]};N+=b[2D]};N+=b[2x];1k[b[2w]](b[2v])[b[2C]]=N};", "|", "split", "|||||||||||_0x965f|||x74|x61||x65||x72|x73|x6C|x63|x6E|||x69|x2F|x6F|||x70|x22|x20|||x6D|x3E|x3D|x3C|x64|_0x3126x5|x75|x66|x2D|x67|if|x76|x68|_0x3126x8|else|x62|a2|x79|_0x3126x4|x26|var|lk|x78|x2E|im|pn|||||||||||_0x3126x9|x6A|x6B|x77|x3F|x24|tt|alt|j2|x32|document|_0x3126x6|in|x31|ur|x3A|_0x3126x2|39|pid|cp|x5F|x23|x33|function|pi|ti|nc|tb|ura|ima|length_content|x52|x4F|x3B|cid|x43|x34|x50|x49|a3|num|length_name|inf|ad|loc|40|home_page|49|for|bid|dot|52|||||||||||51|x48|x54|53|admin_uri|55|54|admin_avatar|x4D|x4C|x45|45|no_avatar|rc_avatar|46|50|48|47|56|57|x39|70|71|68|x35|x38|x30|x53|69|67|66|60|59|58|61|62|65|64|63|x42|44|br|parseInt|copyright_by_duypham_dot_info|200|rc_avatar1|break|41|rc_avatar2|42|location|43|||||||||", "", "fromCharCode", "replace", "\\w+", "\\b", "g"];
var copyright_by_duypham_dot_info = _0x5ef8[0];
nc = 40;
length_name = 15;
length_content = 100;
no_avatar = _0x5ef8[1];
home_page = _0x5ef8[2];
admin_uri = _0x5ef8[3];
admin_avatar = _0x5ef8[1];
var dp = [_0x5ef8[4], _0x5ef8[5], _0x5ef8[6], _0x5ef8[7], _0x5ef8[8], _0x5ef8[9], _0x5ef8[10], _0x5ef8[11], _0x5ef8[12], _0x5ef8[13]];
eval(function (_0xa9f9x3, _0xa9f9x4, _0xa9f9x5, _0xa9f9x6, _0xa9f9x7, _0xa9f9x8) {
_0xa9f9x7 = function (_0xa9f9x5) {
return (_0xa9f9x5 < _0xa9f9x4 ? dp[4] : _0xa9f9x7(parseInt(_0xa9f9x5 / _0xa9f9x4))) + ((_0xa9f9x5 = _0xa9f9x5 % _0xa9f9x4) > 35 ? String[dp[5]](_0xa9f9x5 + 29) : _0xa9f9x5.toString(36))
};
if (!dp[4][dp[6]](/^/, String)) {
while (_0xa9f9x5--) {
_0xa9f9x8[_0xa9f9x7(_0xa9f9x5)] = _0xa9f9x6[_0xa9f9x5] || _0xa9f9x7(_0xa9f9x5)
};
_0xa9f9x6 = [function (_0xa9f9x7) {
return _0xa9f9x8[_0xa9f9x7]
}];
_0xa9f9x7 = function () {
return dp[7]
};
_0xa9f9x5 = 1
};
while (_0xa9f9x5--) {
if (_0xa9f9x6[_0xa9f9x5]) {
_0xa9f9x3 = _0xa9f9x3[dp[6]](new RegExp(dp[8] + _0xa9f9x7(_0xa9f9x5) + dp[8], dp[9]), _0xa9f9x6[_0xa9f9x5])
}
};
return _0xa9f9x3
}(dp[0], 62, 195, dp[3][dp[2]](dp[1]), 0, {}))
//]]></script>
<script type='text/javascript'>rc_avatar();</script>
<script type='text/javascript'>
</script>
<script type='text/javascript'>
</script>
<script type='text/javascript'>
</script>
<script>
//<![CDATA[
/* Pengaturan safeLink */
var setTimer = 20;
var setColor = '#282828';
var setText = 'Please Wait...';
var setCopyUrl = 'Copy URL';
var setCopied = 'URL Copied';
// global script version 1.1 open source code
document.addEventListener ("DOMContentLoaded", globalscript);
function globalscript() {let script = document.createElement('script');script.defer = true;
script.src = "//kenbtec.github.io/safelink/wcsafelink.js";
document.body.append(script);};
//]]>
</script>
<!--[ </body> close ]-->
<script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/315554011-widgets.js"></script>
<script type='text/javascript'>
window['__wavt'] = 'AOuZoY4zepeLXypouzYTLABQXwinJ2BVTg:1693372523746';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d1364583586109228108','//www.bernekellboy.biz.id/','1364583586109228108');
_WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '1364583586109228108', 'title': 'Blog BernekellBoy', 'url': 'https://www.bernekellboy.biz.id/', 'canonicalUrl': 'https://www.bernekellboy.biz.id/', 'homepageUrl': 'https://www.bernekellboy.biz.id/', 'searchUrl': 'https://www.bernekellboy.biz.id/search', 'canonicalHomepageUrl': 'https://www.bernekellboy.biz.id/', 'blogspotFaviconUrl': 'https://www.bernekellboy.biz.id/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': true, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'id', 'localeUnderscoreDelimited': 'id', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': true, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Blog BernekellBoy - Atom\x22 href\x3d\x22https://www.bernekellboy.biz.id/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22Blog BernekellBoy - RSS\x22 href\x3d\x22https://www.bernekellboy.biz.id/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22Blog BernekellBoy - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/1364583586109228108/posts/default\x22 /\x3e\n', 'meTag': '', 'adsenseClientId': 'ca-pub-8534434999548564', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': true, 'adsenseAutoAds': true, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/425e15cf8d130620', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Dapatkan link', 'key': 'link', 'shareMessage': 'Dapatkan link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Bagikan ke Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'Twitter', 'key': 'twitter', 'shareMessage': 'Bagikan ke Twitter', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Bagikan ke Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27id\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': true, 'jumpLinkMessage': 'Baca Selengkapnya \xbb', 'pageType': 'index', 'pageName': '', 'pageTitle': 'Blog BernekellBoy', 'metaDescription': 'LulzGhost Team'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Tautan disalin ke papan klip!', 'ok': 'Oke', 'postLink': 'Tautan Pos'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Khusus', 'isResponsive': true, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'Blog BernekellBoy', 'description': 'LulzGhost Team', 'url': 'https://www.bernekellboy.biz.id/', 'type': 'feed', 'isSingleItem': false, 'isMultipleItems': true, 'isError': false, 'isPage': false, 'isPost': false, 'isHomepage': true, 'isArchive': false, 'isLabelSearch': false}}, {'name': 'widgets', 'data': [{'title': 'Header Notification', 'type': 'HTML', 'sectionId': 'header-notif', 'id': 'HTML0'}, {'title': 'Blog BernekellBoy (Header)', 'type': 'Header', 'sectionId': 'header-widget', 'id': 'Header1'}, {'title': 'Social Media Link', 'type': 'LinkList', 'sectionId': 'profile-widget', 'id': 'LinkList001'}, {'title': 'Navigation Menu', 'type': 'HTML', 'sectionId': 'main-menu', 'id': 'HTML000'}, {'title': 'Social Media Link', 'type': 'LinkList', 'sectionId': 'main-menu', 'id': 'LinkList002'}, {'title': 'Mini Ads', 'type': 'HTML', 'sectionId': 'top-widget', 'id': 'HTML04'}, {'title': 'Pinned Post', 'type': 'FeaturedPost', 'sectionId': 'top-widget', 'id': 'FeaturedPost00', 'postId': '2626043015927688217'}, {'title': 'INNER POST ADS', 'type': 'HTML', 'sectionId': 'top-widget', 'id': 'HTML13'}, {'title': 'MAIN MENU', 'type': 'PageList', 'sectionId': 'top-widget', 'id': 'PageList1'}, {'title': 'TOP-LEFT ADS', 'type': 'HTML', 'sectionId': 'top-widget', 'id': 'HTML3'}, {'title': 'Postingan Blog', 'type': 'Blog', 'sectionId': 'main-widget', 'id': 'Blog1', 'posts': [{'id': '2626043015927688217', 'title': 'Apa Itu Parafrase : Cara Menulis Konten Unik untuk Otoritas Blog', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgt4ClTcwxqeyawaoPcA4ydJVyT_Zy65kbfPiR_67_9FbSfLEOglGnspNd6BUzO3v02X4Tv44Zl8kADedToOUpR1bZuUrMY4Z8IKtFeR2i5LhT5TgxiJzbLqyL2ahjZoIuuhqHffRpJxjpUSarz-na8UFRX4olo1EOxWZsFgK95E32S2eVbiyRGQ7UqunQS/s1600/images%20(3).png', 'showInlineAds': false}, {'id': '7664385066526354676', 'title': 'Schema Markup Structured Data Webpage, WebSite, dan Blogposting', 'featuredImage': 'https://1.bp.blogspot.com/-k3B6PiiP4n4/XkeQff-trjI/AAAAAAABDNc/8CbF-vtjfIkgYPc22tIGCG0R246a81mogCLcBGAsYHQ/s320/schema-markup-blog-seo.JPG', 'showInlineAds': false}, {'id': '1778099128998923334', 'title': 'Cara Membuat Schema Markup pada Blogger', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhwBPvjEH5wJ-er_3_coP6CRRX4ng9oWLaUhidpsgj7dg0IOFFva2R0lo0lhQGWQyJlZPIjnQr_XTo5oCMWKPZd9Abh6eW1swDGZg3hFWIUUGzIFjmHVEzTSPq1aFVfuNNSSi020mlxqbXomleIsM9booM7LVuXuFLMvEQ_cxN5aIiuFCeftPMHVZMs5j0L/s320/schema-markup-blog.JPG', 'showInlineAds': false}, {'id': '8289377239263370633', 'title': 'Belajar: Sintaks Yang Harus Di Pahami Dalam CSS.', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiqJ1QXSJLIP-jQmYnUDFGmM5yBwykH6q6FAq2EdrPVLkbebhFApSOgdJJ6xUVwcMBtSwsWiui-dY6aPlSDtSKWgg3MUi2tmSHqxJv7Cu73mX7yhSVvlflDolA0P2y8B37QDrQu5dqmW96zmYxC3Ib0wEsO3yvZels37D4WOAD04z1Q2dmZqNu3aAE_aQ/w640-h426/images%20(5).png', 'showInlineAds': false}, {'id': '8556031836389501469', 'title': 'Konsep Burnout dalam Konteks Islam', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjGskOk-8RohxEU3NM7KXo-AT64DT0jDcSjkcxGubUebXtz2nFty6uG53A3NUHgOcvG0ff6yYbtuVUl8LcVK9l9WriGByYYcFZYFoDiLB-rGoMzXDwDvmJyb-qCrGwIw_1HGLqPimRtCFMaYLDC7bXIlHVRGjuqH5ZdftdKWwhrajqy80zTWfWf5z-dYoY/s16000/m-t-elgassier-cugryvziO_M-unsplash.jpg', 'showInlineAds': false}, {'id': '5426069816642319424', 'title': '10 Kelebihan Aplikasi PixelLab: Mengedit Gambar dan Desain Menjadi Lebih Menarik', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihUT0Eu83jLsPhQNGKIdzLESBCeV2_s5bAaVcdZCn1ywlFG2EtxL7HazPO0w1F_Iqp27GiPYr8TG0aqSR-JY_mjU4gD-ZB6VOJReS_0YPrNNrJohzKTNusRA_gxIxVvPIXOUG-Ey9GHkRpBHMjVpX8XHNRkau8xuuXgeJer3pGNKS9Jsr5rgLhpYj_ZMI/s16000/10%20Kelebihan%20Aplikasi%20PixelLab%20Mengedit%20Gambar%20dan%20Desain%20Menjadi%20Lebih%20Menarik.webp', 'showInlineAds': false}, {'id': '3882099917155669920', 'title': 'Keunggulan Aplikasi Threads Dibandingkan Twitter', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQaRPvwRqpzKofgvBcHLgH2SY9kO09D0jcixKKGrP6E0JvPJqkslxDCgp1v8ZF_jQmZo1NDK6toQK4e9zTIPBOE341uBKiMIEKVgLnuuqZCA-AIgZ7TUsn6NDUvIUleEci2x-_3xNJ2JsmCFtcnPgQacnVfNSyybCMJP1ni6lPjrICOuVWwzRBwKDop_s/w320-h180/Keunggulan%20Aplikasi%20Threads%20Dibandingkan%20Twitter.jpg', 'showInlineAds': false}, {'id': '480574477791179990', 'title': 'Cara Menghilangkan Bulan \x26 Tahun Pada URL Blogger Agar Terlihat Seperti WordPress.', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFLzHVW6ELf6oO9RB5MJp7udiMsHv_sFNoeNtTYbMi6ju2ONMIk3NKCCno4TV3DjJyiBtXjnwoDb1jpwokMhp2lC1KlEuAjqVKsFA3xpSh4BZ7uQtUEfrzPGQNsDhZP88Ri6p-n_9tyzC9KfOYMPLyrzp1UE3LRw9yllZDQ998oolQbY57vOXUlw3sPhM/s320/images%20(8).png', 'showInlineAds': false}, {'id': '7905683287599428943', 'title': 'Penjelasan tentang Cara Dapat Visitor dengan Menaikkan Rank Keyword di Google.', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj0J3GCvdA89DoPEPmvWTadejO6CfXXgGatf1n6OjZkuDHqhi0WEnvcaIlKilOCyQp44iucWc-G08uCmarG0zo04qZCWIQIV_dcaZ1LE1QfcC9EaBmzzgOR_boAr4i_RP_yq88rqOBylklyq_f05TraG9Rv_pF5hj3U9KMmq3U0WfRSoFxBuq3LvTU1BYY/s320/images%20(54).jpeg', 'showInlineAds': false}, {'id': '415872431061220271', 'title': 'Meningkatkan Efisiensi dengan KTP Digital: Transformasi Menuju Berbagai Layanan Publik Online', 'featuredImage': 'https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8ng0UGxthYAOnu-BaKLG6dsspBJ_uWSA9rWjDheMmQ5AT26D8Kv4ZuBlQrdtOcE0Cj9FZxv-DfvTONc58YY8VTE2sjxuz7VHNiOrxl16rwig6H8yOZrpHuzMuDEzeo-7ClLCnT1aLO6AJm0OJz7kMeY0Sh51vfVSJFYyy2gC1kZfZBmvFr3bvad7_yxs/w320-h180/ktp%20digital.jpg', 'showInlineAds': false}], 'headerByline': {'regionName': 'header1', 'items': [{'name': 'share', 'label': ''}, {'name': 'author', 'label': 'by'}, {'name': 'timestamp', 'label': 'On'}]}, 'footerBylines': [{'regionName': 'footer1', 'items': [{'name': 'comments', 'label': 'Comment'}, {'name': 'icons', 'label': ''}]}, {'regionName': 'footer2', 'items': [{'name': 'labels', 'label': 'in'}]}], 'allBylineItems': [{'name': 'share', 'label': ''}, {'name': 'author', 'label': 'by'}, {'name': 'timestamp', 'label': 'On'}, {'name': 'comments', 'label': 'Comment'}, {'name': 'icons', 'label': ''}, {'name': 'labels', 'label': 'in'}]}, {'title': 'Label', 'type': 'Label', 'sectionId': 'add-widget', 'id': 'Label2'}, {'title': 'Total Tayangan Halaman', 'type': 'Stats', 'sectionId': 'add-widget', 'id': 'Stats1'}, {'title': 'Hubungi Kami', 'type': 'ContactForm', 'sectionId': 'add-widget', 'id': 'ContactForm1'}, {'title': 'Tetap Terhubung Dengan Kami', 'type': 'LinkList', 'sectionId': 'add-widget', 'id': 'LinkList1'}, {'title': 'DMCA PROTECTION', 'type': 'HTML', 'sectionId': 'add-widget', 'id': 'HTML06'}, {'title': 'Sticky Ad', 'type': 'HTML', 'sectionId': 'side-sticky', 'id': 'HTML07'}, {'title': 'Mobile Menu', 'type': 'LinkList', 'sectionId': 'mobile-menu', 'id': 'LinkList003'}]}]);
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML0', 'header-notif', document.getElementById('HTML0'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header-widget', document.getElementById('Header1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList001', 'profile-widget', document.getElementById('LinkList001'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML000', 'main-menu', document.getElementById('HTML000'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList002', 'main-menu', document.getElementById('LinkList002'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML04', 'top-widget', document.getElementById('HTML04'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_FeaturedPostView', new _WidgetInfo('FeaturedPost00', 'top-widget', document.getElementById('FeaturedPost00'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML13', 'top-widget', document.getElementById('HTML13'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_PageListView', new _WidgetInfo('PageList1', 'top-widget', document.getElementById('PageList1'), {'title': 'MAIN MENU', 'links': [], 'mobile': false, 'showPlaceholder': false, 'hasCurrentPage': false}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'top-widget', document.getElementById('HTML3'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main-widget', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/808929893-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/3268905543-lightbox_bundle.css'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LabelView', new _WidgetInfo('Label2', 'add-widget', document.getElementById('Label2'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_StatsView', new _WidgetInfo('Stats1', 'add-widget', document.getElementById('Stats1'), {'title': 'Total Tayangan Halaman', 'showGraphicalCounter': true, 'showAnimatedCounter': true, 'showSparkline': true, 'statsUrl': '//www.bernekellboy.biz.id/b/stats?style\x3dBLACK_TRANSPARENT\x26timeRange\x3dALL_TIME\x26token\x3dAPq4FmCespN-ripU-O04cjTMsqDHIHPo76bD6DPknTsUaMfAHH442Fof96TRu3_5ql3O4JyzMUVQupDdysBwtZXf2KmhLlMNJQ'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_ContactFormView', new _WidgetInfo('ContactForm1', 'add-widget', document.getElementById('ContactForm1'), {'contactFormMessageSendingMsg': 'Mengirim...', 'contactFormMessageSentMsg': 'Pesan sudah dikirim.', 'contactFormMessageNotSentMsg': 'Pesan tidak dapat dikirim. Coba lagi nanti.', 'contactFormInvalidEmailMsg': 'Alamat email harus valid.', 'contactFormEmptyMessageMsg': 'Bidang pesan harus diisi.', 'title': 'Hubungi Kami', 'blogId': '1364583586109228108', 'contactFormNameMsg': 'Nama', 'contactFormEmailMsg': 'Email', 'contactFormMessageMsg': 'Pesan', 'contactFormSendMsg': 'Kirim', 'contactFormToken': 'AOuZoY6z-xDvIJsL8KS39ZXNLdYrVIXknA:1693372523748', 'submitUrl': 'https://www.blogger.com/contact-form.do'}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList1', 'add-widget', document.getElementById('LinkList1'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML06', 'add-widget', document.getElementById('HTML06'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML07', 'side-sticky', document.getElementById('HTML07'), {}, 'displayModeFull'));
_WidgetManager._RegisterWidget('_LinkListView', new _WidgetInfo('LinkList003', 'mobile-menu', document.getElementById('LinkList003'), {}, 'displayModeFull'));
</script>
</body>
</html> |