diff --git a/AutoBuild/tw_165.py b/AutoBuild/tw_165.py index 0b61b11..481f879 100644 --- a/AutoBuild/tw_165.py +++ b/AutoBuild/tw_165.py @@ -11,6 +11,13 @@ logger = logging.getLogger(__name__) IP_PATTERN = r'^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$' +def exclude_list(domain: str) -> bool: + exclude = ['google.com'] + for e in exclude: + if domain.endswith(e): + return True + return False + def is_pure_ip(domain: str) -> bool: return True if re.match(IP_PATTERN, domain) else False @@ -58,8 +65,10 @@ def main(): ] )) - # 移除純 IP - domains = {k: v for k, v in domains.items() if not is_pure_ip(k)} + # 移除純 IP & 移除允許清單 + domains = {k: v for k, v in domains.items() if not is_pure_ip(k) \ + and not exclude_list(k)} + filename = 'TW165.txt' with open(filename, 'w') as f: diff --git a/PureView/news.txt b/PureView/news.txt index c252cb0..59e5a71 100644 --- a/PureView/news.txt +++ b/PureView/news.txt @@ -20,6 +20,8 @@ udn.com##section[class="facebook-comment article-section context-box"] udn.com##section[class="discuss-board article-section context-box"] udn.com#$#.wrapper-left { width: unset !important; } udn.com#$#.footer { margin-top: unset !important; } +udn.com##div[id="taboola-below-discuss-thumbnails"] +[$path=/news]udn.com##a[href^="https://udn.com/vote2024/story/"]:nth-ancestor(2) ! UDN 寵物 pets.udn.com##div[class="story variety extend"] @@ -48,7 +50,8 @@ news.ltn.com.tw##div[id="marqueeHeader"] news.ltn.com.tw##div[class="related boxTitle"] news.ltn.com.tw##div[class="see_more boxTitle"] news.ltn.com.tw##div[class="todaynews boxTitle"] -news.ltn.com.tw##div[class=“footermenu”] +news.ltn.com.tw##div[class="footermenu"] +news.ltn.com.tw##div[data-desc="重要專題"]:nth-ancestor(1) 3c.ltn.com.tw##aside 3c.ltn.com.tw##div[class="top boxTitle boxText"] @@ -84,15 +87,20 @@ www.mirrormedia.mg#$#div[class="story-wrapper"] { padding-top: unset !important; www.mirrormedia.mg##div[class="share-sidebox story__share-sidebox"] www.mirrormedia.mg##div[class="sns-wrapper"] www.mirrormedia.mg##div[class="story__list"] +www.mirrormedia.mg##section[class^="related-article-list"] +www.mirrormedia.mg##div[class^="support-mirrormedia-banner__Container"] +www.mirrormedia.mg##div[class^="social-network-service__Wrapper"] +www.mirrormedia.mg##section[class^="normal__StoryEnd"] +www.mirrormedia.mg#$#article { margin: unset !important; max-width: unset !important; } ! ETTODAY -ettoday.net##div[class="c2"] +[$path=/news]ettoday.net##div[class="c2"] ettoday.net##div[class="nav_2"] ettoday.net##div[class="part_menu_5 clearfix"] ettoday.net##div[class="text_ticker_1"] ettoday.net##div[class="et_ad_group_1"] ettoday.net##div[class="menu_2"] -ettoday.net#$#div[class="c1"] { width: unset !important; } +[$path=/news]ettoday.net#$#div[class="c1"] { width: unset !important; } ettoday.net##div[id="hot_area"] ettoday.net##div[class="video_frame"] ettoday.net##div[class$="hot-news"] @@ -153,6 +161,7 @@ chinatimes.com##div[class="promote-word"] chinatimes.com#$#div[class="column-left"] { width: unset !important; } ||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02\.svg/ ||static.chinatimes.com^$replace=/\.\.\/\.\.\/images\/2020\/logo-chinatimes-alt2020\.svg/https\:\/\/filter\-assets\.futa\.gg\/ct02-PCview\.svg/ +||chinatimes.com^$cookie ! 風傳媒 www.storm.mg##aside @@ -289,4 +298,8 @@ managertoday.com.tw##div[id="my-idle-wrapper"] managertoday.com.tw##div[class="edm-form-panel"] managertoday.com.tw##a[data-dl_item="magazine_list"]:nth-ancestor(3) managertoday.com.tw##div[x-data="social_share"]:nth-ancestor(1) -! \ No newline at end of file + +! 鉅亨網 +news.cnyes.com##img[alt="cookies"]:nth-ancestor(2) +news.cnyes.com##aside +news.cnyes.com##h2[class$="theme-slick"]:nth-ancestor(1) diff --git a/PureView/news_mobile.txt b/PureView/news_mobile.txt index 78b49c6..64f7ca3 100644 --- a/PureView/news_mobile.txt +++ b/PureView/news_mobile.txt @@ -206,4 +206,20 @@ news.agentm.tw##div[id="agmn_a_beginArticle_M"] news.agentm.tw##div[class="relative"] news.agentm.tw##aside[class="pside"] news.agentm.tw##aside[class="aside"] -news.agentm.tw##footer[id="footer"] \ No newline at end of file +news.agentm.tw##footer[id="footer"] + +! CTWant +ctwant.com##div[class="l-header__downloadapp"] +ctwant.com##div[id="article-tag-bottom"] +ctwant.com##div[class="l-section"] +ctwant.com##aside[class="l-sidebar-mobile"] +ctwant.com##div[class="l-footer__social"] + +! 鏡傳媒 Mirrormedia +www.mirrormedia.mg##div[class^="gpt-placeholder__Container"] +www.mirrormedia.mg##section[class^="related-article-list"] +www.mirrormedia.mg##div[class^="support-mirrormedia-banner__Container"] +www.mirrormedia.mg##div[class^="social-network-service__Wrapper"] +www.mirrormedia.mg##section[class^="normal__StoryEnd"] +www.mirrormedia.mg#$#article { margin: unset !important; max-width: unset !important; } +||www.mirrormedia.mg^$cookie=/AviviD.+/ diff --git a/Surge/filters.txt b/Surge/filters.txt index aaf1126..907f2cb 100644 --- a/Surge/filters.txt +++ b/Surge/filters.txt @@ -1,12 +1,11 @@ #!name=FutaFilter -#!desc=Make Futa Great Again! v20210619.01 +#!desc=Make Futa Great Again! v20231207.01 #!system=ios [Rule] #! Line 廣告 #! 白名單 URL-REGEX,^https:\/\/obs\.line-scdn\.net\/r,DIRECT -URL-REGEX,^https:\/\/obs-tw\.line-apps\.com\/talk,DIRECT DOMAIN,stickershop.line-scdn.net,DIRECT #! 黑名單 #! UA 偽裝 @@ -34,15 +33,17 @@ URL-REGEX,^https:\/\/a\.line\.me\/oa\/v\d\/e$,REJECT-DROP URL-REGEX,^https:\/\/bilanx\.dcard\.tw\/v\d\/events$,REJECT URL-REGEX,^https:\/\/bilanx\.dcard\.tw\/v\d\/configs$,REJECT -#! 漫畫人 -URL-REGEX,^https?:\/\/mangaapi.manhuaren.(com|net)\/.+\/public\/(getShelfActivity|getStartPageAds|getStartPageAds2|getRecommendedGame|getAditem|getAds|getMultiAds|getUpgradeInfo|getVendor|getUserLocation),REJECT -URL-REGEX,^https?:\/\/mangaapi.manhuaren.(com|net)\/.+\/manga\/getMangaPromotionActivity,REJECT -URL-REGEX,^https?:\/\/mangaapi.manhuaren.(com|net)\/.+\/ad\/,REJECT -DOMAIN-SUFFIX,hkadsapi.manhuaren.com,REJECT -DOMAIN-SUFFIX,adsapi.manhuaren.com,REJECT -DOMAIN-SUFFIX,videoapi.manhuaren.com,REJECT -DOMAIN-SUFFIX,bi.manhuaren.com,REJECT -DOMAIN-SUFFIX,euadsapi.manhuaren.com,REJECT +#! 漫畫人/漫畫社 +#! 安裝本模組後,建議移除漫畫人/漫畫社再重新安裝以到最佳阻擋效果(重新安裝後會有一小段時間無法觀看限制內容,等待1-2小時左右即可解除) +URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/public\/(getShelfActivity|getStartPageAds|getStartPageAds2|getRecommendedGame|getAditem|getAds|getMultiAds|getUpgradeInfo|getVendor|getUserLocation),REJECT +URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/(manga|comic)\/(getMangaPromotionActivity|getComicPromotionActivity),REJECT +URL-REGEX,^https?:\/\/(mangaapi|comicapi).(manhuaren|manhuashe).(com|net)\/.+\/(ad|ads)\/,REJECT +DOMAIN-SUFFIX,hkadsapi.(manhuaren|manhuashe).(com|net),REJECT +DOMAIN-SUFFIX,adsapi.(manhuaren|manhuashe).(com|net),REJECT +DOMAIN-SUFFIX,videoapi.(manhuaren|manhuashe).(com|net),REJECT +DOMAIN-SUFFIX,bi.(manhuaren|manhuashe).(com|net),REJECT +DOMAIN-SUFFIX,euadsapi.(manhuaren|manhuashe).(com|net),REJECT +DOMAIN-SUFFIX,adlog.(manhuaren|manhuashe).(com|net),REJECT DOMAIN-SUFFIX,applog.uc.cn,REJECT-TINYGIF #! 4Gamer @@ -113,4 +114,4 @@ DOMAIN-SUFFIX,flurry.com,REJECT DOMAIN-SUFFIX,mopub.com,REJECT [MITM] -hostname = %APPEND% a.line.me, w.line.me, buy.line.me, crs-event.line.me, obs.line-scdn.net, d.line-scdn.net, obs-tw.line-apps.com, api.today.line.me, sch.line.me, scdn.line-apps.com, mangaapi.manhuaren.com, mangaapi.manhuaren.net, www.4gamers.com.tw, bilanx.dcard.tw, pttbrain.herokuapp.com, front.pixfs.net +hostname = %APPEND% a.line.me, w.line.me, buy.line.me, crs-event.line.me, obs.line-scdn.net, d.line-scdn.net, api.today.line.me, sch.line.me, scdn.line-apps.com, mangaapi.manhuaren.com, mangaapi.manhuaren.net, comicapi.manhuashe.com, www.4gamers.com.tw, bilanx.dcard.tw, pttbrain.herokuapp.com, front.pixfs.net diff --git a/TW165-redirect.txt b/TW165-redirect.txt index bd85c89..f3df48a 100644 --- a/TW165-redirect.txt +++ b/TW165-redirect.txt @@ -1,10 +1,17 @@ +||www.0857.games^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.0xdappplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.0xplusdapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.0xboost.finance^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.0xboost.app^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.100exbtc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.100exbtc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.100exbank.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw11st.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||11streetshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||11streetth.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||11stglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.11stc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.11sts.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.11stw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||global-11st.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.11stglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -31,13 +38,21 @@ ||www.onecopi.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.onecopx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.onecss.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||1hdtwdown.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||1hdstoretw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jdtwmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||my1hd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aimhb.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.2okextw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.2okextw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||vip118.aaa1788.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aaa1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.3itw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.djjduhbsk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.jiuawpoa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||car51.net.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.89i.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||mansionno8.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ts775.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.91shopes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.gzxshg.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -45,12 +60,14 @@ ||www.akact5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.akkaw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||apowercheck.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.empirebts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aachain.app^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaex.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaex.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaex.in^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaex.win^$dnsrewrite=NOERROR;A;34.102.218.71 ||apk.aave-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||apk1.aave-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aavemaxprofinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aavepromaxfinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aavvec.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -88,6 +105,7 @@ ||www.admfx-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||members.aegloballink.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aegloballink.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mex.aegonxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkp.aemda.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yongwang-hk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asfggbb.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -109,23 +127,36 @@ ||ai-internationald.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-internationale.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-internationalf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ai-internationalfa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ai-internationalgk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ai-internationalgp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-internationali.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-internationall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-internationalo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ai-internationalqa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||warrioroi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.warrioroi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||safepal.aigrid.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||safepal.aigridex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||safepal.aigridpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||safepal.aigridw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aicmks.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aims-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aims-coins.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||aism-tw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||aismexit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aismexco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aismex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aismexbio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aismexd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aismexiks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aismexmts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aismextnt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aismexuct.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aismexq.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -146,10 +177,12 @@ ||xakkaax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hifly09826.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hifly92093.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aldibuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.alexdnys.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.alexjtdx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||888ama.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||auniswap.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||amb-ss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amcvvc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amedyu.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ameiat.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -161,21 +194,28 @@ ||www.tcnnzbsc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amgmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amgmall.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.amgmall.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||etzv.bfsaqpro.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||gjyc.gwysn.social^$dnsrewrite=NOERROR;A;34.102.218.71 ||rwey.fdsjy.ltd^$dnsrewrite=NOERROR;A;34.102.218.71 ||vbhk.bcxsg.social^$dnsrewrite=NOERROR;A;34.102.218.71 ||aness.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ane-aa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.anecoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aneex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.anevip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ankex-btc.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||ankex-btc.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||ankex-btc.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ankrmxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||anti178.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||anti261.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ianti178.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ianti666.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||ianti999.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aoesben.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aoexjp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aoexpl.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||apexcoin.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||cropty5138.apexcoins.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||crypto5138.apex-coin.co^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -215,25 +255,43 @@ ||www.atexns.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||atfx-tw886.cn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||atfxwealthbtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.atfxvip.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atfkknp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||intimemtfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.infoatfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atgmyyy.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atgmyyy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atomx.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atomx.fun^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atomx.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.atomx.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.atomx.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||tsgtw.atomx.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||at168.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.88au8.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||contractda.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||contractog.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||contractst.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||contractwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cykcio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aztvp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ubspork.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.avabroker-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.avabrokertrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avabrokertrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avatbectoplink.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avatdiero.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avaxiyr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avax-financemax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avax-max.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avax-tradeplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avax-tradepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.avaxiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||winner.avisxcrypto.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||art.awdcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.awdcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.first.awdcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.axexxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.axtdjbe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.axtewbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.axtfhio.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -260,12 +318,15 @@ ||www.aavemarket-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aaveprox.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aavespro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aavvefinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bflzwbf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aa5265.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.twaberd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wdd.twaberd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.aberiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wsd.aberiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wsd.rberale.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||abunshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||velocity.nyseurex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.acelitmalls.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||acestops.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -282,7 +343,10 @@ ||activtradestw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.activtradestww.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.activtradetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aemdenfex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.amtcoltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.adrvnecd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.aemdenfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twaeonco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twwelcome.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||welcomeaeon.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -292,21 +356,36 @@ ||mvs.aerwinnes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aerwimes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||appskqtat3fihbjy.jiabohao.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ainetwkes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ainetwkpnyt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ainetwkvit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ainetwot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ainetwotyu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tp1.ainetwk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nftesla.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ainoce.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ainose.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ainose.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ainoce.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||aircash.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.aircarbon.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||wealth.aisagoldmxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aisagoldmxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aitopit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aiyfproex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ada.alcoaiesr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||duo.alcoaiesr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fyl.alcoae.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kgw.alcoaesr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kgw.alcoaiesr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||syf.alcoae.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ava.alconaster.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||elf.alconasisr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||elf.alconaster.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||s.aliexpressmxz.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||w.aliexpshool.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aliexp-app.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||alibabaquan.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.alibaba-seller.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.alisoso-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||17f84.jssiuhr.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -318,6 +397,7 @@ ||allemall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.allemall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.allemall.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.maxalleshop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oebuy.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||allencapital.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||allepro.shop^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -328,13 +408,22 @@ ||www.allscoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.usallygroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.usallystock.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xiunjmi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dsgyfb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lotiso.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sfsakdja.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wretrfydt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alpha-finace.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinace.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinacec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinaceca.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||alphafinacecz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinaced.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||alphafinaceoq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinaceq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alphafinacex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.alphafinaceca.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.alphamjb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.alyforex.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.alyforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.tw-amana-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -345,6 +434,7 @@ ||a.mazonshopm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.mazonshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.mazonshopt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.mazonshu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.mazonsmum.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.mazonsmut.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||amazinon.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -359,6 +449,8 @@ ||www.5608720.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amabionzshhell.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amazon24.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.amazon315.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.amazon5228.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amazonfbajp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amz-1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amz-5.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -368,7 +460,9 @@ ||www.amzsan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amzshop.homes^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.buyamzz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jpipshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.opamzss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.temu-us.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||amb267.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.amcorx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.annrc.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -380,14 +474,23 @@ ||tigerlord.annmrx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ammmine.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||pn3.sechcn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.adidowns.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aidhscapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aidhscdown.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||krd.yurenied.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.aafcry.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.cmacbg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.feffee.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.fusgth.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||cs.fzuzpf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.hnsgjr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.tahark.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.tzdtkm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.ykfygg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||frhtau.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ttaszr.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.frhtau.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zdrgep.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||xcv.knzgsm.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||xcv.petdhf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||xcv.rmtczk.sbs^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -395,9 +498,12 @@ ||www.ncrncy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sfa.visoser.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wsd.visfjie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||animocavd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||anybuymall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||anybuyshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||anybuyshops.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||apecoinvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.apecoinvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||apollodex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.apolloxexp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app4world.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -408,8 +514,17 @@ ||www.aqdgroups.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arbitrons.ai^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkp.archnnesy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.artobaycdv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisitio.aredefid.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisition.aredefiar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aradmin.aredefiar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||balance.aredefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||balance.aredefiar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||balance.aredefid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||balance.aredefie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||blance.aredefiar.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.asfglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shoponasia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||appdd.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||sgd588.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||athenaplace.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -426,16 +541,33 @@ ||www.fxathenafx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxathennafx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miranofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atlanioes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atlantey.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atlantt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atlanxios.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.atlanxitxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||it-atomicvt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.achtwd.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.auchanauntwds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.auchanauntwds.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||bdiexchange.ausmetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||overlord.agugm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||overlord.ausmetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avatbsoprotop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avatbtccotp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||avatdbtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kvictor.bleava.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||link.megmgulk.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avauur.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.avant-vip.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||fotumi.avastomes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www0.avastm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www0.avastmes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www0.avastomes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www0.avastuites.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||azbitproe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.azygww.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||brich.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||bac7746.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.coinbac.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.coinbac.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -447,9 +579,19 @@ ||www.bankcex.mobi^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.o458jd83.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||zhantop.bzeuk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||421ru.jsanrhs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.batecoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.batecoin.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.batecoin.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.batecoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||baetf.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.baetf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetfc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetfg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetfh.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetfn.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetfs.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baetft.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbs157.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbs157.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbs2001.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -457,8 +599,10 @@ ||ibbs168.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ibbs168.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.bbtc.gold^$dnsrewrite=NOERROR;A;34.102.218.71 +||bbvsfx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jinniuios2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bchcoinex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bchcoinexmc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||file.bchexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bchexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bckavip.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -481,9 +625,12 @@ ||bcttina.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bcttnun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||geamlne.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lazadacmsomx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.bdgvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.fxbdg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dlf-88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dlf-88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.elc-5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.elc-6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||buerap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bulvs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -500,13 +647,25 @@ ||www.bfcwoz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||77ideal.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bh1788.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||bhilfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bhilga.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||viodaatomicswap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.1ytuios.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bikbit.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bikoto.myftp.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||wdd.bilyds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit.svipcoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.p2bdwq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bestbeo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitccoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit.svip.name^$dnsrewrite=NOERROR;A;34.102.218.71 +||down.bit.vip0.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitexchaeyr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitexchang.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitexchangoer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitexcpger.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biteyupgegr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biteyupger.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss.bitsrose.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twtw.bitsguss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twtw.bitsrose.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -514,16 +673,22 @@ ||bitewtx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitewtx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitekrc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitimnv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitvdsz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitekrc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitimnv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitvdsz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitk-eth.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitk-btc.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||bito.win^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitos.work^$dnsrewrite=NOERROR;A;34.102.218.71 ||bite500ags.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bite500es.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bite500ftp.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||27a8.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||2aa7.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitsoine.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.c053679f.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bizexs.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||mz.usdtinvest.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||tvttiy.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -534,6 +699,17 @@ ||www.mobile.bkoex.finance^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.kpdwj908.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.blexem.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jptw.bds8869.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bmdctd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bmdgr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bmdryg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bmdtsj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bmdyuv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bntradetbh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bntradeute.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bntradeyu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bnwredergr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bnbtr.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bnbtr.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.lqvpma.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.ejpdlgv6.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -542,12 +718,14 @@ ||m.zucppr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ejpdlgv6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||boqconin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||boqfox.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.boqfx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.boqex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.boxbx888.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.boxx.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.brentcenter.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.brentchk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.brenthk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||brk.foundation^$dnsrewrite=NOERROR;A;34.102.218.71 ||brk.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||brk.life^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -561,6 +739,7 @@ ||aope.bsep.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||aope.oxeoxe.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||btc-sxs.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||hit.hitbtcmk.digital^$dnsrewrite=NOERROR;A;34.102.218.71 ||sedfw.abb-mgs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ymbi.hitbtcm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ymdj.hitbtct.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -590,6 +769,7 @@ ||www.btminka.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btminlu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btminza.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||btsedex.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcore168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cryptobtx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btxcoin.pro^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -598,6 +778,7 @@ ||m.buxmarkets.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.buxasia.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.buxasia.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buxmarkets.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bvgoing.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bwcryptos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dejhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -612,9 +793,14 @@ ||www.bitkbj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkbm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bybithtmls.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.baicoine.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.baicoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bezbcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||b-itopro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bakin-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bakin68.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||baktta.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pc.bakktfx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bakkts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bakktss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bakkttw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -630,6 +816,8 @@ ||www.coindbank.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinsdbank.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxddonline.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bdswissdcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bdswissrrq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.begonia.today^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.begoniapro.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||art.belgemgiaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -649,18 +837,27 @@ ||www.cafxbelmont.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exbellmont.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxbellemont.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bellsmall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||best-buy2.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bestbuy-ap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bestbuys-app.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mylove188.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bestbuy-ap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bestbuy-jp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.new188.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.betcoinonline.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bewithvctw.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bewithvctw.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bgcge.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metaversepro-trade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bhilio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||plusss.bk-bimax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ntfin.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||bibox-pro.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bicc66.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biconomys.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.biconui.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biconzt.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bigunclewd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.biggloballtd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.biggloballtd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -676,11 +873,16 @@ ||www.bikn-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bikinge.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bikivins.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||bikoto.myftp.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||bikotocbd.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||bikotoetc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||bikotoifc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bikotousdt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bikotovip.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bikuex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bilaxy.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||end774.qoo9888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jkf.metalsexz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dexkhi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dexkje.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dexveq.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -703,6 +905,9 @@ ||bing-bon.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingboncoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingbonvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bingxgoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bingxoz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bingxpq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingxpro.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingxuu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bingbonup-xh5.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -713,13 +918,15 @@ ||mobile.birbloom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.birbloom.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.birbloom.org^$dnsrewrite=NOERROR;A;34.102.218.71 -||www.bitccoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biruias.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.biruibs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingtdnj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bingtrcy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bingtrcy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ab93.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit-c.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bit-c.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bit-c.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bit-cone.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bit-cpra.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit2cex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -728,6 +935,7 @@ ||www.bitgjis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bithuh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitrber.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.bitbayshi06.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app-download.mitokenex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bitcryptos.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.bitcrypto.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -735,8 +943,10 @@ ||bitchret.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitchrom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitchawe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitchrom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitcokeb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitex01.bitextech.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.linsuxa1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitehtex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitfn-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitfnex-axe.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -752,13 +962,23 @@ ||bitforapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||expoex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||sdugnmmss1391.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitglobali.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cmecoinbase.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||bithashsg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bithashsg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitedax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitkeep2018.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitkeyep88.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkeep2018.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkeep2018pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heishijituan888.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkon.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitkonvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitkonweb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitkucoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitkueth.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitkusol.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitkuex-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkuex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkulink.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitkuus.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -772,12 +992,20 @@ ||mex71.8bitmex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mex99.6bitmex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mex99.bitmex7.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bit-coinmhgdlx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitmex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bnexsusdts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.winning92.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitmxc.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitmatmxq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitopmaket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitopmakt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bittmartr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitvip-makt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitvipmakt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bkexajn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bkexzii.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bkexzil.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||56bit.bitmexx03.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit6.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||mex58.bitmexx02.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -790,13 +1018,31 @@ ||www.bitmillion.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitmillion.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitmillion.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitmillions.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||aj.jmukde.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitazaevc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitjvx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bittopcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvab.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvaj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitved.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitveh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bizatadty.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitvfb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitvikr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bittopvdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bittorodvo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bittorotnb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bittoronx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bittorore.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bittoroye.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitturkeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitturker.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bullisheh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitturkeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitturkes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitvenan.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitvenus-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitagle.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitazadxss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitazafji.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -828,6 +1074,8 @@ ||www.bittokenvds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcomex.app^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcore66.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitcorem.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitcorem.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcores688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||busskin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dahaipost.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -854,11 +1102,13 @@ ||yhgoxa.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitnrv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitfarmes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitfnex-bxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitfinex-vp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitssd.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitstre.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.euibt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitgatex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||download.bitex.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.bitexs.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bitexs.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bit-get-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -868,7 +1118,13 @@ ||www.bitgetar.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitgetdh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitgetev.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitgetsco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitgetwvz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitlkd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitmwu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitzkr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitgetgpx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitgetgpx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bithels.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitdju.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitewbn.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -878,6 +1134,7 @@ ||bitkan24.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitkeep6688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitbfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.blishp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.bitlo.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.bitlo.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.bitlo.life^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -886,19 +1143,40 @@ ||tsgtw.bitlo.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||tsgtw.bitlo.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitos.best^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitos.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitos.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitos.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cb-bito.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitocoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitopro.trade^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitoproglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitopromax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitoprovip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitopro-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitopro.us^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitoproex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitoproglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ttch.chubbd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ttch.dtnez001s.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitonicvz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitex.bitopay.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||aj.fdexba.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitproash.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitprocnd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitrefill.q58h2p.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrich555.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrich666.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrichbank.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrichbm.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitrue-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrue.finance^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrue.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitruely.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitruexyz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kcoinowner.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kcoinreg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitruehs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitruetrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.qianff14.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bits-tw.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.taobao-6.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -908,9 +1186,13 @@ ||www.bitsheng.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitshengas.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitshengems.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||66be49fb.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||karnscoin.karnscrypto.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitspaye.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitspayy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bitspm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.app93yj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||d.bistampkrd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.bistamqjh.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.bitstampkh.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bitsetc.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -918,7 +1200,9 @@ ||vanm.bitstamp.ageny^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bisampnktj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bisampyghj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bistametb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bistamftjh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bistamgyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitstampfks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitstampkoh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitstampktx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -926,14 +1210,22 @@ ||www.kwszva.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pqbpzve.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitsten-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bitsypay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bittradingex.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||bit3365.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit852mm.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcon669.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitrre6932.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||bit9563.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||51n.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitvavo.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitvavo.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitvavo.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvening.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvenmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvenunzs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitvenusx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bivenhaze.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trade.bitword.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||zgifts.bitwords.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||zgists.bitswords.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -942,8 +1234,11 @@ ||www.biud.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||biztradecoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bkyhyoltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||barist.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||vndygv.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.blackrockplus.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||inm.instdld.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.blocktsimax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.blocktsipromax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ybiaktsxc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||geamlndt.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -952,7 +1247,9 @@ ||www.blueberrypro.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.bnextex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bnextex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.bnextex.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bnextex.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.bnextex.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bodyshop166.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||boniry.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||boniry.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -962,8 +1259,12 @@ ||www.bobbcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.boxboxx666.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.boxxcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.brasaotpie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.brasaotus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.braskiewn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.braskioes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.brasukes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.brasuktres.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||broker.brokertradex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cdpvusb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cdpmps.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -979,19 +1280,35 @@ ||www.btcoin8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aqq778.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btcturk-il.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||btmaxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||btoplus.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||btoplus.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.btoplus.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.budagloge.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bukbene.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bulltechcitg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bulltechdec.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bulltechcitg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bulltechnci.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bullishb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bullishd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bullishib.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bullishr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bullishb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bullishd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bullishib.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bulloptioncapital.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||busskincoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.buxzerox.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.buxzeroe.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buyer-work.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buyer-work.click^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buyer-work.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buyer-work.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bbdown01.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bithoh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bybitlines.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bydfi.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.seeingshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cpatexcr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cpatexdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1001,11 +1318,16 @@ ||tcaa.coinnaaldge.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinatcanna.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinnaaldge.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.cbexbei02.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.cbexjiu01.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.cbexjiu02.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.cbexjiu08.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.cbexshi01.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cblcsdcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cblcnrt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cbntw.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cboet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cbx-coinvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cbxcoinex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cbxcoins.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||cdcamop.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1018,14 +1340,18 @@ ||www.cdpa.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cendken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vxceshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cceexx68.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cexcoin.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||cexcoins.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||cextvcoin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||cex.5bitnet.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||cexapp.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||cexapp.yanma888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cexio.link^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cex-ioex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cexio.link^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cexio.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cexioex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cexiopro.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cfareseunrs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sfa.gevgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1037,6 +1363,7 @@ ||www.cheap-homema.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cheaphome.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cheaphome01.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||mhneome.kowhtj.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||chorderct.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||chorderxi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chorderct.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1045,8 +1372,12 @@ ||ciexpro.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ciexpro.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||cip2u.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.c2pinfo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fff.ccwuwkd.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tkwl75marll.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbitcoin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||clsastock.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||clsatrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cm100.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cm100.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||cmcwgie.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1062,6 +1393,8 @@ ||coinme-y.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinme666.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinme678.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinme690.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinme875.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinme888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||exchange.cmecoins.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||exchange.cmecoins.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1080,6 +1413,7 @@ ||cmetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tog.cmetw10.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw2.cmetw10.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||cmivpg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||1689835386.zs2934.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||daoo.cmouks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ravv.cmouks.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1092,8 +1426,11 @@ ||account.coach-steps.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coachfundco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||top4h5.xcmud.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinjar1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.coinlifee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||932ap.lbtechn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.coinparks.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.coinparks.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinrf.esisgk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinrf.ygzkfr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||comexwallet.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1112,6 +1449,11 @@ ||user.medisou.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.winpro.wiki^$dnsrewrite=NOERROR;A;34.102.218.71 ||users.medisou.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coiningsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coiningua.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cscoin-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||6375289.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.6375289.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||csdinjf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||csdirer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||csdixse.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1126,6 +1468,8 @@ ||csl369.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||gifclubclub.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||ctc-defi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bi.cpkqldf.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||inter.odnwjh.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bi.ctiib.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ctrlinvestmentwa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ctrlinvestmentwss.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1134,6 +1478,7 @@ ||b52singapore.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||digitrone.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||johyvula.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||psdjks.art^$dnsrewrite=NOERROR;A;34.102.218.71 ||qassdszxxz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||qypuhuvo.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||solveme.me^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1145,8 +1490,15 @@ ||www.cvkseye.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinvvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cxmtradong.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cykcbc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cykcog.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cykcpc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cykcsr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cokx6836.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cyn3217.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cyn3919.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cyn6859.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cyn3919.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gt888.cableoc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwv.cableoc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yingfu.cablemn.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1159,6 +1511,7 @@ ||www.cptstocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ctglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ctstocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||careerbuilder.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.tiruoutiequ.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carousellshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carousellyshop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1167,22 +1520,31 @@ ||vip.cashgocoin.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.adfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.castillo-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||orangexu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cdapnbvx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cdipnbip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dciscoan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadoivim.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||centradeb.centrade.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||centradec.centrade.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.stirade.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cen.strades.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cien.trades.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||centralshoping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.central886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cgwlcoin.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.finextexa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.finextexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metaetherpro.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ybiakrsxa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ybiakrszid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||chainceinfoex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chaince-coin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chaince-ex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chaince86.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chaincecoinex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chainceex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.chainceinfo66.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chainceinfoex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chainex88.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||berserker.financesnew.site^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1193,6 +1555,8 @@ ||tokage.charlesfinance.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||chifis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chimecorpq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mhneome.suw8au.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||mhneome.ymaqukk.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.citcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.citcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.kwslpj.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1207,6 +1571,7 @@ ||www.clear-skys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.clear-skys.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.clearsky.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||clickmoney.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.climpup10.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.climpup11.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.climpup12.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1225,6 +1590,7 @@ ||www.cloud-bitcoin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinettc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coineuj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinwjda.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinwjda.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinsri.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinsri.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1248,10 +1614,19 @@ ||www.ambvt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btdke.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btsiw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-9c15.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||coin-ace0.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||cointfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aafg8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit.coin-en.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-abd.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-basepro.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-dnf.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-npc.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||condetrade-pro.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||cs.amggad.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||eth-coinbass.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||eth-coinbass.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||inex-gemin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||sal-mining.tools^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coin-amd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1262,6 +1637,7 @@ ||www.fglines.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nsdhexvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shorttermtradings.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dapp.goldstarpro.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||metawealth.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.coinbene.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.coinbene.shop^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1270,6 +1646,8 @@ ||link.qddxu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||n2top.xcmud.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||top2coin.ojesh.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||coindeer.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||coindeerex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coindexchange.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinex.college^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinex.mobi^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1278,6 +1656,8 @@ ||m.coinexeu.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.kexni.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinex.tv^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.coinexeu.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gemoini.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cofwet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinlistusdtzc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinmarketcaps-us.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1300,6 +1680,10 @@ ||mdapp.coinrulen.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mdapp.coinrulen.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||dapp.coinrun.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||cointrproaqa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cointrproaqx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cointrprocvu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cointrprouvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinunions.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinuniontw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinunion.exchange^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1314,6 +1698,7 @@ ||www.coinwstorm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinwstrive.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinyct.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinzoomhex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinabb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coin-arf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coin-mun.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1324,9 +1709,13 @@ ||coinbeside.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinbeside.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinc-c.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||coincheckebn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coincheckedd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coincheckmyb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinchecktrb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coincheckcsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coincheckedd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coincheckhy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coincheckrvn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coincomex.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ccomnow.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1345,18 +1734,27 @@ ||h5.execocoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nvevbg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gts999666.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||download.coininvest.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.coinitems.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinitems.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinjar1.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinlead-ex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinlead-fx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinlead.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinlead.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinleadex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinleadexs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinleadmain.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinlifee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinlifee.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinlifee.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||yq5rn.jsanrhs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coin-mamas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinmamacoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinmamamaasia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinmamamabtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinmamamabtcusd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinmamamatwdud.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinmamamatwn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinmamamausd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinmamausda.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1374,28 +1772,48 @@ ||www.obus.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinoffee.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinoffee.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cgtcoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||nson.coinone.today^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinpalm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinparks.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinpayex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinsafeal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinsafeal.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||safecoinal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinsbit.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinsbit.pro^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsbiac.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinsbial.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsitaae.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsitaah.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsitaar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsitac.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsiti.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinsitu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinzbc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinzbn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinzbo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinzby.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eth-coinsee.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-store.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinstoreseve.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucointw.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucointw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucointw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucointw.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinutsih.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinverse-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinverse-ex.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinvxse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinwmax-protrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinzoomiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coinzoomwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.collart.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.collart.group^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopping138.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||comex-pro.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||comexpro.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ittcomex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mycomexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ucomexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||precious.comexexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1403,8 +1821,11 @@ ||www.compoundsavy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.shopconch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopconch.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cfa.marketcfjh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.corpcapitaltrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ctosmos.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.costcogogg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.appskcostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cccssscocto.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ccdcostcosdg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ccsscostoss.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1418,16 +1839,26 @@ ||www.costcoyahh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.csscostcooss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cssostcoos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heybacostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kasbacostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.manipcostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.newrocostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ohallnlcostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.samucostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sssccgfdgjcostcoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sssgfdgjcostcoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wienercostco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||costerexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trsde.cotchmax.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||trsde.cotchmax.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||cvadeds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coupangmanager.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coupangsell.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cpchanel.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cpcommodity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cpfeedback.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cpmanger.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cpparcel.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.covermall.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xw7vv.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xw9vv.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1446,11 +1877,17 @@ ||www.crexnis.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||crossglobalmall.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||crossglobalmall.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||crossglobalmoa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||crossglobalshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||crossglobalshop.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||crossglobalshop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||crossglobalshop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||crossglobalshop.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||globalshop-ping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.iacvtrp.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||cr1688.duckdns.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||crypto.servep2p.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mhneome.crscapital.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstaceusdt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstbtccmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstfreebtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1460,19 +1897,38 @@ ||bstotplink.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crypto356.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||setabee.bstapti.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptoacz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptodej.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cryptompd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptompe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptoqwq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptoqwr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptoyzx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptozal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptozqp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gtznycq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cry.arsaneljc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cryptoisland-btc.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cryptobulls-ap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cryptobulls-ap.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.cryptoex.ai^$dnsrewrite=NOERROR;A;34.102.218.71 +||bstdtmeth.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bsterceth20.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstetherc20.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstethustd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstmaxeth.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstrec20usdt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bstsmarting.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bstusdtmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cryptobtx.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||cs.dhskkr.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||cs.kdzrcg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptagrop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.confluxivn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cryptonexyin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||intelligentun.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bi.crazrieu.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||bi.woofr3e.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.cubicwalletex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cubicwallet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cultivate66.cultivaterccd.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1486,18 +1942,38 @@ ||rays.currency.golf^$dnsrewrite=NOERROR;A;34.102.218.71 ||rays.currency.town^$dnsrewrite=NOERROR;A;34.102.218.71 ||rays.currency.university^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curvedga.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curvedgs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curvemxj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curveqwi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curveqwo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curveqwq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.curveqwt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.curveqwy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cyouclout.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cyouclout.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.btchmeg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ltc.cryvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||hrsupei.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hrsupei.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||disb.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||dhdarkdrtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dhdarkuit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dhdsrgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dhdsrgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dheatout.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daiether-defipro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daietherpromaxdefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||achieve.rtcmt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xieshou.ucmot.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fotumi.danarxos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fotumi.danaxras.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fotumi.daoraiaus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fotumi.daoraus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.danarx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.danaxras.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.danaxraus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www0.daoraiaus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www0.daoraus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bvxgat.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gatbu.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1513,19 +1989,28 @@ ||c-i-b-c.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vip-dbex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dbg-coltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fafa.dcgomarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dc-token.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.jssscylc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.token-dc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||max.dcgorich.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||win.dcpalyb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dcenbus.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dceunus.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dcexbas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dcexjas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||dd-btxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dd-btxpromax.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddbcar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ddaxao.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddexlub.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ddaxave.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddaxril.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddexcui.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddexefk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ddexokl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ddoxjil.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ff.hk7.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||1defiwalletweb3.bio^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-crypto.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||ai-crypto01.shop^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1549,7 +2034,9 @@ ||dew333.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dew555.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dew888.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||dex-dodo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dex-ls.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dex-qs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dex-tx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dex.dew168.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dex222.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1567,6 +2054,7 @@ ||www.dfi-moneybf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dfi-moneybg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dfimoneyaab.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dfimoneyzbp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dfimoneyzcp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dfimoneyzdp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cryptobch.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1579,15 +2067,20 @@ ||dfx168.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dg168a.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dg168ce.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dg168yy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dgnew168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dgdgdg58.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||88wkyfjrk.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||diamondsrich.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.diamondsrich.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||diem16.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||digchain.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.divine66.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sport969.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dmmbitcoin.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dmmbitcoin.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.domp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dotcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.dt111.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www1.dt599.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dtccded.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1607,9 +2100,19 @@ ||www.dwsvwed.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qunyiis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qunyonl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dxddus.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dxduip.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dxduis.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||dyplusttr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dyplusyrj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||quidaxcev.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wenuci.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xpoeiis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yijinngtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dacforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trader.dacforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daclandcapitalfx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.daiether-plus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daietherfinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ttwi.daasoomes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daasomes.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1629,6 +2132,7 @@ ||www.day4wld.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.day4wld.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||testt.dcnsxstx.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||dexe.pw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.debankdex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.debankduo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.decodesfxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1645,11 +2149,15 @@ ||www.deeznnzb.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.deltaxian.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dappweb3.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.3betraise.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||derctnx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dercte.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||derctex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.derct.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||crypto.minerbitcoin.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.derivativear.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.derivativejvue.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.derivativeurt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a004.desirxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a007.desirxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a017.desirxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1686,16 +2194,21 @@ ||icrowncenterga.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||long.icrowncenterga.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||max88.icrowncenterga.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bdeoisl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.digitalassethot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||down.digiezy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.digitalassetv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||digitalbase-clo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||directedgeep.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dmv4trading.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.jpdhmstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||buy.worldstoremy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||global.buysevenstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mobile.jpdhmstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||to.jpdhmstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.asianstorego.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.goworldstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buysevenstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dmallshopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dokodemostore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.goworldstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1704,6 +2217,8 @@ ||www.doncoinvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||members.drcfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dremata.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||s12.sssuav.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||stw15.sssuav.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.drtsche.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.drtsche.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.duxgoldingltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1719,6 +2234,7 @@ ||www.east-shop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||e.ebcfinancetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ebcfinanaitw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ebcvumk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebcerbr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebcrmty.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebcrvb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1730,7 +2246,9 @@ ||www.jamercari.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.temujp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fg.edxmarkets.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||grid.circce.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hhh.edxmarkets.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.circce.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.edxmarkertrade.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.edxmarkets.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.edxtrade.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1739,17 +2257,31 @@ ||eexmarket.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||eexmarket.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||super.bk-egmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kay.drolitaklos.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||kay.egscenter.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||kay.egsloop8.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kay.egsstart.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kay.egsstarten.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kay.egsstartus.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||kay.kiekeiha.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||trade.egslpmore.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.egsstart.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.eha.ac^$dnsrewrite=NOERROR;A;34.102.218.71 +||eoscxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eosibme.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eosobc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.eoscxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.eosibme.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.eosrn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||erc1o.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hre.usmarketex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||miraviavip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ali888999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eshop-tw.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eshop-tw.monster^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eshop-tw.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eshop-tw.today^$dnsrewrite=NOERROR;A;34.102.218.71 +||hbsnyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.a6balance.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daddy789.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.et6one.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1769,14 +2301,18 @@ ||defi-mining.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||dh6.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||ethcoinmar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ascendexgolf.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.erc-deficoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ascendex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ascendexdecred.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ascendexmagic.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ascendextoken.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||dearn.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||dearnclimeddefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dearndefi.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||dearndefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dearnnode.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||defiascendex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||defiflexpool-vip-a.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||defiflexpool-vip-c.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||defiflexpool-vip-s.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1802,6 +2338,8 @@ ||etwcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etwcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etxixt.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||apk1.eurexttw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ev-scgws.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||excgend.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||exclents.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.excvhuwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1809,31 +2347,44 @@ ||exdtechinc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exdclub.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.exmoer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mstl.futurescfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||exneschanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||my.expforex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||expectamkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.honsqunlian.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.exmartpros.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.eyingli.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||taiwan.eztoday.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||utc.eztoday.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.ezdanex.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||eabuiopiiy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.easycos.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||easytok3.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.easytok5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.easytok7.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fjx6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.eazyshop.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||home.eazyshop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eazyshop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ebangl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.e-buys.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.e-buys.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.go-ebuy.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.ecforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ecforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ecforexfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||paxos.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||btbt.egaxm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.egamxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||egoamadgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eiightcapfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nscjh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ieightcapfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eightvcapfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||intelligenteh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||intelligenthe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||intelligentiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||intelligentiy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||intelligentltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eliabanking.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ellandroadcapital.me^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1860,11 +2411,14 @@ ||etherbk.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||etherbk.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||c.szerocn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eth.coinpledge.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||eouclub.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ethprorun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ethrunplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ethtsi-max.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ethtsiplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ethtsipro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ethicj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ethicq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ethicu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ethicw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1872,15 +2426,20 @@ ||make8.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aamake99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etimtoken1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.etimtoken123.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.etimtoken188.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.etimtoken211.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etimtoken4.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etimtoken5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etimtoken79.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.etimtoken88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app-eth.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.etfuneoro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.etliforo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||etlifeoro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||etoraieryos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||etoro-teh.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||fff8888.etorackctory.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||honey789.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||myth.etoraeotes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myth.etoraieryos.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1906,6 +2465,7 @@ ||fg.euronext-tranport.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||sa7.euronext-tranport.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||sa7.euronext-transcoins.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shopateurope.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.erxtowut.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eurtwoxt.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eurtwoxt.store^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1949,9 +2509,12 @@ ||dl.elfwo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.elfpt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mt.f868.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.f8cons.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fg5000.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fg90000.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sun-shinefarm.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fb197.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fckzoie.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||galei.financialcontrol.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bteensbu.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fcchainv.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1963,6 +2526,7 @@ ||bit876.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||plattw.birdies.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.fdextf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.htkjlsliu02.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.htkjlsliu06.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.kjcoinliu06.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.kjcoinwu06.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1973,6 +2537,7 @@ ||www.fdsbwhw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fdseji.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fdsmet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||feex-exchange.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||feex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||feex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.feex-exchange.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -1988,26 +2553,43 @@ ||www.ffexcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ffexff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ffexe.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||ff.volatilcykc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ffc3.volatils.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ffd3.volatils.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhlcp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fhldb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhlio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fhlpx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||balance.firodede.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||balance.firodedi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||belc.bellagioweb.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||fmfeig.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fmfwcdv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fmfwci.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fmfwhv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fmfwvn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fmfwyn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fmfwdsc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fmfweif.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fmfwubk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fmfwvn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hongnan13.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||hongnan16.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.fpmarkets1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||b.fpmarkotast.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fp66-fx.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.fpmsh98tt.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||wz.iui30.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fpmarketes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fpmarketest.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||f4.drwlwlgjof.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f4.huohuhaha.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f5.cu8lawn.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f4.fpscoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f5.fpsfree.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||f5.fpstrade.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f7.drwlwlgjof.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||f7.fpscoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradeopi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradeyuk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.flourisifx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2024,6 +2606,7 @@ ||aln888.ftxenzs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tree16888.txnnezsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwbbit.txnnezsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ftw-ltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||max.ftxus100.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sebftx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dftxcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2055,10 +2638,14 @@ ||www.fuext.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuextr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fullersds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fumeixiangchang.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lowvisionva.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xydsp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxdealabaab.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxdealb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxdealpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fxfxoofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fxioxfxox.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxoproxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxopxofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxxpproxy.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2071,11 +2658,17 @@ ||fhglobalzhsbank.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||fhglobalzhses.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fhglobalzhsss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhglobalzhsth.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhglobalzhsths.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhglobalzhsthsse.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhglobalzhth.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||free.webygun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fx.archboon.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxcmtw18.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxcmtw889.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ga.gnafxcm-yum.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.fxcm-web.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||tfenwz.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||thigg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxcmus52.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.global-fh.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2097,8 +2690,14 @@ ||www.fxttd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jiofxt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sftxxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fxtf.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||eve.ccfxopen.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fa888.ttowwohuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fairdeskenv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fairdesktyi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fairdeskenv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mybit2233.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cex.888vip123.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fanbtctw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fanbtctw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fanbtctw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2108,8 +2707,13 @@ ||crm.fob-fx.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fancy-fx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fantomcc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fantomdvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fantomreb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fantomss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fantomyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fantomcv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fantomrn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fantomtbr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||eve.faregndt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||whh.faregndt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trader.farchf.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2140,10 +2744,16 @@ ||fchange166.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||fchange169.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||fchange187.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.unisshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.unisshopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||felixobv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fairdeskdct.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||win5688.fyunz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fex-all.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fex-global.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sccdinfo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcnmgrd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mybbs8899.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ceo8.fideltets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ceo8.fidelyets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ceo8.fidelyts.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2156,6 +2766,7 @@ ||www.ficnsxc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ifinancego.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.finechk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||finexbox.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||v345.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ahkebkm.fnvezr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||growrich.finvizw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2166,11 +2777,18 @@ ||www.first-coins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.firstcoinis.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.nasjdbwaq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.nenhlp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.piziim.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vncklie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gopeid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.heiheigan.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ioelnw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ivjuiujiuqw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iwuaigh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.piziim.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sjgiodf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.skggkgk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tyrgfhvbsc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uhcuisvs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vtnkqnbzjbqjq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zxhvdjqwiueqk.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2180,13 +2798,21 @@ ||www.fitbelaeproer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fitbelaerprofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||flamgvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||flash2deal.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.flash2deal.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.flash2deal.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||flashcoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ceo8.fideltkkers.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fhpfkipa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhpfkipy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||likantnet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.filpkart.life^$dnsrewrite=NOERROR;A;34.102.218.71 +||flip-ster.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||flipster.finance^$dnsrewrite=NOERROR;A;34.102.218.71 +||flipster.plus^$dnsrewrite=NOERROR;A;34.102.218.71 ||flipster.pro^$dnsrewrite=NOERROR;A;34.102.218.71 +||flipsters.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||flipsters.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||flowbusiness.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||flowextrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||flowinves.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2206,6 +2832,7 @@ ||www.ziierrtes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||flyinrich.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.flyinrich.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cnfapm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kucmarkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fog-eefx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.forex88.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2215,11 +2842,16 @@ ||forex.mitotal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||forex.formiriam.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.top5058.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||operationalb.forthjism.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ulza.metalusltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ulza.metalustit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.foxglobal.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.foxglobe.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||client.foxglobe.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.foxglobe.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.foxglobe.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||foxbitynr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.franklintapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||frubit.biz^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.frubit.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.frubit.info^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2228,7 +2860,12 @@ ||fsshop1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||s.fsshop2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fsshop1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bestftexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.realftexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.siteftexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.webftexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.funska.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||funny-buy.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.selec5in.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||fc168.futurpayas.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mst1.futurescfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2240,19 +2877,26 @@ ||sfa.fuzitm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rich.fxmarket66.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxpromx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hirkc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.peqfy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||eyhfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxprder.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxprkyc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxtrotrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cfhpf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.csvfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ehefxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.eyhfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxprotw.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxtrotrade.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxtrotradeze.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lqrer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.puuee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vkfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xyfym.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rbinhood.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||fxfusion.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fxfusion.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||fzangon.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||fzangon.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fzangon.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2272,6 +2916,7 @@ ||www.gbeforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbi.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.gbtc.win^$dnsrewrite=NOERROR;A;34.102.218.71 +||upteh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gcese.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.upteh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.gdacgk.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2279,6 +2924,9 @@ ||www.gdacex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gdex-pro.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gdexio.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigiteies.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigiteugw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigmnier.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.geak500s.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.geaks500.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jscoin.geaks500.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2315,6 +2963,7 @@ ||gkbgroups.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gkbgrp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.gkfxprimes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fotumi.glatfese.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.glatfeaos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.glatfese.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lotiden.glatfe.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2325,11 +2974,17 @@ ||www.1peeeej.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aqw886.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.drbbrb9.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.feimaoid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gggbbbn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.likeshoping.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.luck7.plus^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rbeb55.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tiantiangouid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zldshop.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||gmiusd.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||huizhengbao.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.ga-miexm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.g-miex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huizhengbao.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmiusfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||besp.gmofirst.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2353,9 +3008,11 @@ ||gmxbank.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxbina.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxbtc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||gmxcbdc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxecog.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxsxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxsxv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gmxvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxyoun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmxytun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmxtron.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2366,8 +3023,12 @@ ||a168788.goresx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a168788.gorsetasx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coco01.goreasx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gow11.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gowcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||5.gptgroup88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gpt-ra.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gptcity.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gpttech.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||as88vip.tw-gra.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||boy99.gra-fin.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||boy99vip.gra-fi.info^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2376,13 +3037,20 @@ ||mkp.graext.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gs1658.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gscbx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gscbxirs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gscbxrs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gsguscoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||frypff.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||market4global.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||gtc.mmsssu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gtc.peynen.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gtiglobalmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gtimarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gwiqz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||traoe.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||gvdcq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tw-gvdmarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bopott.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.gaitameonline.cn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.gaitameonline.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||04800.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2392,22 +3060,29 @@ ||bored.galmeory.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ioex4.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||byapueqb.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||dfnpebau.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||gaifouy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gaifunn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gaifunq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gate.rest^$dnsrewrite=NOERROR;A;34.102.218.71 +||gpnrhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hyxkftue.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||vip.gaifunq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vip.qwscff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vip.yujpon.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.che-shi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gate-trade.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gate168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gate1931.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gate2013.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gate3831.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gate7831.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gate863241.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gatee24.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gateio588apro.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gateiomax-defi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gateks.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gatepbds.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gatepro.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gatesz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.heduckpsn666.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2428,19 +3103,29 @@ ||www.iooeexx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xcdabsvx.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||yujpon.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gatedex.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||nldwwbqn.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||raqqekwl.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||geekshop.work^$dnsrewrite=NOERROR;A;34.102.218.71 ||geekshop.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.geekshop.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||apps-gemini.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||geminibrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||geminiedn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||geminieed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||geminiem.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||geminiirj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||geminived.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gemindcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.geminiamax.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.geminibrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.geminiedn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.geminierv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.geminifni.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gemnsff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.librge.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ncgpna.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||geminiup-vrfs.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc.gemini-pro.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jfkskxciljvd.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||generalatlantictw.ga-nar.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2467,10 +3152,17 @@ ||usa.genesryktaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.genesbo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gentingclub.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||get4seed.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.get4seed.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.get4seed.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.get4seed.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.get4seed.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||gexcoin.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.gexcoin.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.gexcoin.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.gexcoin.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||giant-shopingmac.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||giant-shopingmy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ginkgofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ginkgofxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gkglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2480,6 +3172,7 @@ ||gmimarikets.ltd^$dnsrewrite=NOERROR;A;34.102.218.71 ||hantec.goldstar.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aresebuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gblspp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taikoomall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twgouquanqiugou.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twhkquanqiugou.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2499,11 +3192,14 @@ ||topyangguang.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.forexo49.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||avavshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||globalshopmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tao-1688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.qitian.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ddyg.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tgshops.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||globalshop-cms.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||happy-ecommercetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gmall-tw.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmall-tw.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmall-tw.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmall-tw.today^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2512,7 +3208,13 @@ ||www.gmarket-go.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmarket-go.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gmarket.life^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gmarket8.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||zh.aliexp-app.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zh.aliexp-app.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||zh.aliexp-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gnexfe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gnexfe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cmy.shangcheh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gaonrkts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmarket-go.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||goleaderfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2524,8 +3226,12 @@ ||gomarkleadfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gomkinvest.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gomkinvest.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||gomkinvest.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||gomkinvest.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||togomkfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trader.gomarketshk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gomarkcotd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gomarketss.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gomarklink.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||com.shopcc.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.goamazstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2546,8 +3252,17 @@ ||london.goldnsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||london.goldnsales.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||france.goldnsales.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||goldtubebank.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.goldtubebank.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gomaxltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gomaxltd.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jpgoonetc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jpgoonet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.365feicui.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.365feicui.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||new-h5.365feicui.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||gouldm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gouldm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||art-charger.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||art-charger.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||dextrade.org^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2557,13 +3272,19 @@ ||greatshop88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.greatshop.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.greatela.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||greenmallit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crm.greenstans.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||crm.greenstans.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.newteawoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fxgroupro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.groupfxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.groupproltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.group-on.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.grovpon.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.grovpon.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.grovpon.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.grovpon.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gsshoponlines.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wsd.ghwatop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gushops-asia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hbfsbit.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2571,18 +3292,24 @@ ||www.hpcy8592.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hdex.social^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hdex.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||hepojx.s3.ap-southeast-1.amazonaws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arv.heronsxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arv.herorexe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bored.heronros.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bored.heronroys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bored.heronsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.herokery.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hf-marketstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hf-marketws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hfmp.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||hfmp.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||hfmpy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hfmq.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hfmak.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hfmok.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hfmoq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hfmpm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hfmvsl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pammtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.stgdck.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||his9603.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2591,16 +3318,28 @@ ||www.brxhkd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cfhkd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fcrhkd.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hkdyrsq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hkdsttd.network^$dnsrewrite=NOERROR;A;34.102.218.71 ||gf.hkex01.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||zghk5888ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zghk5999ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hksccrnv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hksccrnv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hksccvib.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hksccwnv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fff.ustaiwl.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hkvaex.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||hmaex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hmexds.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hntcoin.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||newhocclg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||newhoccpodkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||newshonicecol.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.hpsip.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.hpsipstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hpsip.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.djqwiewhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mdfheth.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qhdjffhgh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qnjvkfgfh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||smccw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2611,8 +3350,11 @@ ||ht-forex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht-forexs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htfx-forex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htfxstopfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htfxtops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ht-forex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.htfx-forexs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.htfxstop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htfxtop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||testflight.tfdb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hut8cz.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2623,34 +3365,61 @@ ||hai-gou.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||haitaoglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.haitaoglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.haitaohdko.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.haitaovet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.handa.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.handavip.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||sfa.hsuvsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wbb.hsuvsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.haoruidjv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc.happygo.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.harordg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.harordq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.harordr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cpds2.huataii.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hbxxfe.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hbxxfe.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hbxxoe.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hbxxoe.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hcxxfe.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hcxxfe.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hcxxle.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||hegic-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hegic-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hegic.us^$dnsrewrite=NOERROR;A;34.102.218.71 +||helioj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heliojexchangge.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heliojexchanggein.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heliojexchanggeit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.heliojexchanggepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ev2.hengchuai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hengtuo-st6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.heromarketsltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hertfordfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hexxze.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgxxhe.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgxxhe.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgxxne.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgxxoe.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgxxre.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||highcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hightop-dex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hippo-tesc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hippotesco.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hipnicedack.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hispeedtrading0728.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||hispeedtrading0728.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||hispeedtrading0728.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||hispeedtrading0728.win^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hispeedtrading0728.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hispeedtrading0728.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hitbtch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hitbtcn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hitbcx.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||hitechvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hi-tech-vm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hivemalle.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hivemallq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hmallcrossl.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.homemalltw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.homemals.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2674,19 +3443,34 @@ ||mq7fh.hnwstsc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||q11j8.skguoye.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hopoo.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coinxig.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hotcoinkan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hotcoinae.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hotcoinsm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hotcoinsq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hotcoinsv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hotcoinsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kna0000.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hingx.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.houbi.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||hppy-shop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hpy-shop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ch992.huatasor.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cpds2.huataioa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cpds2.huatasor.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.huatruer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asn.hubcultures.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hubcultures.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huifengm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigulimitedir.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigulimitedm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigulimitedx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigulimitedy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.huigulimitedr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.huigulimitedy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cabbyd.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||eve.huiycs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||qea.goldvned.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||whh.goldvnjf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||whh.huitsbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||whh.huiycs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2703,8 +3487,15 @@ ||whh.huizitn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huiziong.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hingx.bio^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.hingx.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hingx.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.hingx.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.hingx.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||nnds.hingxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.houbi.space^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.huobis.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.huobis.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.huobis.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||usdp.pw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huobjy.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huoxx.us^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2733,6 +3524,10 @@ ||www.idfpowertb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.idfpowerbb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lydojg.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||nkhbgy.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||tnmghu.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||veshappyenterprise.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pinkiestoreoneline.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||i.inv-finder.biz^$dnsrewrite=NOERROR;A;34.102.218.71 ||n3.inv-finder.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||new.inv-finder.pro^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2741,9 +3536,11 @@ ||vv.inv-finder.biz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.igglobalhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.igglobalhub.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.igziu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||amtop-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.amtop.bio^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.amtop.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.igcotd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ig-www.jingxcn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www-ig.cjzqls.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.igikl.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2760,7 +3557,21 @@ ||www.imccq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.imcyp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.my-imc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sportssupport.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||dolo.immxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.imxv9968.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.immxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.imxmxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.imxxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||imoneyclub.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||bluesky.instermvner.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiger8888.instaxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiger8888.instaxoers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiger8888.insteryers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instaxoers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instaxtyes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instermner.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.insteryes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||capitalgain.intuitsdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||net.ipdwio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ipeenbb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2768,6 +3579,7 @@ ||ipeeneb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ipeenec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ipeengb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ipeenlk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ipeenqe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ipeenwb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.payironn.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2808,12 +3620,22 @@ ||portal.inceptial.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||protal.incetial.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.inceptial.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||firmness.indexcfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.indexcfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exonmy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||instabankbit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||instabankbitmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||instabankcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||instabankcoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||instabankmvp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||instabankpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||instabankvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||instabankxbit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mycoinpsf77on.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||instant-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instancd-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instant-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.instant-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.instmarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.inintels.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ic-programex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2835,12 +3657,22 @@ ||www.interventionai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.invose.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs01.ias-trade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.investorx8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gwwwm.invinciblehk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||invinciblehk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.invinciblehk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||iotexpos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jasdeceate.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jasdecxi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jasdecybgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jasdecy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.richsmadehts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.richstradesss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ricwdkwblsds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ricwqgjrivds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ricwutisblsds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ricwutqirksas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jdtns.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||vjfsg.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.0gf22.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vjfsg.shop^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2855,6 +3687,7 @@ ||skilling.jfdboker.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.jinkraltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jkb8720.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.globalm688.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.globalm866.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.globalm8868.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.quanm8668.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2887,6 +3720,11 @@ ||www.jetswapvip.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jetswfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jetswapmt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jnmonv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jnmorm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jnmocbx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jnmosterexb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jnmosterexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arexr99.jobscoiin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arexr99.jobscoiines.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arexr99.jobscoiinesz.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2897,6 +3735,7 @@ ||arexr99.jobsvres.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||arexr99.jobsvroes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.johnsontrademax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.johsonday.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.johsonmarketpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.johsonprotrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.johsonstrivepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2906,6 +3745,7 @@ ||jsunholdings.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsunsecurities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsunstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jihsuns.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsholdings.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsunequities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsuninvest.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2934,26 +3774,34 @@ ||karnscoin.karnscoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavabeef.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavadappflymaxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kavadapprunplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kavadapprunpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavarunmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavasun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavatsimaxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kavatsipro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||root1.kcroaeees.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcraeres.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcrasreas.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcresoes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcroaeees.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcroraees.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kcmprime.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kcmprime.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kcoinpeg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcoinclare.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcoindog.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcoinfoot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kcoinhaven.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.kekgd.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.kekgd.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.kekgy.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkp.kezarx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkp.kezeeros.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mvs.kereros.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kgtac.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kgtds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kgtfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kgtpx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kg1688.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kingex.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2961,6 +3809,8 @@ ||crypto.lion.training^$dnsrewrite=NOERROR;A;34.102.218.71 ||galaxy.kion.rocks^$dnsrewrite=NOERROR;A;34.102.218.71 ||galaxy.kion.work^$dnsrewrite=NOERROR;A;34.102.218.71 +||kitcoasiametalo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cartoonasmtistorer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crypto.lion.institute^$dnsrewrite=NOERROR;A;34.102.218.71 ||crypto.nion.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||knnexse.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2975,8 +3825,13 @@ ||www.knnexem.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.knnexzz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gx58t.knxotraderoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kozpxp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kocerl.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.koicpl.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kokouas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.koplce.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kozpxp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kokoubp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.kekgy.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||deposit.ktpoptuigonx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ktpexclsive.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2989,6 +3844,7 @@ ||kaidexbina.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kaidexcbd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kaidexcbdc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||kaidexcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kaidexifc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||kangbo-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kangboex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -2999,6 +3855,8 @@ ||www.fast8app.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kashop.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||kashopping.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kashop.ltd^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kashope.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kashops.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||curryency.kasnnii.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.kasnsnss.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3008,6 +3866,10 @@ ||www.kasnsnss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kcoinlis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcoinnet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kcoinscream.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||krd.kepindbe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mer.kepinfd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wyt.reassureyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||v6shop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kianashop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.king-ex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3018,12 +3880,14 @@ ||www.kingst.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.kingchoice2.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.kingchoice2023.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||eve.kinrosscoldts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.kinvestops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||acs516.kinvestcap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||celufa.kinvestcap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||celufa.kinvestpes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trade8.kinvestcap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kinvestcap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kinvestops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbb03.komitdi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crm.konanos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tokopedia-international.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3034,6 +3898,7 @@ ||www.koexchange.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||cajdydinje.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kpaterassoc-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kpaterassoc.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.red-mall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.red-mall.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.karewoldfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3041,6 +3906,11 @@ ||gbp.kkarn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kcowebs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kraken.qxanys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kakenmxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kakenmxr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kakenney.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kakenyqf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kakenyyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kcowebs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kra-exken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kraken-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3054,6 +3924,8 @@ ||www.kraproz.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kravew.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moxccaer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||krisshop.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bzd12a.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cbninter-tw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cbn-tw.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cbn-tw.club^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3067,14 +3939,18 @@ ||www.coinmaketcapc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kryptoriakuc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cblcytb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kseibeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kseibxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kseicso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kseidcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kseidcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kseivyx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||615x.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ddexoc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kucoin.kucoinexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kucoinpros.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||kucointrade.ujlkucoiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kucointws.wfkucoiner.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.btctoken.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.maxh.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ku-bitcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3087,6 +3963,7 @@ ||www.kucoineex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucointw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucoineee.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kucointwan.jdkucoiner.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kucoinpros.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||lvshop.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lvshop.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3095,14 +3972,17 @@ ||www.kybkvcb.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kybnehdp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kybsuzx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||krpbitc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||landbrt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||landvtb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||landxjd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.landbrt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.landxjd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||c10284.larusdv-v5.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.larusdv-v7.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||sklbank.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exlbnk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lbacsek.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lbankis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lbauxub.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lbioerc.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3111,11 +3991,19 @@ ||www.sklbank.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xclbank.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wintersatlantic.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lbacics.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lumarvee.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||net.lcef2023.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisition.lcnycoinnd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||merchant.lcnycoind.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||merchant.lcnycoinn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||merchant.lcnycoinnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lcnycoinnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xlm.lcxvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xrp.lcxvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lelong-shopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ts.an77.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.leoysa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.seb129.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||ts.mvk5658.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||ka77.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3139,6 +4027,9 @@ ||www.lmphoness.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ltmanage.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ltmanages.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ase888.linexlife.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||piq99.molica.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||link-dex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||linqnew.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.linqcc.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.linqnew.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3149,6 +4040,7 @@ ||www.llshopping-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.llsspshop-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lltnwshop-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lmtw886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exchangelmax.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||lu-bpb.u2ubs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.blmex.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3170,11 +4062,14 @@ ||www.lmstaoes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lmstem.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lmstotys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tokenlon.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||odtie.lotkgt.host^$dnsrewrite=NOERROR;A;34.102.218.71 ||odtie.lotkgt.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||odtie.lotkgt.work^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lpg6668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lpggame.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||s.b2b189.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.londse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.prokeylse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zdsyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lllseexvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3182,14 +4077,20 @@ ||www.lsex-ex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lsex-main.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lsex-st.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lsexcoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lsexex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lsexs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lsekeysbatch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lmstaeoiaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ltg-goldrockb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||max6969.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lyrxtzcvi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lyrxtzcvi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.lasadert.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.lasajvi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lasadert.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss.lasajave.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lastore.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.grlatoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ltlatoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nllatoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3215,6 +4116,7 @@ ||www.lazasatwff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twamazgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zimg.imgstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lbanotx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mpbnn.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||lenivd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lexctru.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3247,7 +4149,13 @@ ||www.lightwavtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lightwavtw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lw-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bitgoint.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mayepet.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.likescoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||likescoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wjreg.ueeisa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.likescoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.likescoinpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.limit-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||linargogroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lippotw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3255,10 +4163,15 @@ ||www.lipuex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.liquisojt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.liquidrtwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||blockchain.lirunexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||blockchain.lirunpste.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mh6688.lirunetyro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lirunetyro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.lisk-lsk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lissshop.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lissshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopliss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisition.livepere.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lmmortality.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||loboex-protrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||loboexe.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3268,14 +4181,20 @@ ||usa.localtrdds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usa.localtrrds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usa.localtruds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lonyady.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lonshiex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||iclouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iclouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jnulouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.louiszbu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rhtlouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taclouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vnulouis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lovetobuyshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||lovead.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.klgame.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||lundbergs.cs-bit.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.ebay88.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.m-shoptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1.whps9898.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.macubyues.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3301,6 +4220,14 @@ ||www.mekxem.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mekxis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maxex24.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okxmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okxmaxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okxxmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||maywctkc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.maywct.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.maywctkc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||maywcteut.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mbcoalition.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mbnbtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.mbtcet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.mbtc.finance^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3314,16 +4241,25 @@ ||mcquacps.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mcquagroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mcquamarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mcsdea.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mcsder.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mcsdic.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mcsdiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mcsder.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mcsdic.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tsvcrod.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mdbfbvs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mdbfis.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mdbfnp.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mdbfns.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.haccoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mkgreh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mksdays.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mksdesk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mkshufo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xhtd9517.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xhtd9658.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhlrg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||777vip.mexa-inv.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||lv16888.vip-mexa.website^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss555-1.mexa-vip.one^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3337,6 +4273,8 @@ ||www.vip-mexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mfcclub.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.milliniumfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mfpffd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mfptrht.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||apa.mft-vc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||apd.mftbinary.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ntd.mft-infon.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3349,12 +4287,15 @@ ||www.mfei235.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mfei77.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mfei79.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mgs1088.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||mgs1288.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgs1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgs1788.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgs1888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgs1988.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||mhex88.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||mining2022.pro^$dnsrewrite=NOERROR;A;34.102.218.71 +||fg.mkaddets.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fg.mkaddgov.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fg.mkaddts.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fg.mkads.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3366,14 +4307,20 @@ ||www.merbcu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metavuw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.meuior.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisition.mkrcoindlg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||acquisition.mkrcoinlodsn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||acquisition.mkrcoinnad.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||acquisition.mkrcoinnag.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||merchant.mkrcoindlg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||merchant.mkrcoinlodsn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||merchant.mkrcoinnad.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.merchant.mkrcoinnag.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mkrcoindlg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mkrcoinnag.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkrex.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||mkrex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkrex.ws^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mlcsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mokfxm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||buyergomomo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dkcmomo.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3381,6 +4328,7 @@ ||formomoshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||forshopmomo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gobuyermomo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gotheshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||momobuyshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||momobuystores.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||momofunny.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3409,11 +4357,21 @@ ||mreew.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mrentsz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mrewvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kopvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hjksfdhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jioessx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.opplhjunb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xoiecn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||spp1688.metxwin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||spp1699.metxwin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.mtooexxt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtooexk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtooext.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtooexw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mtwxikai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mt798.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mt798.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dmvyon.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jvgrbqn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.mugdctptoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mugdctptoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3423,11 +4381,13 @@ ||mwhmkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mwhsec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mx124.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.svabdb.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wreherg.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||mxc.encrypt-trc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mxc.future-trc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mxc-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.special-zone.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||magalu.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maicoincake.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maicoindb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maicoinfb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3439,7 +4399,10 @@ ||www.maicoinstrivepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maicoinsun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maicointhis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.maiconf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||makerometa.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||mangomall886.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mangomallonlines.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||celufa.seagensyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kuan.seagensyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.seagenx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3448,8 +4411,12 @@ ||www.seagensyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zhong.seagensyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.manycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ju4j7.sntimbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||manycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.bereajoys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.martcgf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.martckjb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.martcvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.martexiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.martnec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.martovj.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3470,18 +4437,28 @@ ||user.medisou.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.medisou.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||follow.medisou.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 +||down.meenworker.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.meetsoons.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lin777.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadolibre-mallshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mercadolibreden.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mercadolibredencom-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadolibref10.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadolibref8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadolibremall-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mercadolibremallshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mercadolibretell.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw-mercadolibreacb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw-mercadolibreshoplat.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mercadolibreplm-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mercadolibresdf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw-mercadolibretell.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mercadolibrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.meryalatus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||celufa.merrylans.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||celufa.meryalants.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.meryalaryts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.meryortus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.merrylants.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trade8.merrylans.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trade8.meryalaryts.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3507,6 +4484,7 @@ ||1680540220000.mtpro5.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||dwti.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||mt5.biguncle.uk^$dnsrewrite=NOERROR;A;34.102.218.71 +||user.gomarketss.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||winpr0.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mt5pr0.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.natcfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3514,12 +4492,14 @@ ||www.winpr0.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.winpro.lol^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wintw.wiki^$dnsrewrite=NOERROR;A;34.102.218.71 +||9hfytqiv.ant0y16zck.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metatwgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metatwgo.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metatwgo.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||xgame.v68.oexib5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||france.metalmakt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||erc-mining.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.metaownedmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||metas-trust.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||metastrust.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||metatokenswap.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3531,6 +4511,7 @@ ||www.metaverse-financepromax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metaverseprotrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.metaverseprox.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.metoafa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mmeexxcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mexmexcoin168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||up668.mexcmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3550,6 +4531,7 @@ ||www.mexcvip-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mexglobal.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mexglobal.wiki^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.otc-mexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.otcmexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.otcvip-mexcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vipmexc001.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3559,17 +4541,27 @@ ||inpusdt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||miracledxsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||miracleefs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||miraclernh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||miraclesiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.miraclebfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miracledcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miracledxsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miracleefs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miraclenrk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.miraclernh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.miraclesiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.miracleskf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.miracletro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||8f5a7f47.miravia-1.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||miravia.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||miravia.link^$dnsrewrite=NOERROR;A;34.102.218.71 ||miravia.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.miravia-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gwwwm.mevius.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tradetw.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mitrade.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||zbcdhgs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||tbwwpw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mixuemart.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mizuhoe.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mtt-ce.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3578,9 +4570,11 @@ ||www.mtt-ae.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mtt-ce.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||beko688.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mdnyy668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||modena366.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mtas68.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rkxr89.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cmas767.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||xbto168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pdctiktokshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qdzqrg.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3593,12 +4587,15 @@ ||m.monex-tws.cn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||f103f.money-lv2.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||money-lv.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||money-lv2.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moondonk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moondwvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moondnyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moondrds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.moonhud.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||moontrader.pf4ick.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||moontrader.q58h2p.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||moontrader.q5h2p8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ww.chdwtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chdwtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.datskyt.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3608,8 +4605,11 @@ ||user.motongfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mstion.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mstoken.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtkhce.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mtrtue.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mtrtue.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtyhce.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mtyhce.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||much888.muhgteszascoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||much888.muhgtszacoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ceo8.muhorscoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3621,9 +4621,16 @@ ||much888.muhgtascoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.muchxcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mu-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mu-coin.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||mu-coin.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||mu-coin.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mustershop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.muteedc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.muteexed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.muteexiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.muteexiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mutejyk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mutertn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mxcoin.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mxexchang.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yichedao.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3638,6 +4645,7 @@ ||mycoinpsf55we.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mykeycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mykeycoin.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||mobile.usdtwebshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.myrnna.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lwmy97.myrnanez.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lwmy97.myrnna.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3647,13 +4655,21 @@ ||pmb.myrnnez.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||toad.myrnanez.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myshop-mall.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dgone.fosrvnet.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||money88.foesrvnet.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||money88.foesrvnet.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||sdf888.foesrvnet.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||sdf888.foesrvnet.fun^$dnsrewrite=NOERROR;A;34.102.218.71 +||sdf888.foesrvnet.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||sdf888.foesrvnet.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||n4g.npbo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.tsxpor.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.b2b199.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cbdnasdaq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cbdnasdaq.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nasdaq-usa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nasdaqspot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nasdaqspots.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nasdaqus.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nasdaqusa.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.usa-nasdaq.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3729,6 +4745,7 @@ ||america.nstwexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||finland.nstwmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||france.nstwmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||merica.nstwexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nutexc.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nutex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nutex.club^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3738,19 +4755,29 @@ ||www.nutexs-online.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.nvxedn.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nvxeps.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||apex5210.nwaldens.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.nwalodnes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.nwalodtryes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||celufa.nwalodzxy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||operatetradetwc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||nyprofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nyprofx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carmine.nymex2023tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carmine.nymextw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.afdjz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phoenix.nymex2023tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phoenix.nymexintaiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ww.financialmang6.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cmegrouz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nymex-app.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nymexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nymexintaiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.nysefy.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.msndgj.sbs^$dnsrewrite=NOERROR;A;34.102.218.71 ||ff.appdonw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||nyse.usacrypto.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||nysepa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||unifgsiwe.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lcctg8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lcctov.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.naboxle.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3759,10 +4786,12 @@ ||gocted.naterax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwwa.naterax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||natishares.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||natistocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||natitws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btlux.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.necex.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||neptuntoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wangyi-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nettoshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.nbvxf.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ixnah.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3777,6 +4806,8 @@ ||neweggexp.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||neweggonline.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||neweggsys.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||newgeneration4now.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||newgeneration4now.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||up666888.nexus668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||up6681.nexus668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||up6811.nexus668.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3787,30 +4818,46 @@ ||www.nockexs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nocks-ex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nocks.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nockscoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nockscoinexs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nocksex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nockst.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||nocksex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||guycbhxz.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nodieex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nodieexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nodieexchange.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vipnosw.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||trade8.nwalouxy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nyseuronextspro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twvstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dl.nzs127jn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tttwvstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ttwvstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twvstockk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||onademaxs.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||oaxed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||oaxeg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oaxed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oaxeg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bjlcn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oecvnci.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||ofx.cbbw6t.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||caremey.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||oga-svip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vdir.uejfos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okbxjj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okxvex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okbdvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okbeatr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okbokking.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okbstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okbxcvw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okbxjj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okbxvdi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okcdex.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||okcoindex.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||okcoindexchange.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||okcdex.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okepro.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||okex004.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3818,7 +4865,9 @@ ||aaa.okex004.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||baby526.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxcmy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okkxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.super20300.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.okok-buy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okucoin.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||bit.okxpro.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||elite68.okx58.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3835,6 +4884,7 @@ ||m.pqshiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.thkmhy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.thkptyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.vuqfbuyt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.willcion.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wpouvk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okexgood.okxbit8.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3843,6 +4893,7 @@ ||okx.okx-invest.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okx.okx-online.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okx.taiwan-okx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||okxfui.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okxvds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okxvew.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||okxx.okx-taiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3853,7 +4904,9 @@ ||www.okxnio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okxrelex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.okxvew.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ptyhkogn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twokx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vuqfbuyt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xoxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||onboe.gmx333.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||onboebtc.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3862,14 +4915,26 @@ ||onboeifc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||onboeltc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||onboeusdt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.opnxcoin.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||opnxweb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.opnxcoin.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.opnxweb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.opsvrn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.opaycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.orcasvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigkkers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigue.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigueicv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osigueicves.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.osiguers.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||financial.otcintaiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||otcintaiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wealth.otcintaiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fruugoshopser.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.otto-supermall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ebuyshop.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.tmallbuy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.otto-buynow.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ottoshoppf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ottoshopso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ottoshopw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3881,7 +4946,10 @@ ||www.coinoak1995.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oakcoinex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oaktb1995.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wap.oamdiap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||oanda-currencymarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||oandaex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||oandemax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||odzsgtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oandtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.odzsgtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3890,11 +4958,21 @@ ||ieurnf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.obercoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.obercoin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obtshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obtshop.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obtshop.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obtshop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obtshop.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oceancoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oceanex-pro.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oceanfx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oceansex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ocex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oceanexproe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||oldteas.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||olylifetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ondersongroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kyc.credit^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oneklixc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.onemain.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||onlychain.hnnlrs.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3907,10 +4985,14 @@ ||a.opensky.tips^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.opento.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||open-trade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||opentrade.best^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.optimismcool.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.optimismrunpromax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.optimismtsiplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.optimismwin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||firmness.optioncfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.optioncfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||zigfts.optioncfd.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||capitalgain.oracven.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||2.ordesys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cng.ordaesies.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3934,14 +5016,24 @@ ||aope.besp.website^$dnsrewrite=NOERROR;A;34.102.218.71 ||aope.bsep.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||aope.bsephub.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||aope.p2b.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||aope.p2b.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||aope.p2b.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||aope.p2bcc.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||aope.p2bcc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||paitbeis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.paitbeis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.paitbewr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.paktor.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||gocted.pampxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pampapro.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||paxoinx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||paxosest.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||paxosguc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||paxosirt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||paxosuna.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dapp.payfi.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||pacifictw.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24buyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||24pcbuymore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||24pchomes.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3966,6 +5058,7 @@ ||onlywithpc24.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||orderpc24.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||orderpc24s.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pc24awg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24center.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24order.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24orders.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3973,6 +5066,8 @@ ||pc24storesp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24user.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc24vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pc24win.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pc24wks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pchomegiveback.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pchomegivemeback.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rxla.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -3992,19 +5087,24 @@ ||www.shoopingpchome4.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shoopingspchome.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shooppingpchome.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pcx-global.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cuoso.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||fx-pandora.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pd-forex.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pdfxltd.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pflcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pg-mall.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mall-pg.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pg-mall.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pg-mall.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pgmall-asia.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pgmallonlinetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.apppgem.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lehinsecurities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lehinsecurities.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||enter.spggames999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rich.gamespg888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||contractxz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.zolocoinbase.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.parklifes.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pcgroups.co^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4023,13 +5123,22 @@ ||pmsamarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pmsafx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pncgroup201.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ccjk9901.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cglo6669.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cmmm0933.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cnkn7777.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hubq8886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hzzd9998.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cxfhzdgfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fhsuifyui.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.nvbhdfs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dcnmkvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huilapn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||po-loniex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||quant.psdky.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||quant.psdky.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||ukn6wv.jumeishequ.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bepumarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pufxmarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.airpugroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.beenputeam.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4042,17 +5151,29 @@ ||www.realoopufx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.servicepull.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.topuma.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pundibgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pundibrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pundiuik.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ios.pzcoin.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||ios.pzcoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ios.pzcoin.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.pzcoin.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||ios.pzcoins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pandorafx.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||pdforex.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||pdoraafx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pdforex.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.parcosi.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.parubup.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.parubus.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.paruncx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.paruurl.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.parxtoo.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||patrlg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||paymium23.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||paymium6.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||paymium8.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||paymium9.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.paypalshopping668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.peeba2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.peeba5.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4060,32 +5181,42 @@ ||peichengcap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengllc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||peichengmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengsec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||peichengstocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.peoca.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pepperstonecrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||forex.pepperstone-twstone.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||perstonee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||perstoness.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pepperst-one.cc^$dnsrewrite=NOERROR;A;34.102.218.71 -||www.pepperstonecrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pepperstonecrmb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pepperstonecrmf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pepperstonedcrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.perstonee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.perstoness.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.phaetnsn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.phaetnszn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usa.phaetnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.phmaxdbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phemex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||phemexi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||phemexp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phemexproe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pansh-twstwo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.phemexd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.phemexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.phemexproe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.phemexpros.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.phemexr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.phemexw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.phemexy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dh.pht8989.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ww2.rsttw8989.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ptpro.app^$dnsrewrite=NOERROR;A;34.102.218.71 +||90m9d8.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||wfry18i.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oerzvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bxytxw.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4096,6 +5227,10 @@ ||wl.ifjrjgnrv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||yb.ioengrj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||pinkol888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pvip-onex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pvip-onexx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pviponex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pviponexx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bch.dtap000s2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.plasmaoracleglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aner.platforms.agency^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4115,6 +5250,8 @@ ||www.plus500pros.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pluspof.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.plustsipro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||popmaxcrypto.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.popmaxcrypto.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||podcastaw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||podcastba.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||podcastbb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4133,6 +5270,7 @@ ||h5.polyx.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.polyx.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||hesign.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||polyx-top.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||socaki.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.polyx.bet^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.polyxex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4147,13 +5285,20 @@ ||www.poutlinbep.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pozionsrossl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.topmallcross.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.precor.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.precor.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||pretty-go-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||prettygo-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||prettygoshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettyahfc-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettydsfdc-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettyhlhz-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettyltlg-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||price2trade.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.price2trade.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.price2trade.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.price2trade.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.privatece.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||proexchangetw.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||proexchangtw.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||bcdtyang.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4178,14 +5323,19 @@ ||usd.coinscenter1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usd.protrader01.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.iprorods.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prosperoustw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||protosscap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||protosscp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||protossgroup.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||protosstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||protossup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.protosscap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.psinxo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||prettytask-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||prettytwshop-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pretty-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettyaony-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.prettybdec-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.prettyefficiency-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.prettygift-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.prettymission-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4193,18 +5343,29 @@ ||www.prettyshop-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.prettytwshop-my.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pjeaktaorty.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pjeakutorey.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pjeakwary.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pjeakwey.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pjeakwpew.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pursuitlove.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.pxycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pxycoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pxycoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||ios.pzcoins.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qfii80.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qnb-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qok2856.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qnb-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qsqbbas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qsqcics.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qsqhgs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||qbt8306.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qby3967.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qgc5769.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qvt6938.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||va.kj20.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.catkou.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||login.qcgbroker.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qatlst.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fehqmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vecqmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4212,12 +5373,16 @@ ||crmqointechex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.crmqointechex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.crmqointechexa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.crmqointechexg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qointechex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qointechexcrmb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qointechexcrmf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qointechexdcrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.qoo10888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||global.qoo10tw.asia^$dnsrewrite=NOERROR;A;34.102.218.71 ||qoo10888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vip.qoo10889.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qoo10.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||quantfin.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.quant-fin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||quantitative.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4232,6 +5397,17 @@ ||www.qmcoin.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||gwwwm.qmfirst.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qmdapes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quedex-io.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quick-buyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quick-moveshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quick-supermarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||quidaxaw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||quidaxiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||quidaxwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oaxaue.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quidaxaio.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quidaxir.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.quidaxvr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gomecntw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rs-shop.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rs-shop.live^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4249,14 +5425,23 @@ ||rcln.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rcln.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rcln.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||reeapk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||reejoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||reetw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmaxih.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmaxji.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmaxky.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tmaxky.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||reva6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rk-twd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rochiscap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rochiscapitals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rochisgroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||derivativesoh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||roxextrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ase888.ruma88vip.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||monuir.ruma88vip.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||ruma88vip.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.vgdt6288.org.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hhkl6868.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hjmn563.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4265,6 +5450,10 @@ ||www.vgdt6678.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vtnb606.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vuhb686.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||rtxpromax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||maximumrtxpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||rtx-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||rtxprosolutions.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rtxwild.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rtxworld.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||worldwildrtx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4279,6 +5468,7 @@ ||977138.click^$dnsrewrite=NOERROR;A;34.102.218.71 ||letan168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||letany88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.rakutenplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rakuten01.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||rakuten06.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rakutencv.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4301,6 +5491,12 @@ ||rclt.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rcln.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rclt.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||hhs.reassurehm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mer.reassurevsn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wyt.reassurekkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||red.newredred.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||redrkcc.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||vip.rdrkred.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.redrkcc.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.redrksapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.reefbifd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4314,11 +5510,13 @@ ||www.regafun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.reqtrade.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hotel-reserve.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.srhnbf.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||r-revainro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||r022tw.ww888012.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||r02tw.zfc888040.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||rr001tw.yyt666015.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||rr001tw.yyt666026.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.revolutr.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ribitexchange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||abit.goldbitgreat.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bittopapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4328,6 +5526,7 @@ ||ex.riesll.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ex.risedd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ex.riseex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ex.risevv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.gotiwjqqwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.gtuhasjdhhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||robinhooder.co^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4337,6 +5536,7 @@ ||www.rocket-poolg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rocket-poolj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||romanticing.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rootrex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rootrex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rootrexex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rootrexexx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4354,14 +5554,26 @@ ||www.ruibidowns.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruibihtml1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruibiline.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.runwinoaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.runwinoers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.runwinsrs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.runwinsters.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pussybliy.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ryderinternationalshopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sa-platform.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||sactorder.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sacorderiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sactmore.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sactorder.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||sacordaeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sacorder.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sacorders.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sacordaeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sacorder.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.saexno.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.saexvi.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sanyum.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yunqichuang.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||55.sasa.sale^$dnsrewrite=NOERROR;A;34.102.218.71 ||satmltey.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||satmpoma.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4373,6 +5585,8 @@ ||www.sbiirjmnfkxkke.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sbilamkiedjroc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sbiofficial.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sbiokewiuqjd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sbintf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hhh.sbitrade.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||lv.sbi.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||sbi.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4416,8 +5630,11 @@ ||sgx7788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sgx7799.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sgx8899.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.weathl-btc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||sgx.exaschange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zy1928.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopemai.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopingmai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bestwork.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||hellowork.tech^$dnsrewrite=NOERROR;A;34.102.218.71 ||luckywork.shop^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4435,17 +5652,24 @@ ||www.skshoptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.skstore-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.sktorsion-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lifeshopfac.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lifeshopfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.skstore-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||besp.slamne.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n8866.slamne.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qun111.slamne.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fg.cmecoins.life^$dnsrewrite=NOERROR;A;34.102.218.71 +||smjsuamg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dymstroeonline.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||smtecommece.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||swagena.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||swagenb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||snxprodefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||snxtradepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.snx-maxdefi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.snxdefiplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.cogovip.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.sogomining.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sparkcommunityfi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||spreadextw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.spreadextwss.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4454,7 +5678,13 @@ ||app.st5s.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gfsle.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||support.farmaxprime.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.startrader1.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bit9288.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bittt889.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.suimmer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.suipert.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.suiutyces.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.suixmner.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||svji188.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||svji189.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||svjj09.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4479,18 +5709,31 @@ ||128.sasa.best^$dnsrewrite=NOERROR;A;34.102.218.71 ||85.sasa.best^$dnsrewrite=NOERROR;A;34.102.218.71 ||ss2.sasa.sale^$dnsrewrite=NOERROR;A;34.102.218.71 +||sacproes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||sactfbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sactfbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||safecoinup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||875755.click^$dnsrewrite=NOERROR;A;34.102.218.71 ||z93563.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.safepalas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||admin.joom.zone^$dnsrewrite=NOERROR;A;34.102.218.71 ||jys.aixsshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||myth.saferytois.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myth.safetytois.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||myth.safheapoiet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||myth.safheorts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||myth.safheytius.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||myth.safheytpr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.safheapvciet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.santndafq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.savantfxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.savcapitals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.svfxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.svglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||savegas.ai^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subceatoy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subceadh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subceaer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||schoolbtctw.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.schoolbtctw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.schoolbtctw.org^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4507,6 +5750,7 @@ ||m.sctsn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ytosv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.snjrkrgl.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sdncshop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||8.seashop99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||9.seashop888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||s.seashop888.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4514,9 +5758,15 @@ ||tw1.seashop99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.seapurchase.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.mxch369.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.securityplatf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.securityscoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.securitywdw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.seoloantrader.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||extserum.bio^$dnsrewrite=NOERROR;A;34.102.218.71 +||gyt.regenerationkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kes.forthbekk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||operationala.forthbekk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||operationalc.forthbekk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sftimop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sftimo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sftimoa.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4532,26 +5782,36 @@ ||tw.sheer-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||us.sheer-pro.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sheer-pro.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.shindingltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shouio.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ens-shopback3.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopbopvip.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopvippob.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopccc.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.shopconch8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ww1.19kkm72.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vbshopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||clickdown.sztehao.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.shopeeix.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.shopeeix.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.shopeev.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fmallshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fmallshoping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fmallshopping.one^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.shop94700.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||maalshoping.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||meit.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||my5353.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopee.shumeilaw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopeecq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shoptwy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.bailm.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.bailm.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.escep.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||wallvn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iushopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jhshopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mkshopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nhshopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopee-avail.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopee-shop.club^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4593,6 +5853,12 @@ ||twshopify-lat.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twgoshopme.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopnns.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||centralshoping.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopingcentral.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopingcentral.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopingcentral.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopingcentral.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yhshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||36.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopckk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||11.shopvvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4605,30 +5871,40 @@ ||tw1.yxshop99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw10.shopssk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw11.shopsyx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw13.joom.ac^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw13.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw13.shopzkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw14.joom.uno^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw18.joom.ac^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw18.joom.moe^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw18.joom.mx^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw2.yxshop99.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw20.joom.ac^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw22.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw25.shopjjj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw25.shopssk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw26.shopssk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw28.joom.uno^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw29.shopzkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw3.joom.uno^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw31.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw35.shopssk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw36.shopckk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw38.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw46.shopckk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw5.joom.uno^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw56.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw6.shopzkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw7.shopckk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw70.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw74.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw79.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw8.joom.mx^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw8.shopjjj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw8.shopsyx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw8.shopyyf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw8.shopzkk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw9.joom.mx^$dnsrewrite=NOERROR;A;34.102.218.71 ||sichcapitalpf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sichcapitalua.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||omx.ezey.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4638,6 +5914,11 @@ ||sinosecurities.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sinopapatws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sinopaptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||smbit.myftp.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||smbit.zapto.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||smone.loginto.me^$dnsrewrite=NOERROR;A;34.102.218.71 +||smvip.ddns.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||smvip.zapto.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.smartai-trading.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sntrelor.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sntrexcmi.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4645,9 +5926,12 @@ ||sntrexoi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sntrexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sntrextds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.sogotrade.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaa.solutfoundy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cng.solutfoundy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htps.solutfound.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sonhoo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sonhoo.work^$dnsrewrite=NOERROR;A;34.102.218.71 ||ok-scft.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tha-sc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.sophiecap.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4656,11 +5940,27 @@ ||www.pueroftea.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.puerstea.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.puerstea.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.puerstea.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.souqshopp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sparklefxb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sparklefxd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sparkntc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sparkvexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sparkntc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sparkeed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||speedep.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||speedob.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||speedxa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedqc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||speedfvf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||speediu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedang.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedcfr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedfvf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.speedveh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speediiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedtradeif.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.speedtradez.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.speedstar.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||speedwindltd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aboutsp.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4678,6 +5978,10 @@ ||spmax.bxanys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||spmax.txanys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lxdownload.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.spookletxtn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.spookletxvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.spooklenv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sporkletx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||avatrade.financesnew.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||davinci.financesnew.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||davincie.financesnew.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4686,6 +5990,7 @@ ||phantasm.financesnew.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||yongtain.financesnew.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||starexch.games^$dnsrewrite=NOERROR;A;34.102.218.71 +||pc.star869.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangei.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangeit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||starexchangeex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4693,13 +5998,25 @@ ||www.starexchangein.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangep.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starexchanget.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangeu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexchangey.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starexi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starexin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starexr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starexus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||star-sharks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ssstarbuckscashback.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssstarbuckscashbacking.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssstarbuckscashbacknow.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssstarbucksvipcashback.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssstarbucksvipcashbacking.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssstarbucksvipcashbacknow.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starbuckscashbacking.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.starbuckscashbacknow.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.starfishs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||a001.starlux.beauty^$dnsrewrite=NOERROR;A;34.102.218.71 ||a001.starlux.live^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4715,10 +6032,21 @@ ||www.taiwanstartrpros1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taiwanstartrso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwwi.taiwanstartrpros.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||startrader.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||startraderfex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||stellarbcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||stellarcvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||stellarcxv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||stellarrnt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.stellaracb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.stellaracd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.stellarbcx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||stenbit.mypsx.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||stenbit.sytes.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||stenbit.ufcfan.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||stenbittrc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||stenbitusdt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xmr.stenbit.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||stepup70.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||stepup99^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.stepup11.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4738,6 +6066,11 @@ ||stradegpt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hxia5.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hxiashop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subceahj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subecabdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subecabg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subecanfv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.subecasecuritiesr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sucdenes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sucdenri.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sucdenvsb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4745,12 +6078,14 @@ ||sumswap.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sun-bit11.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mall.sun-mall.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.sunfowers.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.suningtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wgtqj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superepd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||superkenc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superkenc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||supertdk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superuib.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||superwre.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superbdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superbxks.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4758,11 +6093,14 @@ ||www.supervdx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superwre.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superwxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superciit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.supernft.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.supernft.rent^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.supernft.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.supernft.work^$dnsrewrite=NOERROR;A;34.102.218.71 ||hga888.superstarworker.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superstarfly.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superstarxc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vcs168.superstarworker.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||superbtm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.superb-trading.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4770,6 +6108,9 @@ ||swapnex.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||swissborgex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||swissborgxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.swissborgex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.swissborgexs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.swissborgmax.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.swissborgxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||force.firstrande88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||squa.cbnrcih.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4792,6 +6133,7 @@ ||www.lbiudfs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lbjils.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lbjudaf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tdame.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.topmalscross.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||54012.topftem.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||54088.topftem.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4804,26 +6146,32 @@ ||opgg3327.t96666.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tackstt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tamia.shopping^$dnsrewrite=NOERROR;A;34.102.218.71 +||fan.goldcct.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fan.goldncv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.goldawg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.goldchb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.goldgbc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hre.goldncv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.tanakaesd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.tanakamk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hre.tanakaol.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sfa.maengold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sfa.tanakareg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||waa.bcvgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||waa.goldncv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||waa.okvgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wasd.tanakasky.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wdd.tanakaxwb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.blocugold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.gevgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wmm.goldaiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.goldchb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.goldeej.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.goldvtyx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.okvgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.tanakaesd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wmm.tanakamk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.goldrue.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tathragroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aas9999l.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tbtansk.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4855,6 +6203,8 @@ ||file.tfglobaltrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ssmapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tfglobaltrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||btwlol.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tfgex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.tfhfinaer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.tfhfinsera.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.tfhfinssra.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4877,6 +6227,7 @@ ||tx.king76.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||tx.tq77.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||tx.tw111.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aqn666.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bv66.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tbab356.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.weab223.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4887,22 +6238,33 @@ ||www.thorchaino.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.thorchains.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.thorchaintsipro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.thorchainu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.thorchainweq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||titanwde.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.titanwde.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mm.tickforex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||tick666.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tickmilltwb.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tidex.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tidexpro.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shopmall-inworld.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.tldfyuid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.tldoset.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss.tldvseu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tldoset.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tldvseu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmeoffical.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.tmgmtws.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||trademaxus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.tmgm-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.tmgmextws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.tmgmtws.cn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tmgm-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cfa.usmarketex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hre.marketkvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||waa.marketdui.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wmm.marketthb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wmm.usmarketex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cokr.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbcoinccex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tncned.info^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4911,16 +6273,21 @@ ||www.tncnercer.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||taiwan1.todutrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tokoshopeom.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||tokpienig.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tokpiedcd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tokpienig.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tokpietnf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.tox1.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||toyota886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tonemkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tpgtpg.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||tradfisun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradfifie.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradfigod.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradfiieu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.trcoexar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.trcoexg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.trcoexxq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tgr14676.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tgr15958.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||khtron.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4938,9 +6305,21 @@ ||www.tronseng.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tronsev.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tronskb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefipob.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefippp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizza.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizzb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizzd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizze.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizzg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.truefizzi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.truefizzj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.trust-coins.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walletziw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydxrunmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydxtsia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ydxzid.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ydxzip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trxbintuc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trxewf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tronfhu.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -4967,30 +6346,53 @@ ||tu123.bet^$dnsrewrite=NOERROR;A;34.102.218.71 ||tu123.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tu123.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.twseapps1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twsedown.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twsehtml.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twsehtmls1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bac88.tz168168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.taikocrypto.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||haitaogoua.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||tamiashopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rabihajidegreecollege.co.in^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tangastore.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taoshopeei.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.asiatargettvvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.asiatargettwm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.asiatargettwn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cen.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tasmanfxs.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tasmanfxv.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tbikuxu.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zxcx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||tea-pin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tea-buytea.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hnbcjk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||teapuertea.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||teamalltea.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||teatteta.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||teabuyandsell.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tearawtea.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.teapuer.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||puertea.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||tbdsasds.vipshopbuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.puerstea.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.teaofpuer.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||tea-bazaar.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.teamasterss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tea-funny.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||ic-techelem.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ic-techelemtc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||it-atomicio.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||telfor.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||telformall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.tg-makets.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc.tg-makets.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tergether.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||deamed.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||deameg.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tec896.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tec899.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tesco-cbe.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||tescoall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||tescotw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5005,6 +6407,7 @@ ||www.tesco-global.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tesco-global.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uk2jj.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tescosale.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tesseract111.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||tesseract222.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||tesseract321.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5014,17 +6417,31 @@ ||cs.mpgdyt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cs.tahjkf.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||tetherteda.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tethermwq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tethermws.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tethermwu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.usdtseek.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.tcpake.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tezosrgf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tezosyne.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.tgkuveros.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.tgkuvsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.tgkuvseas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||x.tgkuveros.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||x.tgkuvseas.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gothe.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||gthe.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||oktheshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||thigegb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||thiguio.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||thigus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||thingvx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||thomasnet.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.titokcarter.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.titanekc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.titanznse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.tick-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tickmil.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tickmilltml.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tickmilltw.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tickmilltwk.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5034,6 +6451,7 @@ ||tickmilltwz.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||ticvyhll.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||twtickmillck.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||wdagysed.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||tikoaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tikoaay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tikoaes.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5045,7 +6463,11 @@ ||a1002.tiktok-shopping.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||n1120.tiktkoshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||seller.hottkshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shop.tiktokshops.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiktok-wholesaleit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tiktokshop01.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiktokshoptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiktokshoptw886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.hotkshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.hottkshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.totkshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5063,6 +6485,13 @@ ||www.tk6.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tk99.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tkmall.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tkzamshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tkzbmshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tkzcmshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tiktok-wholesales.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||manager.tiktokshops.biz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tikkk75shoptok.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tikkktok75shop.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||tiktokclick.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tiktokhoping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nishopee.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5093,8 +6522,12 @@ ||www.weettoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tset.app^$dnsrewrite=NOERROR;A;34.102.218.71 ||tstset.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tokocrypto-defi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tokocrypto.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||tokocrypto.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.toobit.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc.toobit.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||toobitvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tianzicang.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.topbitiso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.topbitqdw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5112,6 +6545,7 @@ ||crm4.topiato.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crm5.topiato.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tptoe.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||tmh4cr3nwqf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||s.tpshop1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bts.tradefmxz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tradenationfex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5121,6 +6555,7 @@ ||www.tradenationtr.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradenationu.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradewheel.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tradewheel.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||newideas.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||tradingview258.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||tradingview5.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5136,11 +6571,18 @@ ||traweb3.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.treeecg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.treevnb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.treexcui.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.trekncy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.treuie.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.trewsgk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremax.fun^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremax.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremax.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||ojvcd.treasuremax.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremax.space^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremax.website^$dnsrewrite=NOERROR;A;34.102.218.71 ||ojvcd.treasuremax.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||ojvcd.treasuremaxs.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||treasury6.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trendcsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trendrgy.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5155,12 +6597,15 @@ ||www.trustcoin-exchange.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||trusthk.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||trustweb.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||tru-trade.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||trutrade.ink^$dnsrewrite=NOERROR;A;34.102.218.71 +||trutrade.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||trutrade.wiki^$dnsrewrite=NOERROR;A;34.102.218.71 ||trutrade.zone^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.tslessd.store^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.tslessd.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.plussji.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pluszipz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cbectw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.exneschanges.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||exbit161.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5169,6 +6614,7 @@ ||exnesschange.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zzlweb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||twrecover.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||twsfirstrecord.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tailait.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.txcoinn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tsmarkets.co^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5193,7 +6639,12 @@ ||acq168.ubggi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ubggies.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ubggiraes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uboxfgk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uboxfgl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uboxnjib.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uboxnjiq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uboxnjis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uboxnjiz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bbb.aiubs.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bkubsob.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ret.jdkubs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5209,6 +6660,7 @@ ||www.ubsext.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ubsus.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.giceth.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||ubst.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||ucex-online.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ucex.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ucexcoin.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5217,6 +6669,9 @@ ||www.ucexcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ucexex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uexcex.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ueex-global.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ueexcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ueexcointop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ueexglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mh6688.uevuseors.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mh6688.uevuseoryes.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5226,6 +6681,8 @@ ||www.uevuser.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwwi.uevuser.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uezmarktss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vnusaierugf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.lkmkihhd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.ukexba02.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.ukexba06.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ht.ukexba1.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5245,35 +6702,53 @@ ||www.usdc-vipfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usdt-miner.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||usdtmineral.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||usdt-wintermute.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.usgforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.usgfx.global^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss.difirety.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sss.difiroxe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wcr.oilvtcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ss777.ussieuriys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss777.ussieuos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss777.ussieureos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||uss9989.usscor.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||uss9989.usseaor.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss9989.ussearys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss9989.ussebaruies.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss9989.ussebaryts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss9989.usseoaryts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uss9989.ussiertos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uuexjap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uuexxs.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uuxekap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uuxekop.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||ff.volatilal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ff.volatilap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ff2.volatilal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ff2.volatilio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uvbastsaioy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uvblaeoy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwwi.uevuseors.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||blockchain.uvbastsao.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||blockchain.uvbstayer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mh6688.uvbsta.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qq888.uvbassa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uvbassa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uvbsta.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wwwi.uvblaeoy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uepluoareos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uepluooss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwwi.uepluss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ulineme.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.uncleblockgloballimited.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.unis-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.unisnowfx.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||dunicorn.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||hfsuni.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||hopswap.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||hufbyruni.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||rugfhuni.icu^$dnsrewrite=NOERROR;A;34.102.218.71 +||unihjic.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||uniswap-v2.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||uniswap.win^$dnsrewrite=NOERROR;A;34.102.218.71 ||uniswapbtc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5295,6 +6770,7 @@ ||m.unlimtedgold.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.unlimtedgold.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.unlimtedgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.unobitex.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.unsysx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.unsysxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.unsysyxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5306,13 +6782,21 @@ ||mvs.upbounes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mvs.upbounx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pp01.upbounx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.upholdcdr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.upholdebu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.upholdjiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.upholdjivd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||coin-franklin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||useintl.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uswcuxux.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uswcxose.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.utubebp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.utubedha.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.utubedp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.utusvcu.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.utuxspa.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||88.tw-ulike.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.varianseuar.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vwhcg0l7i2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.vig-investments.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||viodabankrate.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5330,7 +6814,12 @@ ||www.vlctdfex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vlctdfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vlctradefx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vlctrading.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bymstores.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||startvvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.startvvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vmallocs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vmcapitals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vsglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vt-top.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vt-top.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5338,6 +6827,9 @@ ||user.fxvsvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.vsfxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vsfxvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vsdrhu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vsdtwo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vsddcu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gbp.vacaoxt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||valutrade.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||valutrade.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5345,6 +6837,7 @@ ||h5.vanguardokx.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fnebbeqnca.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vrkaadawbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vanlianex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.vantagesfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.vantagesmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vantagesmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5353,11 +6846,19 @@ ||www.vantwnow.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vantwnow.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vantwnow.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.varianseivd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.varianseuqw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.varjamserbrv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vaticapital.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vaticapitales.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vbibkl.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vbicso.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vbikp.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vbixnn.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||vechains.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.venus-financek.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.venusprotocolhuq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.venusprotocolnck.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.venusprotocolnfk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vibbits.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||power-vic.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5387,23 +6888,40 @@ ||www.znystoken.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||waa.visoikc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wsd.visoikc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vistacointvp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vistova-bxcrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vistovamarketcrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.crm-vistova.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vismkcrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vistovamarket-crm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||spvivocity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.spvivocity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yfcvivocity.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.startvvm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bereajoys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fxteamhub.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.govvcenter.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vmfxteam.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmarkets.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||volmarkets.icu^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.volmarkets.icu^$dnsrewrite=NOERROR;A;34.102.218.71 +||member.volo.finance^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.voltrnow.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.voltrnow.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.voltrnow.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.voltrnow.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.voltrnow.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||spread.vstmexexchange.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.vtptrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vtptrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.waves.city^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.waves.directory^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsw.waves.works^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fsxcoin-vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.otcwbcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vipwebone.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wb-one.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.webone-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.webone-otc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.wbexgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.wbexb.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5425,12 +6943,14 @@ ||web3.coinivts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web3.mingliuweb.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||web30miningpool.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||web3deeplx.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||webdft.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||webqdat.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wngx2.wexfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwe.weduoi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wwgx2.wexfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coindifeweb3.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.defiweb3if.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.webdft.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.weblexs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.webswap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5443,6 +6963,10 @@ ||app.weex-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dolo.ewweex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dolo.wexxex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||nemo.weex.fun^$dnsrewrite=NOERROR;A;34.102.218.71 +||nemo.weex.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 +||nemo.weextg.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 +||nemo.weextg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.exweex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wee-ex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.week-trademax.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5460,8 +6984,12 @@ ||m.wezcu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wfdcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ikoeg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dfecs.sfhftg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fhdg.mj61qm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wfpcoin.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||ev4.wheatoncc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eve.kinrossgoldeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eve.wheatoniu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||allgame99.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||fungamebest77.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||prowin99.org^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5475,6 +7003,7 @@ ||www.wook.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||add778.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ethdefie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||walletdefi-plus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walletcoines.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walletdefi-max.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walletfinancepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5484,10 +7013,15 @@ ||www.walletsaa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walletsab.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walletsac.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walletzia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walletzie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walletzis.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wecoinsbase.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||walletexchange.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||tikk-shop.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||walmartglobalme.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||walmartglobalmx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||walmartglobaloe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||walmartglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||walmartshopgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tikk-shop.org^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5497,10 +7031,16 @@ ||www.walmant.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walmarteshop.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walmert.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walnant.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walnant.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walnant.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.walnant.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walnart.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.walnart.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||walmartglobalom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||walrus-token.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gh.gaogaoingb.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tianmaoid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ymt.gaogaoingb.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.wayteccs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||e02.waytecies.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5513,9 +7053,13 @@ ||trade8.ziintek.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||financial.wazirrz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qun111.wazirrz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wazirx-defi.app^$dnsrewrite=NOERROR;A;34.102.218.71 +||wazirx-defi.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||wazirx-defi.pro^$dnsrewrite=NOERROR;A;34.102.218.71 ||dgone.globaltrack.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||dgone.pleroma.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||dgone.pleroma.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||gmt.fodesrvnet.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmt.fodesrvnet.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmt.globaltrack.website^$dnsrewrite=NOERROR;A;34.102.218.71 ||lucky168.pleroma.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5530,12 +7074,20 @@ ||wt.bepumarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wt.cnanputfvbq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wt.gopugroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||web3.znyun.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.eihidhvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.mmsvfgt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wellsfargotw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.weltcoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.api.weltkajshf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.westerng.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.westernv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.westernv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.whaeokx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.whakoex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.whooshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.widehighltd.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||wanyouheng.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.widehighfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trader.maxwinote.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trader.ordeforex.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5545,35 +7097,58 @@ ||m.wwintersnow.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.cloudwirex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.cloudwirex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aaa.wishshop.today^$dnsrewrite=NOERROR;A;34.102.218.71 ||wishop.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wishmaller.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.boizoom.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xoizoom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dkf.wokaai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pmb.wokaai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||v.992kky.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jjeez.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jjurs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jjuu1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pecgw1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pecgw10.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cuptopss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jjurees.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jjurese.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jjuresr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.teamasterer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.topteasnow.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uuteas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zzjje.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||work4bit.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.work4bit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.work4bit.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.work4bit.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldibers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldibytau.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldzaers.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldzers.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.goldsti.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||appleapp2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||de34d.k8x.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||yq.xingongzi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitinsbeex.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||haitaoglobal.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ynjkfhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xdhbg.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xedcg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xedli.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xedlp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xedml.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xedpq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xexsas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xexvspr.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xfcbg.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xfvbg.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xfvbg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||vve.xilecai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xilecai.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||haidilaohuodon26.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xlhbg.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 +||xlhbg.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xmfxs-markets.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mwxyq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||treasurystockfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5587,7 +7162,9 @@ ||www.txpkw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vrpsc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wmbql.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xgfta.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xlgvh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ywwtr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zadqb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xmglobalvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fubaba.online^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5595,14 +7172,23 @@ ||portal.xpromarkets.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||portal.xpromarkets.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||portal.xpromarkets.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xpromarkets.capital^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xpromarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xpromarkets.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||xpromarkets.capital^$dnsrewrite=NOERROR;A;34.102.218.71 ||xpromarkets.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtexchangepro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xtbveb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xtbvic.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtbcva.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtbium.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xtbved.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtbver.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xtbvic.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtnapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtnappk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xtnexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xtntw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtzant.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtzerbm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtzido.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5611,12 +7197,15 @@ ||xtzido.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtzleng.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xtzsxz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xubig.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||ubsexgk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ubsexgz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ubsexgz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xdhjg.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||curryency.kasnses.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||financial.kasnses.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pienoxbank.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||pienoxbina.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||pienoxcbd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.xigishopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.app60716.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5628,7 +7217,13 @@ ||ser.xitca.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||ser.xitca.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||ser.xitca.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||pienoxcoin.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||pienoxifc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||pienoxvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xoneipapk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xoneipark.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xoneipmac.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||xoneipugg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xtrade.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tradxtrad.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5642,6 +7237,7 @@ ||bth-coinbase.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydfxm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydnexks.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ydnvoel.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydxrunplus.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydxrunpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.yexcloud.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5650,6 +7246,7 @@ ||yexbe86.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yexexpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fun88.yggaming.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zzhouyishop.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ysex-web3.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ysexcoin.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ysexcoin.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5665,11 +7262,16 @@ ||yueme.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yyshopgou.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yykjgou.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gmxer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yahoofficial.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yahjio.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ios.yahuio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yandexbest.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coinmarketcap.yasenfinancial.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||moro.yasenfinancial.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||roaces.yasenfinancial.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yategoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||pxmartapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pxmartapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yearn-financed.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.scctg.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5686,6 +7288,9 @@ ||www.youcns.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.youcopn.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||youcbe.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.30665217.ink^$dnsrewrite=NOERROR;A;34.102.218.71 +||whh.goldfet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||whh.goldtetr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbbdy.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbctvc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5696,17 +7301,39 @@ ||www.zbviee.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbwhc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbzbijs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zbzbnas.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbzbss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbzuitt.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.zdex.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zdtot.website^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zrtot.live^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexce.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexcpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexcu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexcus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexcw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zenexin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zenexmax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zenexr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zenexw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zenexc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zenexq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||we.zfxs.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||zealmarketfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zktbt.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zktgt.fun^$dnsrewrite=NOERROR;A;34.102.218.71 +||zktgt.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zlc.name^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zltbt.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zltet.fyi^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zltht.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zrtot.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||nxqec.mthcknx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zvtgt.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zvtot.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zalando-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zalando-web.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zalandoshops.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zalandoshops.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw-zalora.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5715,6 +7342,7 @@ ||zalora886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zlrshop886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zero2richer.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zeusiie.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zeusjio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.ziinitieks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rm1388.ziieatieks.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5724,6 +7352,7 @@ ||www.zouskru.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zouskru.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zosvhu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ww.zousdzx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zouscikj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zousdzx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zoussxz.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5746,10 +7375,14 @@ ||ebay-uk.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||ebay-whsle.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ebay-whsles.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ebaymallusa1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ebayus.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||fgsw.gfweu.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||fzyj.anyok.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||ghycke.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gl.ebay.appshops.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||shop.ebay-uk.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||store.eamg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||traderstore-ebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||trading-ebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||v.show-ay.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5757,6 +7390,7 @@ ||www.bay-e.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bay-e.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bay-e.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ddffreebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.e-bav.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebay-tw.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebay-tw.click^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5768,28 +7402,48 @@ ||www.ebay-tw.wiki^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebay-uk.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebay-uk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ebaytwtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ghhebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.global-shops.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mall-ebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopppebayss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssehhebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sssehhebays.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uniunebay.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vkudwu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xdre.brgsd.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||etrgster.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cgfetoro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etoracluyer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etoroes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.etrvnc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nppld.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tfxip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.einvest.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||app2.einvest.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||p2.etouxin.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||flyswap.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||flyswap.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||anzcoins-svipsaz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||iclick.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||ifasa.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||cng.ikalaco.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ikalaatrtys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htps.ikalaco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htps.ikalacoaruts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htps.ikalacoer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||htps.ikalaortys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ikaloeatrtys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||htps.ikalopys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ikalaatrtys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ikalaorqtys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.imb.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.imtoeknstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.imtoekn-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.imtoekns-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.imtokenstc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.imtokenb.cloud^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.imtokenso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||austyn.imtrom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cohen.imtrom.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cohen.imtrone.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5799,9 +7453,11 @@ ||mckenzie.tronim.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||scarlet.tronim.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xzavier.imtrone.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||itbit-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||itbitgew.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||itbitsw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||itbitusid.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.itbit-pro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.itbitol.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.itbitoyz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.itbitsw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5809,13 +7465,28 @@ ||www.itbitusid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.z8int.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||z8eap.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jetsetgo-tw.pro^$dnsrewrite=NOERROR;A;34.102.218.71 +||intramirror-068.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mevius.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||smvip.hopto.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||fxspeedwin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.imtokenl.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.imtokense.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||uforce.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||mer.zwnflom.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xsssoop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bosijl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.dierslp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mkiug.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xbnvmhy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xopsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xreyugb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gopbbl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jfhjdjbbdjb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jfijkouj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.njdfhugv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yiahvdycvb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||1hdmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.csszsw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jiyiiusi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kjghll.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5826,9 +7497,13 @@ ||www.mitasec-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sanliglobalsl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sanliglow.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.slgj-28.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.slgj28.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fiscal.sanfmore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||not.sanfmore.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.mitsubishicorphk2.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||slss258.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sanldj668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xbb823.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dx.tw-mitsubishi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dx.twmitsukoshi.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5841,10 +7516,14 @@ ||vip.shjys86.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chnfe86.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shfecn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shfecn33.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shfecn88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shfecn98.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.98021061.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.abcciqv.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aediu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.docnls.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ffnvngfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jfdhq.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shejlo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.square67a.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5854,22 +7533,36 @@ ||www.zvcbd.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||szehopes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.szehopes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ttt4tt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.dsawcdaa.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ndfbxsa.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qwdlu.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||w.senocbrmk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||api.citicwp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cnhklot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cnhklot.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hklot.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ezizhongtgj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zizhongtgj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ztgjgloint.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fqbuio.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fqbuio.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.cqcueq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tmohj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cqcueq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dbvuie.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gelrpo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kfvwcy.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pclbs.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tmohj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||freddysec.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ww.qwencxp.work^$dnsrewrite=NOERROR;A;34.102.218.71 +||pill.zhongyedw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zhe.zhongyzz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shopvipgiveback.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qiz80.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||9x168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.rb1588.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.rb1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.rb1818.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yb17878.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5886,6 +7579,10 @@ ||tianw1688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yzcx1688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.teshops.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||apac.yashengiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||apac.yashength.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yashengcc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yashengcc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.yajecx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.yajewi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.yajhbtae.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5894,13 +7591,16 @@ ||yajuvds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.sropt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h.kkgyv.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||h.qmbdn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.erfsk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yfiwn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yfktp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yuwie.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.77amazon.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fhdjko.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amazontwshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sulou91.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.souhu85.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tugvq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sjm.h2288.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.h5558.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5913,9 +7613,12 @@ ||www.uhjkccv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qtm8.h202288.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jptz008.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.dmlpoi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||tnyjlo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mdzdrq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tnyjlo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wknzkb.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xvmxbn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qlwmba.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||jd-gogo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jd-good.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5932,6 +7635,7 @@ ||www.jd-vip.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||jd-tw.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jdjr.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jdjr10086.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||rr36.gintfim5588.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rr60.gintfim168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rr69.gintfim168.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5961,8 +7665,14 @@ ||www.baile6688vip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||laliquiere.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mbekgac.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||excellentsec.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||excellenttide.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||js8999.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jjurer.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xingebcbgrf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cjbvedfu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coxodg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.noeote.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.dersonpror.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||th88.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||mer.yurenibl.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5974,15 +7684,20 @@ ||www.dsdnsbfemqsad.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hgieiuqwhq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kwsfzqvod.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xin-an.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zxmvkfmnqnl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jdhvnghf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vijtuheiuqwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ycnbjdfa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||prutw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||prutw.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.axswyklbjnwww.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xdaltmgwpm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nbo1.systnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.syssttnen.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.systtnen.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||macao1089.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.amldr668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wanfeng443.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||weshinemkts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||weshinec.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -5997,6 +7712,7 @@ ||ramonfinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ramonfund.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ramoninv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ramoninvest.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ramontrades.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hsydl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jefferies8.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6008,8 +7724,11 @@ ||z003.8legend.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ccmqhd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cpkujq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cffmcg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cnwbzl.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chjasfebsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sxzvcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.utibngjhd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.happybuyer.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.newtradex.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lxmcshoptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6017,8 +7736,12 @@ ||www.ypscshowtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ypshowtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||81768478.youtaosc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||ymgshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.yxmalls.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.yxshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dozbm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yxmalls.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yxshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.gptaigu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ydzjjys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twyuanda.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6029,11 +7752,19 @@ ||fs.ugnrjgmr.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||ke.njlrngi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jiuwenni.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.jioerul.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.paodayi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.pvhjdty.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ringwi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yuantai.sk^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zwa4a.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.znpptt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zogkqs.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zqfycm.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ztrbpk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zwfvtp.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zhozux.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ztrbpk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||zy16888.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.k9899.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zxjk.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6041,6 +7772,8 @@ ||m.k9866.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ycbsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mgs1788.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zyzdapp1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zyzdapp2.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ntr.livzaz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.rnfenqwndams.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gjtjwerkldms.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6050,7 +7783,12 @@ ||m.trustglobals.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.globalfranch.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.globalfranche.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldwidedhe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.worldwidevdo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.aptao.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.babao.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.batao.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oinp2p.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||globalshopsb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||globalshopsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.fkptn.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6064,12 +7802,20 @@ ||asia-electricity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia-energyltdcc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia-greenltdss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||interarcham.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.bcrol.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||f.iszhb.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vbzdbasa.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xzlihua.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.nbshfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.posvvs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qieyruy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shehsl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uywetuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vbjsugi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vonots.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wioqtuih.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yiowss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||c002.kgi888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||a005.kgi888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||a006.kgi588.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6121,12 +7867,16 @@ ||www.fljzdb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tjbzcgg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yodzown.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fstfdtgsu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yryxbitvknt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.clpowiss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||karfordfinance.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||karfordsecurities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||karfordtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.dynamicreviews.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uahnfgbc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zbkjccuiqeq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shssub.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.stgjpt.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||gmt.andeavor.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.huifucc.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6150,10 +7900,17 @@ ||www.xkjvuriqweuij.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.huijuxca.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xziqd.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigumaketes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigumaketss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigumaketus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huigumaket.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.rvxrtv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vpqkuf.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zjyuor.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||gzxshg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hui.abccornerhk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ne.yumingxuanjewelry.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rvxrtv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||y.feimaglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.huifengpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||huifengpro.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6185,6 +7942,7 @@ ||huixinshope.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||huixinstore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||suncity.bz^$dnsrewrite=NOERROR;A;34.102.218.71 +||lvy.qianying.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||onwrok.akoues.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.akoues.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||e.co-finance.org^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6196,23 +7954,34 @@ ||bsassets.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.jrqrml.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.smnhus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bossxw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bossewes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bossxw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bsxss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bx88st.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yxnet002.bx66cs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yxnet005.bx66cs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yxnet007.bx66cs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bl288.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bl678.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.glpwgj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.aifejq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.kadylp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wgsqwy.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ivqly.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||acs168.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.acs168.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.1binvest.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cail888.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cali1356b.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cali777.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cali818.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cali828.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cali888.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.calibet.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cali1356a.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lsknbjgt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.mbjgifjg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.qcwvw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vgacm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.aztcp.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6233,22 +8002,34 @@ ||shoptwe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shoptwn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw9338.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||twbtch.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||twbtcl.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||twmnb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.7322561.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tw9008.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||whs399.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dsglobalyll.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.qh8965.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qh356.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.twlotterys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.awwr9.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||taiyin.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||pg.penvyr.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dgnfihgf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zvxyuet.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.plpvipe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vdfsjk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xjbcbvjvv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xoapwl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||delenzing.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||diaodl.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||ezldfa.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||ijjeurpw.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||yuhangewg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||httw8.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ashjcbbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ciwklos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dsfgrgz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xp.ji59888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jimmyconniebuuks.one^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dgydfgyd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6257,13 +8038,22 @@ ||www.vhbcfvh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yusagcxg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mfxye.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||khgcapital.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.pishghya.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bsiyfygxf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shuidonoa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wioasoijf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yopiep.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vdqwaszx.3y3sd.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.btvcfm.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bbcmln.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mxyge.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tkdyln.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||d.ijzedk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||d.ividim.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||d.sfsgch.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.tyubqq.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.ividim.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hfcfinance.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||rb.aocnej.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.uainfbja.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6274,18 +8064,28 @@ ||pn3.cxsbomh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cxsbomh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shop.weipinhuis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.vipdcy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.viphtu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.viphy01.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.vipph03.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.vipshop08.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.vipsije.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vipmalldownload.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vipstwmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||viptwmallofficial.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vipvipmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||viviptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sg.hohner.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||shangyue128.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.qiyuantw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qifanasset.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||qifanassets.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qifanasset.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.uthfirygv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zmhuiso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kisiujm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.klongb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.peesv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.jgbwdn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.kleyf.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.uztgyd.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6294,6 +8094,9 @@ ||m.hmmnw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.iueyc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ltsly.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.qhjdla.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qhjdla.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.qhjgec.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.qiaoanjin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||downs.qiaoanjin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qiaoanjin886.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6309,6 +8112,9 @@ ||wehkl.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fcpjtz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.isxsrx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.amjkf.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.jalvr.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yoftp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||schwabcp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||schwasia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||schwcapital.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6322,9 +8128,11 @@ ||carriershares.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carrierstocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carriertrades.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jiale923.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jsgjwftw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jszbtwtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jszzbbtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.js877449.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dlodq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.forexo24.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kyeiy.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6335,13 +8143,26 @@ ||www.jsf28.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jsforex21.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jsforex25.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jsforex28.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||not.sihaipoe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sihaipoe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||guostw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.guostw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.liowsfs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xingjhcxgvbb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.foieddo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pieshb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.syoidb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.dkooew.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.eruislp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gaopsin.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iyoblnkgjr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ncnbbfrycn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.topkks.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ztyugehk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.guoyouziben.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.guoyouzibeng.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.guoyouzibeng5g.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gqtz285.com.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||gt1288.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||ajsksf.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6385,6 +8206,7 @@ ||dl.sjeifk.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tf.apkejf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ibkengt.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zxcnbijd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.bgfrm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.duopq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.whnfq.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6395,6 +8217,7 @@ ||m.rvlwab.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.tvxcn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nisgjhhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zoislo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||khstrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||khfinances.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||khshares.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6406,8 +8229,11 @@ ||www.gyym226.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gycn2019.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gjfcwz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||s.tangjung.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||addm618.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gjfc133.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gjfc633.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||oddm618.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wdy66.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.aocnu.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.gjfcgme.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6417,7 +8243,9 @@ ||c003.lianzi.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||c004.lianzi.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||aifeier888.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wootxshop.pw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dooooobox.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||z0503.djg88168.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||dreambxn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dreamdte.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dreamshs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6429,6 +8257,9 @@ ||www.levewui.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mcnopros.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mscbn.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||tera.rusiramo.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||yelp.cubamos.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 +||yelp.janima.buzz^$dnsrewrite=NOERROR;A;34.102.218.71 ||asf.dycoins.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dycoins.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rncjnajq.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6439,31 +8270,46 @@ ||www.sjncnvwjehu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dbyl1228.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dbyl1268.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dbyl1628.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dbyl1868.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dbyl1928.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lin.jueaifdfqq.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dabaogj58.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dabaoguoji886.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.dbyl1668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dbyl1778.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dbyl1868.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dbyl1888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dbyl1928.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dqfrmd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dtcggm.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.lkzdsj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.lzqods.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||3989988.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.3909988.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.3989988.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.3989988.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||download.cbexvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||download.gccbit.life^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gccbit.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||taiyiptrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||oni618.gm1788.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vvtaa3.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hkcp75.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.kdhgudi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.rioyimk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uobkayhianc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uobkayhianz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jzs833.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xwde16.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ammb7.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.upsve.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||st.iugts.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dx9138.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dgywgu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fvwhkjaijd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vjkqeqahw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.chyhbn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ckvfkqjwuje.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hyvudrb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jsungdf.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6472,6 +8318,9 @@ ||www.ndfgjfgj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tianchengsells.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tnze49.tnze.asia^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ioajdnde.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.cjvnndmcb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xoissa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.g0r0iqwoeiqu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.asdfgbcn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.833068.fun^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6493,15 +8342,32 @@ ||www.mouser85.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.square36a.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.square83c.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tamllvip13.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmao168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.888278.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.maihaowanjia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||alibabavoucher.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gslbvg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.albyhj17.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tianmao888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||times.9187218.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||timesquare.682211.cfd^$dnsrewrite=NOERROR;A;34.102.218.71 +||timesquare.684229.cfd^$dnsrewrite=NOERROR;A;34.102.218.71 +||timesquare.685553.cfd^$dnsrewrite=NOERROR;A;34.102.218.71 +||timesquare.688528.cfd^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmalltmsh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||twtmallshdown.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twtmtmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tianli808.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tlxgvt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tqxkus.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tenhun.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tlhunl.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.trkilo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ksxsef.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.cooperate.today^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.scb588.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.goodsstuffs.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.192812.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.192813.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.900256.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6511,6 +8377,7 @@ ||m.y55321.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.y88656.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.y99855.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mobile.newmall.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gwbsu.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.odin68.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.odintw588.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6529,6 +8396,13 @@ ||d.wffiz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yfsna.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||myholidays.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yhyh168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yhyh8888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.dvvbhu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.toplkc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fhgudgi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pocsvl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xbzujie.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.vnsr1690.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.wns5158.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||am.wns999.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6540,6 +8414,7 @@ ||m.wns5198.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wnsr0601.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vns.xi559.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vnsrylc.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||wns.xinao88.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||wns58777.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wns7177.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6555,7 +8430,20 @@ ||www.ahzbeuiqhwee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||weihezb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.weihezb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kkbs668.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.azovshopping.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||zhaijidian618.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bpoedi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fopxce.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gsjasr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hidokn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ioopws.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jsgfhjytr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vvuyuwgh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zxnigouo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.azxbigiig.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.piieudv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sdjsfgyu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.f968502.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hyfun777.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jiandandai.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6571,11 +8459,14 @@ ||m.amtopted.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.am-top.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||user.amtopcotd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||user.amtopcotd.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amtop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amtop.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amtopcoltd.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amtopfx.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amtopokx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.volyuse.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fdgvdjy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||antayfinancial.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||antayfund.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||antaymarkets.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6583,6 +8474,7 @@ ||antaysecurities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||antayshares.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||antaystock.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||eh.xybeud.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tf.prucne.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aah6a.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.nvcbfffo.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6591,8 +8483,10 @@ ||www.wuryugg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xcbnhdf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ej.y5btufj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hzvip99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hzvip66.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hzvip88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hzvip99.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.viphz888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hagjtw-tww.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aj.eirngpsf.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6626,13 +8520,22 @@ ||www.club58.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefour-mart.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefourmart.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrfurmtm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||carrefoumarrt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefomhxhbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefomiarrts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefomijuihs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefomiorrts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrfinnm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrfoxsf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrfuriimm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrofeojiuort.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrofomierts.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrofomjiuort.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrofomnierts.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrofoumarts.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrotfofo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.carrrfomm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.carrefourstoreing.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shfuqwhlkaf.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dfhgfhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6641,10 +8544,17 @@ ||anewfujing.newfujing.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.rrrrfgnj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.f668.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.futuoeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jyuxww.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ubidjz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wxgfvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xzcnxj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zjhipy.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.grfjid.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.jyuxww.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ktbswe.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.ubidjz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.wxgfvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||flilyxmtime.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fth5h5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||futuohk.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6661,6 +8571,7 @@ ||www.furaholdingsinvestment.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.furainvestment.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.furuiholdings.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xunighe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fdinvest.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fdinvest.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||fu-fa168.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6674,6 +8585,9 @@ ||www.fufo88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||llzz.taiyi1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vvin.taiyi5858.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wn.taiyi1688.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||wn.taiyi1988.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wn.taiyi588.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuyingholdings.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuyingholdings.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuyinginvest.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6681,11 +8595,19 @@ ||www.fuyunholdingsinvestment.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuyuninvestment.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fuyuninvestment.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fsesns.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fsidjt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fssgzp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fstfta.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fsznvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.fushengzhengquan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.franklinsxzs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ftapp223.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ftonlins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||franklin-tw.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.futuoiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.gmxeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||futuoiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.nsfqn.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.donnls.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.efiad.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6703,7 +8625,10 @@ ||app.flaqlt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.flayce.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.flkliu.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.flqogr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fluixj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ydjdk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.flcjcm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.flkliu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||rg888.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||rggo168.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6741,6 +8666,7 @@ ||www.kcajseijoqn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tst.fc69.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.fulong.asia^$dnsrewrite=NOERROR;A;34.102.218.71 +||download.fulong.trade^$dnsrewrite=NOERROR;A;34.102.218.71 ||afrnnc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||donnls.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aanobj.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6769,6 +8695,7 @@ ||tt01.zbaooo8588.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wee330.zhunbao558.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www333.zbaooo8588.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||twxhsmall.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xiaohuoshu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yymcmy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.esanping.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6788,6 +8715,9 @@ ||tw.split-new.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||v.split-new.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w.split-new.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||samscpop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||samscvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||samscvvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||live.ttwq5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.a755733.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.agencegout.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6801,10 +8731,12 @@ ||api.nrmafg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nusssfq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.izsfdss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.btc5689.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dapp.solandingmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ethq.github.io^$dnsrewrite=NOERROR;A;34.102.218.71 ||lzgos.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mdapp.xcmud.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||v9.webteeswap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.coinrulev.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||cash.bnan900.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rich.bnan700.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6813,12 +8745,15 @@ ||bnan.casave300.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||coin.bnan680.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.btcszhb.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitoexs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bitvenuzi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phone.bittrillion.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||phone2.bittrillion.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||legop.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ctigerxinjiapo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tw-borrow.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tw-loans.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||endjwbdbw.world^$dnsrewrite=NOERROR;A;34.102.218.71 ||fatt188.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huoyusaas.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vvatt6.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6854,10 +8789,14 @@ ||ok.i9cneuc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ru.kmdjef.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wpmwpm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superstarfhight.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superstario.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||superstargp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.dadpas.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.dexin.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ohkptw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.febok.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.nxnbi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ohkptw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.qhiylv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ufksyk.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6871,14 +8810,19 @@ ||www.bbncmd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dsjkch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.obnerw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.digefa.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.hxkdu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||dl.dpdld.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.dplbm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.sdeuj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.dhnuus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.djjsuuj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hsbjhdd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lwenudn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oiwiuyt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qbujyxdfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ropfssl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vueraad.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vfgroups.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vsglobles.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ydyldx.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6888,22 +8832,39 @@ ||www.wanfinance.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||td.bitcoinacme.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||member.dollarslife.win^$dnsrewrite=NOERROR;A;34.102.218.71 +||defeng999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.defeng123.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.defeng168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.defeng66.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.defeng88.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.defeng889.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.defeng999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.iiiawdmknals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nxncbdhasd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coiyg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.moiyun.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oowueyg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.twgdggf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xkdkjigyr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vcvfqf.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||value.hihappyshop.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||bwin188.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||bwin688.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwaic2c.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwaigood.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kwaiaqi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kwaifun.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwaigoog.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwaihop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kwaiify.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kwaisit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwait2t.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kwaivips.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kwaizon.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.pjshdhjpp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sjdfsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vnioswia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ystz.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twspvivocity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vivocityyfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h.hfugp.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6925,6 +8886,7 @@ ||www.ksjhqwjhvru.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nbrbanbman.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xx0fasdwqf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||dmsit.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||wyt.yurenigu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xkjdqiwhea.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hjfgjfgh.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6948,7 +8910,11 @@ ||dx.twmustafa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.musstafa-886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.musstafatw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rmhqgx.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ywugii.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||1tjpki3yzy4w.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||888889936.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||98988837.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||bugnkzetmvfspx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||clurth5kjzcs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||g6a9iz6i7u.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6960,11 +8926,17 @@ ||oumvcoqzqkvtumh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tranndnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||uwt11ldf6cy6.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wwwwnew.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wwwwxuw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.adhjhlid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cartewd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ljdujuss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xioiwrg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xoswlpi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gvfyguf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ieofovhv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pdivys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xoisole.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.abwhqnjandsaj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.lgenjnjaknnwa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dhrhjkxawe.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6972,9 +8944,12 @@ ||www.xkmawuejqujajd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||battle1688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.htigerglobalgj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hutigejing.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tigtuohu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tigwhubw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tkglobaluo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ttuokeglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||chenghong.warrior-designer.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.hniek.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.ohjoi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.jom166.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -6992,6 +8967,8 @@ ||dy.kj8w7et35r.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dy.zunsi.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.douyin68.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.douyin8798.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.douyin89.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.16y.app^$dnsrewrite=NOERROR;A;34.102.218.71 ||b.fk520.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.mycf68.cn^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7007,26 +8984,43 @@ ||yn.pemfhr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mujingyi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgsd111.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mgsd88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sdsdfdf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aehhs.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ipqnbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pgfkj.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||anquan.aceracing.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.meg990.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.mg81909.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mpj1860.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sfnjfgv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jpmchase.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.modern-inv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||p6.modern-inv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vp.modern-inv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bosndy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dunhuanggou.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.upholdtgnh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chxgjg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fcdvip.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||6319856.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||dn.jrjys58.co.im^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xinchengtw.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xinchengdown1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xinchengdown3.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xinzimei666.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vrnjwqjshbak.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dvfvds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.liosvi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.newcapitaltw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shjiniapp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bopoed.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wuiayfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zksfjui.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tioaise.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wuayig.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xdgyug.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sports-xhao.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||n.ms86.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.5699am.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.655666am.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7055,6 +9049,7 @@ ||m.flp521.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.kqxs0099.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.kqxs323.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.kqxs66.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.kqxs6677.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.qsd88.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xinpj22.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7071,6 +9066,7 @@ ||www.oa9200.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xinpj8883.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xpj12286.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xpj19208.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yrz3535.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aa42.artfunfa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||artcityfafa.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7082,17 +9078,27 @@ ||zlwqbg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shjiniapp.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.spsunteccity.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xdcsunteccity.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xdc-sunteccity.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.yd-shop.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.taogg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.vns1029.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.yd-shop.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||ht.shangyue3318.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shangyue6618.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shop.yd-shop.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopwnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||token.enshop.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||yd-shop.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.copwso.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.goispse.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xinylolo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.boieml.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bvchtfy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.feitianba.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hfyegd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.litjhgnvid.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xiosyo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xzhyuidt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fightonco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fightoninv.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7103,7 +9109,16 @@ ||www.risheng674.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.risheng676.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.risheng688.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wenxiow.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bosrtti.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.loospi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.rishengyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.arqzcdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.bykzvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.lqipfo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bykzvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lqipfo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||fscglobe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fscm.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||fsctrades.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||visit.rixin-inv.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7117,13 +9132,16 @@ ||m.yfnvkr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yqjaij.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.zsvndx.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.etyopp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.udhxyq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zohcso.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uvgwbk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xbcfux.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zohcso.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vmrkqjnssjdhb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kvfuhjahqeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nxvrhbuaheq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tioauws.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||expectasec.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||expectaglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||expectatrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7159,6 +9177,9 @@ ||priderockmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||priderocktw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.priderockmkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bhhyhsds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ufjioaerr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gjsuyo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cu.ruvnrjg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ep.emngrk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ps.epmtig.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7168,6 +9189,14 @@ ||splopc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||priceglobal365.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||aaa.bycmqy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.pucvmv.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pfbjat.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.potomb.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pucvmv.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.duiopax.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tiosus.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iooudnnd.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.woruyrgsb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ay421.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ay633.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dl.tnsiu3c.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7185,11 +9214,24 @@ ||www.fvrvp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mysmartcoin.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||mysmartcoinss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins17.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins20.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins22.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins23.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins24.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins26.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||awp.zwndvd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.swetfly.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mysmartscoins25.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.smartliferetail.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.dinvgfyen.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hongtenv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sdffcsdc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xoilrrtis.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zbdjaas.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tywrtgsg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.daietherpro-trade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||omsx.r2uh.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||stock.zhibangs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||stock.zhibangsx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zhibangs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7198,8 +9240,11 @@ ||htps.sfsoarypes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hunter.sfsoaoter.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sfsoaryes.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ez0301.mw1688.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.financespro.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.allegrorm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bybittw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fir.eastasiannft.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dongboziben.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mapp.wllrm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a01.dovbs.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7214,6 +9259,7 @@ ||www.dsenglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dsglobalyl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||326469.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jiutaiyp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kkm660.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tufpc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tscapitals.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7233,13 +9279,20 @@ ||www.lxjrtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||login.lexin.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pozion-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shoping-inworld.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lt-taiwan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||5379651.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||rakoten.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||leshangchao878.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||happyonline-go.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||appilates.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dow.fenfa.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.leegou.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||giktkhudretzub.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||llgregory.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||mpjsgvdgioytvp.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||nigerballs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||qsqbpoqaotdqxf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sgpwlm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twlegou.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jxypshopcart.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7253,6 +9306,7 @@ ||winweb.euroyal.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||sj.57968.co.za^$dnsrewrite=NOERROR;A;34.102.218.71 ||www-vip.oklink.fit^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.oklinkvip.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||8cky.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||208.winn6668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.winn6668.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7271,12 +9325,17 @@ ||www.msgjgloint.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wei22.mercury1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yh777.mercuryy1357.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yl3581.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||kfwiowg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||qtq33-33m.345677.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yonglivip.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yongliwins.vip^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.donglivip.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.ylhg68.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.ylhg85.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.ylhg99.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||k.nasdaq30.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.y85656.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.yl9210.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ylhg2626.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ylhg9599.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7285,7 +9344,22 @@ ||m.row9778.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ivdgp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aunend.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ybbdfp.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ymaatf.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ypmwzl.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.paolligo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.teiiueyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xbshuz.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xegryug.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.lfevyug.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.jdgytwg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dcfshj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.honxx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kligslhs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.uthgnbjrif.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yiopqmu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ddvjdjvn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.spsxcv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bniel.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.diywm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ytkgm.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7299,10 +9373,12 @@ ||l.cluql.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||l.dgjgm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||l.fkczi.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.aycdzu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wocrdr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cxanjheqwk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.slgjneqo0s.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xnajznbdjm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ssdjausiej.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xsnherwmkssd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fiuxyruli.qian.didjjx.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||gtxwrsjn.qian.didjjx.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7317,13 +9393,22 @@ ||www.yfjrhk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yfjthk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yfhkjr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bshdhuq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.majsdyhw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.coiwsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.deikwf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hchnedvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.stgxbfdhvc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||theasset.pw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.theasset.pw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tg888.in^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tg888.ws^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ikmlkp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.tfghn.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.telp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taifuweb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.lxjxaxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kioawd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.jbuhcu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.rtmeu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.tysrj.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7333,7 +9418,10 @@ ||m.tlknm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.uklmp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xohoa.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.djjhgryhn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.gsygdm.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.viowido.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||taihetz.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cdsyid.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tedhk.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||c.ahdty.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7355,8 +9443,11 @@ ||asu.haiyuex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.haiyuex.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||energyaly.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||energyeb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||energyzpe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.energyeah.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.unc.ink^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.haitaovmt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hg863k.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.aksmcnqjwn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jgrqweaada.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7372,6 +9463,7 @@ ||www.acrondwss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.facilityma.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.growndech.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||765889.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dhgdshgj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oajvinmo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ufbgjhhh.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7385,15 +9477,28 @@ ||www.sjjyqueghsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruenh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruenheng.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.runcheng.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.runcheng.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.obljgbjg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tyoldfv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.joqqdd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.psjfhkod.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.vnliowo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tuyhgjh.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ghiussf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ruoipi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gfgygggfu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsgjpt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||game.taiyangcheng.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||games.songuo.me^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.m84.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||vns.671030.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wns.xjplc03.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||t.tdgame.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.135530.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.mca198.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xpj16386.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||xpj53197.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||amlyyl158.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||amy.tvm1988.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||dlta.m68901.vip^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7401,6 +9506,7 @@ ||1.8m6.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||yl.kwkk.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||7.macaosand88.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||cc.33069.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||nfkk668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sands558.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sands568.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7408,11 +9514,13 @@ ||www.snjs569.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||amyh.aaoc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||amyh138.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||amyh868.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.16868.wang^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yinhe209.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yinhe608.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yinhe918.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yinhe958.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yinheaomen.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||www2.aomenyinhe.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||yinhe209.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yinhe887.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7420,6 +9528,7 @@ ||yinhe988.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bhwjs138.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bhwjs158.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bhjs.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bhwjs258.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w777.esengp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w777.sentgp.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7435,28 +9544,39 @@ ||gssdfc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||iiistock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myiiistocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||nnds.huobin.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||11.sssuav.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||6.sssuav.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw50.sssuav.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wumart-global.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wumartshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ab188188.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jfygshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shopping-jf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zza.jewelrydm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.htaigold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.benchz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ivdhhg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.lhhgmw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.mshgdv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.pdaneb.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ujlmrh.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wazkot.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ulfwju.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wadmof.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.benchz.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qmrgcu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||licaikuaidai.lol^$dnsrewrite=NOERROR;A;34.102.218.71 ||henhaodai.click^$dnsrewrite=NOERROR;A;34.102.218.71 +||ruix336da.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||ruixin935da.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.krqnasjnda.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kvnfjnk1nvka.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kxnn1knej1kn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ncjbbahbsdhw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.raymondjames-tw.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ze28s.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kuo689rui.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.mjfb89.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mkl877.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xymm49.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7470,14 +9590,19 @@ ||m.ighhi.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.iuwge.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.zifqg.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||newhuaqu.nne-bit.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dwgj1008.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dwgj108.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dwgj888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dwgj8888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.twhkquanqiugougo.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gcgroup.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.globalcapitalgrp.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||28.wns9168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||huanqiu8168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gotickmill.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||asia.dangdengtw.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopdang.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aq574.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sk9988.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||crazy-go.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7503,8 +9628,11 @@ ||www.vbrhbqjena.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ydhcnxbd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zjaisejqujeeq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||bqcity668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||imperial-co.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||afhjnl.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.gbjtl.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||p5.hhj5557.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.y89652.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||bitcoin886.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bitcoin886.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7527,23 +9655,37 @@ ||0x7mln01.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.0x7mln01.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shengtaione.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kanhgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bhullee.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shengdinggjjys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shengdin88.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||pg.lfcy888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||phhho4d.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||haugomart.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wisewingstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wisewingstrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.shenykio.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.emccr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.hzxxs.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.okqhd.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.rlsub.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.blqwv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.sctat.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xrdown1.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||keecheong.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||keecheongsec.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||keecheongstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bsqyly.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gxrtgb.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zjotto.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hhtfiebb.world^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.vbckjoy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.whbhudh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dsfgvs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nxzmklh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.safajzg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xiangzdma.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xpsyiv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kifrg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vymyr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ykoed.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7590,10 +9732,24 @@ ||www.msbayfdu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xmndugf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cdgdpk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.mxccuy.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.cdgdpk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.msfhql.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.rkvyzd.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rlsioafo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fbxuxx.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.figkkd.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fveqmw.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fvnqwe.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fxejvg.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dnfsss.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.waosgfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xbvhjgfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||money88.easypro.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||money88.ezsoho.store^$dnsrewrite=NOERROR;A;34.102.218.71 +||utc.easypro.site^$dnsrewrite=NOERROR;A;34.102.218.71 +||utc.ezsoho.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.cjowoi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.brjqjejaj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.iwqewjqwes.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vnnkqejajja.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7602,6 +9758,10 @@ ||www.dsngfhga.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cd9jr3kegh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wzmgvvrszyvwcpub.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ticktomill.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.vuslopd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.djkied.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sdosjcd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nardcapitals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nardstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nardtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7610,6 +9770,7 @@ ||www.oosfudf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.weasfstggh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dkksg6.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||zchfinancial.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zchmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zchstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zchtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7636,10 +9797,12 @@ ||dacc.musicxoin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.fjiuoeh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.iksoeitu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.mxnuier.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.odhgufdg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bhvjgyd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ebhdjbdfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ghuuui.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.popesx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||296t.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||beipaizangyao.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||caiseqiu.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7648,6 +9811,7 @@ ||dolo.nsdaqex.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dolo.nsexdaq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dolo.xensaqd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||iqtiedu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xeddq659.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||martyrouse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||nasdaqtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7679,8 +9843,12 @@ ||tw.merrilllynch.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.merrilllynch1914.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ml1914.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||vepji.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ootfb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.phlgh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.plekh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.slprt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vepji.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xdyof.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myzj1288.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||myzj2688.cc^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7696,37 +9864,50 @@ ||am61868.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||am88.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.m168178.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.mgm999.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||pc.xpj168.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgm.gzsybj.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.am88.fit^$dnsrewrite=NOERROR;A;34.102.218.71 ||mgm.hk58.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jorieuue.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.uwuyfe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.alsighuik.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dfjsyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.iertytf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sahxazx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zananxiap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.awyghcndb.com^$dnsrewrite=NOERROR;A;34.102.218.71 -||www.iertytf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||honghongyangguang.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||amazondlj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||amazonsprot.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||gic.chaojigic.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||eve.envrch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wff.envrch.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||whh.qunysu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ycjr-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ycjrtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.wtyetg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zdidjiodu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dijdcdvdk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dioesp.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eouiohgfh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huihuioop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ihjbgbjnn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sosowie.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.utuignetrc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vipdiyip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yewuqt.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yhse.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||whauihyg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.whauihyg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||klmall.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||mall.klgw.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||mall.tw-tesco.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||shop.klgw.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||shop.polo-coins.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||shop.st-stocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.klmall.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.klmall.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||506gzqh.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||bnmhop692.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||jyshopping639.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7742,9 +9923,12 @@ ||jbpinx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.juxinfor.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||asia.juxinoim.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||juxinfor.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||juxinmore.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||juxinoim.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wap.caixing118.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wap.caixing8.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wap.caixing999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.caixing618.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qhfjdkg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.djgfskyv.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7752,6 +9936,8 @@ ||www.suretrf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zmiofghhh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.17kshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||live.aw33f.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jx8006.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||jx9006.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||dl.lclo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||down.rubvz.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7761,6 +9947,12 @@ ||www.goldbgne.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||did.lianfgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||cox.lianfavc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vwk.lianfauvf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yux.lianfaic.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.uisopad.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.yopessf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fopkol.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gfdfse.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.stockao.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xxhxlq.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kwsnxwl.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7771,6 +9963,7 @@ ||www.sj97.lol^$dnsrewrite=NOERROR;A;34.102.218.71 ||live.baadx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.at191.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||inbesting.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||gigant.icu^$dnsrewrite=NOERROR;A;34.102.218.71 ||haloubug.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||muysas.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7779,6 +9972,7 @@ ||shubiao.live^$dnsrewrite=NOERROR;A;34.102.218.71 ||vtdklp.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||newidea.solutions^$dnsrewrite=NOERROR;A;34.102.218.71 +||gwyasset.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.zhijiankonggu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d2.seatop.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.0088888.co^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7796,6 +9990,7 @@ ||a.b.tw3368.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.b.tw692.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.b.tw718.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.qh2279.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.qh619.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||a.qh7126.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||qh927.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7803,12 +9998,16 @@ ||tmsr.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tmsz.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw279.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw6397.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||twbtcy.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qh328.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qh539.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qh625.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||a.qh9352.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw1234.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw6688.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw8888.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw999.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ysgj.dfghjklco.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xygjtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||axslanxiang.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7818,12 +10017,16 @@ ||www.fnglc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.k69937.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bxchjdfg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gefvvvnd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sagyugf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.wsfulzdj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sfjsjdh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hkxzgjjrtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xzgj999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xzgj999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||xinggui888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.boisgoe.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.gdgyt.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||kpaxxxyn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||mjszmw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hjrxxjkj.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7837,9 +10040,20 @@ ||hqpot228.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.citir.cyou^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ftlmine.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.caolidti.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aipoajc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ckotihlvb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.fopesc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hoddrs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ireyrbhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.rhdnjfha.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.shajghg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.viosef.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xnbzuiyfha.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.wgaytugf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.emperor-media.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yh66789.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.emperor-medie.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||yh88888.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||qt.yh3588.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||qtm-22m.345622.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7850,6 +10064,7 @@ ||www.huaxindaikuan.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hnhuanagj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.blogkkewije.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||hnfhctd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dbhgsb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hnjkzq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vfnjweqwie.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7858,13 +10073,17 @@ ||c.aecmu.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.auniy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pis-studio.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||hqb6.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hqb.info^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hqbcc.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tb8.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.hxkdu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wk.vnreicva.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hndhudff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jiasudlop.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.mkjudg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.poidfgo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bvjhcxuh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bxchjvgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.taitanm.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wytfbg.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7876,19 +10095,37 @@ ||grglobals.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.grmarket.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huatai168.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.fydhsk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jsfuuvgs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bniskk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ewueqyy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tdklnb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.vbedyers.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xopidss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vmallsh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vmalltw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||vmalltwwn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.huawei6659.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||90nn.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vdbzbnzz.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.71ujm9qn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ffbop.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ojvmy.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.sbcpw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hsht163.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hsht355.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.geioac.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hs.3dprintertech.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||hs.colbathlamprepair.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hs.dakappart.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||hs.phoenixmediafx.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sopkoi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||huayusecurities.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.wjaosfjkg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hbyutryu.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wiueo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xiolohg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.huiuwoa.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sficx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hi689.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.huaxing98.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7922,9 +10159,17 @@ ||vanwardgroup.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vanwardmkt.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||vanwardtrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wanjia366le.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||wanjiale568.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.wzgolds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wzegold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wzgold.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||wzigold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wzsgold.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wzg1.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.wzgolds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||wzgolds.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wanweiweb3.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||banhinasia.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||banhinmarket.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||banhinstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7952,6 +10197,7 @@ ||toge.goldencity999.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.goldenc1ty588.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.goldencity999.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pjeroetky.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.thyssenex.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.thyssenfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tsenfx.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7972,6 +10218,10 @@ ||seayuo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||sokyeshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||lgfylc.fit^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gdysgjss.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.tioryuo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dsdysy.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sfuasdu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.znahwbeqhsxiij.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cjnfbjehqjhe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jhqisgrjz.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -7979,11 +10229,14 @@ ||xiapi.geminbtc.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||ronghejt668.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yizikaijzen.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.cjsjjdhh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.opuiehg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.sayuety.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ayfudsg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.csdshchs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.eyghhd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sokfdjoo.com^$dnsrewrite=NOERROR;A;34.102.218.71 -||app.sayuety.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.myjfjy860.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||buy.mines13.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||chats.vhurkl.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.myjt18.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8003,6 +10256,7 @@ ||www.fbgfhhjjj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.juudjn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kkuudl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mdufyhibg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.mmmkkk8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||web.downloadgiochipc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jnvenqnda.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8021,6 +10275,7 @@ ||app.shikong.cf^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.fengying.click^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.shikong.cf^$dnsrewrite=NOERROR;A;34.102.218.71 +||a-go-mall.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||fenghuacap.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fenghuaglobal.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fenghuasec.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8032,11 +10287,14 @@ ||fenglong707.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||fenglong717.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||fenglong909.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||fenglong919.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.sfgj668.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||369shoptw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||greatbayasia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||greatbaystock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bairdzb.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bairdzb.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.blackrock.host^$dnsrewrite=NOERROR;A;34.102.218.71 ||ek.qinfjkt.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||gs.xoeigjt.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||mt.ojtnpm.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8054,6 +10312,7 @@ ||aap.btkakjndeqs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||aap.vbbzgbswas.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.paymallso.today^$dnsrewrite=NOERROR;A;34.102.218.71 +||ml.goodsstuffs.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||tw.goodsstuffs.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.newmall.space^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.jsdfugd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8064,10 +10323,17 @@ ||www.mjb.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.rallyville-chtw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.pascqdxtsgbcda.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||go.goodsstuffs.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||go-tian-xia-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shop-tian-xia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shoptianxia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shopping-king-asia.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||shoppingking-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||acting.cyberllsr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twse.cyberllsr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.cyberlerr.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.awk92.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||as888.winfuzhong.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.aw8z5.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zw585.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.revanjer.site^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8084,6 +10350,7 @@ ||syungomart.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||syungoshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.w1rz.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.pvnipcc.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||thetdxzq.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||expresstw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.nrxadd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8109,6 +10376,13 @@ ||dkofiy.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||dpfktj.online^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.daksc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.koiwlsc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.xuopaxs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.buianeut.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hgiyotugn.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ieuybvbg.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.jjjyeghbjf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.zopwix.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||fartrust.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||fesfunds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.djkgopsj.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8120,6 +10394,10 @@ ||www.godtwyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tcwyvh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.twfdsyh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.byusrgh.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sahgjag.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.wautyyud.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.bycfwk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gtcfs.site^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.xihciwouqgd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ivdhhg.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8133,6 +10411,12 @@ ||www.xvnhjkjqewquk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yggjvl.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||ynnsnezx.tw^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gvioawzi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yrncnfghdi.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.yuedfs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.copeor.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kioess.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.rtwifjh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.kca888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tw88.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||g0111.jy51688.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8141,14 +10425,25 @@ ||www.jy688.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.ahfndbga.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.tbhjascb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||kcamo.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.jgnfjkfnvk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kcvndvk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jrjr128.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jrjr168.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jrjr178.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jrjr1888.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jrs1188.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jrs1588.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jrs1788.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||jrs1888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jrjr128.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sandscasino.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.1000959.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.7898265.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.csaedes.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.csased.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.best-sands.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.sandswins.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||cc.568910.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||js57264.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jsyl1268.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8160,6 +10455,7 @@ ||www.bnsreg.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jsgj6788.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jtas.co^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.mybitbank.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||jiinn1186866.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jiinn186866.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||jiinn68866.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8178,7 +10474,12 @@ ||www.jscoin8.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jinfudaii.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jh777.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.zhihell.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||tzbets88.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.lopcvs.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.wrrhuy.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.geughb.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.kloeds.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||innovation.parvenucomax.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||innovation.tech.tennis^$dnsrewrite=NOERROR;A;34.102.218.71 ||parvenu.parvenuco.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8189,14 +10490,19 @@ ||jingzuan16881.ink^$dnsrewrite=NOERROR;A;34.102.218.71 ||jd9899.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||j1800.jinltw.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||commercial-loans-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||goodminoney.click^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.chaohaodai.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.hluws.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||t6699.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||t1699.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||ofa77.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||ofa777.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ofa999.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||jyuyang2.jyuyang1.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ginzashopping.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.spvisitdubai.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.welcomeginza.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.si1verstar.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.silver5tar.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||w1n.sliverstar988.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8207,6 +10513,7 @@ ||silverlionstock.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||silverliontrade.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||silverliontrades.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||slstocks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.hlkmc.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.pqmdk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||d.qxpfr.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8219,7 +10526,9 @@ ||vwk.staioiled.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.staioiled.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||zhe.staioils.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||huaguans.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.liveexhanget.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||dreamofxin888.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.5566sdjys.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.xd19789.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||branbibi03.xin88c.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8227,20 +10536,28 @@ ||shunfa39ff.xin88c.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||xg66c.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||h5.xintinv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||fil.cryvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||link.cryvip.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.winplusassets.co^$dnsrewrite=NOERROR;A;34.102.218.71 ||xinda-tw.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||api.ancjknae.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dhfudhf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.mnbtdfs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.yxbdghsn.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.didisdbg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.djdjwo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hnfgdjdj.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.qigmyw.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.quslba.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||bubu68.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.vkjsakjaks.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.zajxuhuakjehj.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||twapp.kaiyangguoji.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jctaiwan.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||h5.minhongkejilive.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||albaba.yhj16688.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.tmao219.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.youhui1688hxak.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||music.oc-coin.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.amazo-shop.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.stock8.info^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8259,10 +10576,13 @@ ||www.nscarpe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wxwx.bcetq.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||yahoopt.shop^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.koduoe.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||huizhirongssl.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.amgjiv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.kpeuyj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.ofykoj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.amgjiv.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.kpeuyj.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.btjoqshjxah.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.cvjjqosheak.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.shenlwqnelasd.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8273,8 +10593,12 @@ ||www.vjhajhgeua.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.zha.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.uzsnf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||yunding404.club^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.duaujjjd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.usndjdf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fhvbfbv.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.foiwlos.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ngjdiue.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ruten-store.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruteen-malls.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.ruteenshop.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8289,15 +10613,21 @@ ||app.xcrsdff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bvdshff.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.feiyiban.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.stcxxt.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.sxxzyk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.suixlc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sxxzyk.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||lin.sfofoyuan.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||linshouji.fssfnbx.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||linshouji.jueai12321.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.jueai12321.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sdassets.life^$dnsrewrite=NOERROR;A;34.102.218.71 ||brk.ninja^$dnsrewrite=NOERROR;A;34.102.218.71 ||zenithfinancial.com.tw^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.bsdjhbhjc.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ncxkbnd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||wind.vns168.net^$dnsrewrite=NOERROR;A;34.102.218.71 +||sinoclick.club^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fei-xiang9.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.feixianing.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.flyairplaness.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8308,6 +10638,10 @@ ||www.gj2006.com.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hkssq.cc^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.hkssq.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hkssq.online^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hklotte.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ckcfnk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ckcfnk.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||a010.tf7688.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||dk42ol.sjxqzvv.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||igomarket.net^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8318,9 +10652,14 @@ ||igomarketsy.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||igomarketsy.net^$dnsrewrite=NOERROR;A;34.102.218.71 ||igomarketsys.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.bjdjsidd.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.gaoqnbo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ifeyhnh.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ooethyr.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.pokdkd.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.msjhfue.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.nmoep.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.tuvjkind.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||gl.ytotvom.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||da.gs3323.fun^$dnsrewrite=NOERROR;A;34.102.218.71 ||download.00888.tw^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8329,12 +10668,22 @@ ||www.fastcdn.shop^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.mozmcg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.fdyjkl.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.sachtip.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.haccsvip.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.sachsvip.org^$dnsrewrite=NOERROR;A;34.102.218.71 +||tw.savccvip.org^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.shfjsu.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||dn.gsjt668.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||aallotgv56874ff.cuicfif.cn^$dnsrewrite=NOERROR;A;34.102.218.71 ||zfb16880.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.dgpy3m.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||hb.gaogaoingb.cn^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.hcaaqz.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.hkcpma.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.hmwkea.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.hnbzql.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hnbzql.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.hcparm.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.mdbgughf.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.snjsjhdhs.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.namebude.com^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8345,19 +10694,30 @@ ||www.hzyouyushenghuo.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sdqhwapdd.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.sidhqhakh.xyz^$dnsrewrite=NOERROR;A;34.102.218.71 +||hdassets.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hdassets.life^$dnsrewrite=NOERROR;A;34.102.218.71 +||28game.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ksdgw.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.qffgu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.xxdlo.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||account.hkjran.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.chvuke.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.soccsk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.soccsk.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.xfeiqt.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||3scasino.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||ctopengxing.vip^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ctoxingzhou.cc^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.hznfjc.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||hulive.info^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.vnbnbsbaoioi.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.top-fulfill.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||t.top-fulfill.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.bjszyj.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||m.ciqwwr.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.kgyatu.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||m.ouesgb.top^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.egrrlv.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.gunonq.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.neohuo.top^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.oqcbjm.top^$dnsrewrite=NOERROR;A;34.102.218.71 @@ -8370,7 +10730,12 @@ ||app.admvkgld.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.bjkcvcv.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.hjbvgf.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||app.kaojud.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||ryuhvjc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.dnujgyrhg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||www.qmksk.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.ryuhvjc.com^$dnsrewrite=NOERROR;A;34.102.218.71 +||www.xouesso.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.ifuehqej.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.sggderg.com^$dnsrewrite=NOERROR;A;34.102.218.71 ||app.yabfhjsa.com^$dnsrewrite=NOERROR;A;34.102.218.71 diff --git a/TW165.txt b/TW165.txt index 4c95553..a5a163f 100644 --- a/TW165.txt +++ b/TW165.txt @@ -1,10 +1,17 @@ +||www.0857.games^ ||www.0xdappplus.com^ ||www.0xplusdapp.com^ ||www.0xboost.finance^ +||www.0xboost.app^ +||app.100exbtc.top^ ||download.100exbtc.top^ ||www.100exbank.com^ ||tw11st.com^ +||11streetshope.com^ +||11streetth.com^ ||11stglobal.com^ +||asia.11stc.com^ +||asia.11sts.shop^ ||asia.11stw.com^ ||global-11st.com^ ||www.11stglobal.com^ @@ -31,13 +38,21 @@ ||www.onecopi.vip^ ||www.onecopx.vip^ ||www.onecss.vip^ +||1hdtwdown.com^ +||1hdstoretw.com^ ||jdtwmall.com^ ||my1hd.com^ +||aimhb.shop^ ||www.2okextw.com^ ||www.2okextw.net^ ||vip118.aaa1788.net^ ||www.aaa1788.com^ +||www.3itw.com^ +||app.djjduhbsk.com^ +||app.jiuawpoa.com^ +||car51.net.cn^ ||www.89i.tw^ +||mansionno8.cc^ ||www.ts775.com^ ||www.91shopes.com^ ||app.gzxshg.top^ @@ -45,12 +60,14 @@ ||www.akact5.com^ ||www.akkaw.com^ ||apowercheck.com^ +||app.empirebts.com^ ||aachain.app^ ||aaex.asia^ ||aaex.club^ ||aaex.in^ ||aaex.win^ ||apk.aave-tw.com^ +||apk1.aave-tw.com^ ||www.aavemaxprofinance.com^ ||www.aavepromaxfinance.com^ ||www.aavvec.com^ @@ -88,6 +105,7 @@ ||www.admfx-vip.com^ ||members.aegloballink.com^ ||www.aegloballink.com^ +||mex.aegonxs.com^ ||mkp.aemda.com^ ||yongwang-hk.com^ ||asfggbb.top^ @@ -109,23 +127,36 @@ ||ai-internationald.com^ ||ai-internationale.com^ ||ai-internationalf.com^ +||ai-internationalfa.com^ +||ai-internationalgk.com^ +||ai-internationalgp.com^ ||ai-internationali.com^ ||ai-internationall.com^ ||ai-internationalo.com^ +||ai-internationalqa.com^ +||warrioroi.com^ +||www.warrioroi.com^ ||safepal.aigrid.site^ ||safepal.aigridex.com^ ||safepal.aigridpro.com^ +||safepal.aigridw.com^ ||www.aicmks.com^ +||aims-tw.com^ ||aims-coins.top^ ||aism-tw.top^ ||aismexit.com^ +||www.aismexco.com^ ||www.aismexit.com^ ||www.aismexj.com^ ||www.aismexk.com^ ||www.aismexz.com^ ||aismex.com^ +||aismexbio.com^ ||aismexd.com^ +||aismexiks.com^ ||aismexmts.com^ +||aismextnt.com^ +||aismexuct.com^ ||www.aismex.com^ ||www.aismexd.com^ ||www.aismexq.com^ @@ -146,10 +177,12 @@ ||xakkaax.com^ ||www.hifly09826.top^ ||www.hifly92093.top^ +||www.aldibuy.com^ ||www.alexdnys.top^ ||www.alexjtdx.com^ ||888ama.com^ ||auniswap.top^ +||amb-ss.com^ ||www.amcvvc.vip^ ||www.amedyu.vip^ ||www.ameiat.vip^ @@ -161,21 +194,28 @@ ||www.tcnnzbsc.vip^ ||www.amgmall.com^ ||www.amgmall.org^ +||www.amgmall.site^ ||etzv.bfsaqpro.xyz^ ||gjyc.gwysn.social^ ||rwey.fdsjy.ltd^ ||vbhk.bcxsg.social^ ||aness.cc^ ||www.ane-aa.com^ +||www.anecoin.cc^ +||www.aneex.cc^ ||www.anevip.com^ ||ankex-btc.club^ +||ankex-btc.life^ ||ankex-btc.online^ +||www.ankrmxe.com^ ||anti178.com^ ||anti261.top^ ||ianti178.com^ ||ianti666.xyz^ ||ianti999.top^ ||www.aoesben.vip^ +||www.aoexjp.vip^ +||www.aoexpl.vip^ ||apexcoin.tw^ ||cropty5138.apexcoins.cc^ ||crypto5138.apex-coin.co^ @@ -215,25 +255,43 @@ ||www.atexns.cc^ ||atfx-tw886.cn.com^ ||atfxwealthbtc.com^ +||m.atfxvip.cc^ +||www.atfkknp.com^ ||intimemtfx.com^ ||www.infoatfx.com^ +||tsgtw.atgmyyy.shop^ +||tsgtw.atgmyyy.xyz^ +||tsgtw.atomx.club^ +||tsgtw.atomx.fun^ +||tsgtw.atomx.life^ ||tsgtw.atomx.live^ ||tsgtw.atomx.me^ +||tsgtw.atomx.space^ ||at168.info^ ||app.88au8.com^ +||contractda.com^ +||contractog.com^ +||contractst.com^ +||contractwe.com^ +||cykcio.com^ ||aztvp.com^ ||www.ubspork.com^ ||down.avabroker-tw.com^ ||web.avabrokertrade.com^ ||www.avabrokertrade.com^ +||avatbectoplink.com^ +||avatdiero.com^ +||avaxiyr.com^ ||www.avax-financemax.com^ ||www.avax-max.com^ ||www.avax-tradeplus.com^ ||www.avax-tradepro.com^ +||www.avaxiv.com^ ||winner.avisxcrypto.com^ ||art.awdcx.com^ ||www.awdcx.com^ ||www.first.awdcx.com^ +||www.axexxvip.com^ ||www.axtdjbe.com^ ||www.axtewbv.com^ ||www.axtfhio.com^ @@ -260,12 +318,15 @@ ||www.aavemarket-pro.com^ ||www.aaveprox.com^ ||www.aavespro.com^ +||www.aavvefinance.com^ +||www.bflzwbf.com^ ||aa5265.com^ ||hre.twaberd.com^ ||wdd.twaberd.com^ ||wmm.aberiu.com^ ||wsd.aberiu.com^ ||wsd.rberale.com^ +||abunshope.com^ ||velocity.nyseurex.com^ ||www.acelitmalls.com^ ||acestops.com^ @@ -282,7 +343,10 @@ ||activtradestw.net^ ||www.activtradestww.com^ ||www.activtradetw.com^ +||aemdenfex.com^ +||www.amtcoltd.com^ ||www.adrvnecd.com^ +||m.aemdenfx.com^ ||twaeonco.com^ ||twwelcome.com^ ||welcomeaeon.com^ @@ -292,21 +356,36 @@ ||mvs.aerwinnes.com^ ||www.aerwimes.com^ ||appskqtat3fihbjy.jiabohao.com^ +||htps.ainetwkes.com^ +||htps.ainetwkpnyt.com^ +||htps.ainetwkvit.com^ +||htps.ainetwot.com^ +||htps.ainetwotyu.com^ +||tp1.ainetwk.com^ ||nftesla.online^ +||www.ainoce.live^ ||www.ainose.live^ ||www.ainose.xyz^ +||www.ainoce.xyz^ ||aircash.cc^ ||m.aircarbon.cc^ ||wealth.aisagoldmxs.com^ ||www.aisagoldmxs.com^ +||aitopit.com^ +||www.aiyfproex.com^ ||ada.alcoaiesr.com^ ||duo.alcoaiesr.com^ ||fyl.alcoae.com^ ||kgw.alcoaesr.com^ ||kgw.alcoaiesr.com^ ||syf.alcoae.com^ +||ava.alconaster.com^ +||elf.alconasisr.com^ +||elf.alconaster.com^ ||s.aliexpressmxz.vip^ ||w.aliexpshool.vip^ +||www.aliexp-app.com^ +||alibabaquan.tw^ ||www.alibaba-seller.com^ ||www.alisoso-shop.com^ ||17f84.jssiuhr.com^ @@ -318,6 +397,7 @@ ||allemall.com^ ||www.allemall.shop^ ||www.allemall.vip^ +||www.maxalleshop.vip^ ||www.oebuy.vip^ ||allencapital.online^ ||allepro.shop^ @@ -328,13 +408,22 @@ ||www.allscoin.com^ ||h5.usallygroup.com^ ||h5.usallystock.com^ +||app.xiunjmi.com^ +||www.dsgyfb.com^ +||www.lotiso.com^ +||www.sfsakdja.com^ +||www.wretrfydt.com^ ||alpha-finace.com^ ||alphafinace.com^ ||alphafinacec.com^ ||alphafinaceca.com^ +||alphafinacecz.com^ ||alphafinaced.com^ +||alphafinaceoq.com^ ||alphafinaceq.com^ ||alphafinacex.com^ +||www.alphafinaceca.com^ +||www.alphamjb.com^ ||user.alyforex.co^ ||user.alyforex.com^ ||h5.tw-amana-pro.com^ @@ -345,6 +434,7 @@ ||a.mazonshopm.com^ ||a.mazonshops.com^ ||a.mazonshopt.com^ +||a.mazonshu.top^ ||a.mazonsmum.top^ ||a.mazonsmut.top^ ||amazinon.com^ @@ -359,6 +449,8 @@ ||www.5608720.vip^ ||www.amabionzshhell.com^ ||www.amazon24.vip^ +||www.amazon315.top^ +||www.amazon5228.top^ ||www.amazonfbajp.com^ ||www.amz-1.com^ ||www.amz-5.com^ @@ -368,7 +460,9 @@ ||www.amzsan.com^ ||www.amzshop.homes^ ||www.buyamzz.com^ +||www.jpipshop.com^ ||www.opamzss.com^ +||www.temu-us.cc^ ||amb267.com^ ||gbp.amcorx.com^ ||gbp.annrc.com^ @@ -380,14 +474,23 @@ ||tigerlord.annmrx.com^ ||ammmine.org^ ||pn3.sechcn.com^ +||www.adidowns.com^ +||www.aidhscapp.com^ +||www.aidhscdown.com^ +||krd.yurenied.com^ ||cs.aafcry.top^ ||cs.cmacbg.xyz^ ||cs.feffee.top^ ||cs.fusgth.top^ +||cs.fzuzpf.xyz^ ||cs.hnsgjr.top^ ||cs.tahark.top^ ||cs.tzdtkm.top^ ||cs.ykfygg.top^ +||frhtau.top^ +||ttaszr.top^ +||www.frhtau.top^ +||www.zdrgep.top^ ||xcv.knzgsm.icu^ ||xcv.petdhf.xyz^ ||xcv.rmtczk.sbs^ @@ -395,9 +498,12 @@ ||www.ncrncy.com^ ||sfa.visoser.com^ ||wsd.visfjie.com^ +||animocavd.com^ ||anybuymall.com^ ||anybuyshops.com^ ||anybuyshops.vip^ +||apecoinvc.com^ +||www.apecoinvc.com^ ||apollodex.vip^ ||www.apolloxexp.com^ ||app4world.com^ @@ -408,8 +514,17 @@ ||www.aqdgroups.com^ ||arbitrons.ai^ ||mkp.archnnesy.com^ +||www.artobaycdv.com^ +||acquisitio.aredefid.com^ +||acquisition.aredefiar.com^ +||aradmin.aredefiar.com^ +||balance.aredefi.com^ +||balance.aredefiar.com^ +||balance.aredefid.com^ ||balance.aredefie.com^ +||blance.aredefiar.com^ ||www.asfglobals.com^ +||shoponasia.com^ ||appdd.me^ ||sgd588.xyz^ ||athenaplace.net^ @@ -426,16 +541,33 @@ ||www.fxathenafx.com^ ||www.fxathennafx.com^ ||www.miranofx.com^ +||www.atlanioes.com^ +||www.atlantey.com^ +||www.atlantt.com^ +||www.atlanxios.com^ +||www.atlanxitxs.com^ +||it-atomicvt.com^ ||www.achtwd.shop^ ||www.auchanauntwds.com^ ||www.auchanauntwds.vip^ ||bdiexchange.ausmetw.com^ ||overlord.agugm.com^ ||overlord.ausmetw.com^ +||avatbsoprotop.com^ +||avatbtccotp.com^ +||avatdbtc.com^ ||kvictor.bleava.com^ +||link.megmgulk.vip^ ||www.avauur.com^ ||www.avant-vip.online^ +||fotumi.avastomes.com^ +||www0.avastm.com^ +||www0.avastmes.com^ +||www0.avastomes.com^ +||www0.avastuites.com^ +||azbitproe.com^ ||www.azygww.com^ +||brich.cyou^ ||bac7746.com^ ||h5.coinbac.net^ ||h5.coinbac.xyz^ @@ -447,9 +579,19 @@ ||www.bankcex.mobi^ ||www.o458jd83.xyz^ ||zhantop.bzeuk.com^ +||421ru.jsanrhs.com^ ||h5.batecoin.com^ +||h5.batecoin.net^ +||h5.batecoin.shop^ +||www.batecoin.com^ ||baetf.live^ ||www.baetf.xyz^ +||www.baetfc.top^ +||www.baetfg.top^ +||www.baetfh.top^ +||www.baetfn.top^ +||www.baetfs.top^ +||www.baetft.top^ ||bbs157.com^ ||bbs157.net^ ||bbs2001.net^ @@ -457,8 +599,10 @@ ||ibbs168.top^ ||ibbs168.xyz^ ||api.bbtc.gold^ +||bbvsfx.cc^ ||app.jinniuios2.com^ ||bchcoinex.com^ +||bchcoinexmc.com^ ||file.bchexchanges.com^ ||www.bchexchanges.com^ ||bckavip.com^ @@ -481,9 +625,12 @@ ||bcttina.com^ ||bcttnun.com^ ||geamlne.com^ +||lazadacmsomx.com^ ||user.bdgvip.com^ ||user.fxbdg.com^ +||dlf-88.com^ ||www.dlf-88.com^ +||www.elc-5.com^ ||www.elc-6.com^ ||buerap.com^ ||bulvs.com^ @@ -500,13 +647,25 @@ ||www.bfcwoz.com^ ||77ideal.cn^ ||www.bh1788.co^ +||bhilfg.com^ +||bhilga.com^ ||viodaatomicswap.com^ +||www.1ytuios.com^ ||app.bikbit.xyz^ +||www.bikoto.myftp.org^ ||wdd.bilyds.com^ ||bit.svipcoins.com^ ||d.p2bdwq.top^ ||www.bestbeo.com^ +||www.bitccoin.top^ ||bit.svip.name^ +||down.bit.vip0.shop^ +||www.bitexchaeyr.com^ +||www.bitexchang.com^ +||www.bitexchangoer.com^ +||www.bitexcpger.com^ +||www.biteyupgegr.com^ +||www.biteyupger.com^ ||sss.bitsrose.com^ ||twtw.bitsguss.com^ ||twtw.bitsrose.com^ @@ -514,16 +673,22 @@ ||bitewtx.com^ ||www.bitewtx.com^ ||bitekrc.com^ +||bitimnv.com^ ||bitvdsz.com^ ||www.bitekrc.com^ ||www.bitimnv.com^ ||www.bitvdsz.com^ +||bitk-eth.live^ +||bitk-btc.shop^ ||bito.win^ ||bitos.work^ ||bite500ags.top^ ||bite500es.top^ ||www.bite500ftp.top^ +||27a8.site^ +||2aa7.site^ ||www.bitsoine.com^ +||www.c053679f.site^ ||www.bizexs.club^ ||mz.usdtinvest.info^ ||tvttiy.vip^ @@ -534,6 +699,17 @@ ||www.mobile.bkoex.finance^ ||d.kpdwj908.top^ ||www.blexem.com^ +||jptw.bds8869.com^ +||bmdctd.com^ +||www.bmdgr.com^ +||www.bmdryg.com^ +||www.bmdtsj.com^ +||www.bmdyuv.com^ +||www.bntradetbh.com^ +||www.bntradeute.com^ +||www.bntradeyu.com^ +||www.bnwredergr.com^ +||bnbtr.net^ ||www.bnbtr.net^ ||app.lqvpma.top^ ||h5.ejpdlgv6.com^ @@ -542,12 +718,14 @@ ||m.zucppr.top^ ||www.ejpdlgv6.com^ ||boqconin.com^ +||boqfox.net^ ||m.boqfx.cc^ ||wap.boqex.vip^ ||www.boxbx888.top^ ||www.boxx.cyou^ ||www.brentcenter.top^ ||www.brentchk.top^ +||www.brenthk.top^ ||brk.foundation^ ||brk.ink^ ||brk.life^ @@ -561,6 +739,7 @@ ||aope.bsep.online^ ||aope.oxeoxe.co^ ||btc-sxs.club^ +||hit.hitbtcmk.digital^ ||sedfw.abb-mgs.com^ ||ymbi.hitbtcm.com^ ||ymdj.hitbtct.com^ @@ -590,6 +769,7 @@ ||www.btminka.com^ ||www.btminlu.com^ ||www.btminza.com^ +||btsedex.xyz^ ||bitcore168.com^ ||cryptobtx.com^ ||www.btxcoin.pro^ @@ -598,6 +778,7 @@ ||m.buxmarkets.vip^ ||www.buxasia.live^ ||www.buxasia.top^ +||www.buxmarkets.top^ ||bvgoing.com^ ||bwcryptos.com^ ||dejhq.com^ @@ -612,9 +793,14 @@ ||www.bitkbj.com^ ||www.bitkbm.com^ ||www.bybithtmls.com^ +||www.baicoine.com^ ||www.baicoins.com^ +||bezbcoin.com^ +||b-itopro.com^ +||bakin-vip.com^ ||bakin68.com^ ||baktta.com^ +||pc.bakktfx.cc^ ||www.bakkts.com^ ||www.bakktss.com^ ||www.bakkttw.com^ @@ -630,6 +816,8 @@ ||www.coindbank.top^ ||www.coinsdbank.top^ ||www.fxddonline.com^ +||www.bdswissdcx.com^ +||www.bdswissrrq.com^ ||app.begonia.today^ ||download.begoniapro.net^ ||art.belgemgiaes.com^ @@ -649,18 +837,27 @@ ||www.cafxbelmont.com^ ||www.exbellmont.com^ ||www.fxbellemont.com^ +||bellsmall.shop^ ||best-buy2.com^ +||bestbuy-ap.com^ ||bestbuys-app.com^ ||mylove188.top^ +||www.bestbuy-ap.com^ +||www.bestbuy-jp.com^ ||www.new188.top^ +||www.betcoinonline.com^ ||www.bewithvctw.cyou^ ||www.bewithvctw.top^ +||www.bgcge.cyou^ ||www.metaversepro-trade.com^ +||bhilio.com^ ||plusss.bk-bimax.com^ ||ntfin.me^ ||bibox-pro.org^ ||www.bicc66.com^ +||www.biconomys.vip^ ||www.biconui.vip^ +||www.biconzt.vip^ ||m.bigunclewd.com^ ||user.biggloballtd.com^ ||www.biggloballtd.com^ @@ -676,11 +873,16 @@ ||www.bikn-tw.com^ ||www.bikinge.vip^ ||www.bikivins.vip^ +||bikoto.myftp.org^ +||bikotocbd.top^ +||bikotoetc.top^ +||bikotoifc.top^ ||bikotousdt.top^ ||bikotovip.top^ ||www.bikuex.com^ ||bilaxy.fit^ ||end774.qoo9888.com^ +||jkf.metalsexz.com^ ||www.dexkhi.com^ ||dexkje.com^ ||dexveq.com^ @@ -703,6 +905,9 @@ ||bing-bon.xyz^ ||bingboncoin.com^ ||bingbonvip.com^ +||bingxgoo.com^ +||bingxoz.com^ +||bingxpq.com^ ||bingxpro.net^ ||bingxuu.com^ ||app.bingbonup-xh5.vip^ @@ -713,13 +918,15 @@ ||mobile.birbloom.com^ ||mobile.birbloom.net^ ||mobile.birbloom.org^ -||www.bitccoin.top^ +||www.biruias.vip^ +||www.biruibs.vip^ ||bingtdnj.com^ ||bingtrcy.com^ ||www.bingtrcy.com^ ||ab93.site^ ||bit-c.co^ ||www.bit-c.co^ +||www.bit-c.me^ ||www.bit-cone.com^ ||www.bit-cpra.com^ ||bit2cex.com^ @@ -728,6 +935,7 @@ ||www.bitgjis.com^ ||www.bithuh.com^ ||www.bitrber.com^ +||ht.bitbayshi06.top^ ||app-download.mitokenex.com^ ||app.bitcryptos.vip^ ||mobile.bitcrypto.top^ @@ -735,8 +943,10 @@ ||bitchret.com^ ||bitchrom.com^ ||www.bitchawe.com^ +||www.bitchrom.com^ ||www.bitcokeb.top^ ||bitex01.bitextech.com^ +||a.linsuxa1.com^ ||bitehtex.com^ ||bitfn-ex.com^ ||bitfnex-axe.com^ @@ -752,13 +962,23 @@ ||bitforapp.com^ ||expoex.top^ ||sdugnmmss1391.top^ +||www.bitglobali.net^ +||www.cmecoinbase.cc^ +||bithashsg.com^ ||www.bithashsg.com^ ||bitedax.com^ ||bitkeep2018.com^ ||bitkeyep88.cc^ ||www.bitkeep2018.com^ ||www.bitkeep2018pro.com^ +||www.heishijituan888.top^ ||www.bitkon.xyz^ +||www.bitkonvip.com^ +||www.bitkonweb.com^ +||bitkucoins.com^ +||bitkueth.com^ +||bitkusol.com^ +||www.bitkuex-coin.com^ ||www.bitkuex.com^ ||www.bitkulink.com^ ||www.bitkuus.com^ @@ -772,12 +992,20 @@ ||mex71.8bitmex.com^ ||mex99.6bitmex.com^ ||mex99.bitmex7.com^ +||www.bit-coinmhgdlx.com^ +||www.bitmex.top^ ||www.bnexsusdts.com^ ||www.winning92.xyz^ ||bitmxc.net^ +||www.bitmatmxq.com^ ||www.bitopmaket.com^ ||www.bitopmakt.com^ ||www.bittmartr.com^ +||www.bitvip-makt.com^ +||www.bitvipmakt.com^ +||www.bkexajn.com^ +||www.bkexzii.com^ +||www.bkexzil.com^ ||56bit.bitmexx03.com^ ||bit6.cc^ ||mex58.bitmexx02.com^ @@ -790,13 +1018,31 @@ ||www.bitmillion.cc^ ||www.bitmillion.one^ ||www.bitmillion.vip^ +||www.bitmillions.xyz^ ||aj.jmukde.top^ ||bitazaevc.com^ ||bitjvx.com^ ||bittopcs.com^ +||bitvab.com^ +||bitvaj.com^ +||bitved.com^ +||bitveh.com^ ||bizatadty.com^ ||www.bitvfb.com^ ||www.bitvikr.com^ +||bittopvdc.com^ +||bittorodvo.com^ +||bittorotnb.com^ +||www.bittoronx.com^ +||www.bittorore.com^ +||www.bittoroye.com^ +||bitturkeh.com^ +||bitturker.com^ +||bullisheh.com^ +||www.bitturkeh.com^ +||www.bitturkes.com^ +||www.bitvenan.com^ +||www.bitvenus-vip.com^ ||www.bitagle.com^ ||bitazadxss.com^ ||bitazafji.com^ @@ -828,6 +1074,8 @@ ||www.bittokenvds.com^ ||bitcomex.app^ ||bitcore66.com^ +||bitcorem.com^ +||bitcorem.net^ ||bitcores688.com^ ||busskin.com^ ||dahaipost.com^ @@ -854,11 +1102,13 @@ ||yhgoxa.cn^ ||bitnrv.com^ ||www.bitfarmes.com^ +||bitfnex-bxe.com^ ||www.bitfinex-vp.com^ ||www.bitssd.net^ ||www.bitstre.com^ ||www.euibt.com^ ||www.bitgatex.com^ +||download.bitex.ink^ ||download.bitexs.ink^ ||m.bitexs.ink^ ||www.bit-get-coin.com^ @@ -868,7 +1118,13 @@ ||www.bitgetar.com^ ||www.bitgetdh.com^ ||www.bitgetev.com^ +||www.bitgetsco.com^ ||www.bitgetwvz.com^ +||www.bitlkd.com^ +||www.bitmwu.com^ +||www.bitzkr.com^ +||bitgetgpx.com^ +||www.bitgetgpx.com^ ||bithels.com^ ||bitdju.com^ ||bitewbn.com^ @@ -878,6 +1134,7 @@ ||bitkan24.net^ ||bitkeep6688.com^ ||bitbfc.com^ +||www.blishp.com^ ||tsgtw.bitlo.cloud^ ||tsgtw.bitlo.fun^ ||tsgtw.bitlo.life^ @@ -886,19 +1143,40 @@ ||tsgtw.bitlo.site^ ||tsgtw.bitlo.space^ ||bitos.best^ +||bitos.club^ ||bitos.info^ +||bitos.top^ ||cb-bito.xyz^ +||bitocoin.cc^ +||bitopro.trade^ +||bitoproglobal.com^ +||bitopromax.com^ +||bitoprovip.com^ +||www.bitopro-vip.com^ ||www.bitopro.us^ ||www.bitoproex.vip^ +||www.bitoproglobal.com^ ||ttch.chubbd.com^ ||ttch.dtnez001s.com^ +||www.bitonicvz.com^ ||bitex.bitopay.vip^ +||aj.fdexba.top^ +||www.bitproash.com^ +||www.bitprocnd.com^ +||bitrefill.q58h2p.com^ ||bitrich555.top^ ||bitrich666.top^ ||bitrichbank.top^ ||bitrichbm.top^ +||bitrue-ex.com^ ||bitrue.finance^ ||bitrue.vip^ +||bitruely.com^ +||bitruexyz.com^ +||kcoinowner.com^ +||kcoinreg.com^ +||bitruehs.com^ +||bitruetrade.com^ ||app.qianff14.xyz^ ||bits-tw.buzz^ ||h5.taobao-6.top^ @@ -908,9 +1186,13 @@ ||www.bitsheng.top^ ||www.bitshengas.top^ ||www.bitshengems.top^ +||66be49fb.site^ ||karnscoin.karnscrypto.com^ +||www.bitspaye.com^ +||www.bitspayy.com^ ||app.bitspm.com^ ||d.app93yj.top^ +||d.bistampkrd.top^ ||d.bistamqjh.top^ ||d.bitstampkh.top^ ||m.bitsetc.net^ @@ -918,7 +1200,9 @@ ||vanm.bitstamp.ageny^ ||www.bisampnktj.com^ ||www.bisampyghj.top^ +||www.bistametb.top^ ||www.bistamftjh.com^ +||www.bistamgyf.com^ ||www.bitstampfks.com^ ||www.bitstampkoh.com^ ||www.bitstampktx.com^ @@ -926,14 +1210,22 @@ ||www.kwszva.top^ ||www.pqbpzve.top^ ||www.bitsten-otc.com^ +||app.bitsypay.com^ ||www.bittradingex.xyz^ +||bit3365.xyz^ ||bit852mm.xyz^ ||bitcon669.com^ ||bitrre6932.xyz^ +||bit9563.xyz^ ||51n.fun^ ||bitvavo.asia^ ||bitvavo.fyi^ ||bitvavo.site^ +||bitvening.com^ +||bitvenmax.com^ +||bitvenunzs.com^ +||www.bitvenusx.cc^ +||www.bivenhaze.com^ ||trade.bitword.net^ ||zgifts.bitwords.co^ ||zgists.bitswords.net^ @@ -942,8 +1234,11 @@ ||www.biud.top^ ||biztradecoin.com^ ||www.bkyhyoltd.com^ +||barist.online^ +||vndygv.online^ ||www.blackrockplus.net^ ||inm.instdld.com^ +||www.blocktsimax.com^ ||www.blocktsipromax.com^ ||www.ybiaktsxc.com^ ||geamlndt.com^ @@ -952,7 +1247,9 @@ ||www.blueberrypro.net^ ||download.bnextex.net^ ||m.bnextex.cc^ +||m.bnextex.info^ ||m.bnextex.net^ +||m.bnextex.org^ ||www.bodyshop166.com^ ||boniry.cyou^ ||boniry.xyz^ @@ -962,8 +1259,12 @@ ||www.bobbcoin.top^ ||www.boxboxx666.top^ ||www.boxxcoin.top^ +||www.brasaotpie.com^ +||www.brasaotus.com^ ||www.braskiewn.com^ ||www.braskioes.com^ +||www.brasukes.com^ +||www.brasuktres.com^ ||broker.brokertradex.top^ ||cdpvusb.com^ ||www.cdpmps.com^ @@ -979,19 +1280,35 @@ ||www.btcoin8.com^ ||aqq778.com^ ||www.btcturk-il.com^ +||btmaxpro.com^ +||btoplus.shop^ ||btoplus.top^ +||www.btoplus.net^ ||www.budagloge.com^ ||www.bukbene.com^ +||bulltechcitg.com^ +||bulltechdec.com^ +||www.bulltechcitg.com^ +||www.bulltechnci.com^ +||bullishb.com^ ||bullishd.com^ +||bullishib.com^ +||bullishr.com^ ||www.bullishb.com^ +||www.bullishd.com^ ||www.bullishib.com^ ||www.bulloptioncapital.com^ ||busskincoin.com^ ||m.buxzerox.com^ ||www.buxzeroe.net^ +||www.buyer-work.buzz^ +||www.buyer-work.click^ +||www.buyer-work.cyou^ +||www.buyer-work.life^ ||www.bbdown01.com^ ||www.bithoh.com^ ||www.bybitlines.com^ +||bydfi.xyz^ ||www.seeingshop.com^ ||cpatexcr.com^ ||cpatexdc.com^ @@ -1001,11 +1318,16 @@ ||tcaa.coinnaaldge.com^ ||www.coinatcanna.com^ ||www.coinnaaldge.com^ +||ht.cbexbei02.top^ +||ht.cbexjiu01.top^ ||ht.cbexjiu02.top^ +||ht.cbexjiu08.top^ +||ht.cbexshi01.top^ ||cblcsdcs.com^ ||www.cblcnrt.com^ ||www.cbntw.site^ ||www.cboet.com^ +||cbx-coinvip.com^ ||cbxcoinex.com^ ||cbxcoins.vip^ ||cdcamop.com^ @@ -1018,14 +1340,18 @@ ||www.cdpa.vip^ ||www.cendken.com^ ||vxceshop.com^ +||cceexx68.top^ ||cexcoin.org^ ||cexcoins.cc^ ||cextvcoin.vip^ ||cex.5bitnet.net^ ||cexapp.net^ ||cexapp.yanma888.com^ +||cexio.link^ +||www.cex-ioex.cc^ ||www.cexio.link^ ||www.cexio.top^ +||www.cexioex.cc^ ||www.cexiopro.online^ ||www.cfareseunrs.com^ ||sfa.gevgold.com^ @@ -1037,6 +1363,7 @@ ||www.cheap-homema.fun^ ||www.cheaphome.top^ ||www.cheaphome01.store^ +||mhneome.kowhtj.buzz^ ||chorderct.com^ ||chorderxi.com^ ||www.chorderct.com^ @@ -1045,8 +1372,12 @@ ||ciexpro.xyz^ ||www.ciexpro.net^ ||cip2u.com^ +||www.c2pinfo.com^ +||fff.ccwuwkd.buzz^ +||www.tkwl75marll.cc^ ||www.zbitcoin.vip^ ||clsastock.com^ +||clsatrade.com^ ||cm100.cc^ ||www.cm100.cc^ ||cmcwgie.com^ @@ -1062,6 +1393,8 @@ ||coinme-y.com^ ||coinme666.cc^ ||coinme678.cc^ +||coinme690.cc^ +||coinme875.cc^ ||coinme888.cc^ ||exchange.cmecoins.co^ ||exchange.cmecoins.top^ @@ -1080,6 +1413,7 @@ ||cmetw.com^ ||tog.cmetw10.com.tw^ ||tw2.cmetw10.com.tw^ +||cmivpg.com^ ||1689835386.zs2934.vip^ ||daoo.cmouks.com^ ||ravv.cmouks.com^ @@ -1092,8 +1426,11 @@ ||account.coach-steps.com^ ||coachfundco.com^ ||top4h5.xcmud.top^ +||coinjar1.com^ +||h5.coinlifee.com^ ||932ap.lbtechn.com^ ||h5.coinparks.net^ +||m.coinparks.net^ ||coinrf.esisgk.top^ ||coinrf.ygzkfr.top^ ||comexwallet.com^ @@ -1112,6 +1449,11 @@ ||user.medisou.vip^ ||user.winpro.wiki^ ||users.medisou.com^ +||www.coiningsa.com^ +||www.coiningua.com^ +||www.cscoin-tw.com^ +||6375289.com^ +||www.6375289.com^ ||csdinjf.com^ ||csdirer.com^ ||csdixse.com^ @@ -1126,6 +1468,8 @@ ||csl369.top^ ||gifclubclub.xyz^ ||ctc-defi.com^ +||bi.cpkqldf.buzz^ +||inter.odnwjh.buzz^ ||bi.ctiib.top^ ||www.ctrlinvestmentwa.com^ ||www.ctrlinvestmentwss.com^ @@ -1134,6 +1478,7 @@ ||b52singapore.top^ ||digitrone.site^ ||johyvula.cyou^ +||psdjks.art^ ||qassdszxxz.top^ ||qypuhuvo.cyou^ ||solveme.me^ @@ -1145,8 +1490,15 @@ ||www.cvkseye.com^ ||www.coinvvv.com^ ||www.cxmtradong.com^ +||cykcbc.com^ +||cykcog.com^ +||cykcpc.com^ +||cykcsr.com^ +||cokx6836.com^ ||cyn3217.com^ +||cyn3919.com^ ||cyn6859.com^ +||www.cyn3919.com^ ||gt888.cableoc.com^ ||wwv.cableoc.com^ ||yingfu.cablemn.com^ @@ -1159,6 +1511,7 @@ ||www.cptstocks.com^ ||www.ctglobals.com^ ||www.ctstocks.com^ +||careerbuilder.cloud^ ||app.tiruoutiequ.com^ ||carousellshop.com^ ||carousellyshop.vip^ @@ -1167,22 +1520,31 @@ ||vip.cashgocoin.xyz^ ||www.adfxpro.com^ ||www.castillo-otc.com^ +||orangexu.com^ +||cdapnbvx.com^ +||cdipnbip.com^ +||dciscoan.com^ ||mercadoivim.com^ ||centradeb.centrade.tw^ ||centradec.centrade.tw^ +||m.stirade.tw^ ||www.cen.strades.tw^ ||www.cien.trades.tw^ ||centralshoping.com^ ||www.central886.com^ ||www.cgwlcoin.world^ +||www.finextexa.com^ +||www.finextexc.com^ ||www.metaetherpro.xyz^ ||www.ybiakrsxa.com^ +||www.ybiakrszid.com^ ||chainceinfoex.top^ ||www.chaince-coin.cc^ ||www.chaince-ex.cc^ ||www.chaince86.cc^ ||www.chaincecoinex.com^ ||www.chainceex.com^ +||www.chainceinfo66.top^ ||www.chainceinfoex.top^ ||www.chainex88.top^ ||berserker.financesnew.site^ @@ -1193,6 +1555,8 @@ ||tokage.charlesfinance.store^ ||chifis.com^ ||www.chimecorpq.com^ +||mhneome.suw8au.buzz^ +||mhneome.ymaqukk.buzz^ ||web.citcoin.top^ ||www.citcoin.top^ ||app.kwslpj.top^ @@ -1207,6 +1571,7 @@ ||www.clear-skys.com^ ||www.clear-skys.net^ ||www.clearsky.cyou^ +||clickmoney.club^ ||www.climpup10.com^ ||www.climpup11.com^ ||www.climpup12.com^ @@ -1225,6 +1590,7 @@ ||www.cloud-bitcoin.vip^ ||coinettc.com^ ||coineuj.com^ +||coinwjda.com^ ||www.coinwjda.com^ ||coinsri.com^ ||www.coinsri.com^ @@ -1248,10 +1614,19 @@ ||www.ambvt.com^ ||www.btdke.com^ ||www.btsiw.com^ +||coin-9c15.info^ ||coin-ace0.info^ ||cointfx.com^ ||aafg8.com^ ||bit.coin-en.net^ +||coin-abd.cc^ +||coin-basepro.net^ +||coin-dnf.cc^ +||coin-npc.cc^ +||condetrade-pro.net^ +||cs.amggad.top^ +||eth-coinbass.co^ +||eth-coinbass.net^ ||inex-gemin.vip^ ||sal-mining.tools^ ||www.coin-amd.com^ @@ -1262,6 +1637,7 @@ ||www.fglines.com^ ||www.nsdhexvip.com^ ||www.shorttermtradings.com^ +||dapp.goldstarpro.top^ ||metawealth.one^ ||mobile.coinbene.top^ ||mobile.coinbene.shop^ @@ -1270,6 +1646,8 @@ ||link.qddxu.top^ ||n2top.xcmud.top^ ||top2coin.ojesh.top^ +||coindeer.vip^ +||coindeerex.com^ ||coindexchange.cc^ ||coinex.college^ ||coinex.mobi^ @@ -1278,6 +1656,8 @@ ||m.coinexeu.online^ ||m.kexni.com^ ||www.coinex.tv^ +||m.coinexeu.xyz^ +||www.gemoini.co^ ||www.cofwet.com^ ||www.coinlistusdtzc.com^ ||coinmarketcaps-us.com^ @@ -1300,6 +1680,10 @@ ||mdapp.coinrulen.com^ ||mdapp.coinrulen.vip^ ||dapp.coinrun.org^ +||cointrproaqa.com^ +||cointrproaqx.com^ +||cointrprocvu.com^ +||cointrprouvm.com^ ||coinunions.com^ ||coinuniontw.com^ ||www.coinunion.exchange^ @@ -1314,6 +1698,7 @@ ||www.coinwstorm.com^ ||www.coinwstrive.com^ ||coinyct.vip^ +||www.coinzoomhex.com^ ||www.coinabb.com^ ||coin-arf.com^ ||www.coin-mun.com^ @@ -1324,9 +1709,13 @@ ||coinbeside.info^ ||coinbeside.net^ ||www.coinc-c.vip^ +||coincheckebn.com^ +||coincheckedd.com^ +||coincheckmyb.com^ ||coinchecktrb.com^ ||www.coincheckcsx.com^ ||www.coincheckedd.com^ +||www.coincheckhy.com^ ||www.coincheckrvn.com^ ||coincomex.xyz^ ||www.ccomnow.xyz^ @@ -1345,18 +1734,27 @@ ||h5.execocoin.com^ ||nvevbg.top^ ||www.gts999666.com^ +||download.coininvest.live^ ||h5.coinitems.com^ ||www.coinitems.com^ ||coinjar1.vip^ +||www.coinlead-ex.cc^ ||www.coinlead-fx.cc^ ||www.coinlead.top^ ||www.coinlead.vip^ ||www.coinleadex.cc^ +||www.coinleadexs.cc^ +||www.coinleadmain.cc^ ||coinlifee.com^ ||www.coinlifee.com^ +||www.coinlifee.vip^ +||yq5rn.jsanrhs.com^ ||www.coin-mamas.com^ +||www.coinmamacoin.com^ ||www.coinmamamaasia.com^ ||www.coinmamamabtc.com^ +||www.coinmamamabtcusd.com^ +||www.coinmamamatwdud.com^ ||www.coinmamamatwn.com^ ||www.coinmamamausd.com^ ||www.coinmamausda.com^ @@ -1374,28 +1772,48 @@ ||www.obus.top^ ||coinoffee.vip^ ||www.coinoffee.com^ +||cgtcoin.cc^ ||nson.coinone.today^ ||coinpalm.com^ ||www.coinparks.net^ ||www.coinpayex.com^ ||coinsafeal.com^ +||coinsafeal.vip^ ||safecoinal.com^ ||coinsbit.life^ ||coinsbit.pro^ +||www.coinsbiac.com^ ||www.coinsbial.com^ +||www.coinsitaae.com^ +||www.coinsitaah.com^ +||www.coinsitaar.com^ +||www.coinsitac.com^ +||www.coinsiti.com^ +||www.coinsitu.com^ +||www.coinzbc.com^ +||www.coinzbn.com^ ||www.coinzbo.com^ ||www.coinzby.com^ +||eth-coinsee.vip^ +||coin-store.vip^ +||coinstoreseve.com^ ||www.kucointw.cyou^ ||www.kucointw.net^ ||www.kucointw.top^ ||www.kucointw.xyz^ +||coinutsih.com^ ||coinverse-ex.com^ +||coinverse-ex.top^ +||www.coinvxse.com^ ||www.coinwmax-protrade.com^ +||coinzoomiv.com^ +||coinzoomwe.com^ ||client.collart.co^ ||client.collart.group^ ||shopping138.com^ ||comex-pro.org^ ||comexpro.top^ +||ittcomex.com^ ||mycomexpro.com^ ||ucomexpro.com^ ||precious.comexexchange.com^ @@ -1403,8 +1821,11 @@ ||www.compoundsavy.com^ ||h5.shopconch.com^ ||shopconch.com^ +||cfa.marketcfjh.com^ ||www.corpcapitaltrade.com^ +||ctosmos.site^ ||h5.costcogogg.com^ +||www.appskcostco.com^ ||www.cccssscocto.online^ ||www.ccdcostcosdg.com^ ||www.ccsscostoss.com^ @@ -1418,16 +1839,26 @@ ||www.costcoyahh.com^ ||www.csscostcooss.com^ ||www.cssostcoos.com^ +||www.heybacostco.com^ +||www.kasbacostco.com^ ||www.manipcostco.com^ +||www.newrocostco.com^ +||www.ohallnlcostco.com^ +||www.samucostco.com^ ||www.sssccgfdgjcostcoo.com^ ||www.sssgfdgjcostcoo.com^ +||www.wienercostco.com^ ||costerexchange.com^ ||trsde.cotchmax.store^ ||trsde.cotchmax.xyz^ ||cvadeds.com^ ||www.coupangmanager.com^ ||www.coupangsell.com^ +||www.cpchanel.com^ +||www.cpcommodity.com^ ||www.cpfeedback.com^ +||www.cpmanger.com^ +||www.cpparcel.com^ ||www.covermall.tw^ ||www.xw7vv.xyz^ ||www.xw9vv.xyz^ @@ -1446,11 +1877,17 @@ ||www.crexnis.vip^ ||crossglobalmall.cyou^ ||crossglobalmall.xyz^ +||crossglobalmoa.com^ +||crossglobalshop.com^ +||crossglobalshop.shop^ ||crossglobalshop.top^ ||crossglobalshop.vip^ ||crossglobalshop.xyz^ ||globalshop-ping.com^ ||www.iacvtrp.top^ +||cr1688.duckdns.org^ +||crypto.servep2p.com^ +||mhneome.crscapital.top^ ||bstaceusdt.com^ ||bstbtccmax.com^ ||bstfreebtc.com^ @@ -1460,19 +1897,38 @@ ||bstotplink.com^ ||crypto356.cc^ ||setabee.bstapti.com^ +||www.cryptoacz.com^ +||www.cryptodej.com^ ||www.cryptompd.com^ +||www.cryptompe.com^ +||www.cryptoqwq.com^ +||www.cryptoqwr.com^ +||www.cryptoyzx.com^ +||www.cryptozal.com^ +||www.cryptozqp.com^ ||www.gtznycq.top^ ||cry.arsaneljc.com^ ||cryptoisland-btc.life^ ||www.cryptobulls-ap.com^ ||www.cryptobulls-ap.net^ ||m.cryptoex.ai^ +||bstdtmeth.com^ +||bsterceth20.com^ ||bstetherc20.com^ ||bstethustd.com^ ||bstmaxeth.com^ ||bstrec20usdt.com^ +||bstsmarting.com^ ||bstusdtmax.com^ ||cryptobtx.net^ +||cs.dhskkr.top^ +||cs.kdzrcg.top^ +||www.cryptagrop.vip^ +||www.confluxivn.com^ +||www.cryptonexyin.com^ +||intelligentun.com^ +||bi.crazrieu.xyz^ +||bi.woofr3e.xyz^ ||m.cubicwalletex.com^ ||www.cubicwallet.com^ ||cultivate66.cultivaterccd.top^ @@ -1486,18 +1942,38 @@ ||rays.currency.golf^ ||rays.currency.town^ ||rays.currency.university^ +||www.curvedga.com^ +||www.curvedgs.com^ +||www.curvemxj.com^ +||www.curveqwi.com^ +||www.curveqwo.com^ +||www.curveqwq.com^ +||www.curveqwt.com^ ||www.curveqwy.com^ ||cyouclout.com^ +||cyouclout.xyz^ ||h5.btchmeg.com^ +||ltc.cryvip.top^ +||hrsupei.com^ +||www.hrsupei.com^ ||disb.vip^ +||dhdarkdrtw.com^ +||dhdarkuit.com^ +||dhdsrgd.com^ +||www.dhdsrgd.com^ +||www.dheatout.com^ ||www.daiether-defipro.com^ ||www.daietherpromaxdefi.com^ ||achieve.rtcmt.com^ ||xieshou.ucmot.com^ ||fotumi.danarxos.com^ +||fotumi.danaxras.com^ +||fotumi.daoraiaus.com^ +||fotumi.daoraus.com^ ||gocted.danarx.com^ ||gocted.danaxras.com^ ||gocted.danaxraus.com^ +||www0.daoraiaus.com^ ||www0.daoraus.com^ ||bvxgat.com^ ||www.gatbu.com^ @@ -1513,19 +1989,28 @@ ||c-i-b-c.com^ ||www.vip-dbex.com^ ||m.dbg-coltd.com^ +||fafa.dcgomarket.com^ ||m.dc-token.com^ ||m.jssscylc.xyz^ ||m.token-dc.com^ +||max.dcgorich.com^ +||win.dcpalyb.com^ ||www.dcenbus.vip^ ||www.dceunus.vip^ ||www.dcexbas.vip^ +||www.dcexjas.vip^ ||dd-btxpro.com^ ||dd-btxpromax.org^ ||ddbcar.com^ +||ddaxao.com^ ||ddexlub.com^ +||ddaxave.com^ ||ddaxril.com^ ||ddexcui.com^ ||ddexefk.com^ +||ddexokl.com^ +||ddoxjil.com^ +||ff.hk7.club^ ||1defiwalletweb3.bio^ ||ai-crypto.cloud^ ||ai-crypto01.shop^ @@ -1549,7 +2034,9 @@ ||dew333.top^ ||dew555.top^ ||dew888.top^ +||dex-dodo.com^ ||dex-ls.com^ +||dex-qs.com^ ||dex-tx.com^ ||dex.dew168.top^ ||dex222.top^ @@ -1567,6 +2054,7 @@ ||www.dfi-moneybf.com^ ||www.dfi-moneybg.com^ ||www.dfimoneyaab.com^ +||www.dfimoneyzbp.com^ ||www.dfimoneyzcp.com^ ||www.dfimoneyzdp.com^ ||cryptobch.xyz^ @@ -1579,15 +2067,20 @@ ||dfx168.top^ ||dg168a.com^ ||dg168ce.com^ +||dg168yy.com^ ||dgnew168.com^ ||www.dgdgdg58.com^ +||88wkyfjrk.vip^ +||diamondsrich.com^ ||www.diamondsrich.com^ ||diem16.xyz^ +||digchain.world^ ||www.divine66.com^ ||sport969.com^ ||dmmbitcoin.co^ ||m.dmmbitcoin.io^ ||h5.domp.vip^ +||www.dotcoin.top^ ||web.dt111.net^ ||www1.dt599.net^ ||www.dtccded.com^ @@ -1607,9 +2100,19 @@ ||www.dwsvwed.com^ ||www.qunyiis.com^ ||www.qunyonl.com^ +||www.dxddus.vip^ +||www.dxduip.vip^ +||www.dxduis.vip^ +||dyplusttr.com^ +||dyplusyrj.com^ +||quidaxcev.com^ +||app.wenuci.com^ +||app.xpoeiis.com^ +||app.yijinngtw.com^ ||dacforex.com^ ||trader.dacforex.com^ ||www.daclandcapitalfx.vip^ +||www.daiether-plus.com^ ||www.daietherfinance.com^ ||ttwi.daasoomes.com^ ||www.daasomes.com^ @@ -1629,6 +2132,7 @@ ||www.day4wld.top^ ||www.day4wld.world^ ||testt.dcnsxstx.co^ +||dexe.pw^ ||www.debankdex.com^ ||www.debankduo.com^ ||www.decodesfxs.com^ @@ -1645,11 +2149,15 @@ ||www.deeznnzb.vip^ ||h5.deltaxian.com^ ||dappweb3.club^ +||www.3betraise.com^ ||derctnx.com^ ||dercte.com^ ||derctex.net^ ||www.derct.net^ ||crypto.minerbitcoin.org^ +||www.derivativear.com^ +||www.derivativejvue.com^ +||www.derivativeurt.com^ ||a004.desirxer.com^ ||a007.desirxer.com^ ||a017.desirxer.com^ @@ -1686,16 +2194,21 @@ ||icrowncenterga.top^ ||long.icrowncenterga.top^ ||max88.icrowncenterga.top^ +||app.bdeoisl.com^ ||app.digitalassethot.com^ +||down.digiezy.com^ ||down.digitalassetv.com^ +||digitalbase-clo.com^ ||directedgeep.com^ ||www.dmv4trading.com^ ||asia.jpdhmstore.com^ ||buy.worldstoremy.com^ +||global.buysevenstore.com^ ||mobile.jpdhmstore.com^ ||to.jpdhmstore.com^ ||tw.asianstorego.com^ ||tw.goworldstore.com^ +||www.buysevenstore.com^ ||www.dmallshopping.com^ ||www.dokodemostore.com^ ||www.goworldstore.com^ @@ -1704,6 +2217,8 @@ ||www.doncoinvip.com^ ||members.drcfx.com^ ||www.dremata.com^ +||s12.sssuav.com^ +||stw15.sssuav.com^ ||www.drtsche.club^ ||www.drtsche.fyi^ ||www.duxgoldingltd.com^ @@ -1719,6 +2234,7 @@ ||www.east-shop.top^ ||e.ebcfinancetw.com^ ||ebcfinanaitw.com^ +||ebcvumk.com^ ||www.ebcerbr.com^ ||www.ebcrmty.com^ ||www.ebcrvb.com^ @@ -1730,7 +2246,9 @@ ||www.jamercari.com^ ||www.temujp.com^ ||fg.edxmarkets.top^ +||grid.circce.top^ ||hhh.edxmarkets.top^ +||www.circce.top^ ||www.edxmarkertrade.top^ ||www.edxmarkets.top^ ||www.edxtrade.top^ @@ -1739,17 +2257,31 @@ ||eexmarket.top^ ||eexmarket.xyz^ ||super.bk-egmax.com^ +||kay.drolitaklos.buzz^ ||kay.egscenter.top^ +||kay.egsloop8.top^ ||kay.egsstart.top^ ||kay.egsstarten.top^ ||kay.egsstartus.top^ +||kay.kiekeiha.buzz^ +||trade.egslpmore.buzz^ ||www.egsstart.top^ +||www.eha.ac^ +||eoscxs.com^ +||eosibme.com^ +||eosobc.com^ +||www.eoscxs.com^ +||www.eosibme.com^ +||www.eosrn.com^ +||erc1o.com^ +||hre.usmarketex.com^ ||miraviavip.com^ ||www.ali888999.com^ ||www.eshop-tw.life^ ||www.eshop-tw.monster^ ||www.eshop-tw.shop^ ||www.eshop-tw.today^ +||hbsnyy.com^ ||www.a6balance.xyz^ ||www.daddy789.xyz^ ||www.et6one.xyz^ @@ -1769,14 +2301,18 @@ ||defi-mining.cc^ ||dh6.ink^ ||ethcoinmar.com^ +||ascendexgolf.vip^ ||www.erc-deficoin.top^ ||ascendex.top^ ||ascendexdecred.com^ +||ascendexmagic.com^ ||ascendextoken.cc^ ||dearn.vip^ ||dearnclimeddefi.com^ +||dearndefi.cc^ ||dearndefi.com^ ||dearnnode.cc^ +||defiascendex.com^ ||defiflexpool-vip-a.com^ ||defiflexpool-vip-c.com^ ||defiflexpool-vip-s.com^ @@ -1802,6 +2338,8 @@ ||etwcoin.com^ ||www.etwcoin.com^ ||www.etxixt.club^ +||apk1.eurexttw.com^ +||ev-scgws.top^ ||excgend.com^ ||exclents.com^ ||www.excvhuwe.com^ @@ -1809,31 +2347,44 @@ ||exdtechinc.com^ ||www.exdclub.com^ ||h5.exmoer.com^ +||mstl.futurescfd.online^ ||exneschanges.com^ ||my.expforex.net^ ||expectamkt.com^ ||www.honsqunlian.com^ +||www.exmartpros.com^ ||app.eyingli.com^ +||taiwan.eztoday.xyz^ +||utc.eztoday.xyz^ ||download.ezdanex.org^ +||eabuiopiiy.com^ ||www.easycos.vip^ ||easytok3.com^ ||www.easytok5.com^ ||www.easytok7.com^ ||www.fjx6.com^ ||client.eazyshop.top^ +||home.eazyshop.top^ ||www.eazyshop.top^ ||ebangl.com^ ||www.e-buys.net^ ||www.e-buys.top^ ||www.go-ebuy.net^ +||m.ecforex.com^ ||www.ecforex.com^ +||www.ecforexfx.com^ ||paxos.vip^ ||btbt.egaxm.com^ ||www.egamxs.com^ ||egoamadgo.com^ ||www.eiightcapfx.com^ +||www.nscjh.com^ ||www.ieightcapfx.com^ ||www.eightvcapfx.com^ +||intelligenteh.com^ +||intelligenthe.com^ +||intelligentiu.com^ +||intelligentiy.com^ ||intelligentltd.com^ ||www.eliabanking.com^ ||ellandroadcapital.me^ @@ -1860,11 +2411,14 @@ ||etherbk.io^ ||etherbk.site^ ||c.szerocn.com^ +||eth.coinpledge.top^ +||eouclub.com^ ||www.ethprorun.com^ ||www.ethrunplus.com^ ||www.ethtsi-max.com^ ||www.ethtsiplus.com^ ||www.ethtsipro.com^ +||app.ethicj.com^ ||app.ethicq.com^ ||app.ethicu.com^ ||app.ethicw.com^ @@ -1872,15 +2426,20 @@ ||make8.xyz^ ||www.aamake99.com^ ||www.etimtoken1.com^ +||www.etimtoken123.com^ +||www.etimtoken188.com^ +||www.etimtoken211.com^ ||www.etimtoken4.com^ ||www.etimtoken5.com^ ||www.etimtoken79.com^ +||www.etimtoken88.com^ ||app-eth.com^ ||asia.etfuneoro.com^ ||asia.etliforo.com^ ||etlifeoro.com^ ||etoraieryos.com^ ||etoro-teh.live^ +||fff8888.etorackctory.com^ ||honey789.top^ ||myth.etoraeotes.com^ ||myth.etoraieryos.com^ @@ -1906,6 +2465,7 @@ ||fg.euronext-tranport.top^ ||sa7.euronext-tranport.top^ ||sa7.euronext-transcoins.top^ +||www.shopateurope.com^ ||www.erxtowut.online^ ||www.eurtwoxt.site^ ||www.eurtwoxt.store^ @@ -1949,9 +2509,12 @@ ||dl.elfwo.top^ ||m.elfpt.top^ ||mt.f868.net^ +||www.f8cons.vip^ ||www.fg5000.com^ ||www.fg90000.com^ +||www.sun-shinefarm.vip^ ||www.fb197.com^ +||fckzoie.vip^ ||galei.financialcontrol.xyz^ ||www.bteensbu.cyou^ ||www.fcchainv.vip^ @@ -1963,6 +2526,7 @@ ||bit876.cyou^ ||plattw.birdies.top^ ||h5.fdextf.com^ +||ht.htkjlsliu02.top^ ||ht.htkjlsliu06.top^ ||ht.kjcoinliu06.top^ ||ht.kjcoinwu06.top^ @@ -1973,6 +2537,7 @@ ||www.fdsbwhw.com^ ||www.fdseji.com^ ||www.fdsmet.com^ +||feex-exchange.cc^ ||feex.cc^ ||feex.vip^ ||www.feex-exchange.cc^ @@ -1988,26 +2553,43 @@ ||www.ffexcoin.com^ ||www.ffexff.com^ ||www.ffexe.vip^ +||ff.volatilcykc.com^ ||ffc3.volatils.com^ ||ffd3.volatils.com^ +||fhlcp.com^ ||fhldb.com^ +||fhlio.com^ ||fhlpx.com^ +||balance.firodede.com^ +||balance.firodedi.com^ ||belc.bellagioweb.vip^ +||fmfeig.com^ +||fmfwcdv.com^ ||fmfwci.com^ ||fmfwhv.com^ +||fmfwvn.com^ ||fmfwyn.com^ ||www.fmfwdsc.com^ ||www.fmfweif.com^ +||www.fmfwubk.com^ ||www.fmfwvn.com^ ||hongnan13.vip^ ||hongnan16.vip^ ||client.fpmarkets1.com^ ||b.fpmarkotast.com^ +||fp66-fx.net^ ||web.fpmsh98tt.cc^ ||wz.iui30.com^ ||www.fpmarketes.com^ ||www.fpmarketest.com^ +||f4.drwlwlgjof.top^ +||f4.huohuhaha.top^ +||f5.cu8lawn.top^ +||f4.fpscoin.top^ +||f5.fpsfree.top^ ||f5.fpstrade.top^ +||f7.drwlwlgjof.top^ +||f7.fpscoin.top^ ||www.tradeopi.com^ ||www.tradeyuk.com^ ||user.flourisifx.com^ @@ -2024,6 +2606,7 @@ ||aln888.ftxenzs.com^ ||tree16888.txnnezsf.com^ ||wwbbit.txnnezsf.com^ +||www.ftw-ltd.com^ ||max.ftxus100.com^ ||sebftx.com^ ||www.dftxcs.com^ @@ -2055,10 +2638,14 @@ ||www.fuext.com^ ||www.fuextr.com^ ||www.fullersds.com^ +||fumeixiangchang.com^ +||lowvisionva.com^ ||xydsp.com^ ||fxdealabaab.com^ ||fxdealb.com^ ||fxdealpro.com^ +||fxfxoofx.com^ +||fxioxfxox.com^ ||fxoproxx.com^ ||fxopxofx.com^ ||fxxpproxy.com^ @@ -2071,11 +2658,17 @@ ||fhglobalzhsbank.net^ ||fhglobalzhses.com^ ||fhglobalzhsss.com^ +||fhglobalzhsth.com^ +||fhglobalzhsths.com^ +||fhglobalzhsthsse.com^ +||fhglobalzhth.com^ ||free.webygun.com^ ||fx.archboon.com^ ||fxcmtw18.com^ ||fxcmtw889.com^ +||ga.gnafxcm-yum.com^ ||n.fxcm-web.vip^ +||tfenwz.xyz^ ||thigg.top^ ||www.fxcmus52.top^ ||www.global-fh.com^ @@ -2097,8 +2690,14 @@ ||www.fxttd.com^ ||www.jiofxt.com^ ||www.sftxxe.com^ +||fxtf.tw^ ||eve.ccfxopen.com^ ||fa888.ttowwohuy.com^ +||fairdeskenv.com^ +||fairdesktyi.com^ +||www.fairdeskenv.com^ +||mybit2233.com^ +||cex.888vip123.com^ ||fanbtctw.com^ ||fanbtctw.net^ ||www.fanbtctw.com^ @@ -2108,8 +2707,13 @@ ||crm.fob-fx.net^ ||www.fancy-fx.com^ ||fantomcc.com^ +||fantomdvv.com^ +||fantomreb.com^ ||fantomss.com^ ||fantomyh.com^ +||www.fantomcv.com^ +||www.fantomrn.com^ +||www.fantomtbr.com^ ||eve.faregndt.com^ ||whh.faregndt.com^ ||trader.farchf.com^ @@ -2140,10 +2744,16 @@ ||fchange166.xyz^ ||fchange169.xyz^ ||fchange187.xyz^ +||h5.unisshope.com^ +||h5.unisshopping.com^ +||felixobv.com^ +||www.fairdeskdct.com^ ||win5688.fyunz.com^ +||www.fex-all.cc^ ||www.fex-global.com^ ||www.sccdinfo.com^ ||bitcnmgrd.com^ +||mybbs8899.com^ ||ceo8.fideltets.com^ ||ceo8.fidelyets.com^ ||ceo8.fidelyts.com^ @@ -2156,6 +2766,7 @@ ||www.ficnsxc.vip^ ||www.ifinancego.store^ ||www.finechk.com^ +||finexbox.xyz^ ||v345.cc^ ||ahkebkm.fnvezr.com^ ||growrich.finvizw.com^ @@ -2166,11 +2777,18 @@ ||www.first-coins.com^ ||www.firstcoinis.cn^ ||app.nasjdbwaq.com^ +||app.nenhlp.com^ +||app.piziim.top^ ||app.vncklie.com^ +||www.gopeid.com^ ||www.heiheigan.com^ +||www.ioelnw.top^ ||www.ivjuiujiuqw.com^ +||www.iwuaigh.com^ +||www.piziim.top^ ||www.sjgiodf.com^ ||www.skggkgk.com^ +||www.tyrgfhvbsc.com^ ||www.uhcuisvs.com^ ||www.vtnkqnbzjbqjq.com^ ||www.zxhvdjqwiueqk.com^ @@ -2180,13 +2798,21 @@ ||www.fitbelaeproer.com^ ||www.fitbelaerprofx.com^ ||flamgvip.com^ +||flash2deal.xyz^ +||www.flash2deal.site^ +||www.flash2deal.world^ ||flashcoin.cc^ ||ceo8.fideltkkers.com^ ||fhpfkipa.com^ +||fhpfkipy.com^ ||likantnet.com^ ||www.filpkart.life^ +||flip-ster.club^ ||flipster.finance^ +||flipster.plus^ ||flipster.pro^ +||flipsters.club^ +||flipsters.xyz^ ||flowbusiness.cloud^ ||flowextrade.com^ ||flowinves.com^ @@ -2206,6 +2832,7 @@ ||www.ziierrtes.com^ ||flyinrich.com^ ||www.flyinrich.com^ +||cnfapm.com^ ||kucmarkt.com^ ||www.fog-eefx.com^ ||www.forex88.net^ @@ -2215,11 +2842,16 @@ ||forex.mitotal.com^ ||forex.formiriam.com^ ||www.top5058.com^ +||operationalb.forthjism.com^ +||ulza.metalusltd.com^ +||ulza.metalustit.com^ ||client.foxglobal.info^ ||client.foxglobe.info^ ||client.foxglobe.pro^ ||www.foxglobe.net^ ||www.foxglobe.world^ +||foxbitynr.com^ +||www.franklintapp.com^ ||frubit.biz^ ||wap.frubit.co^ ||wap.frubit.info^ @@ -2228,7 +2860,12 @@ ||fsshop1.com^ ||s.fsshop2.com^ ||www.fsshop1.com^ +||www.bestftexchanges.com^ +||www.realftexchange.com^ +||www.siteftexchanges.com^ +||www.webftexchange.com^ ||www.funska.vip^ +||funny-buy.shop^ ||www.selec5in.xyz^ ||fc168.futurpayas.com^ ||mst1.futurescfd.online^ @@ -2240,19 +2877,26 @@ ||sfa.fuzitm.com^ ||rich.fxmarket66.com^ ||www.fxpromx.com^ +||www.hirkc.com^ ||www.peqfy.com^ ||eyhfxpro.com^ ||fxprder.com^ ||fxprkyc.com^ ||fxtrotrade.com^ +||www.cfhpf.com^ ||www.csvfxpro.com^ ||www.ehefxpro.com^ +||www.eyhfxpro.com^ ||www.fxprotw.tw^ ||www.fxtrotrade.net^ ||www.fxtrotradeze.com^ ||www.lqrer.com^ +||www.puuee.com^ ||www.vkfxpro.com^ +||www.xyfym.com^ ||rbinhood.cn^ +||fxfusion.info^ +||www.fxfusion.info^ ||fzangon.cyou^ ||fzangon.top^ ||fzangon.xyz^ @@ -2272,6 +2916,7 @@ ||www.gbeforex.com^ ||gbi.cc^ ||app.gbtc.win^ +||upteh.com^ ||www.gcese.com^ ||www.upteh.com^ ||d.gdacgk.top^ @@ -2279,6 +2924,9 @@ ||www.gdacex.com^ ||www.gdex-pro.net^ ||www.gdexio.net^ +||www.osigiteies.com^ +||www.osigiteugw.com^ +||www.osigmnier.com^ ||www.geak500s.com^ ||www.geaks500.com^ ||www.jscoin.geaks500.com^ @@ -2315,6 +2963,7 @@ ||gkbgroups.com^ ||gkbgrp.com^ ||d.gkfxprimes.com^ +||fotumi.glatfese.com^ ||gocted.glatfeaos.com^ ||gocted.glatfese.com^ ||lotiden.glatfe.com^ @@ -2325,11 +2974,17 @@ ||www.1peeeej.cn^ ||www.aqw886.cn^ ||www.drbbrb9.com^ +||www.feimaoid.com^ ||www.gggbbbn.com^ ||www.likeshoping.online^ ||www.luck7.plus^ ||www.rbeb55.cn^ +||www.tiantiangouid.com^ ||www.zldshop.online^ +||gmiusd.me^ +||huizhengbao.top^ +||m.ga-miexm.com^ +||www.g-miex.com^ ||www.huizhengbao.top^ ||www.gmiusfx.com^ ||besp.gmofirst.com^ @@ -2353,9 +3008,11 @@ ||gmxbank.top^ ||gmxbina.top^ ||gmxbtc.top^ +||gmxcbdc.top^ ||gmxecog.com^ ||gmxsxs.com^ ||gmxsxv.com^ +||gmxvip.top^ ||gmxyoun.com^ ||gmxytun.com^ ||www.gmxtron.com^ @@ -2366,8 +3023,12 @@ ||a168788.goresx.com^ ||a168788.gorsetasx.com^ ||coco01.goreasx.com^ +||gow11.com^ +||gowcoin.com^ ||5.gptgroup88.com^ +||gpt-ra.com^ ||gptcity.co^ +||www.gpttech.vip^ ||as88vip.tw-gra.info^ ||boy99.gra-fin.one^ ||boy99vip.gra-fi.info^ @@ -2376,13 +3037,20 @@ ||mkp.graext.com^ ||gs1658.com^ ||www.gscbx.com^ +||www.gscbxirs.com^ +||www.gscbxrs.com^ ||gsguscoin.com^ +||frypff.shop^ ||market4global.shop^ +||gtc.mmsssu.com^ +||gtc.peynen.com^ ||gtiglobalmarket.com^ ||gtimarkets.com^ ||www.gwiqz.com^ ||traoe.cc^ ||gvdcq.com^ +||www.tw-gvdmarkets.com^ +||www.bopott.com^ ||m.gaitameonline.cn.com^ ||wap.gaitameonline.net^ ||04800.cn^ @@ -2392,22 +3060,29 @@ ||bored.galmeory.com^ ||www.ioex4.com^ ||byapueqb.buzz^ +||dfnpebau.buzz^ ||gaifouy.com^ ||gaifunn.com^ ||gaifunq.com^ ||gate.rest^ +||gpnrhq.com^ ||hyxkftue.buzz^ ||vip.gaifunq.com^ +||vip.qwscff.com^ ||vip.yujpon.com^ ||www.che-shi.top^ ||www.gate-trade.xyz^ ||www.gate168.com^ +||www.gate1931.com^ ||www.gate2013.top^ ||www.gate3831.com^ ||www.gate7831.com^ +||www.gate863241.com^ +||www.gatee24.com^ ||www.gateio588apro.xyz^ ||www.gateiomax-defi.com^ ||www.gateks.cc^ +||www.gatepbds.vip^ ||www.gatepro.top^ ||www.gatesz.com^ ||www.heduckpsn666.xyz^ @@ -2428,19 +3103,29 @@ ||www.iooeexx.com^ ||xcdabsvx.buzz^ ||yujpon.com^ +||gatedex.club^ ||nldwwbqn.buzz^ ||raqqekwl.buzz^ ||geekshop.work^ ||geekshop.world^ ||m.geekshop.cloud^ ||apps-gemini.vip^ +||geminibrm.com^ ||geminiedn.com^ +||geminieed.com^ +||geminiem.com^ +||geminiirj.com^ ||geminived.com^ +||www.gemindcx.com^ ||www.geminiamax.xyz^ +||www.geminibrm.com^ ||www.geminiedn.com^ ||www.geminierv.com^ +||www.geminifni.com^ ||www.gemnsff.com^ ||www.librge.com^ +||www.ncgpna.com^ +||geminiup-vrfs.top^ ||pc.gemini-pro.co^ ||app.jfkskxciljvd.vip^ ||generalatlantictw.ga-nar.com^ @@ -2467,10 +3152,17 @@ ||usa.genesryktaes.com^ ||www.genesbo.com^ ||gentingclub.cn^ +||get4seed.top^ +||www.get4seed.cyou^ +||www.get4seed.site^ +||www.get4seed.world^ +||www.get4seed.xyz^ ||gexcoin.co^ ||m.gexcoin.co^ ||m.gexcoin.io^ ||m.gexcoin.me^ +||giant-shopingmac.com^ +||giant-shopingmy.com^ ||www.ginkgofx.com^ ||www.ginkgofxs.com^ ||www.gkglobals.com^ @@ -2480,6 +3172,7 @@ ||gmimarikets.ltd^ ||hantec.goldstar.asia^ ||www.aresebuy.com^ +||gblspp.com^ ||www.taikoomall.com^ ||www.twgouquanqiugou.com.tw^ ||www.twhkquanqiugou.com.tw^ @@ -2499,11 +3192,14 @@ ||topyangguang.top^ ||www.forexo49.com^ ||avavshop.com^ +||globalshopmax.com^ +||tao-1688.com^ ||tw.qitian.info^ ||www.ddyg.shop^ ||www.tgshops.live^ ||globalshop-cms.com^ ||happy-ecommercetw.com^ +||www.gmall-tw.icu^ ||www.gmall-tw.one^ ||www.gmall-tw.site^ ||www.gmall-tw.today^ @@ -2512,7 +3208,13 @@ ||www.gmarket-go.site^ ||www.gmarket-go.vip^ ||www.gmarket.life^ +||www.gmarket8.shop^ +||zh.aliexp-app.com^ +||zh.aliexp-app.vip^ +||zh.aliexp-shop.com^ ||gnexfe.com^ +||www.gnexfe.com^ +||cmy.shangcheh.com^ ||gaonrkts.com^ ||gmarket-go.online^ ||goleaderfx.com^ @@ -2524,8 +3226,12 @@ ||gomarkleadfx.com^ ||gomkinvest.com^ ||gomkinvest.online^ +||gomkinvest.site^ +||gomkinvest.vip^ +||togomkfx.com^ ||trader.gomarketshk.com^ ||www.gomarkcotd.com^ +||www.gomarketss.vip^ ||www.gomarklink.com^ ||com.shopcc.club^ ||www.goamazstw.com^ @@ -2546,8 +3252,17 @@ ||london.goldnsa.com^ ||london.goldnsales.com^ ||france.goldnsales.com^ +||goldtubebank.com^ +||www.goldtubebank.com^ ||gomaxltd.com^ +||gomaxltd.net^ +||www.jpgoonetc.com^ ||www.jpgoonet.com^ +||h5.365feicui.cn^ +||h5.365feicui.com^ +||new-h5.365feicui.cn^ +||gouldm.com^ +||www.gouldm.com^ ||art-charger.info^ ||art-charger.pro^ ||dextrade.org^ @@ -2557,13 +3272,19 @@ ||greatshop88.com^ ||www.greatshop.cc^ ||www.greatela.com^ +||greenmallit.com^ ||crm.greenstans.com.tw^ ||crm.greenstans.online^ +||www.newteawoo.com^ ||www.fxgroupro.com^ ||www.groupfxpro.com^ ||www.groupproltd.com^ +||www.group-on.info^ +||www.grovpon.info^ ||www.grovpon.life^ ||www.grovpon.org^ +||www.grovpon.xyz^ +||www.gsshoponlines.com^ ||wsd.ghwatop.com^ ||gushops-asia.com^ ||www.hbfsbit.cc^ @@ -2571,18 +3292,24 @@ ||www.hpcy8592.com^ ||nnds.hdex.social^ ||nnds.hdex.website^ +||hepojx.s3.ap-southeast-1.amazonaws.com^ ||arv.heronsxe.com^ ||arv.herorexe.com^ ||bored.heronros.com^ +||bored.heronroys.com^ ||bored.heronsx.com^ +||www.herokery.com^ ||www.hf-marketstw.com^ ||www.hf-marketws.com^ ||hfmp.info^ ||hfmp.life^ ||hfmpy.com^ ||hfmq.club^ +||www.hfmak.com^ +||www.hfmok.com^ ||www.hfmoq.com^ ||www.hfmpm.com^ +||www.hfmvsl.com^ ||www.pammtw.com^ ||www.stgdck.com^ ||his9603.cc^ @@ -2591,16 +3318,28 @@ ||www.brxhkd.top^ ||www.cfhkd.com^ ||www.fcrhkd.top^ +||www.hkdyrsq.top^ +||www.hkdsttd.network^ ||gf.hkex01.top^ +||zghk5888ex.com^ +||zghk5999ex.com^ +||hksccrnv.com^ +||www.hksccrnv.com^ +||www.hksccvib.com^ +||www.hksccwnv.com^ +||fff.ustaiwl.buzz^ +||www.hkvaex.buzz^ ||hmaex.vip^ ||www.hmexds.vip^ ||www.hntcoin.club^ ||newhocclg.com^ ||newhoccpodkk.com^ +||newshonicecol.com^ ||h5.hpsip.net^ ||h5.hpsipstock.com^ ||www.hpsip.net^ ||app.djqwiewhq.com^ +||www.mdfheth.com^ ||www.qhdjffhgh.com^ ||www.qnjvkfgfh.com^ ||smccw.com^ @@ -2611,8 +3350,11 @@ ||ht-forex.com^ ||ht-forexs.com^ ||htfx-forex.com^ +||htfxstopfx.com^ +||htfxtops.com^ ||m.ht-forex.com^ ||m.htfx-forexs.com^ +||www.htfxstop.com^ ||htfxtop.com^ ||testflight.tfdb.top^ ||app.hut8cz.com^ @@ -2623,34 +3365,61 @@ ||hai-gou.top^ ||haitaoglobal.com^ ||m.haitaoglobal.com^ +||www.haitaohdko.com^ +||www.haitaovet.com^ ||app.handa.club^ ||www.handavip.top^ ||sfa.hsuvsa.com^ ||wbb.hsuvsa.com^ +||www.haoruidjv.com^ ||pc.happygo.life^ ||www.harordg.com^ ||www.harordq.com^ ||www.harordr.com^ ||cpds2.huataii.com^ +||hbxxfe.website^ +||www.hbxxfe.website^ +||www.hbxxoe.online^ +||www.hbxxoe.site^ +||www.hcxxfe.shop^ +||www.hcxxfe.space^ ||www.hcxxle.xyz^ +||hegic-vip.com^ +||www.hegic-vip.com^ ||www.hegic.us^ +||helioj.com^ +||www.heliojexchangge.com^ +||www.heliojexchanggein.com^ +||www.heliojexchanggeit.com^ +||www.heliojexchanggepro.com^ ||ev2.hengchuai.com^ ||www.hengtuo-st6.com^ ||www.heromarketsltd.com^ ||hertfordfx.com^ +||www.hexxze.online^ +||www.hgxxhe.fyi^ +||www.hgxxhe.me^ +||www.hgxxne.xyz^ +||www.hgxxoe.fyi^ +||www.hgxxre.me^ +||highcoin.top^ ||hightop-dex.com^ ||hippo-tesc.com^ ||hippotesco.life^ ||www.hipnicedack.top^ ||hispeedtrading0728.cyou^ +||hispeedtrading0728.site^ ||hispeedtrading0728.top^ +||hispeedtrading0728.win^ ||www.hispeedtrading0728.com^ +||www.hispeedtrading0728.site^ ||www.hitbtch.com^ ||www.hitbtcn.com^ ||www.hitbcx.co^ ||hitechvm.com^ ||www.hi-tech-vm.top^ ||hivemalle.com^ +||hivemallq.com^ ||www.hmallcrossl.com.tw^ ||www.homemalltw.com^ ||www.homemals.com^ @@ -2674,19 +3443,34 @@ ||mq7fh.hnwstsc.com^ ||q11j8.skguoye.com^ ||www.hopoo.tw^ +||www.coinxig.com^ +||www.hotcoinkan.com^ ||www.hotcoinae.com^ +||www.hotcoinsm.com^ +||www.hotcoinsq.com^ +||www.hotcoinsv.com^ ||www.hotcoinsx.com^ ||www.kna0000.vip^ ||nnds.hingx.club^ +||nnds.houbi.fun^ ||hppy-shop.top^ ||hpy-shop.top^ ||ch992.huatasor.com^ ||cpds2.huataioa.com^ +||cpds2.huatasor.com^ +||www.huatruer.com^ ||asn.hubcultures.com^ ||www.hubcultures.net^ ||www.huifengm.com^ +||huigulimitedir.com^ +||huigulimitedm.com^ +||huigulimitedx.com^ +||huigulimitedy.com^ +||www.huigulimitedr.com^ +||www.huigulimitedy.com^ ||cabbyd.cc^ ||eve.huiycs.com^ +||qea.goldvned.com^ ||whh.goldvnjf.com^ ||whh.huitsbs.com^ ||whh.huiycs.com^ @@ -2703,8 +3487,15 @@ ||whh.huizitn.com^ ||www.huiziong.com^ ||nnds.hingx.bio^ +||nnds.hingx.life^ ||nnds.hingx.live^ +||nnds.hingx.site^ +||nnds.hingx.store^ ||nnds.hingxx.com^ +||nnds.houbi.space^ +||nnds.huobis.online^ +||nnds.huobis.site^ +||nnds.huobis.xyz^ ||usdp.pw^ ||www.huobjy.one^ ||www.huoxx.us^ @@ -2733,6 +3524,10 @@ ||www.idfpowertb.com^ ||www.idfpowerbb.com^ ||lydojg.online^ +||nkhbgy.online^ +||tnmghu.online^ +||veshappyenterprise.com^ +||pinkiestoreoneline.com^ ||i.inv-finder.biz^ ||n3.inv-finder.pro^ ||new.inv-finder.pro^ @@ -2741,9 +3536,11 @@ ||vv.inv-finder.biz^ ||m.igglobalhq.com^ ||m.igglobalhub.com^ +||www.igziu.com^ ||amtop-pro.com^ ||m.amtop.bio^ ||user.amtop.info^ +||www.igcotd.com^ ||ig-www.jingxcn.com^ ||www-ig.cjzqls.com^ ||www.igikl.com^ @@ -2760,7 +3557,21 @@ ||www.imccq.com^ ||www.imcyp.com^ ||www.my-imc.com^ +||www.sportssupport.top^ +||dolo.immxvip.com^ +||m.imxv9968.com^ ||www.immxvip.com^ +||www.imxmxvip.com^ +||www.imxxvip.com^ +||imoneyclub.vip^ +||bluesky.instermvner.com^ +||tiger8888.instaxe.com^ +||tiger8888.instaxoers.com^ +||tiger8888.insteryers.com^ +||www.instaxoers.com^ +||www.instaxtyes.com^ +||www.instermner.com^ +||www.insteryes.com^ ||capitalgain.intuitsdc.com^ ||net.ipdwio.com^ ||ipeenbb.com^ @@ -2768,6 +3579,7 @@ ||ipeeneb.com^ ||ipeenec.com^ ||ipeengb.com^ +||ipeenlk.com^ ||ipeenqe.com^ ||ipeenwb.com^ ||www.payironn.com^ @@ -2808,12 +3620,22 @@ ||portal.inceptial.online^ ||protal.incetial.com^ ||www.inceptial.com^ +||firmness.indexcfd.online^ +||www.indexcfd.online^ ||www.exonmy.com^ ||instabankbit.com^ ||instabankbitmax.com^ ||instabankcoin.com^ +||instabankcoins.com^ +||instabankmvp.com^ +||instabankpro.com^ +||instabankvip.com^ ||instabankxbit.com^ ||mycoinpsf77on.com^ +||instant-otc.com^ +||www.instancd-vip.com^ +||www.instant-coin.com^ +||www.instant-otc.com^ ||www.instmarkets.com^ ||www.inintels.com^ ||ic-programex.com^ @@ -2835,12 +3657,22 @@ ||www.interventionai.com^ ||www.invose.com^ ||cs01.ias-trade.com^ +||www.investorx8.com^ ||gwwwm.invinciblehk.com^ ||invinciblehk.com^ ||www.invinciblehk.com^ ||iotexpos.com^ +||jasdeceate.com^ +||jasdecxi.com^ +||jasdecybgd.com^ +||www.jasdecy.com^ ||www.richsmadehts.com^ ||www.richstradesss.com^ +||www.ricwdkwblsds.com^ +||www.ricwqgjrivds.com^ +||www.ricwutisblsds.com^ +||www.ricwutqirksas.com^ +||www.jdtns.top^ ||vjfsg.shop^ ||www.0gf22.fun^ ||www.vjfsg.shop^ @@ -2855,6 +3687,7 @@ ||skilling.jfdboker.com^ ||m.jinkraltd.com^ ||jkb8720.com^ +||www.globalm688.top^ ||www.globalm866.top^ ||www.globalm8868.top^ ||www.quanm8668.top^ @@ -2887,6 +3720,11 @@ ||www.jetswapvip.net^ ||www.jetswfx.com^ ||jetswapmt.com^ +||www.jnmonv.com^ +||www.jnmorm.com^ +||www.jnmocbx.com^ +||www.jnmosterexb.com^ +||www.jnmosterexc.com^ ||arexr99.jobscoiin.com^ ||arexr99.jobscoiines.com^ ||arexr99.jobscoiinesz.com^ @@ -2897,6 +3735,7 @@ ||arexr99.jobsvres.com^ ||arexr99.jobsvroes.com^ ||www.johnsontrademax.com^ +||www.johsonday.com^ ||www.johsonmarketpro.com^ ||www.johsonprotrade.com^ ||www.johsonstrivepro.com^ @@ -2906,6 +3745,7 @@ ||jsunholdings.com^ ||jsunsecurities.com^ ||jsunstock.com^ +||jihsuns.com^ ||jsholdings.com.tw^ ||jsunequities.com^ ||jsuninvest.com^ @@ -2934,26 +3774,34 @@ ||karnscoin.karnscoin.com^ ||www.kavabeef.com^ ||www.kavadappflymaxpro.com^ +||www.kavadapprunplus.com^ +||www.kavadapprunpro.com^ ||www.kavarunmax.com^ ||www.kavasun.com^ ||www.kavatsimaxpro.com^ ||www.kavatsipro.com^ +||root1.kcroaeees.com^ ||www.kcraeres.com^ ||www.kcrasreas.com^ ||www.kcresoes.com^ ||www.kcroaeees.com^ ||www.kcroraees.com^ +||kcmprime.com^ +||www.kcmprime.com^ ||kcoinpeg.com^ ||www.kcoinclare.com^ ||www.kcoindog.com^ ||www.kcoinfoot.com^ +||www.kcoinhaven.com^ ||vsw.kekgd.co^ ||vsw.kekgd.live^ ||vsw.kekgy.site^ ||mkp.kezarx.com^ ||mkp.kezeeros.com^ ||mvs.kereros.com^ +||kgtac.com^ ||kgtds.com^ +||kgtfx.com^ ||kgtpx.com^ ||kg1688.org^ ||www.kingex.top^ @@ -2961,6 +3809,8 @@ ||crypto.lion.training^ ||galaxy.kion.rocks^ ||galaxy.kion.work^ +||kitcoasiametalo.com^ +||cartoonasmtistorer.com^ ||crypto.lion.institute^ ||crypto.nion.space^ ||knnexse.com^ @@ -2975,8 +3825,13 @@ ||www.knnexem.com^ ||www.knnexzz.com^ ||gx58t.knxotraderoo.com^ +||kozpxp.vip^ ||www.kocerl.vip^ ||www.koicpl.vip^ +||www.kokouas.vip^ +||www.koplce.vip^ +||www.kozpxp.vip^ +||www.kokoubp.vip^ ||vsw.kekgy.club^ ||deposit.ktpoptuigonx.com^ ||www.ktpexclsive.com^ @@ -2989,6 +3844,7 @@ ||kaidexbina.top^ ||kaidexcbd.top^ ||kaidexcbdc.top^ +||kaidexcoin.top^ ||kaidexifc.top^ ||kangbo-ex.com^ ||kangboex.com^ @@ -2999,6 +3855,8 @@ ||www.fast8app.com^ ||kashop.asia^ ||kashopping.xyz^ +||www.kashop.ltd^ +||www.kashope.store^ ||www.kashops.shop^ ||curryency.kasnnii.com^ ||n.kasnsnss.com^ @@ -3008,6 +3866,10 @@ ||www.kasnsnss.com^ ||kcoinlis.com^ ||www.kcoinnet.com^ +||www.kcoinscream.com^ +||krd.kepindbe.com^ +||mer.kepinfd.com^ +||wyt.reassureyy.com^ ||v6shop.vip^ ||www.kianashop.com^ ||www.king-ex.cc^ @@ -3018,12 +3880,14 @@ ||www.kingst.cc^ ||app.kingchoice2.me^ ||app.kingchoice2023.me^ +||eve.kinrosscoldts.com^ ||n.kinvestops.com^ ||acs516.kinvestcap.com^ ||celufa.kinvestcap.com^ ||celufa.kinvestpes.com^ ||trade8.kinvestcap.com^ ||www.kinvestcap.com^ +||www.kinvestops.com^ ||bbb03.komitdi.com^ ||crm.konanos.com^ ||www.tokopedia-international.com^ @@ -3034,6 +3898,7 @@ ||www.koexchange.tw^ ||cajdydinje.com^ ||www.kpaterassoc-shop.com^ +||www.kpaterassoc.site^ ||www.red-mall.shop^ ||www.red-mall.xyz^ ||www.karewoldfx.com^ @@ -3041,6 +3906,11 @@ ||gbp.kkarn.com^ ||kcowebs.com^ ||kraken.qxanys.com^ +||www.kakenmxe.com^ +||www.kakenmxr.com^ +||www.kakenney.com^ +||www.kakenyqf.com^ +||www.kakenyyh.com^ ||www.kcowebs.com^ ||www.kra-exken.com^ ||www.kraken-ex.com^ @@ -3054,6 +3924,8 @@ ||www.kraproz.vip^ ||www.kravew.com^ ||www.moxccaer.com^ +||krisshop.online^ +||www.bzd12a.com^ ||cbninter-tw.top^ ||www.cbn-tw.cc^ ||www.cbn-tw.club^ @@ -3067,14 +3939,18 @@ ||www.coinmaketcapc.com^ ||www.kryptoriakuc.com^ ||cblcytb.com^ +||kseibeh.com^ ||kseibxe.com^ ||kseicso.com^ ||kseidcx.com^ ||www.kseidcx.com^ +||www.kseivyx.com^ ||615x.com^ ||ddexoc.com^ ||kucoin.kucoinexchanges.com^ ||kucoinpros.xyz^ +||kucointrade.ujlkucoiu.com^ +||kucointws.wfkucoiner.com^ ||m.btctoken.club^ ||m.maxh.space^ ||www.ku-bitcoin.com^ @@ -3087,6 +3963,7 @@ ||www.kucoineex.com^ ||www.kucointw.com^ ||www.kucoineee.com^ +||kucointwan.jdkucoiner.com^ ||www.kucoinpros.cc^ ||lvshop.com.tw^ ||www.lvshop.com.tw^ @@ -3095,14 +3972,17 @@ ||www.kybkvcb.vip^ ||www.kybnehdp.vip^ ||www.kybsuzx.vip^ +||krpbitc.com^ ||landbrt.com^ ||landvtb.com^ +||landxjd.com^ ||www.landbrt.com^ ||www.landxjd.com^ ||c10284.larusdv-v5.vip^ ||www.larusdv-v7.vip^ ||sklbank.com^ ||www.exlbnk.com^ +||www.lbacsek.vip^ ||www.lbankis.com^ ||www.lbauxub.vip^ ||www.lbioerc.com^ @@ -3111,11 +3991,19 @@ ||www.sklbank.com^ ||www.xclbank.com^ ||www.wintersatlantic.com^ +||www.lbacics.vip^ +||www.lumarvee.icu^ ||net.lcef2023.com^ +||acquisition.lcnycoinnd.com^ ||merchant.lcnycoind.com^ ||merchant.lcnycoinn.com^ +||merchant.lcnycoinnn.com^ +||www.lcnycoinnn.com^ +||xlm.lcxvip.top^ +||xrp.lcxvip.top^ ||www.lelong-shopping.com^ ||ts.an77.net^ +||www.leoysa.com^ ||www.seb129.net^ ||ts.mvk5658.net^ ||ka77.net^ @@ -3139,6 +4027,9 @@ ||www.lmphoness.com^ ||www.ltmanage.com^ ||www.ltmanages.com^ +||ase888.linexlife.top^ +||piq99.molica.buzz^ +||link-dex.com^ ||linqnew.com^ ||www.linqcc.cc^ ||www.linqnew.com^ @@ -3149,6 +4040,7 @@ ||www.llshopping-tw.com^ ||www.llsspshop-tw.com^ ||www.lltnwshop-tw.com^ +||lmtw886.com^ ||www.exchangelmax.vip^ ||lu-bpb.u2ubs.com^ ||www.blmex.top^ @@ -3170,11 +4062,14 @@ ||www.lmstaoes.com^ ||www.lmstem.com^ ||www.lmstotys.com^ +||tokenlon.club^ ||odtie.lotkgt.host^ ||odtie.lotkgt.shop^ ||odtie.lotkgt.work^ ||www.lpg6668.com^ ||www.lpggame.com^ +||s.b2b189.vip^ +||www.londse.com^ ||www.prokeylse.com^ ||www.zdsyy.com^ ||www.lllseexvip.com^ @@ -3182,14 +4077,20 @@ ||www.lsex-ex.cc^ ||www.lsex-main.com^ ||www.lsex-st.cc^ +||www.lsexcoin.cc^ +||www.lsexex.cc^ +||www.lsexs.cc^ ||www.lsekeysbatch.com^ ||www.lmstaeoiaes.com^ ||m.ltg-goldrockb.com^ ||max6969.com^ +||lyrxtzcvi.com^ +||www.lyrxtzcvi.com^ ||bts.lasadert.com^ ||bts.lasajvi.com^ ||www.lasadert.com^ ||sss.lasajave.com^ +||lastore.vip^ ||www.grlatoken.com^ ||www.ltlatoken.com^ ||www.nllatoken.com^ @@ -3215,6 +4116,7 @@ ||www.lazasatwff.com^ ||www.twamazgo.com^ ||zimg.imgstw.com^ +||www.lbanotx.vip^ ||www.mpbnn.fun^ ||lenivd.com^ ||lexctru.com^ @@ -3247,7 +4149,13 @@ ||www.lightwavtw.com^ ||www.lightwavtw.net^ ||www.lw-tw.com^ +||www.bitgoint.com^ +||www.mayepet.net^ ||h5.likescoin.com^ +||likescoin.com^ +||wjreg.ueeisa.com^ +||www.likescoin.com^ +||www.likescoinpro.com^ ||www.limit-tw.com^ ||linargogroup.com^ ||lippotw.com^ @@ -3255,10 +4163,15 @@ ||www.lipuex.com^ ||bts.liquisojt.com^ ||bts.liquidrtwe.com^ +||blockchain.lirunexpro.com^ +||blockchain.lirunpste.com^ +||mh6688.lirunetyro.com^ +||www.lirunetyro.com^ ||web.lisk-lsk.com^ ||www.lissshop.co^ ||www.lissshop.com^ ||www.shopliss.com^ +||acquisition.livepere.com^ ||www.lmmortality.com^ ||loboex-protrade.com^ ||loboexe.com^ @@ -3268,14 +4181,20 @@ ||usa.localtrdds.com^ ||usa.localtrrds.com^ ||usa.localtruds.com^ +||www.lonyady.com^ ||lonshiex.com^ +||iclouis.com^ +||www.iclouis.com^ ||www.jnulouis.com^ ||www.louiszbu.com^ +||www.rhtlouis.com^ ||www.taclouis.com^ ||www.vnulouis.com^ ||www.lovetobuyshop.com^ +||lovead.club^ ||www.klgame.top^ ||lundbergs.cs-bit.com^ +||h5.ebay88.shop^ ||www.m-shoptw.com^ ||w1.whps9898.com^ ||www.macubyues.com^ @@ -3301,6 +4220,14 @@ ||www.mekxem.com^ ||www.mekxis.com^ ||www.maxex24.com^ +||okxmax.com^ +||okxmaxx.com^ +||okxxmax.com^ +||maywctkc.com^ +||www.maywct.com^ +||www.maywctkc.com^ +||maywcteut.com^ +||mbcoalition.com^ ||mbnbtc.com^ ||app.mbtcet.com^ ||download.mbtc.finance^ @@ -3314,16 +4241,25 @@ ||mcquacps.com^ ||mcquagroup.com^ ||mcquamarket.com^ +||mcsdea.com^ +||mcsder.com^ +||mcsdic.com^ +||mcsdiu.com^ ||www.mcsder.com^ +||www.mcsdic.com^ ||www.tsvcrod.com^ ||www.mdbfbvs.vip^ ||www.mdbfis.vip^ +||www.mdbfnp.cc^ ||www.mdbfns.cc^ ||www.haccoins.com^ ||www.mkgreh.com^ ||www.mksdays.com^ ||www.mksdesk.com^ ||www.mkshufo.com^ +||xhtd9517.com^ +||xhtd9658.com^ +||fhlrg.com^ ||777vip.mexa-inv.one^ ||lv16888.vip-mexa.website^ ||sss555-1.mexa-vip.one^ @@ -3337,6 +4273,8 @@ ||www.vip-mexc.com^ ||www.mfcclub.com^ ||www.milliniumfg.com^ +||www.mfpffd.com^ +||www.mfptrht.com^ ||apa.mft-vc.com^ ||apd.mftbinary.com^ ||ntd.mft-infon.com^ @@ -3349,12 +4287,15 @@ ||www.mfei235.com^ ||www.mfei77.com^ ||www.mfei79.com^ +||mgs1088.vip^ +||mgs1288.vip^ ||mgs1788.com^ ||mgs1788.vip^ ||mgs1888.com^ ||mgs1988.vip^ ||mhex88.net^ ||mining2022.pro^ +||fg.mkaddets.top^ ||fg.mkaddgov.top^ ||fg.mkaddts.top^ ||fg.mkads.top^ @@ -3366,14 +4307,20 @@ ||www.merbcu.com^ ||www.metavuw.com^ ||www.meuior.com^ +||acquisition.mkrcoindlg.com^ +||acquisition.mkrcoinlodsn.com^ ||acquisition.mkrcoinnad.com^ ||acquisition.mkrcoinnag.com^ ||merchant.mkrcoindlg.com^ ||merchant.mkrcoinlodsn.com^ +||merchant.mkrcoinnad.com^ ||www.merchant.mkrcoinnag.com^ +||www.mkrcoindlg.com^ ||www.mkrcoinnag.com^ ||mkrex.club^ +||mkrex.net^ ||mkrex.ws^ +||www.mlcsx.com^ ||www.mokfxm.com^ ||buyergomomo.com^ ||dkcmomo.com^ @@ -3381,6 +4328,7 @@ ||formomoshop.com^ ||forshopmomo.com^ ||gobuyermomo.com^ +||gotheshop.com^ ||momobuyshop.com^ ||momobuystores.com^ ||momofunny.com^ @@ -3409,11 +4357,21 @@ ||mreew.com^ ||www.mrentsz.com^ ||www.mrewvc.com^ +||app.kopvc.com^ +||www.hjksfdhg.com^ +||www.jioessx.com^ ||www.opplhjunb.com^ +||www.xoiecn.com^ ||spp1688.metxwin.com^ ||spp1699.metxwin.com^ +||app.mtooexxt.com^ +||www.mtooexk.com^ +||www.mtooext.com^ +||www.mtooexw.com^ ||www.mtwxikai.com^ ||www.mt798.co^ +||www.mt798.net^ +||www.dmvyon.com^ ||www.jvgrbqn.top^ ||m.mugdctptoken.com^ ||www.mugdctptoken.com^ @@ -3423,11 +4381,13 @@ ||mwhmkt.com^ ||mwhsec.com^ ||www.mx124.cn^ +||www.svabdb.cn^ ||www.wreherg.cn^ ||mxc.encrypt-trc.com^ ||mxc.future-trc.com^ ||www.mxc-pro.com^ ||www.special-zone.cc^ +||magalu.one^ ||www.maicoincake.com^ ||www.maicoindb.com^ ||www.maicoinfb.com^ @@ -3439,7 +4399,10 @@ ||www.maicoinstrivepro.com^ ||www.maicoinsun.com^ ||www.maicointhis.com^ +||www.maiconf.com^ ||makerometa.net^ +||mangomall886.com^ +||mangomallonlines.com^ ||celufa.seagensyer.com^ ||kuan.seagensyer.com^ ||n.seagenx.com^ @@ -3448,8 +4411,12 @@ ||www.seagensyer.com^ ||zhong.seagensyer.com^ ||h5.manycoin.com^ +||ju4j7.sntimbs.com^ ||manycoin.com^ +||m.bereajoys.com^ +||www.martcgf.com^ ||www.martckjb.com^ +||www.martcvd.com^ ||www.martexiu.com^ ||www.martnec.com^ ||www.martovj.com^ @@ -3470,18 +4437,28 @@ ||user.medisou.site^ ||www.medisou.com^ ||follow.medisou.cloud^ +||down.meenworker.org^ ||www.meetsoons.com^ ||lin777.top^ ||mercadolibre-mallshop.com^ +||mercadolibreden.com^ +||mercadolibredencom-tw.com^ ||mercadolibref10.com^ ||mercadolibref8.com^ ||mercadolibremall-tw.com^ ||mercadolibremallshop.com^ +||mercadolibretell.com^ ||tw-mercadolibreacb.com^ ||tw-mercadolibreshoplat.com^ +||mercadolibreplm-tw.com^ +||mercadolibresdf.com^ +||tw-mercadolibretell.com^ ||www.mercadolibrm.com^ +||celufa.meryalatus.com^ ||celufa.merrylans.com^ ||celufa.meryalants.com^ +||celufa.meryalaryts.com^ +||celufa.meryortus.com^ ||n.merrylants.com^ ||trade8.merrylans.com^ ||trade8.meryalaryts.com^ @@ -3507,6 +4484,7 @@ ||1680540220000.mtpro5.xyz^ ||dwti.xyz^ ||mt5.biguncle.uk^ +||user.gomarketss.vip^ ||winpr0.shop^ ||www.mt5pr0.me^ ||www.natcfx.com^ @@ -3514,12 +4492,14 @@ ||www.winpr0.shop^ ||www.winpro.lol^ ||www.wintw.wiki^ +||9hfytqiv.ant0y16zck.com^ ||www.metatwgo.com^ ||www.metatwgo.net^ ||www.metatwgo.site^ ||xgame.v68.oexib5.com^ ||france.metalmakt.com^ ||erc-mining.top^ +||www.metaownedmall.com^ ||metas-trust.club^ ||metastrust.org^ ||metatokenswap.net^ @@ -3531,6 +4511,7 @@ ||www.metaverse-financepromax.com^ ||www.metaverseprotrade.com^ ||www.metaverseprox.com^ +||www.metoafa.com^ ||mmeexxcoin.com^ ||www.mexmexcoin168.com^ ||up668.mexcmax.com^ @@ -3550,6 +4531,7 @@ ||www.mexcvip-coin.com^ ||www.mexglobal.top^ ||www.mexglobal.wiki^ +||www.otc-mexc.com^ ||www.otcmexc.com^ ||www.otcvip-mexcs.com^ ||www.vipmexc001.com^ @@ -3559,17 +4541,27 @@ ||inpusdt.com^ ||miracledxsx.com^ ||miracleefs.com^ +||miraclernh.com^ +||miraclesiu.com^ +||www.miraclebfc.com^ ||www.miracledcx.com^ ||www.miracledxsx.com^ ||www.miracleefs.com^ ||www.miraclenrk.com^ +||www.miraclernh.com^ +||www.miraclesiu.com^ +||www.miracleskf.com^ ||www.miracletro.com^ +||8f5a7f47.miravia-1.vip^ ||miravia.io^ ||miravia.link^ ||miravia.me^ +||www.miravia-shop.com^ ||gwwwm.mevius.com.tw^ ||tradetw.xyz^ ||www.mitrade.world^ +||zbcdhgs.cc^ +||tbwwpw.top^ ||mixuemart.com^ ||mizuhoe.top^ ||mtt-ce.com^ @@ -3578,9 +4570,11 @@ ||www.mtt-ae.com^ ||www.mtt-ce.com^ ||beko688.com^ +||mdnyy668.com^ ||modena366.com^ ||mtas68.com^ ||rkxr89.com^ +||www.cmas767.top^ ||xbto168.com^ ||www.pdctiktokshop.com^ ||www.qdzqrg.com^ @@ -3593,12 +4587,15 @@ ||m.monex-tws.cn.com^ ||f103f.money-lv2.vip^ ||money-lv.vip^ +||money-lv2.vip^ ||www.moondonk.com^ ||www.moondwvd.com^ ||www.moondnyh.com^ ||www.moondrds.com^ ||www.moonhud.com^ ||moontrader.pf4ick.top^ +||moontrader.q58h2p.com^ +||moontrader.q5h2p8.com^ ||ww.chdwtw.com^ ||www.chdwtw.com^ ||www.datskyt.com^ @@ -3608,8 +4605,11 @@ ||user.motongfx.com^ ||www.mstion.site^ ||www.mstoken.top^ +||www.mtkhce.store^ ||www.mtrtue.store^ ||www.mtrtue.online^ +||www.mtyhce.site^ +||www.mtyhce.store^ ||much888.muhgteszascoin.com^ ||much888.muhgtszacoin.com^ ||ceo8.muhorscoin.com^ @@ -3621,9 +4621,16 @@ ||much888.muhgtascoin.com^ ||www.muchxcoin.com^ ||mu-coin.com^ +||mu-coin.info^ ||mu-coin.org^ ||mu-coin.pro^ ||www.mustershop.com^ +||www.muteedc.com^ +||www.muteexed.com^ +||www.muteexiu.com^ +||www.muteexiv.com^ +||www.mutejyk.com^ +||www.mutertn.com^ ||www.mxcoin.online^ ||www.mxexchang.com^ ||yichedao.top^ @@ -3638,6 +4645,7 @@ ||mycoinpsf55we.com^ ||mykeycoin.com^ ||www.mykeycoin.net^ +||mobile.usdtwebshop.com^ ||gbp.myrnna.com^ ||lwmy97.myrnanez.com^ ||lwmy97.myrnna.com^ @@ -3647,13 +4655,21 @@ ||pmb.myrnnez.com^ ||toad.myrnanez.com^ ||myshop-mall.com^ +||dgone.fosrvnet.live^ ||money88.foesrvnet.live^ ||money88.foesrvnet.site^ +||sdf888.foesrvnet.club^ +||sdf888.foesrvnet.fun^ +||sdf888.foesrvnet.online^ ||sdf888.foesrvnet.xyz^ ||n4g.npbo.top^ ||download.tsxpor.net^ ||www.b2b199.top^ ||www.cbdnasdaq.com^ +||www.cbdnasdaq.net^ +||www.nasdaq-usa.com^ +||www.nasdaqspot.com^ +||www.nasdaqspots.com^ ||www.nasdaqus.net^ ||www.nasdaqusa.net^ ||www.usa-nasdaq.com^ @@ -3729,6 +4745,7 @@ ||america.nstwexchange.com^ ||finland.nstwmarket.com^ ||france.nstwmarket.com^ +||merica.nstwexchange.com^ ||nutexc.cc^ ||www.nutex.cc^ ||www.nutex.club^ @@ -3738,19 +4755,29 @@ ||www.nutexs-online.com^ ||app.nvxedn.vip^ ||www.nvxeps.vip^ +||apex5210.nwaldens.com^ +||celufa.nwalodnes.com^ +||celufa.nwalodtryes.com^ +||celufa.nwalodzxy.com^ +||operatetradetwc.com^ +||nyprofx.com^ ||www.nyprofx.com^ ||carmine.nymex2023tw.com^ ||carmine.nymextw.com^ ||h5.afdjz.com^ ||phoenix.nymex2023tw.com^ ||phoenix.nymexintaiwan.com^ +||ww.financialmang6.top^ ||www.cmegrouz.com^ +||www.nymex-app.top^ ||www.nymexc.com^ ||www.nymexintaiwan.com^ ||app.nysefy.top^ ||cs.msndgj.sbs^ ||ff.appdonw.net^ ||nyse.usacrypto.top^ +||nysepa.com^ +||unifgsiwe.icu^ ||www.lcctg8.com^ ||www.lcctov.com^ ||bts.naboxle.com^ @@ -3759,10 +4786,12 @@ ||gocted.naterax.com^ ||wwwa.naterax.com^ ||natishares.com^ +||natistocks.com^ ||natitws.com^ ||www.btlux.live^ ||www.necex.pro^ ||neptuntoken.com^ +||wangyi-shop.com^ ||www.nettoshops.com^ ||down.nbvxf.top^ ||m.ixnah.top^ @@ -3777,6 +4806,8 @@ ||neweggexp.xyz^ ||neweggonline.top^ ||neweggsys.top^ +||newgeneration4now.world^ +||newgeneration4now.xyz^ ||up666888.nexus668.com^ ||up6681.nexus668.com^ ||up6811.nexus668.com^ @@ -3787,30 +4818,46 @@ ||www.nockexs.cc^ ||www.nocks-ex.cc^ ||www.nocks.cc^ +||www.nockscoin.cc^ +||www.nockscoinexs.cc^ ||www.nocksex.cc^ +||www.nockst.cc^ ||nocksex.com^ ||guycbhxz.xyz^ ||www.nodieex.net^ ||www.nodieexchange.com^ ||www.nodieexchange.net^ ||www.vipnosw.cn^ +||trade8.nwalouxy.com^ ||www.nyseuronextspro.com^ ||www.twvstock.com^ ||dl.nzs127jn.com^ ||www.tttwvstock.com^ ||www.ttwvstock.com^ ||www.twvstockk.com^ +||onademaxs.top^ ||oaxed.com^ +||oaxeg.com^ +||www.oaxed.com^ +||www.oaxeg.com^ ||www.bjlcn.com^ ||www.oecvnci.vip^ ||ofx.cbbw6t.cn^ ||caremey.com^ ||oga-svip.com^ ||vdir.uejfos.com^ +||okbxjj.com^ ||okxvex.com^ +||www.okbdvd.com^ +||www.okbeatr.com^ +||www.okbokking.com^ ||www.okbstw.com^ +||www.okbxcvw.com^ ||www.okbxjj.com^ +||www.okbxvdi.com^ +||okcdex.xyz^ ||okcoindex.club^ +||okcoindexchange.asia^ ||okcdex.club^ ||www.okepro.fit^ ||okex004.com^ @@ -3818,7 +4865,9 @@ ||aaa.okex004.top^ ||baby526.top^ ||fxcmy.com^ +||www.okkxx.com^ ||www.super20300.tw^ +||www.okok-buy.com^ ||www.okucoin.club^ ||bit.okxpro.online^ ||elite68.okx58.vip^ @@ -3835,6 +4884,7 @@ ||m.pqshiu.com^ ||m.thkmhy.com^ ||m.thkptyh.com^ +||m.vuqfbuyt.com^ ||m.willcion.com^ ||m.wpouvk.com^ ||okexgood.okxbit8.com^ @@ -3843,6 +4893,7 @@ ||okx.okx-invest.com^ ||okx.okx-online.com^ ||okx.taiwan-okx.com^ +||okxfui.com^ ||okxvds.com^ ||okxvew.com^ ||okxx.okx-taiwan.com^ @@ -3853,7 +4904,9 @@ ||www.okxnio.com^ ||www.okxrelex.com^ ||www.okxvew.com^ +||www.ptyhkogn.com^ ||www.twokx.com^ +||www.vuqfbuyt.com^ ||www.xoxvip.com^ ||onboe.gmx333.top^ ||onboebtc.top^ @@ -3862,14 +4915,26 @@ ||onboeifc.top^ ||onboeltc.top^ ||onboeusdt.top^ +||m.opnxcoin.org^ +||opnxweb.com^ ||www.opnxcoin.org^ +||www.opnxweb.com^ +||www.opsvrn.com^ ||h5.opaycoin.com^ +||www.orcasvip.com^ +||www.osigkkers.com^ +||www.osigue.com^ +||www.osigueicv.com^ +||www.osigueicves.com^ +||www.osiguers.com^ ||financial.otcintaiwan.com^ ||otcintaiwan.com^ ||wealth.otcintaiwan.com^ +||www.fruugoshopser.com^ ||www.otto-supermall.com^ ||m.ebuyshop.xyz^ ||m.tmallbuy.xyz^ +||www.otto-buynow.com^ ||www.ottoshoppf.com^ ||www.ottoshopso.com^ ||www.ottoshopw.com^ @@ -3881,7 +4946,10 @@ ||www.coinoak1995.com^ ||www.oakcoinex.com^ ||www.oaktb1995.com^ +||wap.oamdiap.vip^ +||oanda-currencymarket.com^ ||oandaex.com^ +||oandemax.com^ ||odzsgtw.com^ ||www.oandtrade.com^ ||www.odzsgtw.com^ @@ -3890,11 +4958,21 @@ ||ieurnf.xyz^ ||www.obercoin.com^ ||www.obercoin.vip^ +||www.obtshop.com^ +||www.obtshop.net^ +||www.obtshop.online^ +||www.obtshop.vip^ +||www.obtshop.website^ +||www.oceancoin.cc^ ||www.oceanex-pro.cc^ +||www.oceanfx.cc^ +||www.oceansex.cc^ ||www.ocex.cc^ ||www.oceanexproe.com^ ||oldteas.net^ +||olylifetw.com^ ||ondersongroup.com^ +||www.kyc.credit^ ||www.oneklixc.com^ ||www.onemain.site^ ||onlychain.hnnlrs.cn^ @@ -3907,10 +4985,14 @@ ||a.opensky.tips^ ||a.opento.cc^ ||open-trade.com^ +||opentrade.best^ ||www.optimismcool.com^ ||www.optimismrunpromax.com^ ||www.optimismtsiplus.com^ ||www.optimismwin.com^ +||firmness.optioncfd.online^ +||www.optioncfd.online^ +||zigfts.optioncfd.online^ ||capitalgain.oracven.com^ ||2.ordesys.com^ ||cng.ordaesies.com^ @@ -3934,14 +5016,24 @@ ||aope.besp.website^ ||aope.bsep.store^ ||aope.bsephub.xyz^ +||aope.p2b.buzz^ +||aope.p2b.fun^ ||aope.p2b.website^ +||aope.p2bcc.site^ +||aope.p2bcc.xyz^ ||paitbeis.com^ ||www.paitbeis.com^ ||www.paitbewr.com^ ||www.paktor.org^ ||gocted.pampxe.com^ ||pampapro.org^ +||paxoinx.com^ +||paxosest.com^ +||paxosguc.com^ +||paxosirt.com^ +||paxosuna.com^ ||dapp.payfi.cc^ +||pacifictw.vip^ ||pc24buyer.com^ ||24pcbuymore.com^ ||24pchomes.com^ @@ -3966,6 +5058,7 @@ ||onlywithpc24.com^ ||orderpc24.com^ ||orderpc24s.com^ +||pc24awg.com^ ||pc24center.com^ ||pc24order.com^ ||pc24orders.com^ @@ -3973,6 +5066,8 @@ ||pc24storesp.com^ ||pc24user.com^ ||pc24vip.com^ +||pc24win.com^ +||pc24wks.com^ ||pchomegiveback.com^ ||pchomegivemeback.com^ ||rxla.cc^ @@ -3992,19 +5087,24 @@ ||www.shoopingpchome4.com^ ||www.shoopingspchome.com^ ||www.shooppingpchome.com^ +||www.pcx-global.com^ ||cuoso.cc^ ||fx-pandora.com^ ||www.pd-forex.co^ ||www.pdfxltd.co^ ||www.pflcoin.com^ +||pg-mall.asia^ ||www.mall-pg.tw^ +||www.pg-mall.com.tw^ ||www.pg-mall.tw^ +||www.pgmall-asia.tw^ ||www.pgmallonlinetw.com^ ||www.apppgem.com^ ||lehinsecurities.com^ ||lehinsecurities.com.tw^ ||enter.spggames999.com^ ||rich.gamespg888.com^ +||contractxz.com^ ||tw.zolocoinbase.com^ ||www.parklifes.co^ ||www.pcgroups.co^ @@ -4023,13 +5123,22 @@ ||pmsamarket.com^ ||www.pmsafx.com^ ||www.pncgroup201.com^ +||ccjk9901.com^ +||cglo6669.com^ +||cmmm0933.com^ +||cnkn7777.com^ +||hubq8886.com^ ||hzzd9998.com^ ||app.cxfhzdgfg.com^ ||app.fhsuifyui.com^ +||app.nvbhdfs.com^ ||www.dcnmkvv.com^ ||www.huilapn.com^ +||po-loniex.com^ ||quant.psdky.co^ ||quant.psdky.online^ +||ukn6wv.jumeishequ.com^ +||bepumarkets.com^ ||pufxmarkets.com^ ||www.airpugroup.com^ ||www.beenputeam.com^ @@ -4042,17 +5151,29 @@ ||www.realoopufx.com^ ||www.servicepull.com^ ||www.topuma.com^ +||www.pundibgd.com^ +||www.pundibrm.com^ +||www.pundiuik.com^ ||ios.pzcoin.co^ +||ios.pzcoin.cc^ ||ios.pzcoin.xyz^ ||m.pzcoin.co^ +||ios.pzcoins.com^ ||pandorafx.co^ ||pdforex.co^ ||pdoraafx.com^ ||www.pdforex.co^ ||www.parcosi.vip^ +||www.parubup.vip^ ||www.parubus.vip^ +||www.paruncx.vip^ +||www.paruurl.vip^ ||www.parxtoo.vip^ ||patrlg.com^ +||paymium23.buzz^ +||paymium6.buzz^ +||paymium8.buzz^ +||paymium9.buzz^ ||www.paypalshopping668.com^ ||www.peeba2.com^ ||www.peeba5.com^ @@ -4060,32 +5181,42 @@ ||peichengcap.com^ ||peichengex.com^ ||peichengllc.com^ +||peichengmarket.com^ ||peichengroup.com^ ||peichengsec.com^ ||peichengstock.com^ ||peichengstocks.com^ ||tw.peoca.com^ +||www.pepperstonecrm.com^ ||forex.pepperstone-twstone.com^ ||perstonee.com^ ||perstoness.com^ ||www.pepperst-one.cc^ -||www.pepperstonecrm.com^ ||www.pepperstonecrmb.com^ +||www.pepperstonecrmf.com^ +||www.pepperstonedcrm.com^ ||www.perstonee.com^ ||www.perstoness.com^ ||gbp.phaetnsn.com^ ||gbp.phaetnszn.com^ ||usa.phaetnn.com^ +||www.phmaxdbv.com^ ||phemex.com^ +||phemexi.com^ +||phemexp.com^ ||phemexproe.com^ ||www.pansh-twstwo.com^ +||www.phemexd.com^ +||www.phemexpro.com^ ||www.phemexproe.com^ ||www.phemexpros.com^ ||www.phemexr.com^ ||www.phemexw.com^ +||www.phemexy.com^ ||dh.pht8989.com^ ||ww2.rsttw8989.com^ ||ptpro.app^ +||90m9d8.xyz^ ||wfry18i.cn^ ||www.oerzvv.com^ ||bxytxw.cn^ @@ -4096,6 +5227,10 @@ ||wl.ifjrjgnrv.top^ ||yb.ioengrj.top^ ||pinkol888.com^ +||www.pvip-onex.com^ +||www.pvip-onexx.com^ +||www.pviponex.com^ +||www.pviponexx.com^ ||bch.dtap000s2.com^ ||m.plasmaoracleglobal.com^ ||aner.platforms.agency^ @@ -4115,6 +5250,8 @@ ||www.plus500pros.com^ ||www.pluspof.com^ ||www.plustsipro.com^ +||popmaxcrypto.com^ +||www.popmaxcrypto.org^ ||podcastaw.com^ ||podcastba.com^ ||podcastbb.com^ @@ -4133,6 +5270,7 @@ ||h5.polyx.top^ ||h5.polyx.tw^ ||hesign.me^ +||polyx-top.com^ ||socaki.com^ ||www.polyx.bet^ ||www.polyxex.com^ @@ -4147,13 +5285,20 @@ ||www.poutlinbep.vip^ ||www.pozionsrossl.com^ ||www.topmallcross.com^ +||www.precor.shop^ +||www.precor.store^ ||pretty-go-shop.com^ ||prettygo-shop.com^ ||prettygoshop.com^ +||www.prettyahfc-my.com^ +||www.prettydsfdc-my.com^ +||www.prettyhlhz-my.com^ +||www.prettyltlg-my.com^ ||price2trade.cyou^ ||www.price2trade.cyou^ ||www.price2trade.net^ ||www.price2trade.site^ +||www.privatece.tw^ ||proexchangetw.xyz^ ||proexchangtw.xyz^ ||bcdtyang.com^ @@ -4178,14 +5323,19 @@ ||usd.coinscenter1.com^ ||usd.protrader01.com^ ||www.iprorods.net^ +||www.prosperoustw.com^ ||protosscap.com^ ||protosscp.com^ ||protossgroup.com.tw^ ||protosstock.com^ ||protossup.com^ ||www.protosscap.com^ +||www.psinxo.com^ ||prettytask-my.com^ +||prettytwshop-my.com^ ||www.pretty-my.com^ +||www.prettyaony-my.com^ +||www.prettybdec-my.com^ ||www.prettyefficiency-my.com^ ||www.prettygift-my.com^ ||www.prettymission-my.com^ @@ -4193,18 +5343,29 @@ ||www.prettyshop-my.com^ ||www.prettytwshop-my.com^ ||www.pjeaktaorty.com^ +||www.pjeakutorey.com^ +||www.pjeakwary.com^ ||www.pjeakwey.com^ +||www.pjeakwpew.com^ +||pursuitlove.com^ ||h5.pxycoin.com^ +||pxycoin.com^ +||www.pxycoin.top^ +||ios.pzcoins.net^ ||www.qfii80.com^ ||www.qnb-otc.com^ ||qok2856.com^ +||www.qnb-coin.com^ +||www.qsqbbas.vip^ ||www.qsqcics.vip^ +||www.qsqhgs.vip^ ||qbt8306.com^ ||qby3967.com^ ||qgc5769.com^ ||qvt6938.com^ ||va.kj20.top^ ||www.catkou.top^ +||login.qcgbroker.com^ ||www.qatlst.com^ ||www.fehqmall.com^ ||www.vecqmall.com^ @@ -4212,12 +5373,16 @@ ||crmqointechex.com^ ||www.crmqointechex.com^ ||www.crmqointechexa.com^ +||www.crmqointechexg.com^ +||www.qointechex.com^ ||www.qointechexcrmb.com^ +||www.qointechexcrmf.com^ ||www.qointechexdcrm.com^ ||app.qoo10888.com^ ||global.qoo10tw.asia^ ||qoo10888.com^ ||vip.qoo10889.com^ +||www.qoo10.top^ ||quantfin.com.tw^ ||www.quant-fin.com^ ||quantitative.com.tw^ @@ -4232,6 +5397,17 @@ ||www.qmcoin.com.tw^ ||gwwwm.qmfirst.com^ ||qmdapes.com^ +||www.quedex-io.com^ +||www.quick-buyer.com^ +||www.quick-moveshop.com^ +||www.quick-supermarket.com^ +||quidaxaw.com^ +||quidaxiu.com^ +||quidaxwe.com^ +||www.oaxaue.com^ +||www.quidaxaio.com^ +||www.quidaxir.com^ +||www.quidaxvr.com^ ||gomecntw.com^ ||www.rs-shop.club^ ||www.rs-shop.live^ @@ -4249,14 +5425,23 @@ ||rcln.club^ ||www.rcln.club^ ||www.rcln.xyz^ +||reeapk.com^ +||reejoo.com^ +||reetw.com^ ||tmaxih.com^ ||tmaxji.com^ ||tmaxky.com^ ||www.tmaxky.com^ +||reva6.com^ ||www.rk-twd.com^ ||rochiscap.com^ ||rochiscapitals.com^ ||rochisgroup.com^ +||derivativesoh.com^ +||roxextrade.com^ +||ase888.ruma88vip.buzz^ +||monuir.ruma88vip.buzz^ +||ruma88vip.buzz^ ||tw.vgdt6288.org.cn^ ||www.hhkl6868.com^ ||www.hjmn563.com^ @@ -4265,6 +5450,10 @@ ||www.vgdt6678.com^ ||www.vtnb606.com^ ||www.vuhb686.com^ +||rtxpromax.com^ +||maximumrtxpro.com^ +||rtx-coin.com^ +||rtxprosolutions.com^ ||rtxwild.com^ ||rtxworld.com^ ||worldwildrtx.com^ @@ -4279,6 +5468,7 @@ ||977138.click^ ||letan168.com^ ||letany88.com^ +||m.rakutenplus.com^ ||rakuten01.org^ ||rakuten06.com^ ||rakutencv.com^ @@ -4301,6 +5491,12 @@ ||rclt.xyz^ ||www.rcln.site^ ||www.rclt.xyz^ +||hhs.reassurehm.com^ +||mer.reassurevsn.com^ +||wyt.reassurekkt.com^ +||red.newredred.cc^ +||redrkcc.cc^ +||vip.rdrkred.vip^ ||www.redrkcc.cc^ ||www.redrksapp.com^ ||www.reefbifd.com^ @@ -4314,11 +5510,13 @@ ||www.regafun.com^ ||www.reqtrade.net^ ||www.hotel-reserve.net^ +||www.srhnbf.cn^ ||r-revainro.com^ ||r022tw.ww888012.online^ ||r02tw.zfc888040.xyz^ ||rr001tw.yyt666015.store^ ||rr001tw.yyt666026.store^ +||www.revolutr.vip^ ||www.ribitexchange.com^ ||abit.goldbitgreat.com^ ||bittopapp.com^ @@ -4328,6 +5526,7 @@ ||ex.riesll.com^ ||ex.risedd.com^ ||ex.riseex.com^ +||ex.risevv.com^ ||a.gotiwjqqwe.com^ ||app.gtuhasjdhhq.com^ ||robinhooder.co^ @@ -4337,6 +5536,7 @@ ||www.rocket-poolg.com^ ||www.rocket-poolj.com^ ||romanticing.org^ +||www.rootrex.cc^ ||www.rootrex.top^ ||www.rootrexex.top^ ||www.rootrexexx.cc^ @@ -4354,14 +5554,26 @@ ||www.ruibidowns.com^ ||www.ruibihtml1.com^ ||www.ruibiline.com^ +||www.runwinoaes.com^ +||www.runwinoers.com^ +||www.runwinsrs.com^ +||www.runwinsters.com^ ||www.pussybliy.online^ ||www.ryderinternationalshopping.com^ ||app.sa-platform.com^ +||sactorder.com^ +||www.sacorderiu.com^ +||www.sactmore.com^ +||www.sactorder.com^ +||sacordaeh.com^ ||sacorder.com^ ||sacorders.com^ +||www.sacordaeh.com^ ||www.sacorder.com^ ||www.saexno.vip^ ||www.saexvi.vip^ +||www.sanyum.com^ +||yunqichuang.com^ ||55.sasa.sale^ ||satmltey.com^ ||satmpoma.com^ @@ -4373,6 +5585,8 @@ ||www.sbiirjmnfkxkke.com^ ||www.sbilamkiedjroc.com^ ||www.sbiofficial.com^ +||www.sbiokewiuqjd.com^ +||www.sbintf.com^ ||hhh.sbitrade.tw^ ||lv.sbi.tw^ ||sbi.tw^ @@ -4416,8 +5630,11 @@ ||sgx7788.com^ ||www.sgx7799.com^ ||www.sgx8899.cyou^ +||www.weathl-btc.vip^ ||sgx.exaschange.com^ ||zy1928.com^ +||shopemai.com^ +||shopingmai.com^ ||bestwork.store^ ||hellowork.tech^ ||luckywork.shop^ @@ -4435,17 +5652,24 @@ ||www.skshoptw.com^ ||m.skstore-tw.com^ ||m.sktorsion-tw.com^ +||www.lifeshopfac.com^ +||www.lifeshopfc.com^ ||www.skstore-tw.com^ ||besp.slamne.com^ ||n8866.slamne.com^ ||qun111.slamne.com^ ||fg.cmecoins.life^ +||smjsuamg.top^ ||dymstroeonline.com^ ||smtecommece.com^ +||swagena.com^ +||swagenb.com^ ||snxprodefi.com^ ||snxtradepro.com^ ||www.snx-maxdefi.com^ ||www.snxdefiplus.com^ +||m.cogovip.vip^ +||m.sogomining.top^ ||www.sparkcommunityfi.com^ ||spreadextw.net^ ||www.spreadextwss.net^ @@ -4454,7 +5678,13 @@ ||app.st5s.com^ ||gfsle.com^ ||support.farmaxprime.com^ +||www.startrader1.tw^ ||www.bit9288.com^ +||www.bittt889.com^ +||www.suimmer.com^ +||www.suipert.com^ +||www.suiutyces.com^ +||www.suixmner.com^ ||svji188.com^ ||svji189.com^ ||svjj09.com^ @@ -4479,18 +5709,31 @@ ||128.sasa.best^ ||85.sasa.best^ ||ss2.sasa.sale^ +||sacproes.com^ +||sactfbv.com^ +||www.sactfbv.com^ ||safecoinup.com^ ||875755.click^ ||z93563.xyz^ ||www.safepalas.com^ +||admin.joom.zone^ ||jys.aixsshop.com^ +||myth.saferytois.com^ ||myth.safetytois.com^ +||myth.safheapoiet.com^ +||myth.safheorts.com^ +||myth.safheytius.com^ +||myth.safheytpr.com^ +||www.safheapvciet.com^ ||www.santndafq.com^ ||www.savantfxs.com^ ||www.savcapitals.com^ ||www.svfxs.com^ ||www.svglobals.com^ ||savegas.ai^ +||www.subceatoy.com^ +||www.subceadh.com^ +||www.subceaer.com^ ||schoolbtctw.site^ ||www.schoolbtctw.net^ ||www.schoolbtctw.org^ @@ -4507,6 +5750,7 @@ ||m.sctsn.top^ ||m.ytosv.top^ ||www.snjrkrgl.top^ +||www.sdncshop.vip^ ||8.seashop99.com^ ||9.seashop888.com^ ||s.seashop888.com^ @@ -4514,9 +5758,15 @@ ||tw1.seashop99.com^ ||www.seapurchase.com^ ||m.mxch369.com^ +||m.securityplatf.com^ ||m.securityscoin.com^ ||m.securitywdw.com^ +||www.seoloantrader.com^ ||extserum.bio^ +||gyt.regenerationkk.com^ +||kes.forthbekk.com^ +||operationala.forthbekk.com^ +||operationalc.forthbekk.com^ ||sftimop.com^ ||www.sftimo.com^ ||www.sftimoa.com^ @@ -4532,26 +5782,36 @@ ||tw.sheer-pro.com^ ||us.sheer-pro.org^ ||www.sheer-pro.org^ +||m.shindingltd.com^ ||shouio.com^ +||ens-shopback3.top^ ||www.shopbopvip.xyz^ ||www.shopvippob.top^ ||www.shopccc.net^ +||h5.shopconch8.com^ ||ww1.19kkm72.top^ +||www.vbshopee.cn^ ||clickdown.sztehao.com^ ||down.shopeeix.com^ ||down.shopeeix.top^ ||down.shopeev.com^ ||fmallshop.com^ +||fmallshoping.com^ ||fmallshopping.one^ +||h5.shop94700.shop^ ||maalshoping.xyz^ ||meit.top^ ||my5353.com^ ||shopee.shumeilaw.com^ ||shopeecq.com^ +||shoptwy.com^ ||tw.bailm.cc^ ||tw.bailm.co^ ||tw.escep.co^ ||wallvn.com^ +||www.iushopee.cn^ +||www.jhshopee.cn^ +||www.mkshopee.cn^ ||www.nhshopee.cn^ ||www.shopee-avail.life^ ||www.shopee-shop.club^ @@ -4593,6 +5853,12 @@ ||twshopify-lat.com^ ||www.twgoshopme.com^ ||www.shopnns.com^ +||centralshoping.top^ +||shopingcentral.shop^ +||shopingcentral.top^ +||shopingcentral.vip^ +||shopingcentral.xyz^ +||www.yhshops.com^ ||36.shopyyf.com^ ||shopckk.com^ ||11.shopvvv.com^ @@ -4605,30 +5871,40 @@ ||tw1.yxshop99.com^ ||tw10.shopssk.com^ ||tw11.shopsyx.com^ +||tw13.joom.ac^ ||tw13.shopyyf.com^ ||tw13.shopzkk.com^ +||tw14.joom.uno^ +||tw18.joom.ac^ +||tw18.joom.moe^ ||tw18.joom.mx^ ||tw2.yxshop99.com^ +||tw20.joom.ac^ ||tw22.shopyyf.com^ ||tw25.shopjjj.com^ ||tw25.shopssk.com^ ||tw26.shopssk.com^ +||tw28.joom.uno^ ||tw29.shopzkk.com^ +||tw3.joom.uno^ ||tw31.shopyyf.com^ ||tw35.shopssk.com^ ||tw36.shopckk.com^ ||tw38.shopyyf.com^ ||tw46.shopckk.com^ +||tw5.joom.uno^ ||tw56.shopyyf.com^ ||tw6.shopzkk.com^ ||tw7.shopckk.com^ ||tw70.shopyyf.com^ ||tw74.shopyyf.com^ ||tw79.shopyyf.com^ +||tw8.joom.mx^ ||tw8.shopjjj.com^ ||tw8.shopsyx.com^ ||tw8.shopyyf.com^ ||tw8.shopzkk.com^ +||tw9.joom.mx^ ||sichcapitalpf.com^ ||sichcapitalua.com^ ||omx.ezey.top^ @@ -4638,6 +5914,11 @@ ||sinosecurities.com.tw^ ||www.sinopapatws.com^ ||www.sinopaptw.com^ +||smbit.myftp.org^ +||smbit.zapto.org^ +||smone.loginto.me^ +||smvip.ddns.net^ +||smvip.zapto.org^ ||www.smartai-trading.com^ ||sntrelor.com^ ||sntrexcmi.com^ @@ -4645,9 +5926,12 @@ ||sntrexoi.com^ ||sntrexpro.com^ ||sntrextds.com^ +||m.sogotrade.cc^ ||aaa.solutfoundy.com^ ||cng.solutfoundy.com^ ||htps.solutfound.com^ +||www.sonhoo.top^ +||www.sonhoo.work^ ||ok-scft.com^ ||tha-sc.com^ ||user.sophiecap.tw^ @@ -4656,11 +5940,27 @@ ||www.pueroftea.shop^ ||www.puerstea.live^ ||www.puerstea.shop^ +||www.puerstea.top^ +||www.souqshopp.com^ +||www.sparklefxb.com^ ||www.sparklefxd.com^ ||www.sparkntc.com^ ||www.sparkvexc.com^ ||sparkntc.com^ +||www.sparkeed.com^ +||speedep.com^ +||speedob.com^ +||speedxa.com^ +||www.speedqc.com^ +||speedfvf.com^ +||speediu.com^ +||www.speedang.com^ +||www.speedcfr.com^ +||www.speedfvf.com^ ||www.speedveh.com^ +||www.speediiv.com^ +||www.speedtradeif.com^ +||www.speedtradez.com^ ||www.speedstar.site^ ||speedwindltd.com^ ||www.aboutsp.com^ @@ -4678,6 +5978,10 @@ ||spmax.bxanys.com^ ||spmax.txanys.com^ ||www.lxdownload.com^ +||www.spookletxtn.com^ +||www.spookletxvd.com^ +||www.spooklenv.com^ +||www.sporkletx.com^ ||avatrade.financesnew.org^ ||davinci.financesnew.xyz^ ||davincie.financesnew.xyz^ @@ -4686,6 +5990,7 @@ ||phantasm.financesnew.online^ ||yongtain.financesnew.xyz^ ||starexch.games^ +||pc.star869.xyz^ ||www.starexchangei.com^ ||www.starexchangeit.com^ ||starexchangeex.com^ @@ -4693,13 +5998,25 @@ ||www.starexchangein.com^ ||www.starexchangep.com^ ||www.starexchanges.com^ +||www.starexchanget.com^ ||www.starexchangeu.com^ ||www.starexchangex.com^ ||www.starexchangey.com^ ||www.starexco.com^ +||www.starexi.com^ +||www.starexin.com^ ||www.starexpro.com^ +||www.starexr.com^ ||www.starexus.com^ +||star-sharks.com^ ||www.ssstarbuckscashback.com^ +||www.ssstarbuckscashbacking.com^ +||www.ssstarbuckscashbacknow.com^ +||www.ssstarbucksvipcashback.com^ +||www.ssstarbucksvipcashbacking.com^ +||www.ssstarbucksvipcashbacknow.com^ +||www.starbuckscashbacking.com^ +||www.starbuckscashbacknow.com^ ||www.starfishs.vip^ ||a001.starlux.beauty^ ||a001.starlux.live^ @@ -4715,10 +6032,21 @@ ||www.taiwanstartrpros1.com^ ||www.taiwanstartrso.com^ ||wwwi.taiwanstartrpros.com^ +||startrader.cc^ ||startraderfex.com^ +||stellarbcx.com^ ||stellarcvc.com^ ||stellarcxv.com^ ||stellarrnt.com^ +||www.stellaracb.com^ +||www.stellaracd.com^ +||www.stellarbcx.com^ +||stenbit.mypsx.net^ +||stenbit.sytes.net^ +||stenbit.ufcfan.org^ +||stenbittrc.top^ +||stenbitusdt.top^ +||xmr.stenbit.top^ ||stepup70.com^ ||stepup99^ ||www.stepup11.com^ @@ -4738,6 +6066,11 @@ ||stradegpt.com^ ||www.hxia5.vip^ ||www.hxiashop.vip^ +||www.subceahj.com^ +||www.subecabdc.com^ +||www.subecabg.com^ +||www.subecanfv.com^ +||www.subecasecuritiesr.com^ ||www.sucdenes.com^ ||www.sucdenri.com^ ||www.sucdenvsb.com^ @@ -4745,12 +6078,14 @@ ||sumswap.pro^ ||www.sun-bit11.com^ ||mall.sun-mall.site^ +||m.sunfowers.com^ ||www.suningtw.com^ ||www.wgtqj.com^ ||www.superepd.com^ ||superkenc.com^ ||www.superkenc.com^ ||supertdk.com^ +||superuib.com^ ||superwre.com^ ||www.superbdc.com^ ||www.superbxks.com^ @@ -4758,11 +6093,14 @@ ||www.supervdx.com^ ||www.superwre.com^ ||www.superwxx.com^ +||superciit.com^ ||a.supernft.cloud^ ||a.supernft.rent^ ||a.supernft.space^ ||a.supernft.work^ ||hga888.superstarworker.com^ +||superstarfly.com^ +||superstarxc.com^ ||vcs168.superstarworker.com^ ||superbtm.com^ ||www.superb-trading.cc^ @@ -4770,6 +6108,9 @@ ||swapnex.io^ ||swissborgex.com^ ||swissborgxx.com^ +||www.swissborgex.cc^ +||www.swissborgexs.cc^ +||www.swissborgmax.cc^ ||www.swissborgxx.com^ ||force.firstrande88.com^ ||squa.cbnrcih.com^ @@ -4792,6 +6133,7 @@ ||www.lbiudfs.com^ ||www.lbjils.com^ ||www.lbjudaf.com^ +||www.tdame.cyou^ ||www.topmalscross.com^ ||54012.topftem.com^ ||54088.topftem.com^ @@ -4804,26 +6146,32 @@ ||opgg3327.t96666.com^ ||www.tackstt.com^ ||tamia.shopping^ +||fan.goldcct.com^ +||fan.goldncv.com^ ||hre.goldawg.com^ ||hre.goldchb.com^ ||hre.goldgbc.com^ +||hre.goldncv.com^ ||hre.tanakaesd.com^ ||hre.tanakamk.com^ ||hre.tanakaol.com^ ||sfa.maengold.com^ ||sfa.tanakareg.com^ ||waa.bcvgold.com^ +||waa.goldncv.com^ ||waa.okvgold.com^ ||wasd.tanakasky.com^ ||wdd.tanakaxwb.com^ ||wmm.blocugold.com^ ||wmm.gevgold.com^ +||wmm.goldaiu.com^ ||wmm.goldchb.com^ ||wmm.goldeej.com^ ||wmm.goldvtyx.com^ ||wmm.okvgold.com^ ||wmm.tanakaesd.com^ ||wmm.tanakamk.com^ +||www.goldrue.com^ ||tathragroup.com^ ||www.aas9999l.cn^ ||www.tbtansk.com^ @@ -4855,6 +6203,8 @@ ||file.tfglobaltrade.com^ ||www.ssmapp.com^ ||www.tfglobaltrade.com^ +||btwlol.com^ +||www.tfgex.com^ ||n.tfhfinaer.com^ ||n.tfhfinsera.com^ ||n.tfhfinssra.com^ @@ -4877,6 +6227,7 @@ ||tx.king76.net^ ||tx.tq77.net^ ||tx.tw111.net^ +||www.aqn666.net^ ||www.bv66.net^ ||www.tbab356.com^ ||www.weab223.com^ @@ -4887,22 +6238,33 @@ ||www.thorchaino.com^ ||www.thorchains.com^ ||www.thorchaintsipro.com^ +||www.thorchainu.com^ ||www.thorchainweq.com^ ||titanwde.com^ ||www.titanwde.com^ +||mm.tickforex.net^ ||tick666.com^ ||tickmilltwb.xyz^ ||tidex.top^ ||www.tidexpro.net^ +||www.shopmall-inworld.com^ ||bts.tldfyuid.com^ ||bts.tldoset.com^ ||sss.tldvseu.com^ ||www.tldoset.com^ +||www.tldvseu.com^ ||tmeoffical.com^ ||m.tmgmtws.com^ +||trademaxus.com^ +||tw.tmgm-tw.com^ ||wap.tmgmextws.com^ ||wap.tmgmtws.cn.com^ ||www.tmgm-tw.com^ +||cfa.usmarketex.com^ +||hre.marketkvc.com^ +||waa.marketdui.com^ +||wmm.marketthb.com^ +||wmm.usmarketex.com^ ||www.cokr.cc^ ||bbcoinccex.com^ ||tncned.info^ @@ -4911,16 +6273,21 @@ ||www.tncnercer.top^ ||taiwan1.todutrade.com^ ||www.tokoshopeom.club^ +||tokpienig.com^ ||www.tokpiedcd.com^ ||www.tokpienig.com^ ||www.tokpietnf.com^ ||app.tox1.net^ +||toyota886.com^ ||www.tonemkt.com^ ||www.tpgtpg.vip^ ||tradfisun.com^ ||www.tradfifie.com^ ||www.tradfigod.com^ ||www.tradfiieu.com^ +||www.trcoexar.com^ +||www.trcoexg.com^ +||www.trcoexxq.com^ ||tgr14676.com^ ||tgr15958.com^ ||khtron.com^ @@ -4938,9 +6305,21 @@ ||www.tronseng.com^ ||www.tronsev.com^ ||www.tronskb.com^ +||www.truefipob.com^ +||www.truefippp.com^ +||www.truefizza.com^ +||www.truefizzb.com^ +||www.truefizzd.com^ +||www.truefizze.com^ +||www.truefizzg.com^ ||www.truefizzi.com^ +||www.truefizzj.com^ +||www.trust-coins.com^ +||www.walletziw.com^ ||www.ydxrunmax.com^ ||www.ydxtsia.com^ +||www.ydxzid.com^ +||www.ydxzip.com^ ||trxbintuc.com^ ||trxewf.com^ ||www.tronfhu.com^ @@ -4967,30 +6346,53 @@ ||tu123.bet^ ||tu123.com.tw^ ||tu123.online^ +||www.twseapps1.com^ ||www.twsedown.com^ ||www.twsehtml.com^ ||www.twsehtmls1.com^ ||bac88.tz168168.com^ +||m.taikocrypto.com^ ||haitaogoua.vip^ ||tamiashopping.com^ ||www.rabihajidegreecollege.co.in^ ||www.tangastore.shop^ ||www.taoshopeei.com^ +||www.asiatargettvvm.com^ +||www.asiatargettwm.com^ +||www.asiatargettwn.com^ +||cen.tw^ +||www.tasmanfxs.tw^ +||www.tasmanfxv.tw^ ||www.tbikuxu.vip^ ||www.zxcx.cc^ ||tea-pin.com^ ||tea-buytea.com^ ||www.hnbcjk.com^ +||teapuertea.com^ +||teamalltea.com^ +||teatteta.com^ +||teabuyandsell.com^ ||tearawtea.com^ +||www.teapuer.online^ ||puertea.live^ ||tbdsasds.vipshopbuy.com^ +||www.puerstea.online^ +||www.teaofpuer.live^ ||tea-bazaar.com^ +||www.teamasterss.com^ ||tea-funny.cn^ +||ic-techelem.com^ +||ic-techelemtc.com^ +||it-atomicio.com^ +||telfor.shop^ +||telformall.shop^ ||m.tg-makets.cc^ ||pc.tg-makets.com^ +||tergether.com^ ||deamed.cc^ ||deameg.cc^ ||www.tec896.com^ +||www.tec899.com^ ||tesco-cbe.shop^ ||tescoall.shop^ ||tescotw.com^ @@ -5005,6 +6407,7 @@ ||www.tesco-global.shop^ ||www.tesco-global.top^ ||www.uk2jj.xyz^ +||www.tescosale.com^ ||tesseract111.top^ ||tesseract222.top^ ||tesseract321.top^ @@ -5014,17 +6417,31 @@ ||cs.mpgdyt.top^ ||cs.tahjkf.icu^ ||tetherteda.com^ +||www.tethermwq.com^ +||www.tethermws.com^ +||www.tethermwu.com^ ||www.usdtseek.com^ ||app.tcpake.com^ +||www.tezosrgf.com^ +||www.tezosyne.com^ +||a.tgkuveros.com^ +||a.tgkuvsa.com^ +||a.tgkuvseas.com^ +||x.tgkuveros.com^ +||x.tgkuvseas.com^ ||gothe.shop^ ||gthe.shop^ ||oktheshop.com^ ||thigegb.com^ +||thiguio.com^ +||thigus.com^ +||thingvx.com^ ||thomasnet.top^ ||www.titokcarter.com^ ||www.titanekc.com^ ||www.titanznse.com^ ||h5.tick-pro.com^ +||tickmil.buzz^ ||tickmilltml.xyz^ ||tickmilltw.xyz^ ||tickmilltwk.xyz^ @@ -5034,6 +6451,7 @@ ||tickmilltwz.xyz^ ||ticvyhll.buzz^ ||twtickmillck.xyz^ +||wdagysed.vip^ ||tikoaes.com^ ||www.tikoaay.com^ ||www.tikoaes.com^ @@ -5045,7 +6463,11 @@ ||a1002.tiktok-shopping.org^ ||n1120.tiktkoshop.com^ ||seller.hottkshop.com^ +||shop.tiktokshops.vip^ +||tiktok-wholesaleit.com^ ||tiktokshop01.com^ +||tiktokshoptw.com^ +||tiktokshoptw886.com^ ||tw.hotkshop.com^ ||tw.hottkshop.com^ ||tw.totkshop.com^ @@ -5063,6 +6485,13 @@ ||www.tk6.shop^ ||www.tk99.shop^ ||www.tkmall.shop^ +||www.tkzamshop.com^ +||www.tkzbmshop.com^ +||www.tkzcmshop.com^ +||tiktok-wholesales.com^ +||manager.tiktokshops.biz^ +||www.tikkk75shoptok.cc^ +||www.tikkktok75shop.cc^ ||tiktokclick.cc^ ||www.tiktokhoping.com^ ||www.nishopee.cn^ @@ -5093,8 +6522,12 @@ ||www.weettoken.com^ ||tset.app^ ||tstset.com^ +||tokocrypto-defi.com^ +||tokocrypto.club^ +||tokocrypto.top^ ||h5.toobit.top^ ||pc.toobit.top^ +||toobitvip.com^ ||www.tianzicang.com^ ||www.topbitiso.com^ ||www.topbitqdw.com^ @@ -5112,6 +6545,7 @@ ||crm4.topiato.com^ ||crm5.topiato.com^ ||www.tptoe.net^ +||tmh4cr3nwqf.com^ ||s.tpshop1.com^ ||bts.tradefmxz.com^ ||tradenationfex.com^ @@ -5121,6 +6555,7 @@ ||www.tradenationtr.tw^ ||www.tradenationu.tw^ ||www.tradewheel.info^ +||www.tradewheel.world^ ||newideas.world^ ||tradingview258.top^ ||tradingview5.top^ @@ -5136,11 +6571,18 @@ ||traweb3.top^ ||www.treeecg.com^ ||www.treevnb.com^ +||www.treexcui.com^ ||www.trekncy.com^ ||www.treuie.com^ ||www.trewsgk.com^ +||ojvcd.treasuremax.fun^ +||ojvcd.treasuremax.live^ +||ojvcd.treasuremax.online^ ||ojvcd.treasuremax.shop^ +||ojvcd.treasuremax.space^ +||ojvcd.treasuremax.website^ ||ojvcd.treasuremax.xyz^ +||ojvcd.treasuremaxs.online^ ||treasury6.com^ ||trendcsx.com^ ||trendrgy.com^ @@ -5155,12 +6597,15 @@ ||www.trustcoin-exchange.xyz^ ||trusthk.co^ ||trustweb.cc^ +||tru-trade.one^ ||trutrade.ink^ +||trutrade.life^ ||trutrade.wiki^ ||trutrade.zone^ ||vsw.tslessd.store^ ||vsw.tslessd.xyz^ ||www.plussji.com^ +||www.pluszipz.com^ ||cbectw.com^ ||asia.exneschanges.com^ ||exbit161.xyz^ @@ -5169,6 +6614,7 @@ ||exnesschange.com^ ||zzlweb.top^ ||twrecover.com^ +||twsfirstrecord.com^ ||www.tailait.top^ ||www.txcoinn.com^ ||www.tsmarkets.co^ @@ -5193,7 +6639,12 @@ ||acq168.ubggi.com^ ||www.ubggies.com^ ||www.ubggiraes.com^ +||www.uboxfgk.com^ +||www.uboxfgl.com^ ||www.uboxnjib.com^ +||www.uboxnjiq.com^ +||www.uboxnjis.com^ +||www.uboxnjiz.com^ ||bbb.aiubs.net^ ||bkubsob.com^ ||ret.jdkubs.com^ @@ -5209,6 +6660,7 @@ ||www.ubsext.com^ ||www.ubsus.net^ ||api.giceth.xyz^ +||ubst.me^ ||ucex-online.cc^ ||ucex.cc^ ||ucexcoin.cc^ @@ -5217,6 +6669,9 @@ ||www.ucexcoin.com^ ||www.ucexex.com^ ||www.uexcex.vip^ +||www.ueex-global.com^ +||www.ueexcoin.com^ +||www.ueexcointop.com^ ||www.ueexglobal.com^ ||mh6688.uevuseors.com^ ||mh6688.uevuseoryes.com^ @@ -5226,6 +6681,8 @@ ||www.uevuser.com^ ||wwwi.uevuser.com^ ||www.uezmarktss.com^ +||www.vnusaierugf.com^ +||app.lkmkihhd.com^ ||ht.ukexba02.top^ ||ht.ukexba06.top^ ||ht.ukexba1.top^ @@ -5245,35 +6702,53 @@ ||www.usdc-vipfx.com^ ||usdt-miner.com^ ||usdtmineral.com^ +||usdt-wintermute.top^ ||www.usgforex.com^ ||www.usgfx.global^ ||sss.difirety.com^ ||sss.difiroxe.com^ ||wcr.oilvtcs.com^ +||ss777.ussieuriys.com^ +||uss777.ussieuos.com^ +||uss777.ussieureos.com^ ||uss9989.usscor.com^ ||uss9989.usseaor.com^ +||uss9989.ussearys.com^ +||uss9989.ussebaruies.com^ +||uss9989.ussebaryts.com^ +||uss9989.usseoaryts.com^ +||uss9989.ussiertos.com^ ||www.uuexjap.vip^ ||www.uuexxs.cc^ ||www.uuxekap.vip^ ||www.uuxekop.vip^ +||ff.volatilal.com^ ||ff.volatilap.com^ +||ff2.volatilal.com^ ||ff2.volatilio.com^ ||www.uvbastsaioy.com^ +||www.uvblaeoy.com^ ||wwwi.uevuseors.com^ ||blockchain.uvbastsao.com^ +||blockchain.uvbstayer.com^ ||mh6688.uvbsta.com^ ||qq888.uvbassa.com^ ||www.uvbassa.com^ ||www.uvbsta.com^ +||wwwi.uvblaeoy.com^ ||www.uepluoareos.com^ ||www.uepluooss.com^ ||wwwi.uepluss.com^ +||www.ulineme.com^ ||m.uncleblockgloballimited.com^ ||h5.unis-shop.com^ +||m.unisnowfx.co^ ||dunicorn.co^ +||hfsuni.icu^ ||hopswap.cyou^ ||hufbyruni.icu^ ||rugfhuni.icu^ +||unihjic.icu^ ||uniswap-v2.one^ ||uniswap.win^ ||uniswapbtc.xyz^ @@ -5295,6 +6770,7 @@ ||m.unlimtedgold.cc^ ||m.unlimtedgold.co^ ||www.unlimtedgold.com^ +||app.unobitex.world^ ||www.unsysx.com^ ||www.unsysxer.com^ ||www.unsysyxer.com^ @@ -5306,13 +6782,21 @@ ||mvs.upbounes.com^ ||mvs.upbounx.com^ ||pp01.upbounx.com^ +||www.upholdcdr.com^ +||www.upholdebu.com^ +||www.upholdjiu.com^ +||www.upholdjivd.com^ +||coin-franklin.com^ ||useintl.org^ ||www.uswcuxux.vip^ +||www.uswcxose.vip^ ||www.utubebp.vip^ ||www.utubedha.vip^ ||www.utubedp.vip^ ||www.utusvcu.vip^ ||www.utuxspa.vip^ +||88.tw-ulike.com^ +||www.varianseuar.com^ ||vwhcg0l7i2.com^ ||user.vig-investments.com^ ||viodabankrate.com^ @@ -5330,7 +6814,12 @@ ||www.vlctdfex.com^ ||www.vlctdfx.com^ ||www.vlctradefx.com^ +||www.vlctrading.com^ +||bymstores.com^ +||startvvm.com^ +||www.startvvm.com^ ||www.vmallocs.com^ +||www.vmcapitals.com^ ||www.vsglobals.com^ ||vt-top.com^ ||vt-top.tw^ @@ -5338,6 +6827,9 @@ ||user.fxvsvip.com^ ||user.vsfxvip.com^ ||www.vsfxvip.com^ +||vsdrhu.com^ +||vsdtwo.com^ +||www.vsddcu.com^ ||gbp.vacaoxt.com^ ||valutrade.top^ ||valutrade.xyz^ @@ -5345,6 +6837,7 @@ ||h5.vanguardokx.site^ ||app.fnebbeqnca.com^ ||www.vrkaadawbs.com^ +||vanlianex.com^ ||user.vantagesfx.com^ ||user.vantagesmarket.com^ ||www.vantagesmarket.com^ @@ -5353,11 +6846,19 @@ ||www.vantwnow.net^ ||www.vantwnow.top^ ||www.vantwnow.xyz^ +||www.varianseivd.com^ +||www.varianseuqw.com^ +||www.varjamserbrv.com^ +||www.vaticapital.com^ +||www.vaticapitales.com^ ||www.vbibkl.vip^ ||www.vbicso.vip^ ||www.vbikp.vip^ ||www.vbixnn.vip^ +||vechains.net^ ||www.venus-financek.com^ +||www.venusprotocolhuq.com^ +||www.venusprotocolnck.com^ ||www.venusprotocolnfk.com^ ||vibbits.net^ ||power-vic.com^ @@ -5387,23 +6888,40 @@ ||www.znystoken.com^ ||waa.visoikc.com^ ||wsd.visoikc.com^ +||vistacointvp.com^ +||www.vistova-bxcrm.com^ +||www.vistovamarketcrm.com^ +||www.crm-vistova.com^ +||www.vismkcrm.com^ +||www.vistovamarket-crm.com^ ||spvivocity.com^ ||www.spvivocity.com^ ||www.yfcvivocity.com^ +||m.startvvm.com^ +||www.bereajoys.com^ +||www.fxteamhub.com^ +||www.govvcenter.com^ ||www.vmfxteam.com^ ||tmarkets.icu^ ||volmarkets.icu^ +||www.volmarkets.icu^ +||member.volo.finance^ ||www.voltrnow.com^ ||www.voltrnow.org^ ||www.voltrnow.shop^ ||www.voltrnow.site^ ||www.voltrnow.top^ +||spread.vstmexexchange.vip^ ||h5.vtptrade.com^ +||www.vtptrade.com^ ||vsw.waves.city^ ||vsw.waves.directory^ ||vsw.waves.works^ ||www.fsxcoin-vip.com^ +||www.otcwbcoin.com^ +||www.vipwebone.com^ ||www.wb-one.com^ +||www.webone-coin.com^ ||www.webone-otc.com^ ||app.wbexgo.com^ ||h5.wbexb.com^ @@ -5425,12 +6943,14 @@ ||web3.coinivts.com^ ||web3.mingliuweb.xyz^ ||web30miningpool.com^ +||web3deeplx.cc^ ||webdft.com^ ||webqdat.com^ ||wngx2.wexfc.com^ ||wwe.weduoi.com^ ||wwgx2.wexfc.com^ ||www.coindifeweb3.xyz^ +||www.defiweb3if.com^ ||www.webdft.com^ ||www.weblexs.com^ ||www.webswap.vip^ @@ -5443,6 +6963,10 @@ ||app.weex-ex.com^ ||dolo.ewweex.com^ ||dolo.wexxex.com^ +||nemo.weex.fun^ +||nemo.weex.fyi^ +||nemo.weextg.fyi^ +||nemo.weextg.xyz^ ||www.exweex.com^ ||www.wee-ex.com^ ||www.week-trademax.xyz^ @@ -5460,8 +6984,12 @@ ||m.wezcu.com^ ||www.wfdcoin.top^ ||www.ikoeg.com^ +||dfecs.sfhftg.com^ +||fhdg.mj61qm.com^ ||www.wfpcoin.live^ ||ev4.wheatoncc.com^ +||eve.kinrossgoldeh.com^ +||eve.wheatoniu.com^ ||allgame99.net^ ||fungamebest77.net^ ||prowin99.org^ @@ -5475,6 +7003,7 @@ ||www.wook.cloud^ ||add778.com^ ||m.ethdefie.com^ +||walletdefi-plus.com^ ||www.walletcoines.com^ ||www.walletdefi-max.com^ ||www.walletfinancepro.com^ @@ -5484,10 +7013,15 @@ ||www.walletsaa.com^ ||www.walletsab.com^ ||www.walletsac.com^ +||www.walletzia.com^ +||www.walletzie.com^ +||www.walletzis.com^ ||www.wecoinsbase.com^ ||walletexchange.buzz^ ||tikk-shop.net^ +||walmartglobalme.com^ ||walmartglobalmx.com^ +||walmartglobaloe.com^ ||walmartglobals.com^ ||walmartshopgo.com^ ||www.tikk-shop.org^ @@ -5497,10 +7031,16 @@ ||www.walmant.top^ ||www.walmarteshop.net^ ||www.walmert.xyz^ +||www.walnant.com^ +||www.walnant.live^ +||www.walnant.net^ +||www.walnant.shop^ ||www.walnart.net^ ||www.walnart.store^ +||walmartglobalom.com^ ||walrus-token.com^ ||gh.gaogaoingb.cn^ +||www.tianmaoid.com^ ||ymt.gaogaoingb.cn^ ||d.wayteccs.com^ ||e02.waytecies.com^ @@ -5513,9 +7053,13 @@ ||trade8.ziintek.com^ ||financial.wazirrz.com^ ||qun111.wazirrz.com^ +||wazirx-defi.app^ +||wazirx-defi.club^ +||wazirx-defi.pro^ ||dgone.globaltrack.cc^ ||dgone.pleroma.cc^ ||dgone.pleroma.live^ +||gmt.fodesrvnet.info^ ||gmt.fodesrvnet.live^ ||gmt.globaltrack.website^ ||lucky168.pleroma.cc^ @@ -5530,12 +7074,20 @@ ||wt.bepumarkets.com^ ||wt.cnanputfvbq.com^ ||wt.gopugroup.com^ +||web3.znyun.xyz^ +||app.eihidhvd.com^ ||app.mmsvfgt.com^ +||wellsfargotw.com^ ||h5.weltcoin.com^ ||www.api.weltkajshf.xyz^ +||m.westerng.com^ +||m.westernv.com^ +||www.westernv.com^ ||www.whaeokx.com^ ||www.whakoex.com^ ||www.whooshops.com^ +||m.widehighltd.cc^ +||wanyouheng.com^ ||www.widehighfx.com^ ||trader.maxwinote.com^ ||trader.ordeforex.com^ @@ -5545,35 +7097,58 @@ ||m.wwintersnow.com^ ||download.cloudwirex.net^ ||m.cloudwirex.com^ +||aaa.wishshop.today^ ||wishop.me^ ||www.wishmaller.com^ +||www.boizoom.com^ +||www.xoizoom.com^ ||dkf.wokaai.com^ ||pmb.wokaai.com^ ||v.992kky.com^ +||jjeez.com^ ||jjurs.com^ +||jjuu1.com^ +||pecgw1.com^ +||pecgw10.com^ ||www.cuptopss.com^ ||www.jjurees.com^ ||www.jjurese.com^ ||www.jjuresr.com^ +||www.teamasterer.com^ +||www.topteasnow.com^ ||www.uuteas.com^ +||zzjje.com^ ||work4bit.top^ ||www.work4bit.com^ ||www.work4bit.org^ ||www.work4bit.top^ +||www.worldibers.com^ +||www.worldibytau.com^ +||www.worldzaers.com^ +||www.worldzers.com^ ||www.goldsti.com^ ||appleapp2.com^ ||de34d.k8x.org^ ||yq.xingongzi.com^ ||www.bitinsbeex.com^ +||haitaoglobal.tw^ ||app.ynjkfhg.com^ +||www.xdhbg.me^ ||www.xedcg.com^ ||xedli.com^ ||xedlp.com^ ||xedml.com^ ||xedpq.com^ +||www.xexsas.vip^ +||www.xexvspr.vip^ +||www.xfcbg.website^ +||www.xfvbg.online^ ||www.xfvbg.xyz^ +||vve.xilecai.com^ ||www.xilecai.com^ ||haidilaohuodon26.cn^ +||www.xlhbg.cloud^ +||xlhbg.cloud^ ||m.xmfxs-markets.com^ ||mwxyq.com^ ||treasurystockfx.com^ @@ -5587,7 +7162,9 @@ ||www.txpkw.com^ ||www.vrpsc.com^ ||www.wmbql.com^ +||www.xgfta.com^ ||www.xlgvh.com^ +||www.ywwtr.com^ ||www.zadqb.com^ ||xmglobalvip.com^ ||fubaba.online^ @@ -5595,14 +7172,23 @@ ||portal.xpromarkets.live^ ||portal.xpromarkets.org^ ||portal.xpromarkets.site^ +||www.xpromarkets.capital^ ||www.xpromarkets.com^ +||www.xpromarkets.website^ +||xpromarkets.capital^ ||xpromarkets.net^ ||www.xtexchangepro.com^ +||www.xtbveb.com^ +||www.xtbvic.com^ ||xtbcva.com^ ||xtbium.com^ +||xtbved.com^ ||xtbver.com^ +||xtbvic.com^ ||xtnapp.com^ ||xtnappk.com^ +||xtnexc.com^ +||xtntw.com^ ||www.xtzant.com^ ||www.xtzerbm.com^ ||www.xtzido.com^ @@ -5611,12 +7197,15 @@ ||xtzido.com^ ||xtzleng.com^ ||xtzsxz.com^ +||www.xubig.shop^ ||ubsexgk.com^ ||ubsexgz.com^ ||www.ubsexgz.com^ +||www.xdhjg.shop^ ||curryency.kasnses.com^ ||financial.kasnses.com^ ||pienoxbank.top^ +||pienoxbina.top^ ||pienoxcbd.top^ ||h5.xigishopping.com^ ||d.app60716.xyz^ @@ -5628,7 +7217,13 @@ ||ser.xitca.co^ ||ser.xitca.site^ ||ser.xitca.website^ +||pienoxcoin.top^ ||pienoxifc.top^ +||pienoxvip.top^ +||xoneipapk.top^ +||xoneipark.top^ +||xoneipmac.top^ +||xoneipugg.top^ ||www.xtrade.com^ ||www.xtrade.tw^ ||www.tradxtrad.com^ @@ -5642,6 +7237,7 @@ ||bth-coinbase.cc^ ||www.ydfxm.com^ ||www.ydnexks.cc^ +||www.ydnvoel.vip^ ||www.ydxrunplus.com^ ||www.ydxrunpro.com^ ||download.yexcloud.com^ @@ -5650,6 +7246,7 @@ ||yexbe86.com^ ||yexexpro.com^ ||fun88.yggaming.net^ +||www.zzhouyishop.org^ ||m.ysex-web3.com^ ||m.ysexcoin.org^ ||www.ysexcoin.net^ @@ -5665,11 +7262,16 @@ ||yueme.com.tw^ ||www.yyshopgou.com^ ||yykjgou.com^ +||www.gmxer.com^ +||www.yahoofficial.com^ +||app.yahjio.com^ +||ios.yahuio.com^ ||yandexbest.com^ ||coinmarketcap.yasenfinancial.site^ ||moro.yasenfinancial.live^ ||roaces.yasenfinancial.site^ ||m.yategoo.com^ +||pxmartapp.com^ ||www.pxmartapp.com^ ||www.yearn-financed.com^ ||www.scctg.com^ @@ -5686,6 +7288,9 @@ ||www.youcns.vip^ ||www.youcopn.vip^ ||youcbe.vip^ +||m.30665217.ink^ +||whh.goldfet.com^ +||whh.goldtetr.com^ ||www.zbap.vip^ ||www.zbbdy.vip^ ||www.zbctvc.vip^ @@ -5696,17 +7301,39 @@ ||www.zbviee.vip^ ||www.zbwhc.vip^ ||www.zbzbijs.vip^ +||www.zbzbnas.vip^ ||www.zbzbss.com^ ||www.zbzuitt.vip^ ||m.zdex.store^ +||www.zdtot.website^ +||www.zrtot.live^ +||www.zenexce.com^ +||www.zenexco.com^ +||www.zenexcpro.com^ +||www.zenexcu.com^ +||www.zenexcus.com^ +||www.zenexcw.com^ ||www.zenexin.com^ +||www.zenexmax.com^ ||www.zenexr.com^ ||www.zenexw.com^ ||zenexc.com^ +||zenexq.com^ ||we.zfxs.vip^ ||zealmarketfx.com^ +||www.zktbt.world^ +||www.zktgt.fun^ +||zktgt.fun^ ||www.zlc.name^ +||www.zltbt.site^ +||www.zltet.fyi^ +||www.zltht.xyz^ +||www.zrtot.xyz^ ||nxqec.mthcknx.com^ +||www.zvtgt.online^ +||www.zvtot.info^ +||www.zalando-shop.com^ +||www.zalando-web.top^ ||www.zalandoshops.cc^ ||www.zalandoshops.com^ ||tw-zalora.tw^ @@ -5715,6 +7342,7 @@ ||zalora886.com^ ||zlrshop886.com^ ||zero2richer.store^ +||www.zeusiie.com^ ||www.zeusjio.com^ ||n.ziinitieks.com^ ||rm1388.ziieatieks.com^ @@ -5724,6 +7352,7 @@ ||www.zouskru.com^ ||zouskru.com^ ||zosvhu.com^ +||ww.zousdzx.com^ ||www.zouscikj.com^ ||www.zousdzx.com^ ||www.zoussxz.com^ @@ -5746,10 +7375,14 @@ ||ebay-uk.shop^ ||ebay-whsle.com^ ||ebay-whsles.com^ +||ebaymallusa1.com^ ||ebayus.top^ +||fgsw.gfweu.shop^ ||fzyj.anyok.world^ +||ghycke.com^ ||gl.ebay.appshops.xyz^ ||shop.ebay-uk.vip^ +||store.eamg.xyz^ ||traderstore-ebay.com^ ||trading-ebay.com^ ||v.show-ay.com^ @@ -5757,6 +7390,7 @@ ||www.bay-e.shop^ ||www.bay-e.top^ ||www.bay-e.xyz^ +||www.ddffreebay.com^ ||www.e-bav.top^ ||www.ebay-tw.buzz^ ||www.ebay-tw.click^ @@ -5768,28 +7402,48 @@ ||www.ebay-tw.wiki^ ||www.ebay-uk.shop^ ||www.ebay-uk.top^ +||www.ebaytwtw.com^ ||www.ghhebay.com^ ||www.global-shops.net^ ||www.mall-ebay.com^ ||www.shopppebayss.com^ +||www.ssehhebay.com^ +||www.sssehhebays.com^ +||www.uniunebay.com^ ||www.vkudwu.com^ ||xdre.brgsd.world^ +||etrgster.com^ +||www.cgfetoro.com^ ||www.etoracluyer.com^ ||www.etoroes.com^ ||www.etrvnc.com^ +||www.nppld.com^ ||www.tfxip.com^ +||app.einvest.vip^ +||app2.einvest.vip^ +||p2.etouxin.top^ +||flyswap.vip^ +||flyswap.world^ ||anzcoins-svipsaz.com^ ||iclick.club^ +||ifasa.cyou^ ||cng.ikalaco.com^ +||htps.ikalaatrtys.com^ ||htps.ikalaco.com^ ||htps.ikalacoaruts.com^ ||htps.ikalacoer.com^ ||htps.ikalaortys.com^ +||htps.ikaloeatrtys.com^ +||htps.ikalopys.com^ +||ikalaatrtys.com^ ||www.ikalaorqtys.com^ ||www.imb.com.tw^ ||h5.imtoeknstw.com^ ||m.imtoekn-tw.com^ ||m.imtoekns-tw.com^ +||m.imtokenstc.com^ +||www.imtokenb.cloud^ +||www.imtokenso.com^ ||austyn.imtrom.com^ ||cohen.imtrom.com^ ||cohen.imtrone.com^ @@ -5799,9 +7453,11 @@ ||mckenzie.tronim.com^ ||scarlet.tronim.com^ ||xzavier.imtrone.com^ +||itbit-pro.com^ ||itbitgew.com^ ||itbitsw.com^ ||itbitusid.com^ +||www.itbit-pro.com^ ||www.itbitol.com^ ||www.itbitoyz.com^ ||www.itbitsw.com^ @@ -5809,13 +7465,28 @@ ||www.itbitusid.com^ ||www.z8int.com^ ||z8eap.com^ +||jetsetgo-tw.pro^ +||intramirror-068.top^ ||www.mevius.com.tw^ +||smvip.hopto.me^ ||fxspeedwin.com^ ||m.imtokenl.net^ ||m.imtokense.com^ +||uforce.fun^ ||mer.zwnflom.com^ +||app.xsssoop.com^ +||www.bosijl.com^ +||app.dierslp.com^ +||www.mkiug.com^ +||www.xbnvmhy.com^ +||www.xopsf.com^ ||www.xreyugb.com^ +||app.gopbbl.com^ +||www.jfhjdjbbdjb.com^ ||www.jfijkouj.com^ +||www.njdfhugv.com^ +||www.yiahvdycvb.com^ +||1hdmall.com^ ||www.csszsw.com^ ||www.jiyiiusi.com^ ||www.kjghll.com^ @@ -5826,9 +7497,13 @@ ||www.mitasec-tw.com^ ||www.sanliglobalsl.com^ ||www.sanliglow.com^ +||www.slgj-28.com^ +||www.slgj28.com^ ||fiscal.sanfmore.com^ ||not.sanfmore.com^ +||m.mitsubishicorphk2.xyz^ ||slss258.com^ +||www.sanldj668.com^ ||xbb823.com^ ||dx.tw-mitsubishi.com^ ||dx.twmitsukoshi.com^ @@ -5841,10 +7516,14 @@ ||vip.shjys86.com^ ||www.chnfe86.com^ ||www.shfecn.com^ +||www.shfecn33.com^ +||www.shfecn88.com^ +||www.shfecn98.com^ ||www.98021061.vip^ ||www.abcciqv.xyz^ ||www.aediu.com^ ||www.docnls.xyz^ +||www.ffnvngfg.com^ ||www.jfdhq.xyz^ ||www.shejlo.com^ ||www.square67a.top^ @@ -5854,22 +7533,36 @@ ||www.zvcbd.xyz^ ||szehopes.com^ ||www.szehopes.com^ +||ttt4tt.com^ ||a.dsawcdaa.xyz^ ||www.ndfbxsa.xyz^ ||www.qwdlu.xyz^ ||w.senocbrmk.com^ +||api.citicwp.com^ ||www.cnhklot.com^ +||www.cnhklot.net^ ||www.hklot.net^ ||www.ezizhongtgj.com^ ||www.zizhongtgj.com^ ||www.ztgjgloint.com^ ||app.fqbuio.top^ ||www.fqbuio.top^ +||app.cqcueq.top^ +||app.tmohj.top^ ||www.cqcueq.top^ +||www.dbvuie.top^ +||www.gelrpo.top^ ||www.kfvwcy.top^ +||www.pclbs.top^ +||www.tmohj.top^ +||freddysec.com^ +||ww.qwencxp.work^ +||pill.zhongyedw.com^ ||zhe.zhongyzz.com^ ||www.shopvipgiveback.com^ +||www.qiz80.com^ ||9x168.com^ +||m.rb1588.com^ ||m.rb1788.com^ ||m.rb1818.com^ ||m.yb17878.com^ @@ -5886,6 +7579,10 @@ ||tianw1688.com^ ||www.yzcx1688.com^ ||www.teshops.net^ +||apac.yashengiv.com^ +||apac.yashength.com^ +||www.yashengcc.com^ +||yashengcc.com^ ||asia.yajecx.com^ ||asia.yajewi.com^ ||asia.yajhbtae.com^ @@ -5894,13 +7591,16 @@ ||yajuvds.com^ ||d.sropt.top^ ||h.kkgyv.top^ +||h.qmbdn.top^ ||m.erfsk.top^ ||m.yfiwn.top^ ||m.yfktp.top^ ||m.yuwie.top^ +||www.77amazon.xyz^ ||www.fhdjko.cn^ ||www.amazontwshop.com^ ||sulou91.com^ +||www.souhu85.com^ ||www.tugvq.com^ ||sjm.h2288.xyz^ ||www.h5558.xyz^ @@ -5913,9 +7613,12 @@ ||www.uhjkccv.com^ ||qtm8.h202288.xyz^ ||www.jptz008.com^ +||app.dmlpoi.top^ ||tnyjlo.top^ ||www.mdzdrq.top^ ||www.tnyjlo.top^ +||www.wknzkb.top^ +||www.xvmxbn.top^ ||www.qlwmba.top^ ||jd-gogo.com^ ||jd-good.com^ @@ -5932,6 +7635,7 @@ ||www.jd-vip.shop^ ||jd-tw.shop^ ||www.jdjr.tw^ +||www.jdjr10086.tw^ ||rr36.gintfim5588.com^ ||rr60.gintfim168.com^ ||rr69.gintfim168.com^ @@ -5961,8 +7665,14 @@ ||www.baile6688vip.com^ ||laliquiere.com^ ||mbekgac.xyz^ +||excellentsec.com^ +||excellenttide.com^ ||js8999.net^ ||www.jjurer.com^ +||app.xingebcbgrf.com^ +||www.cjbvedfu.com^ +||www.coxodg.com^ +||www.noeote.com^ ||wap.dersonpror.com^ ||th88.shop^ ||mer.yurenibl.com^ @@ -5974,15 +7684,20 @@ ||www.dsdnsbfemqsad.com^ ||www.hgieiuqwhq.com^ ||www.kwsfzqvod.com^ +||xin-an.vip^ ||app.zxmvkfmnqnl.com^ ||www.jdhvnghf.com^ ||www.vijtuheiuqwe.com^ ||www.ycnbjdfa.com^ +||prutw.com^ +||prutw.org^ ||www.axswyklbjnwww.com^ ||www.xdaltmgwpm.com^ ||nbo1.systnn.com^ ||www.syssttnen.com^ ||www.systtnen.com^ +||macao1089.com^ +||www.amldr668.com^ ||wanfeng443.com^ ||weshinemkts.com^ ||weshinec.com^ @@ -5997,6 +7712,7 @@ ||ramonfinance.com^ ||ramonfund.com^ ||ramoninv.com^ +||ramoninvest.com^ ||ramontrades.com^ ||hsydl.com^ ||jefferies8.com^ @@ -6008,8 +7724,11 @@ ||z003.8legend.cc^ ||app.ccmqhd.top^ ||app.cpkujq.top^ +||www.cffmcg.top^ +||www.cnwbzl.top^ ||www.chjasfebsa.com^ ||www.sxzvcs.com^ +||www.utibngjhd.com^ ||www.happybuyer.live^ ||www.newtradex.site^ ||www.lxmcshoptw.com^ @@ -6017,8 +7736,12 @@ ||www.ypscshowtw.com^ ||www.ypshowtw.com^ ||81768478.youtaosc.vip^ +||ymgshop.com^ +||h5.yxmalls.com^ ||h5.yxshope.com^ ||m.dozbm.com^ +||yxmalls.com^ +||yxshope.com^ ||app.gptaigu.com^ ||app.ydzjjys.com^ ||twyuanda.top^ @@ -6029,11 +7752,19 @@ ||fs.ugnrjgmr.tw^ ||ke.njlrngi.com^ ||www.jiuwenni.xyz^ +||app.jioerul.com^ ||app.paodayi.com^ ||app.pvhjdty.com^ ||app.ringwi.com^ ||www.yuantai.sk^ ||www.zwa4a.com^ +||app.znpptt.top^ +||app.zogkqs.top^ +||app.zqfycm.top^ +||app.ztrbpk.top^ +||app.zwfvtp.top^ +||www.zhozux.top^ +||www.ztrbpk.top^ ||zy16888.net^ ||app.k9899.vip^ ||app.zxjk.vip^ @@ -6041,6 +7772,8 @@ ||m.k9866.vip^ ||m.ycbsf.com^ ||www.mgs1788.vip^ +||www.zyzdapp1.com^ +||www.zyzdapp2.com^ ||ntr.livzaz.com^ ||app.rnfenqwndams.com^ ||www.gjtjwerkldms.com^ @@ -6050,7 +7783,12 @@ ||m.trustglobals.vip^ ||www.globalfranch.top^ ||www.globalfranche.top^ +||www.worldwidedhe.com^ +||www.worldwidevdo.com^ +||www.aptao.cc^ ||www.babao.cc^ +||www.batao.cc^ +||www.oinp2p.com^ ||globalshopsb.com^ ||globalshopsf.com^ ||m.fkptn.top^ @@ -6064,12 +7802,20 @@ ||asia-electricity.com^ ||asia-energyltdcc.com^ ||asia-greenltdss.com^ +||interarcham.com^ ||a.bcrol.xyz^ ||f.iszhb.xyz^ ||www.vbzdbasa.xyz^ ||www.xzlihua.xyz^ +||app.nbshfg.com^ +||www.posvvs.com^ ||www.qieyruy.com^ +||www.shehsl.com^ ||www.uywetuy.com^ +||www.vbjsugi.com^ +||www.vonots.com^ +||www.wioqtuih.com^ +||www.yiowss.com^ ||c002.kgi888.cc^ ||a005.kgi888.cc^ ||a006.kgi588.com^ @@ -6121,12 +7867,16 @@ ||www.fljzdb.com^ ||www.tjbzcgg.com^ ||yodzown.com^ +||www.fstfdtgsu.com^ +||www.yryxbitvknt.com^ +||app.clpowiss.com^ ||karfordfinance.com^ ||karfordsecurities.com^ ||karfordtrade.com^ ||h5.dynamicreviews.me^ ||www.uahnfgbc.com^ ||www.zbkjccuiqeq.com^ +||www.shssub.com^ ||www.stgjpt.net^ ||gmt.andeavor.co^ ||asia.huifucc.com^ @@ -6150,10 +7900,17 @@ ||www.xkjvuriqweuij.com^ ||asia.huijuxca.com^ ||www.xziqd.xyz^ +||huigumaketes.com^ +||huigumaketss.com^ +||huigumaketus.com^ +||huigumaket.com^ +||app.rvxrtv.top^ ||app.vpqkuf.top^ ||app.zjyuor.top^ +||gzxshg.top^ ||hui.abccornerhk.com^ ||ne.yumingxuanjewelry.com^ +||www.rvxrtv.top^ ||y.feimaglobal.com^ ||app.huifengpro.com^ ||huifengpro.com^ @@ -6185,6 +7942,7 @@ ||huixinshope.com^ ||huixinstore.com^ ||suncity.bz^ +||lvy.qianying.co^ ||onwrok.akoues.com^ ||www.akoues.com^ ||e.co-finance.org^ @@ -6196,23 +7954,34 @@ ||bsassets.com.tw^ ||m.jrqrml.top^ ||www.smnhus.com^ +||bossxw.com^ +||www.bossewes.com^ ||www.bossxw.com^ +||www.bsxss.com^ ||www.bx88st.com^ ||yxnet002.bx66cs.com^ ||yxnet005.bx66cs.com^ ||yxnet007.bx66cs.com^ +||bl288.net^ ||www.bl678.net^ ||app.glpwgj.top^ ||m.aifejq.top^ +||m.kadylp.top^ ||m.wgsqwy.top^ +||www.ivqly.top^ ||acs168.net^ ||www.acs168.net^ +||www.1binvest.com^ ||www.cail888.net^ +||www.cali1356b.net^ ||www.cali777.net^ ||www.cali818.net^ ||www.cali828.net^ +||www.cali888.net^ ||www.calibet.com^ ||www.cali1356a.net^ +||www.lsknbjgt.com^ +||app.mbjgifjg.com^ ||app.qcwvw.top^ ||app.vgacm.top^ ||m.aztcp.top^ @@ -6233,22 +8002,34 @@ ||shoptwe.com^ ||shoptwn.com^ ||tw9338.top^ +||twbtch.top^ +||twbtcl.top^ +||twmnb.top^ ||www.7322561.com^ +||www.tw9008.vip^ ||whs399.com^ ||www.dsglobalyll.com^ +||a.qh8965.com^ ||www.qh356.tw^ +||www.twlotterys.com^ ||www.awwr9.com^ ||taiyin.vip^ ||pg.penvyr.tw^ ||app.dgnfihgf.com^ ||app.zvxyuet.com^ +||www.plpvipe.com^ +||www.vdfsjk.com^ ||www.xjbcbvjvv.com^ +||www.xoapwl.com^ ||delenzing.xyz^ ||diaodl.xyz^ ||ezldfa.xyz^ ||ijjeurpw.one^ ||yuhangewg.xyz^ ||httw8.cyou^ +||www.ashjcbbv.com^ +||app.ciwklos.com^ +||www.dsfgrgz.com^ ||xp.ji59888.com^ ||www.jimmyconniebuuks.one^ ||app.dgydfgyd.com^ @@ -6257,13 +8038,22 @@ ||www.vhbcfvh.com^ ||www.yusagcxg.com^ ||www.mfxye.com^ +||khgcapital.com^ +||app.pishghya.com^ +||www.bsiyfygxf.com^ ||www.shuidonoa.com^ +||www.wioasoijf.com^ +||www.yopiep.com^ ||vdqwaszx.3y3sd.shop^ ||app.btvcfm.xyz^ ||www.bbcmln.xyz^ ||www.mxyge.com^ ||www.tkdyln.com^ +||d.ijzedk.top^ +||d.ividim.top^ +||d.sfsgch.top^ ||d.tyubqq.top^ +||m.ividim.top^ ||hfcfinance.xyz^ ||rb.aocnej.tw^ ||app.uainfbja.com^ @@ -6274,18 +8064,28 @@ ||pn3.cxsbomh.com^ ||www.cxsbomh.com^ ||shop.weipinhuis.com^ +||tw.vipdcy.com^ +||tw.viphtu.com^ +||tw.viphy01.com^ ||tw.vipph03.com^ ||tw.vipshop08.com^ ||tw.vipsije.com^ ||vipmalldownload.com^ +||vipstwmall.com^ +||viptwmallofficial.com^ ||vipvipmall.com^ ||viviptw.com^ ||sg.hohner.cn^ ||shangyue128.com^ ||m.qiyuantw.com^ ||qifanasset.com^ +||qifanassets.com^ +||www.qifanasset.com^ +||app.uthfirygv.com^ ||app.zmhuiso.com^ ||www.kisiujm.com^ +||www.klongb.com^ +||www.peesv.com^ ||d.jgbwdn.top^ ||d.kleyf.top^ ||d.uztgyd.top^ @@ -6294,6 +8094,9 @@ ||m.hmmnw.top^ ||m.iueyc.top^ ||m.ltsly.top^ +||app.qhjdla.top^ +||www.qhjdla.top^ +||www.qhjgec.top^ ||down.qiaoanjin.com^ ||downs.qiaoanjin.com^ ||www.qiaoanjin886.top^ @@ -6309,6 +8112,9 @@ ||wehkl.xyz^ ||www.fcpjtz.com^ ||www.isxsrx.com^ +||app.amjkf.top^ +||app.jalvr.top^ +||app.yoftp.top^ ||schwabcp.com^ ||schwasia.com^ ||schwcapital.com^ @@ -6322,9 +8128,11 @@ ||carriershares.com^ ||carrierstocks.com^ ||carriertrades.com^ +||jiale923.xyz^ ||www.jsgjwftw.com^ ||www.jszbtwtw.com^ ||www.jszzbbtw.com^ +||www.js877449.com^ ||www.dlodq.com^ ||www.forexo24.com^ ||www.kyeiy.com^ @@ -6335,13 +8143,26 @@ ||www.jsf28.com^ ||www.jsforex21.com^ ||www.jsforex25.com^ +||www.jsforex28.com^ ||not.sihaipoe.com^ ||www.sihaipoe.com^ ||guostw.com^ ||www.guostw.com^ +||app.liowsfs.com^ ||app.xingjhcxgvbb.com^ +||www.foieddo.com^ +||www.pieshb.com^ +||www.syoidb.com^ +||app.dkooew.com^ +||app.eruislp.com^ +||app.gaopsin.com^ +||www.iyoblnkgjr.com^ +||www.ncnbbfrycn.com^ +||www.topkks.com^ +||www.ztyugehk.com^ ||h5.guoyouziben.com^ ||h5.guoyouzibeng.com^ +||h5.guoyouzibeng5g.com^ ||www.gqtz285.com.cn^ ||gt1288.vip^ ||ajsksf.com^ @@ -6385,6 +8206,7 @@ ||dl.sjeifk.tw^ ||tf.apkejf.com^ ||www.ibkengt.tw^ +||www.zxcnbijd.com^ ||d.bgfrm.top^ ||d.duopq.top^ ||d.whnfq.top^ @@ -6395,6 +8217,7 @@ ||m.rvlwab.top^ ||m.tvxcn.top^ ||www.nisgjhhg.com^ +||www.zoislo.com^ ||khstrade.com^ ||khfinances.com^ ||khshares.com^ @@ -6406,8 +8229,11 @@ ||www.gyym226.com^ ||gycn2019.com^ ||www.gjfcwz.com^ +||s.tangjung.vip^ +||addm618.com^ ||gjfc133.com^ ||gjfc633.com^ +||oddm618.com^ ||m.wdy66.com^ ||web.aocnu.cn^ ||web.gjfcgme.com^ @@ -6417,7 +8243,9 @@ ||c003.lianzi.me^ ||c004.lianzi.me^ ||aifeier888.xyz^ +||app.wootxshop.pw^ ||www.dooooobox.com^ +||z0503.djg88168.net^ ||dreambxn.com^ ||dreamdte.com^ ||dreamshs.com^ @@ -6429,6 +8257,9 @@ ||www.levewui.com^ ||mcnopros.top^ ||mscbn.top^ +||tera.rusiramo.buzz^ +||yelp.cubamos.buzz^ +||yelp.janima.buzz^ ||asf.dycoins.com.tw^ ||www.dycoins.com.tw^ ||www.rncjnajq.com^ @@ -6439,31 +8270,46 @@ ||www.sjncnvwjehu.com^ ||dbyl1228.com^ ||dbyl1268.com^ +||dbyl1628.com^ ||dbyl1868.com^ ||dbyl1928.com^ ||lin.jueaifdfqq.xyz^ ||m.dabaogj58.com^ ||m.dabaoguoji886.com^ +||m.dbyl1668.com^ ||m.dbyl1778.com^ ||m.dbyl1868.com^ ||m.dbyl1888.cc^ ||m.dbyl1928.com^ ||app.dqfrmd.top^ ||app.dtcggm.top^ +||app.lkzdsj.top^ +||app.lzqods.top^ +||3989988.com^ +||m.3909988.com^ ||m.3989988.com^ ||www.3989988.com^ +||download.cbexvip.top^ +||download.gccbit.life^ +||www.gccbit.life^ ||taiyiptrade.com^ ||oni618.gm1788.net^ ||www.vvtaa3.com^ ||app.hkcp75.cc^ ||app.kdhgudi.com^ +||app.rioyimk.com^ +||www.uobkayhianc.com^ +||www.uobkayhianz.com^ ||jzs833.com^ ||xwde16.com^ ||www.ammb7.com^ ||www.upsve.com^ +||st.iugts.co^ +||www.dx9138.com^ ||app.dgywgu.com^ ||app.fvwhkjaijd.com^ ||app.vjkqeqahw.com^ +||www.chyhbn.com^ ||www.ckvfkqjwuje.com^ ||www.hyvudrb.com^ ||www.jsungdf.com^ @@ -6472,6 +8318,9 @@ ||www.ndfgjfgj.com^ ||www.tianchengsells.com^ ||tnze49.tnze.asia^ +||app.ioajdnde.com^ +||www.cjvnndmcb.com^ +||www.xoissa.com^ ||api.g0r0iqwoeiqu.com^ ||www.asdfgbcn.com^ ||m.833068.fun^ @@ -6493,15 +8342,32 @@ ||www.mouser85.top^ ||www.square36a.top^ ||www.square83c.top^ +||www.tamllvip13.vip^ ||tmao168.com^ ||www.888278.top^ ||www.maihaowanjia.com^ ||alibabavoucher.com^ +||gslbvg.com^ +||m.albyhj17.com^ ||tianmao888.cc^ ||times.9187218.site^ +||timesquare.682211.cfd^ +||timesquare.684229.cfd^ +||timesquare.685553.cfd^ +||timesquare.688528.cfd^ ||tmalltmsh.com^ +||twtmallshdown.com^ ||twtmtmall.com^ ||tianli808.com^ +||app.tlxgvt.top^ +||app.tqxkus.top^ +||www.tenhun.top^ +||www.tlhunl.top^ +||www.trkilo.top^ +||www.ksxsef.com^ +||m.cooperate.today^ +||www.scb588.com^ +||m.goodsstuffs.live^ ||m.192812.com^ ||m.192813.com^ ||m.900256.com^ @@ -6511,6 +8377,7 @@ ||m.y55321.com^ ||m.y88656.com^ ||m.y99855.com^ +||mobile.newmall.info^ ||www.gwbsu.xyz^ ||www.odin68.com^ ||www.odintw588.com^ @@ -6529,6 +8396,13 @@ ||d.wffiz.top^ ||m.yfsna.top^ ||myholidays.tw^ +||www.yhyh168.com^ +||yhyh8888.com^ +||app.dvvbhu.com^ +||app.toplkc.com^ +||www.fhgudgi.com^ +||www.pocsvl.com^ +||www.xbzujie.com^ ||a.vnsr1690.com^ ||a.wns5158.com^ ||am.wns999.xyz^ @@ -6540,6 +8414,7 @@ ||m.wns5198.xyz^ ||m.wnsr0601.com^ ||vns.xi559.com^ +||vnsrylc.info^ ||wns.xinao88.top^ ||wns58777.com^ ||wns7177.com^ @@ -6555,7 +8430,20 @@ ||www.ahzbeuiqhwee.com^ ||weihezb.com^ ||www.weihezb.com^ +||kkbs668.com^ +||www.azovshopping.cn^ +||zhaijidian618.com^ +||www.bpoedi.com^ +||www.fopxce.com^ +||www.gsjasr.com^ ||www.hidokn.com^ +||www.ioopws.com^ +||www.jsgfhjytr.com^ +||www.vvuyuwgh.com^ +||www.zxnigouo.com^ +||www.azxbigiig.com^ +||www.piieudv.com^ +||www.sdjsfgyu.com^ ||a.f968502.xyz^ ||www.hyfun777.com^ ||jiandandai.xyz^ @@ -6571,11 +8459,14 @@ ||m.amtopted.com^ ||user.am-top.com^ ||user.amtopcotd.com^ +||user.amtopcotd.net^ ||www.amtop.top^ ||www.amtop.xyz^ ||www.amtopcoltd.net^ ||www.amtopfx.online^ ||www.amtopokx.com^ +||app.volyuse.com^ +||www.fdgvdjy.xyz^ ||antayfinancial.com^ ||antayfund.com^ ||antaymarkets.com^ @@ -6583,6 +8474,7 @@ ||antaysecurities.com^ ||antayshares.com^ ||antaystock.com^ +||eh.xybeud.tw^ ||tf.prucne.tw^ ||www.aah6a.com^ ||app.nvcbfffo.com^ @@ -6591,8 +8483,10 @@ ||www.wuryugg.com^ ||www.xcbnhdf.com^ ||ej.y5btufj.com^ +||hzvip99.com^ ||www.hzvip66.com^ ||www.hzvip88.com^ +||www.hzvip99.com^ ||www.viphz888.com^ ||www.hagjtw-tww.com^ ||aj.eirngpsf.top^ @@ -6626,13 +8520,22 @@ ||www.club58.net^ ||www.carrefour-mart.shop^ ||www.carrefourmart.shop^ +||www.carrfurmtm.com^ ||carrefoumarrt.com^ ||www.carrefomhxhbs.com^ ||www.carrefomiarrts.com^ ||www.carrefomijuihs.com^ ||www.carrefomiorrts.com^ +||www.carrfinnm.com^ +||www.carrfoxsf.com^ +||www.carrfuriimm.com^ +||www.carrofeojiuort.com^ ||www.carrofomierts.com^ +||www.carrofomjiuort.com^ +||www.carrofomnierts.com^ ||www.carrofoumarts.shop^ +||www.carrotfofo.com^ +||www.carrrfomm.com^ ||www.carrefourstoreing.com^ ||www.shfuqwhlkaf.xyz^ ||app.dfhgfhg.com^ @@ -6641,10 +8544,17 @@ ||anewfujing.newfujing.com^ ||app.rrrrfgnj.com^ ||www.f668.cc^ +||asia.futuoeh.com^ ||app.jyuxww.top^ +||app.ubidjz.top^ +||app.wxgfvz.top^ ||app.xzcnxj.top^ +||app.zjhipy.top^ +||m.grfjid.top^ ||m.jyuxww.top^ ||m.ktbswe.top^ +||m.ubidjz.top^ +||m.wxgfvz.top^ ||flilyxmtime.com^ ||fth5h5.com^ ||futuohk.com^ @@ -6661,6 +8571,7 @@ ||www.furaholdingsinvestment.co^ ||www.furainvestment.co^ ||www.furuiholdings.com^ +||www.xunighe.com^ ||www.fdinvest.net^ ||www.fdinvest.org^ ||fu-fa168.com^ @@ -6674,6 +8585,9 @@ ||www.fufo88.com^ ||llzz.taiyi1788.com^ ||vvin.taiyi5858.com^ +||wn.taiyi1688.net^ +||wn.taiyi1988.com^ +||wn.taiyi588.com^ ||www.fuyingholdings.co^ ||www.fuyingholdings.com^ ||www.fuyinginvest.net^ @@ -6681,11 +8595,19 @@ ||www.fuyunholdingsinvestment.co^ ||www.fuyuninvestment.co^ ||www.fuyuninvestment.com^ +||app.fsesns.top^ +||app.fsidjt.top^ +||app.fssgzp.top^ ||app.fstfta.top^ +||app.fsznvz.top^ +||m.fushengzhengquan.com^ ||www.franklinsxzs.com^ ||www.ftapp223.com^ ||www.ftonlins.com^ ||franklin-tw.org^ +||asia.futuoiu.com^ +||asia.gmxeh.com^ +||futuoiu.com^ ||a.nsfqn.xyz^ ||www.donnls.xyz^ ||www.efiad.xyz^ @@ -6703,7 +8625,10 @@ ||app.flaqlt.top^ ||app.flayce.top^ ||app.flkliu.top^ +||app.flqogr.top^ ||app.fluixj.top^ +||app.ydjdk.top^ +||m.flcjcm.top^ ||m.flkliu.top^ ||rg888.org^ ||rggo168.com^ @@ -6741,6 +8666,7 @@ ||www.kcajseijoqn.com^ ||tst.fc69.online^ ||download.fulong.asia^ +||download.fulong.trade^ ||afrnnc.com^ ||donnls.com^ ||www.aanobj.com^ @@ -6769,6 +8695,7 @@ ||tt01.zbaooo8588.com^ ||wee330.zhunbao558.com^ ||www333.zbaooo8588.com^ +||twxhsmall.com^ ||xiaohuoshu.com^ ||yymcmy.com^ ||www.esanping.com^ @@ -6788,6 +8715,9 @@ ||tw.split-new.com^ ||v.split-new.com^ ||w.split-new.com^ +||samscpop.com^ +||samscvip.com^ +||samscvvip.com^ ||live.ttwq5.com^ ||www.a755733.com^ ||www.agencegout.com^ @@ -6801,10 +8731,12 @@ ||api.nrmafg.com^ ||nusssfq.com^ ||www.izsfdss.com^ +||www.btc5689.com^ ||dapp.solandingmarket.com^ ||ethq.github.io^ ||lzgos.com^ ||mdapp.xcmud.top^ +||v9.webteeswap.com^ ||www.coinrulev.top^ ||cash.bnan900.com^ ||rich.bnan700.com^ @@ -6813,12 +8745,15 @@ ||bnan.casave300.com^ ||coin.bnan680.com^ ||www.btcszhb.co^ +||bitoexs.com^ +||bitvenuzi.com^ ||phone.bittrillion.com^ ||phone2.bittrillion.com^ ||legop.top^ ||www.ctigerxinjiapo.top^ ||www.tw-borrow.cc^ ||www.tw-loans.cc^ +||endjwbdbw.world^ ||fatt188.com^ ||www.huoyusaas.xyz^ ||www.vvatt6.com^ @@ -6854,10 +8789,14 @@ ||ok.i9cneuc.com^ ||ru.kmdjef.com^ ||www.wpmwpm.com^ +||superstarfhight.com^ +||superstario.com^ +||superstargp.com^ ||d.dadpas.xyz^ ||download.dexin.life^ ||app.ohkptw.top^ ||m.febok.top^ +||m.nxnbi.top^ ||m.ohkptw.top^ ||m.qhiylv.top^ ||m.ufksyk.top^ @@ -6871,14 +8810,19 @@ ||www.bbncmd.com^ ||www.dsjkch.com^ ||www.obnerw.com^ +||app.digefa.top^ ||m.hxkdu.top^ ||dl.dpdld.top^ ||m.dplbm.top^ ||m.sdeuj.top^ ||app.dhnuus.com^ +||app.djjsuuj.com^ ||app.hsbjhdd.com^ ||www.lwenudn.com^ +||www.oiwiuyt.com^ ||www.qbujyxdfg.com^ +||www.ropfssl.com^ +||www.vueraad.com^ ||vfgroups.com^ ||vsglobles.com^ ||ydyldx.cn^ @@ -6888,22 +8832,39 @@ ||www.wanfinance.xyz^ ||td.bitcoinacme.com^ ||member.dollarslife.win^ +||defeng999.com^ ||www.defeng123.com^ ||www.defeng168.com^ +||www.defeng66.vip^ ||www.defeng88.vip^ ||www.defeng889.com^ ||www.defeng999.com^ ||app.iiiawdmknals.com^ ||www.nxncbdhasd.com^ +||www.coiyg.com^ +||www.moiyun.com^ +||www.oowueyg.com^ +||www.twgdggf.com^ +||www.xkdkjigyr.com^ +||www.vcvfqf.top^ ||value.hihappyshop.tw^ +||bwin188.net^ ||bwin688.net^ ||kwaic2c.com^ ||kwaigood.com^ +||kwaiaqi.com^ +||kwaifun.com^ ||kwaigoog.com^ ||kwaihop.com^ +||kwaiify.com^ +||kwaisit.com^ ||kwait2t.com^ ||kwaivips.com^ +||kwaizon.com^ ||app.pjshdhjpp.com^ +||www.sjdfsa.com^ +||www.vnioswia.com^ +||ystz.tw^ ||www.twspvivocity.com^ ||www.vivocityyfc.com^ ||h.hfugp.tw^ @@ -6925,6 +8886,7 @@ ||www.ksjhqwjhvru.com^ ||www.nbrbanbman.com^ ||www.xx0fasdwqf.com^ +||dmsit.cc^ ||wyt.yurenigu.com^ ||app.xkjdqiwhea.com^ ||www.hjfgjfgh.com^ @@ -6948,7 +8910,11 @@ ||dx.twmustafa.com^ ||www.musstafa-886.com^ ||www.musstafatw.com^ +||www.rmhqgx.top^ +||www.ywugii.top^ ||1tjpki3yzy4w.com^ +||888889936.com^ +||98988837.cc^ ||bugnkzetmvfspx.com^ ||clurth5kjzcs.com^ ||g6a9iz6i7u.com^ @@ -6960,11 +8926,17 @@ ||oumvcoqzqkvtumh.com^ ||tranndnn.com^ ||uwt11ldf6cy6.com^ +||wwwwnew.com^ +||wwwwxuw.com^ ||app.adhjhlid.com^ ||app.cartewd.com^ +||app.ljdujuss.com^ +||app.xioiwrg.com^ +||app.xoswlpi.com^ ||www.gvfyguf.com^ ||www.ieofovhv.com^ ||www.pdivys.com^ +||www.xoisole.com^ ||app.abwhqnjandsaj.com^ ||app.lgenjnjaknnwa.com^ ||www.dhrhjkxawe.com^ @@ -6972,9 +8944,12 @@ ||www.xkmawuejqujajd.com^ ||battle1688.com^ ||www.htigerglobalgj.com^ +||www.hutigejing.com^ ||www.tigtuohu.com^ +||www.tigwhubw.com^ ||www.tkglobaluo.com^ ||www.ttuokeglobal.com^ +||chenghong.warrior-designer.com^ ||d.hniek.top^ ||d.ohjoi.top^ ||h5.jom166.com^ @@ -6992,6 +8967,8 @@ ||dy.kj8w7et35r.com^ ||dy.zunsi.cn^ ||www.douyin68.com^ +||www.douyin8798.com^ +||www.douyin89.com^ ||www.16y.app^ ||b.fk520.cn^ ||m.mycf68.cn^ @@ -7007,26 +8984,43 @@ ||yn.pemfhr.com^ ||mujingyi.top^ ||mgsd111.com^ +||www.mgsd88.com^ ||app.sdsdfdf.com^ ||www.aehhs.xyz^ ||www.ipqnbs.com^ ||www.pgfkj.xyz^ +||anquan.aceracing.top^ ||m.meg990.top^ ||www.mg81909.top^ +||www.mpj1860.top^ ||www.sfnjfgv.com^ ||jpmchase.tw^ ||h5.modern-inv.com^ ||p6.modern-inv.com^ ||vp.modern-inv.com^ +||bosndy.com^ ||www.dunhuanggou.com^ +||www.upholdtgnh.com^ ||www.chxgjg.com^ ||www.fcdvip.com^ +||6319856.xyz^ ||dn.jrjys58.co.im^ +||app.xinchengtw.vip^ +||www.xinchengdown1.com^ +||www.xinchengdown3.com^ ||xinzimei666.top^ ||app.vrnjwqjshbak.com^ +||www.dvfvds.com^ +||www.liosvi.com^ ||app.newcapitaltw.com^ ||www.shjiniapp.com^ +||app.bopoed.com^ +||app.wuiayfg.com^ +||app.zksfjui.com^ +||www.tioaise.com^ +||www.wuayig.com^ ||www.xdgyug.xyz^ +||www.sports-xhao.com^ ||n.ms86.cn^ ||a.5699am.com^ ||a.655666am.xyz^ @@ -7055,6 +9049,7 @@ ||m.flp521.cn^ ||m.kqxs0099.xyz^ ||m.kqxs323.xyz^ +||m.kqxs66.top^ ||m.kqxs6677.xyz^ ||m.qsd88.cn^ ||m.xinpj22.com^ @@ -7071,6 +9066,7 @@ ||www.oa9200.com^ ||www.xinpj8883.com^ ||xpj12286.com^ +||xpj19208.com^ ||yrz3535.com^ ||aa42.artfunfa.com^ ||artcityfafa.com^ @@ -7082,17 +9078,27 @@ ||zlwqbg.com^ ||www.shjiniapp.icu^ ||www.spsunteccity.com^ +||www.xdcsunteccity.com^ +||xdc-sunteccity.com^ ||h5.yd-shop.tw^ ||m.taogg.xyz^ ||m.vns1029.top^ ||web.yd-shop.tw^ +||ht.shangyue3318.com^ ||shangyue6618.com^ ||shop.yd-shop.tw^ ||shopwnn.com^ ||token.enshop.club^ ||yd-shop.tw^ +||app.copwso.com^ +||app.goispse.com^ +||app.xinylolo.com^ +||www.boieml.com^ +||www.bvchtfy.xyz^ ||www.feitianba.com^ ||www.hfyegd.com^ +||www.litjhgnvid.com^ +||www.xiosyo.com^ ||www.xzhyuidt.com^ ||fightonco.com^ ||fightoninv.com^ @@ -7103,7 +9109,16 @@ ||www.risheng674.com^ ||www.risheng676.com^ ||www.risheng688.com^ +||app.wenxiow.com^ +||app.bosrtti.com^ +||app.loospi.com^ +||app.rishengyy.com^ ||app.arqzcdc.com^ +||m.bykzvz.top^ +||m.lqipfo.top^ +||www.bykzvz.top^ +||www.lqipfo.top^ +||fscglobe.com^ ||fscm.com.tw^ ||fsctrades.com^ ||visit.rixin-inv.com^ @@ -7117,13 +9132,16 @@ ||m.yfnvkr.top^ ||m.yqjaij.top^ ||m.zsvndx.top^ +||app.etyopp.top^ ||app.udhxyq.top^ ||app.zohcso.top^ ||www.uvgwbk.top^ ||www.xbcfux.top^ +||www.zohcso.top^ ||app.vmrkqjnssjdhb.com^ ||www.kvfuhjahqeh.com^ ||www.nxvrhbuaheq.com^ +||app.tioauws.com^ ||expectasec.com.tw^ ||expectaglobal.com^ ||expectatrade.com^ @@ -7159,6 +9177,9 @@ ||priderockmarket.com^ ||priderocktw.com^ ||www.priderockmkt.com^ +||app.bhhyhsds.com^ +||app.ufjioaerr.com^ +||www.gjsuyo.com^ ||cu.ruvnrjg.top^ ||ep.emngrk.top^ ||ps.epmtig.com^ @@ -7168,6 +9189,14 @@ ||splopc.xyz^ ||priceglobal365.net^ ||aaa.bycmqy.com^ +||app.pucvmv.top^ +||www.pfbjat.top^ +||www.potomb.top^ +||www.pucvmv.top^ +||app.duiopax.com^ +||app.tiosus.com^ +||www.iooudnnd.xyz^ +||www.woruyrgsb.com^ ||www.ay421.com^ ||www.ay633.com^ ||dl.tnsiu3c.com^ @@ -7185,11 +9214,24 @@ ||www.fvrvp.com^ ||mysmartcoin.net^ ||mysmartcoinss.com^ +||mysmartscoins17.com^ +||mysmartscoins20.com^ +||mysmartscoins22.com^ +||mysmartscoins23.com^ +||mysmartscoins24.com^ +||mysmartscoins26.com^ ||awp.zwndvd.com^ ||www.swetfly.com^ +||mysmartscoins25.com^ ||www.smartliferetail.com^ +||app.dinvgfyen.com^ ||app.hongtenv.com^ ||app.sdffcsdc.com^ +||app.xoilrrtis.com^ +||app.zbdjaas.com^ +||www.tywrtgsg.com^ +||www.daietherpro-trade.com^ +||omsx.r2uh.top^ ||stock.zhibangs.com^ ||stock.zhibangsx.com^ ||www.zhibangs.com^ @@ -7198,8 +9240,11 @@ ||htps.sfsoarypes.com^ ||hunter.sfsoaoter.com^ ||www.sfsoaryes.com^ +||ez0301.mw1688.net^ ||www.financespro.info^ ||www.allegrorm.com^ +||www.bybittw.com^ +||fir.eastasiannft.com^ ||www.dongboziben.com^ ||mapp.wllrm.com^ ||a01.dovbs.com^ @@ -7214,6 +9259,7 @@ ||www.dsenglobal.com^ ||www.dsglobalyl.com^ ||326469.com^ +||jiutaiyp.com^ ||kkm660.com^ ||tufpc.com^ ||www.tscapitals.com^ @@ -7233,13 +9279,20 @@ ||www.lxjrtw.com^ ||login.lexin.fun^ ||www.pozion-shop.com^ +||www.shoping-inworld.com^ ||www.lt-taiwan.com^ ||5379651.com^ ||rakoten.vip^ ||leshangchao878.top^ ||happyonline-go.com^ +||appilates.com^ ||dow.fenfa.me^ ||download.leegou.cc^ +||giktkhudretzub.com^ +||llgregory.com^ +||mpjsgvdgioytvp.com^ +||nigerballs.com^ +||qsqbpoqaotdqxf.com^ ||www.sgpwlm.com^ ||www.twlegou.com^ ||jxypshopcart.com^ @@ -7253,6 +9306,7 @@ ||winweb.euroyal.org^ ||sj.57968.co.za^ ||www-vip.oklink.fit^ +||www.oklinkvip.fit^ ||8cky.xyz^ ||208.winn6668.com^ ||w1n.winn6668.com^ @@ -7271,12 +9325,17 @@ ||www.msgjgloint.com^ ||wei22.mercury1788.com^ ||yh777.mercuryy1357.com^ +||yl3581.com^ ||kfwiowg.xyz^ ||qtq33-33m.345677.xyz^ +||app.yonglivip.vip^ +||app.yongliwins.vip^ +||h5.donglivip.vip^ ||a.ylhg68.xyz^ ||a.ylhg85.xyz^ ||a.ylhg99.xyz^ ||k.nasdaq30.com^ +||m.y85656.vip^ ||m.yl9210.top^ ||m.ylhg2626.vip^ ||m.ylhg9599.vip^ @@ -7285,7 +9344,22 @@ ||m.row9778.com^ ||app.ivdgp.com^ ||www.aunend.xyz^ +||app.ybbdfp.top^ +||app.ymaatf.top^ +||app.ypmwzl.top^ +||app.paolligo.com^ +||app.teiiueyy.com^ +||app.xbshuz.com^ ||app.xegryug.com^ +||www.lfevyug.xyz^ +||app.jdgytwg.com^ +||www.dcfshj.com^ +||www.honxx.com^ +||app.kligslhs.com^ +||www.uthgnbjrif.com^ +||app.yiopqmu.com^ +||www.ddvjdjvn.com^ +||www.spsxcv.com^ ||m.bniel.top^ ||m.diywm.top^ ||m.ytkgm.top^ @@ -7299,10 +9373,12 @@ ||l.cluql.top^ ||l.dgjgm.top^ ||l.fkczi.top^ +||m.aycdzu.top^ ||m.wocrdr.top^ ||app.cxanjheqwk.com^ ||app.slgjneqo0s.com^ ||app.xnajznbdjm.com^ +||www.ssdjausiej.com^ ||www.xsnherwmkssd.com^ ||fiuxyruli.qian.didjjx.co^ ||gtxwrsjn.qian.didjjx.vip^ @@ -7317,13 +9393,22 @@ ||www.yfjrhk.com^ ||www.yfjthk.com^ ||yfhkjr.com^ +||app.bshdhuq.com^ +||app.majsdyhw.com^ +||www.coiwsa.com^ +||www.deikwf.com^ +||www.hchnedvc.com^ +||www.stgxbfdhvc.com^ +||theasset.pw^ ||www.theasset.pw^ ||tg888.in^ +||www.tg888.ws^ ||app.ikmlkp.top^ ||down.tfghn.top^ ||m.telp.top^ ||www.taifuweb.top^ ||www.lxjxaxs.com^ +||app.kioawd.com^ ||d.jbuhcu.top^ ||d.rtmeu.top^ ||d.tysrj.top^ @@ -7333,7 +9418,10 @@ ||m.tlknm.top^ ||m.uklmp.top^ ||m.xohoa.top^ +||app.djjhgryhn.com^ ||app.gsygdm.com^ +||app.viowido.com^ +||taihetz.tw^ ||www.cdsyid.com^ ||tedhk.online^ ||c.ahdty.xyz^ @@ -7355,8 +9443,11 @@ ||asu.haiyuex.com^ ||www.haiyuex.net^ ||energyaly.com^ +||energyeb.com^ ||energyzpe.com^ +||www.energyeah.com^ ||www.unc.ink^ +||www.haitaovmt.com^ ||www.hg863k.cn^ ||app.aksmcnqjwn.com^ ||app.jgrqweaada.com^ @@ -7372,6 +9463,7 @@ ||www.acrondwss.com^ ||www.facilityma.com^ ||www.growndech.com^ +||765889.com^ ||www.dhgdshgj.com^ ||www.oajvinmo.com^ ||www.ufbgjhhh.com^ @@ -7385,15 +9477,28 @@ ||www.sjjyqueghsa.com^ ||www.ruenh.com^ ||www.ruenheng.net^ +||www.runcheng.shop^ ||www.runcheng.xyz^ +||www.obljgbjg.com^ +||www.tyoldfv.com^ +||app.joqqdd.com^ +||app.psjfhkod.com^ +||app.vnliowo.com^ +||www.tuyhgjh.xyz^ ||app.ghiussf.com^ +||app.ruoipi.com^ +||www.gfgygggfu.com^ ||jsgjpt.com^ ||game.taiyangcheng.shop^ +||games.songuo.me^ ||a.m84.icu^ ||vns.671030.com^ +||wns.xjplc03.net^ ||t.tdgame.xyz^ +||m.135530.com^ ||m.mca198.com^ ||m.xpj16386.com^ +||xpj53197.com^ ||amlyyl158.com^ ||amy.tvm1988.xyz^ ||dlta.m68901.vip^ @@ -7401,6 +9506,7 @@ ||1.8m6.cc^ ||yl.kwkk.vip^ ||7.macaosand88.com^ +||cc.33069.net^ ||nfkk668.com^ ||sands558.com^ ||sands568.com^ @@ -7408,11 +9514,13 @@ ||www.snjs569.top^ ||amyh.aaoc.xyz^ ||amyh138.com^ +||amyh868.com^ ||www.16868.wang^ ||www.yinhe209.com^ ||www.yinhe608.com^ ||www.yinhe918.com^ ||www.yinhe958.com^ +||www.yinheaomen.vip^ ||www2.aomenyinhe.xyz^ ||yinhe209.com^ ||yinhe887.com^ @@ -7420,6 +9528,7 @@ ||yinhe988.com^ ||bhwjs138.com^ ||bhwjs158.com^ +||www.bhjs.top^ ||www.bhwjs258.com^ ||w777.esengp.com^ ||w777.sentgp.com^ @@ -7435,28 +9544,39 @@ ||gssdfc.com^ ||iiistock.com^ ||myiiistocks.com^ +||nnds.huobin.xyz^ +||11.sssuav.com^ +||6.sssuav.com^ +||tw50.sssuav.com^ +||wumart-global.com^ ||wumartshop.com^ ||m.ab188188.com^ ||jfygshop.com^ ||shopping-jf.com^ +||zza.jewelrydm.com^ ||h5.htaigold.com^ ||app.benchz.top^ ||app.ivdhhg.top^ +||app.lhhgmw.top^ ||app.mshgdv.top^ ||app.pdaneb.top^ ||app.ujlmrh.top^ +||app.wazkot.top^ ||m.ulfwju.top^ ||m.wadmof.top^ ||www.benchz.top^ ||www.qmrgcu.top^ ||licaikuaidai.lol^ ||henhaodai.click^ +||ruix336da.xyz^ +||ruixin935da.xyz^ ||app.krqnasjnda.com^ ||www.kvnfjnk1nvka.com^ ||www.kxnn1knej1kn.com^ ||www.ncjbbahbsdhw.com^ ||www.raymondjames-tw.net^ ||www.ze28s.com^ +||kuo689rui.xyz^ ||m.mjfb89.com^ ||mkl877.com^ ||xymm49.com^ @@ -7470,14 +9590,19 @@ ||m.ighhi.top^ ||m.iuwge.top^ ||m.zifqg.top^ +||newhuaqu.nne-bit.com^ ||www.dwgj1008.com^ ||www.dwgj108.com^ ||www.dwgj888.com^ ||www.dwgj8888.com^ +||www.twhkquanqiugougo.com.tw^ ||www.gcgroup.cc^ ||www.globalcapitalgrp.co^ ||28.wns9168.com^ ||huanqiu8168.com^ +||www.gotickmill.com^ +||asia.dangdengtw.shop^ +||shopdang.com^ ||www.aq574.com^ ||www.sk9988.com^ ||crazy-go.com^ @@ -7503,8 +9628,11 @@ ||www.vbrhbqjena.com^ ||www.ydhcnxbd.com^ ||www.zjaisejqujeeq.com^ +||bqcity668.com^ ||imperial-co.com^ +||afhjnl.com^ ||m.gbjtl.xyz^ +||p5.hhj5557.com^ ||m.y89652.com^ ||bitcoin886.com^ ||www.bitcoin886.com^ @@ -7527,23 +9655,37 @@ ||0x7mln01.com^ ||www.0x7mln01.com^ ||www.shengtaione.com^ +||app.kanhgd.com^ +||www.bhullee.com^ ||shengdinggjjys.com^ ||www.shengdin88.com^ ||pg.lfcy888.com^ +||phhho4d.com^ ||haugomart.com^ ||wisewingstock.com^ ||wisewingstrade.com^ +||app.shenykio.com^ ||d.emccr.top^ ||d.hzxxs.top^ ||d.okqhd.top^ ||d.rlsub.top^ +||m.blqwv.top^ ||m.sctat.top^ ||www.xrdown1.com^ ||keecheong.com.tw^ ||keecheongsec.com^ ||keecheongstock.com^ +||app.bsqyly.top^ +||app.gxrtgb.top^ +||app.zjotto.top^ ||hhtfiebb.world^ +||app.vbckjoy.com^ +||app.whbhudh.com^ +||www.dsfgvs.com^ +||www.nxzmklh.com^ +||www.safajzg.com^ ||www.xiangzdma.com^ +||www.xpsyiv.com^ ||www.kifrg.com^ ||www.vymyr.com^ ||www.ykoed.com^ @@ -7590,10 +9732,24 @@ ||www.msbayfdu.com^ ||www.xmndugf.com^ ||app.cdgdpk.top^ +||app.mxccuy.top^ ||m.cdgdpk.top^ +||m.msfhql.top^ +||m.rkvyzd.top^ +||www.rlsioafo.com^ +||app.fbxuxx.top^ +||app.figkkd.top^ +||app.fveqmw.top^ +||app.fvnqwe.top^ +||app.fxejvg.top^ ||www.dnfsss.com^ ||www.waosgfg.com^ ||www.xbvhjgfg.com^ +||money88.easypro.site^ +||money88.ezsoho.store^ +||utc.easypro.site^ +||utc.ezsoho.xyz^ +||app.cjowoi.com^ ||app.brjqjejaj.com^ ||app.iwqewjqwes.com^ ||app.vnnkqejajja.com^ @@ -7602,6 +9758,10 @@ ||www.dsngfhga.com^ ||cd9jr3kegh.com^ ||wzmgvvrszyvwcpub.com^ +||www.ticktomill.com^ +||app.vuslopd.com^ +||www.djkied.com^ +||www.sdosjcd.com^ ||nardcapitals.com^ ||nardstock.com^ ||nardtrade.com^ @@ -7610,6 +9770,7 @@ ||www.oosfudf.com^ ||www.weasfstggh.com^ ||dkksg6.com^ +||zchfinancial.com^ ||zchmarket.com^ ||zchstock.com^ ||zchtrade.com^ @@ -7636,10 +9797,12 @@ ||dacc.musicxoin.com^ ||app.fjiuoeh.com^ ||app.iksoeitu.com^ +||app.mxnuier.com^ ||app.odhgufdg.com^ ||www.bhvjgyd.com^ ||www.ebhdjbdfg.com^ ||www.ghuuui.com^ +||www.popesx.com^ ||296t.com^ ||beipaizangyao.com^ ||caiseqiu.com^ @@ -7648,6 +9811,7 @@ ||dolo.nsdaqex.com^ ||dolo.nsexdaq.com^ ||dolo.xensaqd.com^ +||iqtiedu.com^ ||m.xeddq659.com^ ||martyrouse.com^ ||nasdaqtw.com^ @@ -7679,8 +9843,12 @@ ||tw.merrilllynch.top^ ||www.merrilllynch1914.cn^ ||www.ml1914.top^ +||vepji.com^ ||www.ootfb.com^ +||www.phlgh.com^ +||www.plekh.com^ ||www.slprt.com^ +||www.vepji.com^ ||www.xdyof.com^ ||myzj1288.com^ ||myzj2688.cc^ @@ -7696,37 +9864,50 @@ ||am61868.fit^ ||am88.fit^ ||m.m168178.com^ +||m.mgm999.live^ ||pc.xpj168.xyz^ ||mgm.gzsybj.cn^ ||www.am88.fit^ ||mgm.hk58.xyz^ ||app.jorieuue.com^ ||app.uwuyfe.com^ +||www.alsighuik.com^ +||www.dfjsyh.com^ +||www.iertytf.com^ +||www.sahxazx.com^ ||www.zananxiap.com^ ||www.awyghcndb.com^ -||www.iertytf.com^ ||honghongyangguang.com^ ||amazondlj.com^ ||amazonsprot.com^ +||gic.chaojigic.com^ ||eve.envrch.com^ ||wff.envrch.com^ ||whh.qunysu.com^ ||www.ycjr-tw.com^ ||ycjrtw.com^ ||app.wtyetg.com^ +||app.zdidjiodu.com^ ||www.dijdcdvdk.com^ +||www.dioesp.com^ ||www.eouiohgfh.com^ ||www.huihuioop.com^ ||www.ihjbgbjnn.com^ +||www.sosowie.com^ +||www.utuignetrc.com^ +||www.vipdiyip.com^ ||www.yewuqt.com^ +||yhse.tw^ ||whauihyg.com^ ||www.whauihyg.com^ ||klmall.cc^ ||mall.klgw.shop^ ||mall.tw-tesco.shop^ ||shop.klgw.shop^ +||shop.polo-coins.com^ ||shop.st-stocks.com^ ||www.klmall.cc^ +||www.klmall.vip^ ||506gzqh.top^ ||bnmhop692.shop^ ||jyshopping639.top^ @@ -7742,9 +9923,12 @@ ||jbpinx.com^ ||asia.juxinfor.com^ ||asia.juxinoim.com^ +||juxinfor.com^ ||juxinmore.com^ ||juxinoim.com^ +||wap.caixing118.com^ ||wap.caixing8.com^ +||wap.caixing999.com^ ||www.caixing618.com^ ||www.qhfjdkg.com^ ||app.djgfskyv.com^ @@ -7752,6 +9936,8 @@ ||www.suretrf.com^ ||www.zmiofghhh.com^ ||www.17kshop.com^ +||live.aw33f.com^ +||jx8006.club^ ||jx9006.club^ ||dl.lclo.top^ ||down.rubvz.top^ @@ -7761,6 +9947,12 @@ ||www.goldbgne.com^ ||did.lianfgold.com^ ||cox.lianfavc.com^ +||vwk.lianfauvf.com^ +||yux.lianfaic.com^ +||app.uisopad.com^ +||app.yopessf.com^ +||www.fopkol.com^ +||www.gfdfse.com^ ||www.stockao.com^ ||app.xxhxlq.tw^ ||www.kwsnxwl.tw^ @@ -7771,6 +9963,7 @@ ||www.sj97.lol^ ||live.baadx.com^ ||www.at191.com^ +||inbesting.net^ ||gigant.icu^ ||haloubug.live^ ||muysas.top^ @@ -7779,6 +9972,7 @@ ||shubiao.live^ ||vtdklp.top^ ||newidea.solutions^ +||gwyasset.com^ ||h5.zhijiankonggu.com^ ||d2.seatop.life^ ||web.0088888.co^ @@ -7796,6 +9990,7 @@ ||a.b.tw3368.top^ ||a.b.tw692.top^ ||a.b.tw718.top^ +||a.qh2279.com^ ||a.qh619.net^ ||a.qh7126.com^ ||qh927.tw^ @@ -7803,12 +9998,16 @@ ||tmsr.tw^ ||tmsz.tw^ ||tw279.com^ +||tw6397.top^ +||twbtcy.top^ ||www.qh328.tw^ ||www.qh539.tw^ ||www.qh625.tw^ +||a.qh9352.com^ ||tw1234.com^ ||tw6688.cc^ ||tw8888.cc^ +||tw999.cc^ ||ysgj.dfghjklco.com^ ||www.xygjtw.com^ ||axslanxiang.com^ @@ -7818,12 +10017,16 @@ ||www.fnglc.com^ ||m.k69937.com^ ||app.bxchjdfg.com^ +||app.gefvvvnd.com^ ||app.sagyugf.com^ ||app.wsfulzdj.com^ +||www.sfjsjdh.com^ ||www.hkxzgjjrtw.com^ ||www.xzgj999.com^ ||xzgj999.com^ ||xinggui888.com^ +||app.boisgoe.com^ +||www.gdgyt.xyz^ ||kpaxxxyn.com^ ||mjszmw.com^ ||www.hjrxxjkj.com^ @@ -7837,9 +10040,20 @@ ||hqpot228.com^ ||m.citir.cyou^ ||www.ftlmine.org^ +||app.caolidti.com^ ||www.aipoajc.com^ +||www.ckotihlvb.com^ +||www.fopesc.com^ +||www.hoddrs.com^ ||www.ireyrbhg.com^ +||www.rhdnjfha.xyz^ +||www.shajghg.com^ +||www.viosef.com^ +||www.xnbzuiyfha.com^ ||app.wgaytugf.com^ +||www.emperor-media.com^ +||www.yh66789.xyz^ +||www.emperor-medie.com^ ||yh88888.xyz^ ||qt.yh3588.xyz^ ||qtm-22m.345622.xyz^ @@ -7850,6 +10064,7 @@ ||www.huaxindaikuan.com.tw^ ||www.hnhuanagj.com^ ||app.blogkkewije.com^ +||hnfhctd.com^ ||www.dbhgsb.com^ ||www.hnjkzq.com^ ||www.vfnjweqwie.com^ @@ -7858,13 +10073,17 @@ ||c.aecmu.xyz^ ||www.auniy.xyz^ ||www.pis-studio.xyz^ +||hqb6.shop^ ||www.hqb.info^ +||www.hqbcc.xyz^ ||www.tb8.shop^ ||m.hxkdu.com^ ||wk.vnreicva.top^ ||app.hndhudff.com^ ||app.jiasudlop.com^ +||app.mkjudg.com^ ||app.poidfgo.com^ +||www.bvjhcxuh.com^ ||www.bxchjvgd.com^ ||www.taitanm.com^ ||www.wytfbg.com^ @@ -7876,19 +10095,37 @@ ||grglobals.com^ ||www.grmarket.tw^ ||www.huatai168.com^ +||app.fydhsk.com^ +||jsfuuvgs.com^ +||www.bniskk.com^ +||www.ewueqyy.com^ +||www.tdklnb.com^ +||www.vbedyers.xyz^ +||www.xopidss.com^ +||vmallsh.com^ ||vmalltw.com^ +||vmalltwwn.com^ +||www.huawei6659.com^ ||90nn.xyz^ ||app.vdbzbnzz.xyz^ ||www.71ujm9qn.com^ +||app.ffbop.top^ +||app.ojvmy.top^ +||app.sbcpw.top^ ||hsht163.com^ ||hsht355.com^ +||app.geioac.com^ ||hs.3dprintertech.net^ ||hs.colbathlamprepair.com^ ||hs.dakappart.com^ ||hs.phoenixmediafx.com^ +||www.sopkoi.com^ ||huayusecurities.com^ ||app.wjaosfjkg.com^ ||www.hbyutryu.com^ +||www.wiueo.com^ +||www.xiolohg.com^ +||app.huiuwoa.com^ ||app.sficx.com^ ||www.hi689.net^ ||www.huaxing98.com^ @@ -7922,9 +10159,17 @@ ||vanwardgroup.com^ ||vanwardmkt.com^ ||vanwardtrade.com^ +||wanjia366le.xyz^ +||wanjiale568.xyz^ ||m.wzgolds.com^ +||wzegold.com^ +||wzgold.vip^ ||wzigold.com^ +||wzsgold.com^ +||www.wzg1.net^ ||www.wzgolds.com^ +||wzgolds.com^ +||www.wanweiweb3.com^ ||banhinasia.com^ ||banhinmarket.com^ ||banhinstock.com^ @@ -7952,6 +10197,7 @@ ||toge.goldencity999.com^ ||w1n.goldenc1ty588.net^ ||w1n.goldencity999.com^ +||www.pjeroetky.com^ ||www.thyssenex.co^ ||www.thyssenfx.com^ ||www.tsenfx.com^ @@ -7972,6 +10218,10 @@ ||seayuo.com^ ||sokyeshop.com^ ||lgfylc.fit^ +||app.gdysgjss.com^ +||app.tioryuo.com^ +||www.dsdysy.xyz^ +||www.sfuasdu.com^ ||api.znahwbeqhsxiij.com^ ||www.cjnfbjehqjhe.com^ ||www.jhqisgrjz.com^ @@ -7979,11 +10229,14 @@ ||xiapi.geminbtc.vip^ ||ronghejt668.com^ ||www.yizikaijzen.xyz^ +||app.cjsjjdhh.com^ ||app.opuiehg.com^ +||app.sayuety.com^ +||www.ayfudsg.com^ ||www.csdshchs.com^ ||www.eyghhd.com^ ||www.sokfdjoo.com^ -||app.sayuety.com^ +||www.myjfjy860.xyz^ ||buy.mines13.com^ ||chats.vhurkl.top^ ||www.myjt18.com^ @@ -8003,6 +10256,7 @@ ||www.fbgfhhjjj.com^ ||www.juudjn.com^ ||www.kkuudl.com^ +||www.mdufyhibg.com^ ||web.mmmkkk8.com^ ||web.downloadgiochipc.com^ ||www.jnvenqnda.com^ @@ -8021,6 +10275,7 @@ ||app.shikong.cf^ ||tw.fengying.click^ ||tw.shikong.cf^ +||a-go-mall.org^ ||fenghuacap.com^ ||fenghuaglobal.com^ ||fenghuasec.com.tw^ @@ -8032,11 +10287,14 @@ ||fenglong707.xyz^ ||fenglong717.xyz^ ||fenglong909.xyz^ +||fenglong919.xyz^ ||m.sfgj668.top^ ||369shoptw.com^ ||greatbayasia.com^ +||greatbaystock.com^ ||www.bairdzb.com^ ||www.bairdzb.net^ +||app.blackrock.host^ ||ek.qinfjkt.tw^ ||gs.xoeigjt.tw^ ||mt.ojtnpm.tw^ @@ -8054,6 +10312,7 @@ ||aap.btkakjndeqs.com^ ||aap.vbbzgbswas.com^ ||m.paymallso.today^ +||ml.goodsstuffs.shop^ ||tw.goodsstuffs.shop^ ||www.newmall.space^ ||app.jsdfugd.com^ @@ -8064,10 +10323,17 @@ ||www.mjb.tw^ ||www.rallyville-chtw.com^ ||www.pascqdxtsgbcda.com^ +||go.goodsstuffs.shop^ +||go-tian-xia-tw.com^ +||shop-tian-xia.com^ +||shoptianxia.com^ +||shopping-king-asia.com^ +||shoppingking-tw.com^ ||acting.cyberllsr.com^ ||twse.cyberllsr.com^ ||www.cyberlerr.com^ ||www.awk92.com^ +||as888.winfuzhong.xyz^ ||www.aw8z5.com^ ||www.zw585.com^ ||www.revanjer.site^ @@ -8084,6 +10350,7 @@ ||syungomart.com^ ||syungoshop.com^ ||www.w1rz.com^ +||www.pvnipcc.cn^ ||thetdxzq.com^ ||expresstw.com^ ||www.nrxadd.com^ @@ -8109,6 +10376,13 @@ ||dkofiy.online^ ||dpfktj.online^ ||www.daksc.com^ +||app.koiwlsc.com^ +||app.xuopaxs.com^ +||www.buianeut.com^ +||www.hgiyotugn.com^ +||www.ieuybvbg.com^ +||www.jjjyeghbjf.com^ +||www.zopwix.com^ ||fartrust.top^ ||fesfunds.com^ ||www.djkgopsj.com^ @@ -8120,6 +10394,10 @@ ||www.godtwyh.com^ ||www.tcwyvh.com^ ||www.twfdsyh.com^ +||www.byusrgh.com^ +||www.sahgjag.com^ +||www.wautyyud.com^ +||www.bycfwk.com^ ||gtcfs.site^ ||app.xihciwouqgd.com^ ||m.ivdhhg.top^ @@ -8133,6 +10411,12 @@ ||www.xvnhjkjqewquk.com^ ||www.yggjvl.top^ ||ynnsnezx.tw^ +||app.gvioawzi.com^ +||www.yrncnfghdi.com^ +||www.yuedfs.com^ +||app.copeor.com^ +||app.kioess.com^ +||app.rtwifjh.com^ ||www.kca888.com^ ||www.tw88.com.tw^ ||g0111.jy51688.net^ @@ -8141,14 +10425,25 @@ ||www.jy688.net^ ||api.ahfndbga.com^ ||api.tbhjascb.com^ +||kcamo.com^ +||app.jgnfjkfnvk.com^ +||app.kcvndvk.com^ ||jrjr128.com^ ||jrjr168.com^ ||jrjr178.com^ ||jrjr1888.com^ +||jrs1188.com^ +||jrs1588.com^ ||jrs1788.com^ +||jrs1888.com^ ||www.jrjr128.com^ +||www.sandscasino.shop^ +||m.1000959.com^ ||www.7898265.com^ +||app.csaedes.cc^ ||app.csased.cc^ +||h5.best-sands.cc^ +||h5.sandswins.cc^ ||cc.568910.com^ ||js57264.com^ ||jsyl1268.com^ @@ -8160,6 +10455,7 @@ ||www.bnsreg.xyz^ ||www.jsgj6788.com^ ||www.jtas.co^ +||h5.mybitbank.shop^ ||jiinn1186866.com^ ||jiinn186866.com^ ||jiinn68866.com^ @@ -8178,7 +10474,12 @@ ||www.jscoin8.com^ ||www.jinfudaii.com^ ||www.jh777.net^ +||app.zhihell.com^ ||tzbets88.net^ +||app.lopcvs.com^ +||app.wrrhuy.com^ +||www.geughb.com^ +||www.kloeds.com^ ||innovation.parvenucomax.com^ ||innovation.tech.tennis^ ||parvenu.parvenuco.com^ @@ -8189,14 +10490,19 @@ ||jingzuan16881.ink^ ||jd9899.com^ ||j1800.jinltw.com^ +||commercial-loans-tw.com^ ||goodminoney.click^ ||www.chaohaodai.xyz^ ||m.hluws.top^ ||t6699.cc^ ||t1699.cc^ ||ofa77.net^ +||ofa777.net^ ||www.ofa999.net^ ||jyuyang2.jyuyang1.com^ +||www.ginzashopping.com^ +||www.spvisitdubai.com^ +||www.welcomeginza.com^ ||w1n.si1verstar.com^ ||w1n.silver5tar.com^ ||w1n.sliverstar988.com^ @@ -8207,6 +10513,7 @@ ||silverlionstock.com^ ||silverliontrade.com^ ||silverliontrades.com^ +||slstocks.com^ ||d.hlkmc.top^ ||d.pqmdk.top^ ||d.qxpfr.top^ @@ -8219,7 +10526,9 @@ ||vwk.staioiled.com^ ||www.staioiled.com^ ||zhe.staioils.com^ +||huaguans.com^ ||www.liveexhanget.xyz^ +||dreamofxin888.com^ ||www.5566sdjys.com^ ||www.xd19789.com^ ||branbibi03.xin88c.net^ @@ -8227,20 +10536,28 @@ ||shunfa39ff.xin88c.net^ ||xg66c.com^ ||h5.xintinv.com^ +||fil.cryvip.top^ +||link.cryvip.top^ ||www.winplusassets.co^ ||xinda-tw.com^ ||api.ancjknae.com^ ||www.dhfudhf.com^ +||www.mnbtdfs.com^ ||www.yxbdghsn.com^ ||app.didisdbg.com^ ||app.djdjwo.com^ ||www.hnfgdjdj.com^ +||app.qigmyw.top^ +||app.quslba.top^ +||bubu68.com^ ||app.vkjsakjaks.com^ ||app.zajxuhuakjehj.com^ ||twapp.kaiyangguoji.top^ ||www.jctaiwan.net^ +||h5.minhongkejilive.com^ ||albaba.yhj16688.com^ ||www.tmao219.xyz^ +||m.youhui1688hxak.top^ ||music.oc-coin.com^ ||www.amazo-shop.com^ ||www.stock8.info^ @@ -8259,10 +10576,13 @@ ||www.nscarpe.com^ ||wxwx.bcetq.xyz^ ||yahoopt.shop^ +||app.koduoe.com^ ||huizhirongssl.top^ ||app.amgjiv.top^ ||app.kpeuyj.top^ +||app.ofykoj.top^ ||m.amgjiv.top^ +||m.kpeuyj.top^ ||app.btjoqshjxah.com^ ||app.cvjjqosheak.com^ ||app.shenlwqnelasd.com^ @@ -8273,8 +10593,12 @@ ||www.vjhajhgeua.com^ ||www.zha.tw^ ||www.uzsnf.com^ +||yunding404.club^ +||app.duaujjjd.com^ ||app.usndjdf.com^ ||www.fhvbfbv.com^ +||www.foiwlos.com^ +||www.ngjdiue.com^ ||ruten-store.com^ ||www.ruteen-malls.com^ ||www.ruteenshop.com^ @@ -8289,15 +10613,21 @@ ||app.xcrsdff.com^ ||www.bvdshff.com^ ||www.feiyiban.xyz^ +||app.stcxxt.top^ +||app.sxxzyk.top^ +||www.suixlc.top^ +||www.sxxzyk.top^ ||lin.sfofoyuan.com^ ||linshouji.fssfnbx.cn^ ||linshouji.jueai12321.com^ ||www.jueai12321.com^ +||www.sdassets.life^ ||brk.ninja^ ||zenithfinancial.com.tw^ ||app.bsdjhbhjc.com^ ||app.ncxkbnd.com^ ||wind.vns168.net^ +||sinoclick.club^ ||www.fei-xiang9.com^ ||www.feixianing.com^ ||www.flyairplaness.com^ @@ -8308,6 +10638,10 @@ ||www.gj2006.com.cn^ ||www.hkssq.cc^ ||www.hkssq.com^ +||www.hkssq.online^ +||www.hklotte.com^ +||ckcfnk.com^ +||www.ckcfnk.com^ ||a010.tf7688.net^ ||dk42ol.sjxqzvv.cn^ ||igomarket.net^ @@ -8318,9 +10652,14 @@ ||igomarketsy.com^ ||igomarketsy.net^ ||igomarketsys.com^ +||app.bjdjsidd.com^ +||app.gaoqnbo.com^ ||app.ifeyhnh.com^ ||app.ooethyr.com^ +||app.pokdkd.com^ ||www.msjhfue.xyz^ +||www.nmoep.com^ +||www.tuvjkind.com^ ||gl.ytotvom.cn^ ||da.gs3323.fun^ ||download.00888.tw^ @@ -8329,12 +10668,22 @@ ||www.fastcdn.shop^ ||app.mozmcg.com^ ||www.fdyjkl.com^ +||www.sachtip.com^ ||www.haccsvip.org^ +||tw.sachsvip.org^ +||tw.savccvip.org^ ||www.shfjsu.com^ ||dn.gsjt668.com^ +||aallotgv56874ff.cuicfif.cn^ ||zfb16880.com^ ||www.dgpy3m.top^ ||hb.gaogaoingb.cn^ +||app.hcaaqz.top^ +||app.hkcpma.top^ +||app.hmwkea.top^ +||app.hnbzql.top^ +||www.hnbzql.top^ +||app.hcparm.top^ ||app.mdbgughf.com^ ||app.snjsjhdhs.com^ ||www.namebude.com^ @@ -8345,19 +10694,30 @@ ||www.hzyouyushenghuo.com^ ||www.sdqhwapdd.xyz^ ||www.sidhqhakh.xyz^ +||hdassets.cc^ +||www.hdassets.life^ +||28game.top^ ||m.ksdgw.top^ ||m.qffgu.top^ ||m.xxdlo.top^ +||account.hkjran.com^ ||app.chvuke.top^ +||app.soccsk.top^ +||m.soccsk.top^ +||m.xfeiqt.top^ ||3scasino.com^ ||ctopengxing.vip^ ||m.ctoxingzhou.cc^ +||www.hznfjc.top^ +||hulive.info^ ||www.vnbnbsbaoioi.com^ ||m.top-fulfill.com^ ||t.top-fulfill.com^ ||m.bjszyj.top^ +||m.ciqwwr.top^ ||m.kgyatu.top^ ||m.ouesgb.top^ +||www.egrrlv.top^ ||www.gunonq.top^ ||www.neohuo.top^ ||www.oqcbjm.top^ @@ -8370,7 +10730,12 @@ ||app.admvkgld.com^ ||www.bjkcvcv.com^ ||app.hjbvgf.com^ +||app.kaojud.com^ +||ryuhvjc.com^ +||www.dnujgyrhg.com^ ||www.qmksk.com^ +||www.ryuhvjc.com^ +||www.xouesso.com^ ||app.ifuehqej.com^ ||app.sggderg.com^ ||app.yabfhjsa.com^ diff --git a/TWNIC-RPZ.txt b/TWNIC-RPZ.txt index b11367b..2e70c39 100644 --- a/TWNIC-RPZ.txt +++ b/TWNIC-RPZ.txt @@ -82,3 +82,4 @@ ||dramasq.cc^ ||gimy.app^ ||todohealth.com^ +||avhu.com^ diff --git a/filter.txt b/filter.txt index 2f47279..474b94e 100644 --- a/filter.txt +++ b/filter.txt @@ -382,4 +382,15 @@ marieclaire.com.tw##div[class="adInnerMpu"] marieclaire.com.tw##div[class="adUnderlay"] news.agentm.tw##div[id="agmn_a_header_PC"] news.agentm.tw##div[class="gpt-ad-slot"] -new-reporter.com##div[class="modalJS_object"] \ No newline at end of file +new-reporter.com##div[class="modalJS_object"] + +||www.mobile01.com/ajax/public/ad_imp.php^ +||attach2.mobile01.com/js/public/fancybox.js^ +mobile01.com#%#//scriptlet('remove-class', 'ad_popUp') +mobile01.com##div[class=^="fancybox-container"] +news.ltn.com.tw##div[id="ad-K1"] +||udn.com^$cookie=/_ga.+/ +||udn.com^$cookie=trc_cookie_storage +www.mirrormedia.mg##div[class^="gpt-placeholder__Container"] +||www.mirrormedia.mg^$cookie=/AviviD.+/ +daybuy.tw##div[class]:has([class="adblock_subtitle"]) diff --git a/hosts.txt b/hosts.txt index cb04832..3ece06c 100644 --- a/hosts.txt +++ b/hosts.txt @@ -133,6 +133,10 @@ ||businessmentor.sa.com^ ||fetguict.icu^ ||lyxrmbszx.com^ +||thelikooei.xyz^ +||service-myups.com^ +||spil-yz.top^ +||telepgrm.work^ ! 加密貨幣釣魚 ||app.exodus.com.alchemys.cl^ @@ -190,6 +194,7 @@ ||netfltiw.com^ ||fine-art.ge^ ||4stextiles.com^ +||vymdio0.sa.com^ ! 低卡廣告 ||dad-api.dcard.tw^