diff --git a/104fx_upcerts.sh b/104fx_upcerts.sh new file mode 100755 index 000000000..5d036f152 --- /dev/null +++ b/104fx_upcerts.sh @@ -0,0 +1,11 @@ +#!/bin/csh -f + +if (! -e security/manager/ssl/nsSTSPreloadList.inc) then + echo 'not in the tenfourfox folder, aborting' +endif + +set verbose +cp ../esr52/security/nss/lib/ckfw/builtins/certdata.txt security/nss/lib/ckfw/builtins/certdata.txt +cp ../esr52/security/manager/ssl/StaticHPKPins.h security/manager/ssl/StaticHPKPins.h +perl ./104fx_import_esr52_stspreload.pl > security/manager/ssl/nsSTSPreloadList.inc + diff --git a/dom/indexedDB/ActorsParent.cpp b/dom/indexedDB/ActorsParent.cpp index b7f3bb873..9feac6178 100644 --- a/dom/indexedDB/ActorsParent.cpp +++ b/dom/indexedDB/ActorsParent.cpp @@ -19381,12 +19381,18 @@ FactoryOp::FinishSendResults() RefPtr factory; mFactory.swap(factory); + // It can happen that this FactoryOp is only held alive by the gFactoryOps. + RefPtr kungFuDeathGrip; + if (mBlockedDatabaseOpen) { if (mDelayedOp) { MOZ_ALWAYS_TRUE(NS_SUCCEEDED(NS_DispatchToCurrentThread(mDelayedOp))); mDelayedOp = nullptr; } + // Add a self reference before removing ourself from the array. + kungFuDeathGrip = this; + MOZ_ASSERT(gFactoryOps); gFactoryOps->RemoveElement(this); } diff --git a/dom/media/encoder/TrackEncoder.cpp b/dom/media/encoder/TrackEncoder.cpp index 7e2161a0c..f2acb032c 100644 --- a/dom/media/encoder/TrackEncoder.cpp +++ b/dom/media/encoder/TrackEncoder.cpp @@ -127,10 +127,12 @@ AudioTrackEncoder::InterleaveTrackData(AudioChunk& aChunk, uint32_t aOutputChannels, AudioDataValue* aOutput) { + uint32_t numChannelsToCopy = std::min(aOutputChannels, + static_cast(aChunk.mChannelData.Length())); switch(aChunk.mBufferFormat) { case AUDIO_FORMAT_S16: { nsAutoTArray array; - array.SetLength(aOutputChannels); + array.SetLength(numChannelsToCopy); for (uint32_t i = 0; i < array.Length(); i++) { array[i] = static_cast(aChunk.mChannelData[i]); } @@ -139,7 +141,7 @@ AudioTrackEncoder::InterleaveTrackData(AudioChunk& aChunk, } case AUDIO_FORMAT_FLOAT32: { nsAutoTArray array; - array.SetLength(aOutputChannels); + array.SetLength(numChannelsToCopy); for (uint32_t i = 0; i < array.Length(); i++) { array[i] = static_cast(aChunk.mChannelData[i]); } diff --git a/gfx/thebes/gfxPlatformMac.cpp b/gfx/thebes/gfxPlatformMac.cpp index 7acda0d31..b598baa3d 100644 --- a/gfx/thebes/gfxPlatformMac.cpp +++ b/gfx/thebes/gfxPlatformMac.cpp @@ -262,6 +262,8 @@ gfxPlatformMac::IsFontFormatSupported(nsIURI *aFontURI, uint32_t aFormatFlags) spec.Equals("https://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.ttf") || spec.Equals("https://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.woff") || spec.Equals("https://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.ttf") || + spec.Equals("https://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.woff") || + spec.Equals("https://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.ttf") || spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.woff") || spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Text/v1/sf-pro-text_bold.ttf") || spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Text/v1/sf-pro-text_medium.woff") || @@ -278,6 +280,8 @@ gfxPlatformMac::IsFontFormatSupported(nsIURI *aFontURI, uint32_t aFormatFlags) spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_regular.ttf") || spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.woff") || spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_light.ttf") || + spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.woff") || + spec.Equals("http://www.apple.com/wss/fonts/SF-Pro-Display/v1/sf-pro-display_semibold.ttf") || 0) { if (NS_SUCCEEDED(rv)) // Don't print if we couldn't get the URL. fprintf(stderr, diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 142f695a9..64286c689 100644 --- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1176,4 +1176,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1504365060328000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1506180744712000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index a770205ad..a46e306d5 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -10,7 +10,7 @@ /* imported from ESR52 by TenFourFox conversion script */ #include -const PRTime gPreloadListExpirationTime = INT64_C(1506784250116000); +const PRTime gPreloadListExpirationTime = INT64_C(1508599935361000); class nsSTSPreload { @@ -43,7 +43,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0c.eu", true }, { "0c3.de", true }, { "0day.agency", true }, - { "0day.su", true }, { "0i0.nl", true }, { "0ik.de", true }, { "0knowledge.de", true }, @@ -54,7 +53,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0x00ff00ff.com", true }, { "0x17.de", true }, { "0x4b0c131e.pub", true }, - { "0x52.net", true }, + { "0x52.net", false }, { "0x52.org", true }, { "0x539.be", true }, { "0x65.net", true }, @@ -88,7 +87,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "10x.ooo", true }, { "112app.nl", true }, { "112hz.com", true }, - { "118855.com", true }, { "11loc.de", true }, { "11urss.com", true }, { "12.net", true }, @@ -126,12 +124,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "17hats.com", true }, { "18f.gov", true }, { "18f.gsa.gov", false }, + { "195gm.com", true }, { "1972969867.rsc.cdn77.org", true }, { "1981612088.rsc.cdn77.org", true }, { "1a-diamantscheiben.de", true }, { "1a-vermessung.at", true }, { "1a-werkstattgeraete.de", true }, - { "1atic.com", true }, { "1co-jp.net", true }, { "1cover.co.nz", true }, { "1cover.com.au", true }, @@ -141,6 +139,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1item.co.il", true }, { "1js.de", true }, { "1kando.com", true }, + { "1km.ro", true }, { "1kmi.co", true }, { "1on1on1.de", true }, { "1on1on1.tv", true }, @@ -159,12 +158,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1whw.co.uk", true }, { "2-cpu.de", true }, { "2.wtf", true }, - { "2048-spiel.de", true }, - { "2048game.co.uk", true }, { "208.es", true }, { "20hs.cn", true }, { "21.co.uk", true }, - { "21lg.co", true }, { "21stnc.com", true }, { "21x9.org", true }, { "24-7.jp", true }, @@ -181,6 +177,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "263.info", true }, { "2778.com", true }, { "281180.de", true }, + { "28spots.net", true }, { "2acbi-asso.fr", true }, { "2bas.nl", true }, { "2bcompany.ch", true }, @@ -206,7 +203,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2nerds1bit.com", true }, { "2pay.fr", true }, { "2programmers.net", true }, + { "2smart4food.com", true }, { "2ulcceria.nl", true }, + { "314chan.org", true }, { "31klabs.com", true }, { "31tv.ru", true }, { "321live.nl", true }, @@ -219,6 +218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3555.com", true }, { "3555aa.com", true }, { "35792.de", true }, + { "360ds.co.in", true }, { "360woodworking.com", true }, { "365365.com", true }, { "365beautyworld.com", true }, @@ -266,7 +266,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "42day.info", true }, { "42entrepreneurs.fr", true }, { "439191.com", true }, - { "441jj.com", true }, { "4500.co.il", true }, { "491mhz.net", true }, { "49889.com", true }, @@ -327,7 +326,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7x24servis.com", true }, { "8560.be", true }, { "86metro.ru", true }, - { "88.to", true }, { "881133.com", true }, { "88599.com", true }, { "887700.com", true }, @@ -335,6 +333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "888azino.com", true }, { "888sport.dk", true }, { "888sport.it", true }, + { "89955.com", true }, { "8ackprotect.com", true }, { "8mpay.com", true }, { "8ox.ru", false }, @@ -353,7 +352,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99599.net", true }, { "99rst.org", true }, { "9jadirect.com", true }, - { "9tolife.be", true }, { "9uelle.jp", true }, { "9vx.org", true }, { "9yw.me", true }, @@ -380,6 +378,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aapas.org.ar", true }, { "aariefhaafiz.com", true }, { "aaronhorler.com", true }, + { "aaronkimmig.de", true }, { "aaronsilber.me", true }, { "aatf.us", true }, { "abacustech.co.jp", true }, @@ -397,6 +396,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abeestrada.com", false }, { "abenteuer-ahnenforschung.de", true }, { "abeontech.com", true }, + { "aberdeenalmeras.com", true }, { "aberdeenjudo.co.uk", true }, { "abeus.com", true }, { "abhisharma.me", true }, @@ -439,10 +439,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abolizionista.com", true }, { "abou.to", false }, { "aboutassistedliving.org", true }, - { "abouthrm.nl", true }, - { "aboutict.nl", true }, - { "aboutlegal.nl", true }, - { "aboutmedia.nl", true }, { "aboutspice.com", true }, { "abrilect.com", true }, { "abseits.org", true }, @@ -456,12 +452,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abulanov.com", true }, { "abundent.com", true }, { "abuse.io", true }, - { "abyssproject.net", true }, { "ac-admin.pl", true }, - { "ac-epmservices.com", true }, { "ac-town.com", true }, { "acabadosboston.com", true }, { "academialowcost.com.br", true }, + { "academytv.com.au", true }, { "acaonegocios.com.br", true }, { "acara-yoga.de", true }, { "acbc.ie", true }, @@ -470,7 +465,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accelight.jp", true }, { "accentthailand.com", true }, { "accesloges.com", true }, - { "access-sofia.org", true }, { "accessauto-occasions.be", true }, { "accessmy.net", true }, { "accordiondoor.com", true }, @@ -482,11 +476,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acemobileforce.com", true }, { "acerislaw.com", true }, { "acessoeducacao.com", true }, - { "acg.sb", false }, + { "acg.sb", true }, + { "acg18.us", true }, { "acgaudio.com", true }, { "acheconcursos.com.br", true }, { "achenar.net", true }, - { "acheritage.co.uk", true }, { "achow101.com", true }, { "achromatisch.de", true }, { "achterhoekseveiligheidsbeurs.nl", true }, @@ -508,7 +502,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acs-chantal.com", true }, { "acsemb.org", true }, { "acsports.ca", true }, - { "actgruppe.de", true }, { "actilove.ch", true }, { "actiontowingroundrock.com", true }, { "activatemyiphone.com", true }, @@ -535,7 +528,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adambyers.com", true }, { "adamdixon.co.uk", true }, { "adamek.online", true }, - { "adamgold.net", true }, { "adamkaminski.com", true }, { "adamkostecki.de", true }, { "adamoutler.com", true }, @@ -555,9 +547,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adblockextreme.com", true }, { "adblockextreme.net", true }, { "adblockextreme.org", true }, - { "adboos.com", true }, { "addeekt.com", true }, { "adderall.space", true }, + { "addicional.com", true }, { "addstar.jp", true }, { "addtoany.com", true }, { "adduono.com", true }, @@ -606,7 +598,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adrianmejias.com", true }, { "adrienkohlbecker.com", true }, { "adrinet.tk", true }, - { "adunanza.net", true }, { "adurra.com", true }, { "aduvi.de", true }, { "advaithnikhi.ml", true }, @@ -662,6 +653,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "affinitysync.com", true }, { "affordableazdivorce.com", true }, { "affordablemudjacking.com", true }, + { "affordableracingparts.com.au", true }, { "afghan.dating", true }, { "aficionados.com.br", true }, { "afinadoronline.com.br", true }, @@ -677,7 +669,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afuh.de", true }, { "afva.net", true }, { "afvallendoeje.nu", true }, - { "afyou.co.kr", false }, { "ag-websolutions.de", true }, { "agdalieso.com.ba", true }, { "ageg.ca", true }, @@ -731,7 +722,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aiden.link", true }, { "aidhan.net", true }, { "aidikofflaw.com", true }, - { "aids.gov", true }, { "aie.de", true }, { "aiesecarad.ro", true }, { "aify.eu", true }, @@ -746,13 +736,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aiponne.com", true }, { "air-shots.ch", true }, { "airbly.com", true }, + { "airbnb.com", true }, { "airbnbopen.com", true }, { "airdur.eu", true }, { "airedaleterrier.com.br", true }, { "airhart.me", true }, { "airhelp.com", true }, { "airicy.com", true }, - { "airlinecheckins.com", true }, { "airmail.cc", true }, { "airnow.gov", true }, { "airpbx.com", true }, @@ -780,13 +770,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akay.me", true }, { "akdigitalegesellschaft.de", false }, { "akelius.de", false }, - { "akgundemirbas.com", true }, { "akhilindurti.com", false }, { "akhras.at", true }, { "akihito.com", true }, { "akita-boutique.com", true }, { "akita-stream.com", true }, - { "akkadia.cc", true }, { "akostecki.de", true }, { "akovana.com", true }, { "akoww.de", true }, @@ -807,6 +795,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "al3xpro.com", true }, { "aladdinschools.appspot.com", true }, { "alainbaechlerphotography.ch", true }, + { "alainwolf.ch", true }, { "alair.cn", false }, { "alamgir.works", true }, { "alaninkenya.org", true }, @@ -815,9 +804,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alauda-home.de", true }, { "alaundeil.xyz", true }, { "alb-flirt.de", true }, - { "alberguecimballa.es", true }, { "albersdruck.de", true }, - { "albertbogdanowicz.pl", true }, { "albion2.org", true }, { "alboweb.nl", true }, { "albuic.tk", true }, @@ -841,7 +828,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexanderschimpf.de", true }, { "alexandra-schulze.de", true }, { "alexbaker.org", true }, - { "alexberts.ch", true }, { "alexcoman.com", true }, { "alexdaniel.org", true }, { "alexdodge.ca", true }, @@ -882,7 +868,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alibip.de", true }, { "alicestudio.it", true }, { "alicetone.net", true }, - { "alicialab.org", true }, { "alienstat.com", true }, { "alinasmusicstudio.com", true }, { "alinode.com", true }, @@ -919,16 +904,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allfreelancers.su", true }, { "alliance-compacts.com", true }, { "alliances-faq.de", true }, + { "alliedfrozenstorage.com", true }, { "allinone-ranking150.com", true }, { "allinonecyprus.com", true }, { "allladyboys.com", true }, { "allmebel.ru", true }, { "allmystery.de", true }, { "allns.fr", true }, - { "allo-symo.fr", true }, { "allrealty.co.za", true }, { "allshousedesigns.com", true }, - { "alltheducks.com", true }, { "allthethings.co.nz", true }, { "allthings.me", true }, { "allthingsblogging.com", true }, @@ -965,11 +949,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altahrim.net", true }, { "altaide.com", true }, { "altailife.ru", true }, - { "altamarea.se", true }, { "altbinaries.com", true }, { "altedirect.com", true }, { "alteqnia.com", true }, - { "alterbaum.net", true }, { "altercpa.ru", true }, { "alternative.bike", true }, { "alternativedev.ca", true }, @@ -982,13 +964,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altopia.com", true }, { "altporn.xyz", true }, { "altunbas.info", true }, - { "aluminium-scaffolding.co.uk", true }, { "alumni-kusa.jp", true }, { "alunjam.es", true }, { "alunonaescola.com.br", true }, { "alupferd.de", true }, { "aluroof.eu", true }, - { "alvicom.hu", true }, { "alvosec.com", true }, { "alwayslookingyourbest.com", true }, { "alwaysmine.fi", true }, @@ -1037,6 +1017,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ameza.net", true }, { "amf.to", true }, { "ami-de-bastanes.fr", true }, + { "amihub.com", true }, { "amilum.org", true }, { "amineptine.com", true }, { "amisharingstuff.com", true }, @@ -1074,6 +1055,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ananke.io", true }, { "anankecosmetics.com", true }, { "anantshri.info", true }, + { "anarchistischegroepnijmegen.nl", false }, { "anarka.org", true }, { "anassiriphotography.com", false }, { "anastasia-shamara.ru", true }, @@ -1198,6 +1180,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anonboards.com", true }, { "anoncom.net", true }, { "anoneko.com", true }, + { "anongoth.pl", true }, { "anonukradio.org", true }, { "anonym-surfen.de", true }, { "anonyme-spieler.at", true }, @@ -1214,9 +1197,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ansermet.net", true }, { "ansgar-sonntag.de", true }, { "ansgarsonntag.de", true }, - { "anshuman-chatterjee.com", false }, { "anshumanbiswas.com", true }, - { "ansibeast.net", true }, { "ansogning-sg.dk", true }, { "antarcti.co", true }, { "antcas.com", true }, @@ -1235,7 +1216,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antipolygraph.org", true }, { "antispeciesism.com", true }, { "antispeciesist.com", true }, - { "antoine-roux.fr", true }, { "antoined.fr", true }, { "antoineschaller.ch", true }, { "antonchen.com", true }, @@ -1262,7 +1242,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aosus.org", true }, { "aov.io", true }, { "aovcentrum.nl", true }, - { "aozora.moe", true }, { "ap-swiss.ch", true }, { "apachehaus.de", false }, { "apadvantage.com", true }, @@ -1393,7 +1372,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ardao.me", true }, { "ardorlabs.se", true }, { "ardtrade.ru", true }, - { "area536.com", true }, { "areafiftylan.nl", true }, { "areatrend.com", true }, { "arendburgers.nl", true }, @@ -1401,7 +1379,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arewedubstepyet.com", true }, { "argb.de", true }, { "argekultur.at", true }, - { "argennon.xyz", true }, { "argh.io", true }, { "argot.com", true }, { "ariege-pyrenees.net", true }, @@ -1424,7 +1401,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "armingrodon.de", false }, { "arminpech.de", true }, { "armleads.com", true }, - { "armor.com", true }, { "armored.ninja", true }, { "armstrongsengineering.com", true }, { "army24.cz", true }, @@ -1435,11 +1411,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arnesolutions.com", true }, { "arnetdigital.eu", false }, { "arnor.org", true }, - { "arod.tk", true }, { "arokha.com", true }, { "aromaclub.nl", true }, { "aroonchande.com", true }, - { "aroundme.org", true }, { "arqueo-ecuatoriana.ec", true }, { "arquitetura.pt", true }, { "arrakis.se", true }, @@ -1463,7 +1437,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artforum.sk", true }, { "arthur.cn", true }, { "arthurlaw.ca", true }, - { "arthurmelo.com", true }, + { "arthurmelo.com", false }, { "articaexports.com", true }, { "artifex21.com", true }, { "artifex21.fr", true }, @@ -1516,7 +1490,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aschaefer.net", true }, { "ascii.moe", true }, { "asciitable.tips", true }, - { "asepms.com", true }, { "aserver.co", true }, { "ashleakunowski.com", true }, { "ashleyadum.com", true }, @@ -1527,7 +1500,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asia.dating", true }, { "asinetasima.com", true }, { "ask.fedoraproject.org", true }, - { "ask.pe", true }, { "ask.stg.fedoraproject.org", true }, { "askizzy.org.au", true }, { "askkaren.gov", true }, @@ -1577,6 +1549,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ateli.com", true }, { "atelier-naruby.cz", true }, { "atelier-rk.com", true }, + { "atelierdesflammesnoires.fr", true }, { "ateliernaruby.cz", true }, { "ateliersantgervasi.com", true }, { "atencionbimbo.com", true }, @@ -1629,7 +1602,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "attogtech.com", true }, { "attorney.org.il", true }, { "atulhost.com", true }, - { "atviras.lt", true }, + { "atviras.lt", false }, { "atypicom.es", true }, { "atypicom.fr", true }, { "atypicom.it", true }, @@ -1695,7 +1668,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autoentrepreneurinfo.com", true }, { "autoledky.sk", true }, { "automacity.com", true }, - { "automobiles5.com", true }, { "automotivegroup-usedcars.be", true }, { "automotivemechanic.org", true }, { "autoosijek.com", true }, @@ -1709,7 +1681,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autoverzekeringafsluiten.com", true }, { "auxetek.se", true }, { "auxquatrevents.ch", true }, - { "ava-creative.de", true }, + { "ava-creative.de", false }, { "avaaz.org", true }, { "avacariu.me", true }, { "avadatravel.com", true }, @@ -1765,6 +1737,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "axolsoft.com", true }, { "axrec.de", true }, { "axtux.tk", true }, + { "ayahuascaadvisor.com", true }, { "ayesh.me", true }, { "aykutcevik.com", true }, { "aylak.com", true }, @@ -1802,9 +1775,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "babacasino.net", true }, { "babak.de", false }, { "babarkata.com", true }, + { "babelfisch.eu", true }, { "babettelandmesser.de", true }, { "babyboom.pl", true }, - { "babycs.house", false }, { "babyfotograf-schweiz.ch", true }, { "babyliss-pro.com", true }, { "babyliss-pro.net", true }, @@ -1834,6 +1807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "badges.fedoraproject.org", true }, { "badges.stg.fedoraproject.org", true }, { "badhusky.com", true }, + { "badlink.org", true }, { "badoo.com", true }, { "badseacoffee.com", true }, { "baer.im", false }, @@ -1846,7 +1820,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bah.im", true }, { "baifubao.com", true }, { "baiker.info", true }, - { "bailbondsaffordable.com", true }, { "baileebee.com", true }, { "bair.io", true }, { "baitulongbaycruises.com", true }, @@ -1876,7 +1849,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ballothero.com", true }, { "balnearionaturaspa.com", true }, { "bals.org", true }, - { "bananium.fr", true }, { "banburybid.com", true }, { "bancacrs.it", true }, { "banchethai.com", true }, @@ -1893,7 +1865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bankcardoffer.com", true }, { "bankcircle.co.in", true }, { "bankersonline.com", true }, - { "bankin.com", false }, + { "bankin.com", true }, { "bankinter.pt", true }, { "bankofdenton.com", true }, { "bankstownapartments.com.au", true }, @@ -1914,7 +1886,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barcoderealty.com", true }, { "bardiharborow.com", true }, { "bardiharborow.tk", true }, - { "bariller.fr", true }, { "baripedia.org", true }, { "barisi.me", true }, { "barkerjr.xyz", true }, @@ -1939,6 +1910,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baselang.com", true }, { "basementdoctor.com", true }, { "basementdoctornorthwest.com", true }, + { "bashc.at", true }, { "bashstreetband.co.uk", true }, { "basilm.co", true }, { "baskettemple.com", true }, @@ -1986,31 +1958,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bbgeschenke.ch", true }, { "bbimarketing.com", true }, { "bbkworldwide.jp", true }, + { "bblove.me", true }, { "bbnx.net", true }, { "bbrinck.eu", true }, { "bbuio.com", true }, { "bbw-wrestling.com", true }, { "bbw.dating", true }, { "bbwcs.co.uk", true }, - { "bbwdom.xyz", true }, { "bbwf.de", true }, { "bbwfacesitting.us", true }, - { "bbwfacesitting.xyz", true }, - { "bbwfight.xyz", true }, { "bbwteens.org", true }, { "bc-bd.org", true }, { "bcbulle.ch", true }, { "bcdonadio.com", true }, { "bch7al.ma", true }, { "bchep.com", true }, - { "bck.me", true }, { "bcmguide.com", true }, { "bcmlu.org", true }, { "bcpc-ccgpfcheminots.com", true }, { "bcrook.com", false }, { "bcswampcabins.com", true }, { "bdd.fi", true }, - { "bddemir.com", true }, { "bdikaros-network.net", true }, { "bdsmxxxpics.com", true }, { "bdvg.org", true }, @@ -2020,6 +1988,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "be2cloud.de", true }, { "beadare.com", true }, { "beagreenbean.co.uk", true }, + { "beamitapp.com", true }, { "beanjuice.me", true }, { "beans-one.com", false }, { "beanworks.ca", true }, @@ -2063,7 +2032,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beersandco.ch", true }, { "beersconf.com", true }, { "beeswax-orgone.com", true }, - { "beetleroadstories.com", true }, { "beetman.net", true }, { "beeznest.com", true }, { "befoodsafe.gov", true }, @@ -2076,7 +2044,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "behoerden-online-dienste.de", true }, { "beijing.dating", true }, { "beijinglug.club", true }, - { "beikeil.de", true }, { "beinad.com", true }, { "beinad.ru", true }, { "belacapa.com.br", true }, @@ -2147,10 +2114,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bentertain.de", true }, { "bentley.link", true }, { "bentrask.com", true }, + { "benwattie.com", true }, { "benzou-space.com", true }, { "beoordelingen.be", true }, { "bep362.vn", true }, { "beranovi.com", true }, + { "berasavocate.com", true }, { "berdu.id", true }, { "bergenhave.nl", true }, { "bergland-seefeld.at", true }, @@ -2174,6 +2143,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bertoliniodontoiatria.it", true }, { "bertrand.bio", true }, { "beryl.net", true }, + { "besnik.de", true }, { "bespokestraps.com", true }, { "best-wallpaper.net", true }, { "best-wedding-quotes.com", true }, @@ -2195,7 +2165,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestperfumebrands.com", true }, { "bestseries.tv", true }, { "bestwebsite.gallery", true }, - { "betaclean.fr", true }, { "betafive.net", true }, { "betakah.net", true }, { "betaworx.de", true }, @@ -2208,7 +2177,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betpamm.com", true }, { "bets.gg", true }, { "betseybuckheit.com", true }, - { "betshoot.com", true }, { "betsyshilling.com", true }, { "betterbabyshop.com.au", true }, { "bettercrypto.org", true }, @@ -2301,7 +2269,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bight.ca", true }, { "biglou.com", true }, { "bigskymontanalandforsale.com", true }, - { "biguixhe.net", true }, { "biilo.com", true }, { "bijuteriicualint.ro", true }, { "bike-kurse.ch", true }, @@ -2318,13 +2285,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "billiger-mietwagen.de", true }, { "billigpoker.dk", true }, { "billigssl.dk", true }, - { "billionairemailinglist.com", true }, { "billionkiaparts.com", true }, { "billogram.com", true }, { "billpro.com", false }, { "billpro.com.au", true }, { "biltullen.com", true }, - { "bimbo.com", true }, { "bimbobakeriesusa.com", true }, { "bimmerlabs.com", true }, { "bina.az", true }, @@ -2335,8 +2300,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binarystud.io", true }, { "binding-problem.com", true }, { "binfind.com", true }, + { "bingcheung.com", true }, { "bingo-wear.com", true }, - { "bingofriends.com", true }, { "bingostars.com", true }, { "binimo.com", true }, { "binkconsulting.be", true }, @@ -2376,7 +2341,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bismarck.moe", true }, { "bissalama.org", true }, { "biswas.me", true }, - { "bit-rapid.com", false }, { "bit-sentinel.com", true }, { "bit.voyage", true }, { "bit8.com", true }, @@ -2430,6 +2394,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitplay.space", true }, { "bitpod.de", true }, { "bitpumpe.net", true }, + { "bitraum.io", true }, + { "bitref.com", true }, { "bitrush.nl", true }, { "bitsafe.com.my", true }, { "bitsensor.io", true }, @@ -2455,6 +2421,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biztera.com", true }, { "bizzartech.com", true }, { "bizzi.tv", true }, + { "bjornhelmersson.se", true }, { "bjornjohansen.no", true }, { "bjs.gov", true }, { "bk-bund-berlin.de", true }, @@ -2486,7 +2453,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "black-armada.com", true }, { "black-gay-porn.biz", true }, { "black-khat.com", true }, - { "black-octopus.ru", true }, { "black.dating", true }, { "black.host", true }, { "blackbag.nl", true }, @@ -2498,7 +2464,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackdiam.net", true }, { "blackdotbrewery.com", true }, { "blackdown.de", true }, - { "blackdragoninc.org", true }, { "blackedbyte.com", true }, { "blackgamelp.de", true }, { "blackhelicopters.net", true }, @@ -2516,7 +2481,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blameomar.com", true }, { "blancodent.com", true }, { "blankersfamily.com", true }, - { "blantik.net", true }, { "blastersklan.com", true }, { "blaudev.es", true }, { "blauerhunger.de", true }, @@ -2531,6 +2495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blechschmidt.saarland", true }, { "blendle.com", true }, { "blendr.com", true }, + { "blessedearth.com.au", true }, { "blessedguy.com", true }, { "blessedguy.net", true }, { "blewebprojects.com", true }, @@ -2557,7 +2522,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blog.gparent.org", true }, { "blog.linode.com", false }, { "blog.lookout.com", false }, - { "blogabout.ru", true }, { "blogaid.net", true }, { "blogarts.net", true }, { "blogbooker.com", true }, @@ -2570,7 +2534,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bloodsports.org", true }, { "bloomnbud.com", true }, { "bloomzoomy.ru", true }, - { "blowjs.com", true }, { "bltc.co", true }, { "bltc.co.uk", true }, { "bltc.com", true }, @@ -2653,7 +2616,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bolwerk.com.br", true }, { "bombsquad.studio", true }, { "bondagefetishstore.com", true }, - { "bondoer.fr", true }, { "bondpro.gov", true }, { "bondskampeerder.nl", true }, { "boneko.de", true }, @@ -2664,6 +2626,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bonnyprints.ch", true }, { "bonnyprints.es", true }, { "bonnyprints.fr", true }, + { "bonobo.cz", true }, { "bonqoeur.ca", true }, { "bonus-flexi.com", true }, { "boof.com", false }, @@ -2677,6 +2640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bool.be", true }, { "boomersurf.com", true }, { "boomshelf.com", true }, + { "boomshelf.org", true }, { "boonbox.com", true }, { "booox.cc", true }, { "booq.org", true }, @@ -2695,7 +2659,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bornhack.dk", true }, { "borowski.pw", true }, { "borrelioz.com", true }, - { "borscheid-wenig.com", true }, { "borysek.net", true }, { "borzoi.com.br", true }, { "boss.az", true }, @@ -2710,6 +2673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boudah.pl", true }, { "bougeret.fr", true }, { "bounceboxspc.com", true }, + { "bouncecoffee.com", true }, { "bouncourseplanner.net", true }, { "bouncyball.eu", false }, { "bouncyballs.org", true }, @@ -2720,6 +2684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bourse-aux-vetements.org", false }, { "bourse-puericulture.org", false }, { "boutiqueguenaelleverdin.com", true }, + { "bowling.com", true }, { "bownty.be", true }, { "bownty.co.uk", true }, { "bownty.de", true }, @@ -2751,7 +2716,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bradler.net", true }, { "bradlinder.org", true }, { "braemer-it-consulting.de", true }, - { "bragasoft.com.br", true }, { "brahmins.com", true }, { "brahmstaedt.de", true }, { "braiampeguero.xyz", true }, @@ -2862,7 +2826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "broersma.com", true }, { "broeselei.at", true }, { "brompton-cocktail.com", true }, - { "brooke-fan.com", true }, + { "bronevichok.ru", true }, { "brookehatton.com", true }, { "brookframework.org", true }, { "brooklynrealestateblog.com", true }, @@ -2885,7 +2849,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bruun.co", true }, { "bryankaplan.com", true }, { "bryanquigley.com", true }, - { "bryn.xyz", true }, { "bs-network.net", true }, { "bsalyzer.com", true }, { "bsdfreak.dk", true }, @@ -2967,7 +2930,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bulkcandystore.com", true }, { "bulkingtime.com", true }, { "bulktrade.de", true }, - { "bullbits.com", true }, { "bulldog-hosting.de", true }, { "bulledair-savons.ch", true }, { "bullettags.com", true }, @@ -3031,6 +2993,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bwcscorecard.org", true }, { "bwh1.net", true }, { "bwilkinson.co.uk", true }, + { "bws16.de", true }, { "bwwb.nu", true }, { "bx-n.de", true }, { "bxdev.me", true }, @@ -3043,20 +3006,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bynet.cz", true }, { "bynumlaw.net", true }, { "bypass.kr", true }, - { "bypassed.bid", true }, - { "bypassed.cc", true }, - { "bypassed.club", true }, - { "bypassed.date", true }, - { "bypassed.download", true }, - { "bypassed.faith", true }, - { "bypassed.host", true }, - { "bypassed.me", true }, - { "bypassed.online", true }, - { "bypassed.org", true }, - { "bypassed.party", true }, - { "bypassed.pw", true }, - { "bypassed.rocks", true }, - { "bypassed.site", true }, { "byrko.cz", true }, { "byrko.sk", true }, { "byronr.com", true }, @@ -3091,7 +3040,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c-webdesign.net", true }, { "c-world.co.uk", true }, { "c.cc", true }, - { "c0rn3j.com", true }, { "c16t.uk", true }, { "c3vo.de", true }, { "c3w.at", true }, @@ -3162,7 +3110,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cambodian.dating", true }, { "cambridgeanalytica.net", true }, { "camconn.cc", true }, - { "camerweb.es", true }, { "camp-pleinsoleil.ch", true }, { "camp.co.uk", true }, { "campaign-ad.com", true }, @@ -3206,7 +3153,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canihavesome.coffee", true }, { "canlidoviz.com", true }, { "cannabis-marijuana.com", true }, - { "cannarobotics.com", true }, { "cannyfoxx.me", true }, { "canoonic.se", true }, { "cantatio.ch", true }, @@ -3229,6 +3175,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capitalp.jp", true }, { "capitalquadatv.org.nz", true }, { "capitolpathways.org", true }, + { "capogna.com", true }, { "capper.de", true }, { "capriccio.to", true }, { "caprichosdevicky.com", true }, @@ -3239,6 +3186,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capturapp.com", true }, { "capture-app.com", true }, { "captured-symphonies.com", true }, + { "capturethepen.co.uk", true }, { "caputo.com", true }, { "caputodesign.com", true }, { "car-shop.top", true }, @@ -3253,6 +3201,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carbon-designz.com", true }, { "carbon12.org", true }, { "carbon12.software", true }, + { "carboneselectricosnettosl.info", true }, { "carbonmade.com", false }, { "carck.co.uk", true }, { "carck.uk", true }, @@ -3276,6 +3225,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carey.bio", true }, { "carey.li", true }, { "carezone.com", false }, + { "cargobay.net", true }, { "caribbean.dating", true }, { "caribbeanexams.com", true }, { "carif-idf.net", true }, @@ -3317,6 +3267,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casa-su.casa", true }, { "casbuijs.nl", true }, { "casburggraaf.com", true }, + { "cash-pos.com", true }, { "cashew3d.com", true }, { "cashfortulsahouses.com", true }, { "cashless.fr", true }, @@ -3353,7 +3304,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cav.ac", true }, { "cavalierkingcharlesspaniel.com.br", true }, { "cave-reynard.ch", true }, - { "cavedevs.de", true }, { "cavern.tv", true }, { "cavzodiaco.com.br", true }, { "caylercapital.com", true }, @@ -3370,6 +3320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ccgn.co", true }, { "ccja.ro", false }, { "ccl-sti.ch", true }, + { "ccsys.com", true }, { "cctld.com", true }, { "cctvview.info", true }, { "ccu.io", true }, @@ -3389,6 +3340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ce-pimkie.fr", true }, { "cebz.org", true }, { "ceciliacolombara.com", true }, + { "cecilwalker.com.au", true }, { "cecipu.gob.cl", true }, { "ced-services.nl", true }, { "cedriccassimo.ch", true }, @@ -3414,7 +3366,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "centerforpolicy.org", true }, { "centerpereezd.ru", false }, { "centerpoint.ovh", true }, - { "centos.pub", true }, { "centos.tips", true }, { "central4.me", true }, { "centralfor.me", true }, @@ -3478,7 +3429,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ch-sc.de", true }, { "ch.search.yahoo.com", false }, { "chabaudparfum.com", true }, - { "chabik.com", true }, + { "chabik.com", false }, { "chadstoneapartments.com.au", true }, { "chahub.com", true }, { "chaisystems.net", true }, @@ -3514,7 +3465,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charbonnel.eu", true }, { "charcoalvenice.com", true }, { "charge.co", true }, - { "charl.eu", true }, { "charlenevondell.com", true }, { "charles-darwin.com", true }, { "charlesbwise.com", true }, @@ -3523,6 +3473,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charliehr.com", true }, { "charlierogers.co.uk", true }, { "charlierogers.com", true }, + { "charlipopkids.com.au", true }, { "charlotte-touati.ch", true }, { "charlottesvillegolfcommunities.com", true }, { "charmander.me", true }, @@ -3562,6 +3513,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chazay.net", false }, { "chbs.me", true }, { "chch.it", true }, + { "cheapalarmparts.com.au", true }, { "cheapdns.org", true }, { "cheapestgamecards.de", true }, { "cheapestgamecards.nl", true }, @@ -3594,16 +3546,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chestnut.cf", true }, { "chewey.de", true }, { "chewey.org", true }, - { "chez-janine.de", true }, { "chfr.search.yahoo.com", false }, { "chhory.com", true }, { "chhy.at", true }, { "chiaraiuola.com", true }, { "chiaramail.com", true }, { "chiaseeds24.com", true }, - { "chib.chat", true }, { "chic-leather.com", true }, - { "chicisimo.com", true }, { "chicorycom.net", true }, { "chiemgauflirt.de", true }, { "chikan-beacon.net", true }, @@ -3632,7 +3581,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chiryotaisaku.com", true }, { "chisago-isantidfl.com", true }, { "chit.search.yahoo.com", false }, - { "chloe.re", true }, { "chloeallison.co.uk", true }, { "chloehorler.com", true }, { "chmsoft.com.ua", true }, @@ -3641,6 +3589,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chocotough.nl", false }, { "chodobien.com", true }, { "choiralberta.ca", true }, + { "chokladfantasi.net", true }, { "chonghe.org", true }, { "chook.as", true }, { "choosemypc.net", true }, @@ -3650,7 +3599,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chorkley.me", true }, { "chorkley.uk", true }, { "chorpinkpoemps.de", true }, - { "chosenplaintext.org", true }, { "chourishi-shigoto.com", true }, { "chris-edwards.net", true }, { "chrisb.me", true }, @@ -3674,6 +3622,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christensenplace.us", true }, { "christiaanconover.com", true }, { "christian-host.com", true }, + { "christianbargon.de", false }, { "christianforums.com", true }, { "christiangaetano.com", true }, { "christianhoffmann.info", true }, @@ -3691,7 +3640,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christopherburg.com", true }, { "christopherl.com", true }, { "christopherpritchard.co.uk", true }, - { "christophersole.com", true }, { "christophertruncer.com", true }, { "christophkreileder.com", true }, { "christophsackl.de", true }, @@ -3731,7 +3679,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cidbot.com", true }, { "ciderclub.com", true }, { "cienbeaute-lidl.fr", true }, - { "cieslar.io", true }, { "cig-dem.com", true }, { "cigar-cartel.com", true }, { "cigarterminal.com", false }, @@ -3762,7 +3709,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "circu.ml", true }, { "cirfi.com", true }, { "cirope.com", true }, - { "cirrohost.com", false }, + { "cirrohost.com", true }, { "cirrus0.de", true }, { "ciscodude.net", true }, { "ciscohomeanalytics.com", true }, @@ -3778,7 +3725,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "citya.com", true }, { "citybusexpress.com", true }, { "citylights.eu", true }, - { "citymoobel.ee", true }, { "citysportapp.com", true }, { "citywalkr.com", true }, { "cityworksonline.com", true }, @@ -3821,6 +3767,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clearkonjac.com", true }, { "clearsettle-admin.com", true }, { "clearviewwealthprojector.com.au", true }, + { "clemovementlaw.com", true }, { "cles.jp", true }, { "clevelandokla.com", true }, { "clevertarget.ru", true }, @@ -3836,6 +3783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clickforclever.com", true }, { "clickphish.com", true }, { "clicks.co.za", true }, + { "clientboss.com", true }, { "clifflu.net", true }, { "cliftons.com", true }, { "climaprecio.es", true }, @@ -3846,8 +3794,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clinicaltrials.gov", true }, { "cliniko.com", true }, { "cliniquepariseau.com", false }, - { "clintonlibrary.gov", true }, + { "clintonlibrary.gov", false }, { "clip.mx", false }, + { "clip.ovh", true }, { "clipclip.com", true }, { "clipped4u.com", true }, { "clmde.de", true }, @@ -3887,16 +3836,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudsecurityalliance.org", true }, { "cloudservice.io", true }, { "cloudspace-analytics.com", true }, - { "cloudspeedy.net", true }, - { "cloudstrike.co", true }, { "cloudteam.de", true }, { "cloudup.com", true }, { "cloudwarez.xyz", true }, { "clounix.online", true }, { "clouz.de", true }, { "clovissantos.com", true }, - { "clowde.in", true }, { "clownish.co.il", true }, + { "cloxy.com", true }, { "clr3.com", true }, { "clsimage.com", true }, { "clsimplex.com", true }, @@ -3927,7 +3874,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cmylife.nl", true }, { "cnam.net", true }, { "cnbs.ch", true }, - { "cnc-lehrgang.de", true }, { "cncfraises.fr", true }, { "cnetw.xyz", true }, { "cnlic.com", true }, @@ -3936,10 +3882,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "co-factor.ro", true }, { "co-yutaka.com", true }, { "co.search.yahoo.com", false }, + { "co50.com", true }, + { "coach-sportif.paris", true }, { "coaching-impulse.ch", true }, { "coachingconsultancy.com", true }, { "coalitionministries.org", true }, { "coalpointcottage.com", true }, + { "coam.co", true }, { "coatl-industries.com", true }, { "cobalt.io", true }, { "cobrax.net", true }, @@ -3956,7 +3905,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cocoamexico.com", true }, { "cocodemy.com", true }, { "coconutoil24.com", true }, - { "code-digsite.com", true }, { "code-golf.io", true }, { "code-poets.co.uk", true }, { "code-well.com", true }, @@ -3970,7 +3918,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codeeclipse.com", true }, { "codeferm.com", true }, { "codefordus.nrw", true }, - { "codeforhakodate.org", true }, { "codefoundry.it", false }, { "codeine.co.uk", true }, { "codeit.guru", true }, @@ -3991,7 +3938,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codestudies.net", true }, { "codeux.com", true }, { "codeversetech.com", true }, - { "codewild.de", true }, { "codewiththepros.org", true }, { "codewiz.xyz", true }, { "codeyellow.nl", true }, @@ -4001,6 +3947,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codingforspeed.com", true }, { "codingrobots.com", true }, { "codyevanscomputer.com", true }, + { "codymoniz.com", true }, { "coerthas.com", true }, { "coffee-mamenoki.jp", true }, { "cogent.cc", true }, @@ -4011,7 +3958,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cogumelosmagicos.org", true }, { "cohesive.io", true }, { "coi-verify.com", true }, - { "coiffeurschnittstelle.ch", true }, { "coimmvest.com", true }, { "coin.dance", true }, { "coinapult.com", true }, @@ -4030,6 +3976,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colaborativa.tv", true }, { "colapsys.net", true }, { "coldawn.com", true }, + { "coldfff.com", false }, { "coldhak.ca", true }, { "coldwatericecream.com", true }, { "colearnr.com", true }, @@ -4099,7 +4046,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comico.info", true }, { "comiq.io", true }, { "comiteaintriathlon.fr", true }, - { "comitesaustria.at", true }, { "comiteshopping.com", true }, { "comm.cx", true }, { "commania.co.kr", true }, @@ -4163,7 +4109,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cong5.net", true }, { "congineer.com", true }, { "congz.me", true }, - { "conjugacao.com.br", true }, { "conkret.mobi", true }, { "connect-ed.network", true }, { "connect.dating", true }, @@ -4208,7 +4153,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "convert.im", true }, { "converter.ml", true }, { "convocatoriafundacionpepsicomexico.org", false }, - { "cooink.net", true }, { "cooker.fr", true }, { "cookicons.co", true }, { "cookie4.com", true }, @@ -4216,14 +4160,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cookiesoft.de", true }, { "cookingbazart.com", true }, { "cookinglife.nl", false }, + { "cookingreporter.com", true }, { "cookmedical.com", false }, { "cooko.at", true }, { "cool-wallpapers.jp", true }, { "cool110.tk", true }, - { "coolaj86.com", true }, { "cooldan.com", true }, { "coolerssr.space", true }, { "coolgifs.de", true }, + { "coolrc.me", true }, { "coolviewthermostat.com", true }, { "coopens.com", true }, { "coore.jp", true }, @@ -4245,6 +4190,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coreum.ca", true }, { "corex.io", true }, { "coreyjmahler.com", true }, + { "corgi.party", true }, { "coribi.com", true }, { "corinnanese.de", true }, { "corisu.co", true }, @@ -4253,7 +4199,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cornishcamels.com", true }, { "cornodo.com", true }, { "corona-academy.com", true }, - { "corozanu.ro", true }, { "corpfin.net", true }, { "corporateencryption.com", true }, { "corporateinfluencers.com", true }, @@ -4282,10 +4227,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "counterglobal.com", true }, { "countermail.com", true }, { "countryattire.com", true }, + { "countrybrewer.com.au", true }, { "countryoutlaws.ca", true }, { "countybankdel.com", true }, { "couponcodeq.com", true }, { "couragefound.org", true }, + { "courageousparentsnetwork.org", true }, { "course.pp.ua", true }, { "coursera.org", true }, { "courses.nl", true }, @@ -4321,6 +4268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crackle.io", true }, { "crackorsquad.in", true }, { "crackpfer.de", true }, + { "crackslut.eu", true }, { "crackstation.net", true }, { "cradlepointecm.com", true }, { "craftandbuild.de", true }, @@ -4334,7 +4282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "craigrouse.com", true }, { "craigwfox.com", true }, { "cralarm.de", true }, - { "crandall.io", true }, { "cranesafe.com", true }, { "cranioschule.com", true }, { "crapouill.es", true }, @@ -4444,6 +4391,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crypto.graphics", true }, { "crypto.is", false }, { "cryptobells.com", false }, + { "cryptobin.co", true }, { "cryptocon.org", true }, { "cryptodash.net", true }, { "cryptography.io", true }, @@ -4470,11 +4418,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csengle.de", true }, { "csfm.com", true }, { "csgo.help", true }, - { "csgo77.com", true }, { "csgoelemental.com", true }, { "csgogamers.com", true }, { "csgohandouts.com", true }, - { "csgoshifter.com", true }, { "csgotwister.com", true }, { "cshopify.com", true }, { "csmainframe.com", true }, @@ -4503,7 +4449,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cubecraft.net", true }, { "cubecraftstore.com", true }, { "cubecraftstore.net", true }, - { "cubekrowd.net", true }, { "cubela.tech", true }, { "cubia.de", true }, { "cubia3.com", true }, @@ -4514,6 +4459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cuddlingyaks.com", true }, { "cuecasonline.com.br", true }, { "cuetoems.com", true }, + { "cuibonobo.com", true }, { "cuisinezest.com", true }, { "cujba.com", true }, { "cultiv.nl", true }, @@ -4558,14 +4504,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "customwritings.com", true }, { "cutimbo.ovh", true }, { "cuvva.co", true }, - { "cuvva.co.uk", true }, { "cuvva.com", true }, - { "cuvva.eu", true }, - { "cuvva.io", true }, - { "cuvva.it", true }, - { "cuvva.me", true }, { "cuvva.net", true }, - { "cuvva.org", true }, { "cuvva.uk", true }, { "cuvva.us", true }, { "cve-le-carrousel.ch", true }, @@ -4588,6 +4528,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyber-konzept.de", true }, { "cyber.cafe", true }, { "cybercecurity.com", true }, + { "cyberdos.de", true }, { "cyberfrancais.ro", true }, { "cybergrx.com", true }, { "cyberguerrilla.info", true }, @@ -4602,8 +4543,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybersecurity.nz", true }, { "cybersecuritychallenge.be", true }, { "cyberspect.com", true }, + { "cyberspect.io", true }, { "cyberstatus.de", true }, { "cybertorsk.org", true }, + { "cybertu.be", true }, { "cyberwars.dk", true }, { "cyberwire.nl", true }, { "cybozu.cn", true }, @@ -4615,7 +4558,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyfly.org", true }, { "cygnius.net", true }, { "cyhour.com", true }, - { "cymtech.net", true }, { "cyoda.com", true }, { "cyon.ch", true }, { "cyph.audio", true }, @@ -4680,7 +4622,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daiwai.de", false }, { "daiweihu.com", true }, { "daiyuu.jp", true }, - { "dakerealestate.com", true }, { "dakl-shop.de", true }, { "daknob.net", true }, { "daladubbeln.se", true }, @@ -4733,14 +4674,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danjesensky.com", true }, { "dank.ninja", true }, { "dankeblog.com", true }, - { "dankim.de", false }, { "dankredues.com", true }, { "danla.nl", true }, { "danmaby.com", true }, { "danmark.guide", true }, { "danminkevitch.com", true }, { "danny.fm", true }, - { "dannycrichton.com", true }, { "dannyrohde.de", true }, { "danonsecurity.com", true }, { "danoz.net", true }, @@ -4751,7 +4690,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danskoferie.dk", true }, { "danw.io", true }, { "daphne.informatik.uni-freiburg.de", true }, - { "daplie.com", true }, { "daracokorilo.com", true }, { "darbtech.net", true }, { "darchoods.net", false }, @@ -4775,9 +4713,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "darkside.re", true }, { "darkspacelab.com", true }, { "darktime.ru", true }, - { "darktree.in", true }, { "darkwater.info", true }, - { "darlo.co.uk", false }, { "darom.jp", true }, { "daropia.org", true }, { "darrenm.net", true }, @@ -4791,7 +4727,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "das-mediale-haus.de", true }, { "das-sommercamp.de", true }, { "das-tyrol.at", true }, - { "dash-board.jp", false }, { "dash.rocks", true }, { "dashboard.yt", true }, { "data.gov", true }, @@ -4809,6 +4744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datadit.hu", true }, { "datadyne.technology", true }, { "dataisme.com", true }, + { "datajapan.co.jp", true }, { "datalysis.ch", true }, { "datamatic.ru", true }, { "dataprotectionadvisors.com", true }, @@ -4861,7 +4797,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidpearce.com", true }, { "davidpearce.org", true }, { "davidschadlich.com", true }, - { "davidscherzer.at", true }, { "davidschlachter.com", true }, { "davimun.org", true }, { "davisroi.com", true }, @@ -4901,7 +4836,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dcpower.eu", true }, { "dcrdev.com", true }, { "dd.art.pl", true }, - { "ddatsh.com", true }, { "dden.ca", false }, { "ddfreedish.site", false }, { "ddhosted.com", true }, @@ -4972,7 +4906,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deepbluecrafting.co.uk", true }, { "deeprecce.com", true }, { "deeprecce.link", true }, - { "deeprecce.tech", true }, { "deepserve.info", true }, { "deepvision.com.ua", true }, { "deepzz.com", true }, @@ -5046,7 +4979,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "denardbrewing.com", true }, { "dengchangdong.com", true }, { "denimio.com", true }, - { "denimtoday.com", true }, { "denistruffaut.fr", true }, { "dennisdoes.net", false }, { "denniskoot.nl", true }, @@ -5058,6 +4990,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dentrassi.de", true }, { "dentystabirmingham.co.uk", true }, { "denvercybersecurity.com", true }, + { "denverprophit.us", true }, { "deontology.com", true }, { "depechemode-live.com", true }, { "depicus.com", true }, @@ -5073,6 +5006,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dereferenced.net", true }, { "deregowski.net", true }, { "derekkent.com", true }, + { "dergeilstestammderwelt.de", true }, { "derhil.de", true }, { "derivativeshub.pro", true }, { "derive.cc", true }, @@ -5119,10 +5053,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "detroitstylepizza.com", true }, { "detskysad.com", true }, { "detteflies.com", true }, - { "detutorial.com", false }, { "deurenfabriek.nl", true }, { "deusu.de", true }, - { "deusu.org", true }, { "deutsch-vietnamesisch-dolmetscher.com", true }, { "deux.solutions", true }, { "deuxsol.co", true }, @@ -5134,10 +5066,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devct.cz", true }, { "devdesco.com", true }, { "devdom.io", true }, + { "devdoodle.net", true }, { "devel.cz", true }, { "develop.fitness", true }, { "developer.mydigipass.com", false }, - { "developerfair.com", true }, { "developers.facebook.com", false }, { "developfx.com", true }, { "developmentaid.org", true }, @@ -5154,6 +5086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devisnow.fr", true }, { "devisonline.ch", true }, { "devistravaux.org", true }, + { "devkit.cc", true }, { "devklog.net", true }, { "devlogr.com", true }, { "devlux.ch", true }, @@ -5168,7 +5101,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devzero.io", true }, { "dewalch.net", true }, { "dewebwerf.nl", true }, - { "dewin.io", true }, { "dexalo.de", true }, { "dezeregio.nl", true }, { "dezintranet.com", true }, @@ -5179,7 +5111,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dfektlan.no", true }, { "dfl.mn", true }, { "dflcares.com", true }, - { "dfnet.ml", true }, + { "dfnet.ml", false }, { "dfranke.com", true }, { "dgby.org", true }, { "dgeex.eu", true }, @@ -5192,15 +5124,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dhedegaard.dk", true }, { "dhhs.gov", true }, { "dhlinux.org", true }, - { "dhuy.net", true }, + { "dhome.at", true }, { "diablofan.hopto.org", true }, { "diagnosia.com", true }, { "diagnostix.org", true }, { "diamante.ro", true }, { "diamorphine.com", true }, { "dianefriedli.ch", true }, - { "dianlujitao.com", true }, - { "diannaobos.com", true }, { "diare-na-miru.cz", true }, { "diasdasemana.com", true }, { "diasp.org", true }, @@ -5238,15 +5168,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diemattels.at", true }, { "diemogebhardt.com", true }, { "dienstplan.cc", true }, - { "dienstplan.one", true }, + { "dierenartsdeconinck.be", true }, { "dieselgalleri.com", true }, { "dieser.me", true }, { "dietbrand.eu", true }, { "dieti.net", true }, { "dietrich.cx", true }, { "dieumfrage.com", true }, - { "diewebstube.de", true }, - { "diferenca.com", true }, { "diff2html.xyz", true }, { "different.cz", true }, { "differenta.ro", true }, @@ -5298,6 +5226,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dime.io", true }, { "dimez.ru", true }, { "dimonb.com", true }, + { "dineachook.com.au", true }, { "dinepont.fr", true }, { "dingcc.com", true }, { "dinge.xyz", true }, @@ -5391,7 +5320,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlaspania.pl", true }, { "dldl.fr", true }, { "dlg.im", true }, - { "dlitz.net", true }, { "dlld.com", true }, { "dlouwrink.nl", true }, { "dlrsp.org", true }, @@ -5403,12 +5331,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dmeevalumate.com", true }, { "dmfd.net", true }, { "dmi.es", true }, - { "dmix.ca", true }, { "dmlogic.com", true }, { "dmwall.cn", true }, { "dmxledlights.com", true }, { "dn3s.me", true }, - { "dn42.eu", false }, { "dn42.us", true }, { "dna.li", true }, { "dnc.org.nz", true }, @@ -5488,6 +5414,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "domenic.me", true }, { "domenicocatelli.com", true }, { "domesticcleaners.co.uk", true }, + { "domesticwatermeters.com.au", true }, { "domfee.com", true }, { "domhaase.me", true }, { "dominationgame.co.uk", true }, @@ -5513,7 +5440,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donthedragonwilson.com", true }, { "dooby.fr", true }, { "doobydude.us", true }, - { "doodledraw.ninja", true }, { "dooleylabs.com", true }, { "dooleytackaberry.com", true }, { "doomsworld.com", true }, @@ -5537,6 +5463,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doska.kz", true }, { "doska.ru", true }, { "dossplumbing.co.za", true }, + { "dostavkakurierom.ru", true }, { "dot.ro", true }, { "dotbigbang.com", true }, { "dotbox.org", true }, @@ -5551,11 +5478,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dotrox.net", true }, { "dotsiam.com", true }, { "doubleavineyards.com", true }, - { "doublefun.net", true }, { "doublethink.online", true }, { "doubleup.com.au", true }, { "doubleyummy.uk", true }, { "doucheba.gs", true }, + { "dougferris.id.au", true }, { "doujinshi.info", true }, { "dounats.com", true }, { "douzer.de", true }, @@ -5563,7 +5490,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "downloadgamemods.com", true }, { "downloadgram.com", true }, { "downloadsoftwaregratisan.com", true }, - { "doxcelerate.com", true }, { "doyoulyft.com", true }, { "dpd.com.pl", true }, { "dprb.biz", true }, @@ -5584,7 +5510,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragonkin.net", true }, { "dragons.moe", false }, { "dragonschool.org", true }, - { "dragonsmoke.cloud", true }, { "dragonstower.net", true }, { "dragonwork.me", true }, { "drahcro.uk", true }, @@ -5643,9 +5568,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drogueriaelbarco.com", true }, { "droidapp.nl", true }, { "droidwiki.de", true }, - { "droncentrum.pl", true }, { "drone-it.net", true }, - { "dronemediauk.com", true }, + { "dronemediauk.com", false }, { "dronepit.dk", true }, { "dronexpertos.com", true }, { "droni.cz", true }, @@ -5733,10 +5657,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "durangoenergyllc.com", true }, { "duria.de", true }, { "durys.be", true }, - { "duskopy.top", true }, - { "dustri.org", true }, { "dustygroove.com", true }, { "dutch1.nl", true }, + { "dutchessuganda.com", true }, { "dutchrank.nl", true }, { "dutchwanderers.nl", true }, { "dutchweballiance.nl", true }, @@ -5762,10 +5685,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dyn.im", true }, { "dynaloop.net", true }, { "dynamicnet.net", false }, - { "dynamicsnetwork.net", true }, { "dynamictostatic.com", true }, { "dynamicyou.co.uk", true }, - { "dynamize.solutions", true }, { "dynastic.co", true }, { "dynn.be", true }, { "dynorphin.com", true }, @@ -5781,14 +5702,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dzomo.org", true }, { "dzyabchenko.com", true }, { "e-hon.link", true }, - { "e-isfa.eu", true }, { "e-kontakti.fi", true }, { "e-learningbs.com", true }, { "e-lifetechnology.com", true }, { "e-mak.eu", true }, { "e-migration.ch", true }, { "e-newshub.com", true }, - { "e-pokupki.eu", true }, { "e-rickroll-r.pw", true }, { "e-standardstore.org", true }, { "e-teacher.pl", true }, @@ -5819,7 +5738,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "earmarks.gov", true }, { "earth-people.org", true }, { "earticleblog.com", true }, - { "earvinkayonga.com", true }, + { "eason-yang.com", true }, { "eastarm.net", true }, { "eastmanbusinessinstitute.com", true }, { "eastmontgroup.com", true }, @@ -5831,7 +5750,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easyhaul.com", true }, { "easykonto.de", true }, { "easyllc.com", true }, - { "easyocm.hu", true }, { "easyproperty.com", true }, { "easypv.ch", true }, { "easysimplecrm.com", false }, @@ -5859,7 +5777,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ebooksgratuits.org", true }, { "eboyer.com", true }, { "ec-baran.de", true }, - { "ec-hasslau.de", true }, { "ecc-kaufbeuren.de", true }, { "ecchidreams.com", true }, { "ecco-verde.com", false }, @@ -5869,7 +5786,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echatta.org", true }, { "echo-security.co", true }, { "echoactive.com", true }, - { "echomanchester.net", true }, { "echopaper.com", true }, { "echosixmonkey.com", true }, { "echosystem.fr", true }, @@ -5904,7 +5820,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edd-miles.com", true }, { "eddesign.ch", true }, { "eddmil.es", true }, - { "eddmixpanel.com", true }, { "eden-mobility.co.uk", true }, { "edenmal.net", true }, { "edesseglabor.hu", true }, @@ -5937,7 +5852,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edumundo.nl", true }, { "eduroam.no", true }, { "edusantorini.com", true }, - { "edv-lehrgang.de", true }, { "edvmesstec.de", true }, { "edwar.do", true }, { "edwards.me.uk", true }, @@ -5949,7 +5863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ee-terminals.com", true }, { "eeb98.com", true }, { "eelsden.net", true }, - { "eelzak.nl", true }, { "eengezinswoning-in-alphen-aan-den-rijn-kopen.nl", true }, { "eengezinswoning-in-de-friese-meren-kopen.nl", true }, { "eengezinswoning-in-friesland-kopen.nl", true }, @@ -5962,16 +5875,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eengezinswoning-in-zuidplas-kopen.nl", true }, { "eengezinswoning-in-zwartewaterland-kopen.nl", true }, { "eengezinswoningverkopen.nl", true }, - { "eenhoorn.ga", true }, { "eer.io", true }, { "eerstejaarsweekend.nl", true }, { "eery.de", true }, { "eewna.org", true }, + { "eez.ee", true }, { "ef-georgia.org", true }, { "ef.gy", true }, { "eff.org", true }, { "effdocs.com", true }, { "effective-altruist.com", true }, + { "effectiveosgi.com", true }, { "effex.ru", true }, { "effishiency.com", true }, { "egablo.black", true }, @@ -5993,7 +5907,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ehazi.hu", true }, { "ehealthcounselor.com", true }, { "ehipaa.com", true }, - { "ehipaadev.com", true }, { "ehomusicgear.com", true }, { "ehrlichesbier.de", true }, { "ehuber.info", true }, @@ -6051,8 +5964,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eldritchfiction.net", true }, { "elearningpilot.com", true }, { "electionsdatabase.com", true }, - { "electricant.com", true }, - { "electricant.nl", true }, { "electricoperaduo.com", true }, { "electronic-ignition-system.com", true }, { "electronicfasteners.com", true }, @@ -6100,6 +6011,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eligibleapi.com", true }, { "eligrey.com", true }, { "eliolita.com", true }, + { "eliott.be", false }, { "elisa.ee", false }, { "elisabeth-kostecki.de", true }, { "elisabeth-strunz.de", true }, @@ -6149,7 +6061,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "embellir-kyujin.com", true }, { "embraceni.org", true }, { "embracethedarkness.co.uk", true }, - { "embroidered-stuff.com", true }, { "embroideryexpress.co.uk", true }, { "emero.de", true }, { "emesolutions.net", true }, @@ -6183,13 +6094,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emyr.net", true }, { "en-booster.jp", true }, { "en-maktoob.search.yahoo.com", false }, + { "enaah.de", true }, { "enaia.fr", true }, { "enaim.de", true }, { "encfs.win", true }, { "encircleapp.com", true }, { "encnet.de", true }, { "encode.host", true }, - { "encode.space", false }, { "encode.uk.com", true }, { "encredible.de", false }, { "encredible.org", false }, @@ -6220,12 +6131,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "energyled.com.br", true }, { "enersec.co.uk", true }, { "enfantsdelarue.ch", true }, - { "enfield-kitchens.co.uk", true }, { "enfoqueseguro.com", true }, { "enfu.se", true }, { "engaugetools.com", true }, { "engelundlicht.ch", true }, - { "engg.ca", true }, { "engineeryourmarketing.com", false }, { "engineowning.com", true }, { "enginepit.com", true }, @@ -6238,6 +6147,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "englishstudio.com", true }, { "enjen.net", true }, { "enjoystudio.ro", true }, + { "enlatte.com", true }, { "enlightened.si", true }, { "enlightenedhr.com", true }, { "enlightenment.org", true }, @@ -6260,7 +6170,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "enterprisechannel.asia", true }, { "enterprisey.enterprises", true }, { "entheogens.com", true }, - { "entourneebeetle.com", true }, { "entrainr.com", true }, { "entropia.de", false }, { "entryboss.cc", true }, @@ -6294,7 +6203,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epsilon.dk", true }, { "epsorting.cz", true }, { "eq-serve.com", true }, - { "eqim.me", true }, { "eqorg.com", true }, { "equalcloud.com", true }, { "equalparts.eu", true }, @@ -6305,6 +6213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "equipsupply.com", true }, { "equitee.co", true }, { "er.tl", true }, + { "erad.fr", true }, { "erasmusplusrooms.com", true }, { "erdethamburgeronsdag.no", true }, { "erepublik-deutschland.de", true }, @@ -6323,7 +6232,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erico.jp", true }, { "ericoc.com", true }, { "ericwie.se", true }, - { "ericyl.com", true }, { "erigrid.eu", true }, { "eriix.org", true }, { "erikhubers.nl", true }, @@ -6386,7 +6294,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eskdale.net", true }, { "eskriett.com", true }, { "esoa.net", true }, - { "esocweb.com", true }, { "esoko.eu", true }, { "esono.de", true }, { "esoterik.link", true }, @@ -6399,7 +6306,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "especificosba.com.ar", true }, { "espgg.org", true }, { "esphigmenou.gr", true }, - { "espo.com.ua", true }, { "espritrait.com", true }, { "esquisse.fr", true }, { "ess-cert.ru", true }, @@ -6433,7 +6339,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ethercalc.com", true }, { "ethercalc.org", true }, { "etheria-software.tk", true }, - { "etherpad.fr", true }, { "etherpad.nl", true }, { "ethicaldata.co.uk", true }, { "ethicall.org.uk", true }, @@ -6442,7 +6347,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ethlan.fr", true }, { "ethosinfo.com", true }, { "etidni.help", true }, - { "etk2000.com", true }, { "etkaddict.com", true }, { "etv.cx", true }, { "etyd.org", true }, @@ -6500,7 +6404,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "euroscot.de", true }, { "euroshop.or.at", true }, { "eurospecautowerks.com", true }, - { "eurostrategy.vn.ua", true }, { "eurotime.ua", true }, { "eurotramp.com", true }, { "eurotravelstar.eu", true }, @@ -6509,7 +6412,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ev-zertifikate.de", true }, { "eva.cz", true }, { "evades.io", true }, - { "evalesc.com", true }, { "evangelosm.com", true }, { "evanhandgraaf.nl", true }, { "evankurniawan.com", true }, @@ -6545,7 +6447,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evexia.xyz", true }, { "evi.be", true }, { "evilized.de", true }, - { "evilnerd.de", true }, { "evion.nl", true }, { "evlear.com", true }, { "evodation.com", true }, @@ -6568,7 +6469,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ewout.io", true }, { "ewuchuan.com", true }, { "ewus.de", true }, - { "ewycena.pl", true }, { "exactlyinfinite.com", true }, { "exactphilosophy.net", true }, { "examenpilotos.com", false }, @@ -6610,6 +6510,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exponentialnews.net", true }, { "express-shina.ru", true }, { "express-vpn.com", true }, + { "expressemotion.net", true }, { "expresshosting.org", true }, { "expressmarket.ru", true }, { "expressvpn.com", true }, @@ -6703,7 +6604,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "falaowang.com", true }, { "falconvintners.com", true }, { "faldoria.de", true }, - { "falkhusemann.de", true }, { "falkus.net", true }, { "fallenangeldrinks.co.uk", true }, { "fallenangeldrinks.com", true }, @@ -6751,7 +6651,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faretravel.co.uk", true }, { "farfetchos.com", true }, { "fargtorget.se", true }, - { "farhadexchange.com", true }, { "farhood.org", true }, { "farmacia.pt", true }, { "farmacialaboratorio.it", true }, @@ -6774,7 +6673,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fashionunited.hu", true }, { "fashionunited.ie", true }, { "fashionunited.mx", true }, - { "fashionunited.nl", true }, { "fashionunited.nz", true }, { "fashionunited.se", true }, { "fashionweekweb.com", true }, @@ -6795,7 +6693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fatzebra.com.au", false }, { "faucetbox.com", false }, { "favorit.club", true }, - { "fawkex.me", true }, { "fawong.com", true }, { "faxreader.net", true }, { "fbcfairburn.com", true }, @@ -6810,7 +6707,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fdlibre.eu", true }, { "fdsys.gov", false }, { "fdt.name", true }, - { "feaden.me", true }, { "fearghus.org", true }, { "fearsomegaming.com", true }, { "feastr.io", true }, @@ -6851,16 +6747,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "felicifia.org", true }, { "felixhefner.de", true }, { "felixkauer.de", true }, + { "felixrr.pro", true }, { "felixsanz.com", true }, { "felixseele.de", true }, { "felsing.net", true }, - { "femaledom.xyz", true }, { "femdombbw.com", true }, { "feminina.pt", true }, { "femtomind.com", true }, { "fence-stlouis.com", true }, { "feng.si", true }, - { "fenno.net", true }, { "fenster-bank.at", true }, { "fenster-bank.de", true }, { "feragon.net", true }, @@ -6873,14 +6768,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fernandobarata.pt", true }, { "fernandobarillas.com", false }, { "ferrolatino.ch", true }, - { "ferrugem.org", true }, + { "ferrugem.org", false }, { "ferticare.pt", true }, { "fertila.de", true }, { "feschiyan.com", true }, { "festivaljapon.com", true }, { "festivalxdentro.com", true }, { "fetch.co.uk", true }, - { "fettbrot.tk", true }, { "feudalisten.de", true }, { "feuerwehr-illmensee.de", true }, { "feuerwehr-oberkotzau.de", true }, @@ -7021,7 +6915,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fitea.cz", true }, { "fitkram.cz", true }, { "fitness.gov", true }, - { "fitsw.com", true }, { "fittelo.cz", true }, { "fitzsim.org", true }, { "fiuxy.co", true }, @@ -7038,7 +6931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fixthetimeline.com", true }, { "fixthetimeline.org", true }, { "fixvoltage.ru", true }, - { "fizz.buzz", true }, + { "fizz.buzz", false }, { "fj.simple.com", false }, { "fktpm.ru", true }, { "flaemig42.de", true }, @@ -7071,6 +6964,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fletchto99.com", true }, { "fleurette.me", true }, { "flexapplications.se", true }, + { "fleximus.org", false }, { "flexinvesting.fi", true }, { "flexport.com", true }, { "flexstart.me", true }, @@ -7095,6 +6989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "floort.net", false }, { "flopix.net", true }, { "florence.uk.net", true }, + { "florent-tatard.fr", true }, { "florian-bachelet.fr", true }, { "florian-schlachter.de", true }, { "florian-thie.de", true }, @@ -7175,9 +7070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foodacademy.capetown", true }, { "foodattitude.ch", true }, { "foodblogger.club", true }, - { "foodbuddy.ch", true }, { "foodev.de", true }, - { "foodiebox.no", true }, { "foodies.my", true }, { "foodplantengineering.com", true }, { "foodsafety.gov", true }, @@ -7229,7 +7122,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fortuna-s.com", true }, { "fortworth.ch", true }, { "forty-two.nl", true }, - { "forty8creates.com", true }, { "forum.linode.com", false }, { "forumvoordemocratie.nl", true }, { "forus.be", true }, @@ -7267,7 +7159,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foxdev.co", true }, { "foxelbox.com", true }, { "foxhound.com.br", true }, - { "foxmay.co.uk", true }, { "foxontheinter.net", true }, { "foxquill.com", true }, { "foxterrier.com.br", true }, @@ -7307,29 +7198,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frantic1048.com", true }, { "frappant.cc", true }, { "frasesaniversarios.com.br", true }, - { "frasesdeamizade.pt", true }, { "frasesparaface.com.br", true }, { "frasesytarjetas.com", true }, { "frasys.cloud", true }, { "frattaroli.org", true }, - { "frau-inge.de", true }, { "frau-sucht-bauer.de", true }, { "fraudempire.com", true }, { "fraudmarc.com", true }, - { "fraurichter.net", true }, { "fraye.net", true }, { "frbracch.it", true }, { "frdl.ch", true }, + { "freddythechick.uk", true }, { "frederik-braun.com", true }, { "frederikschoell.de", false }, { "fredloya.com", true }, { "fredtec.ru", true }, { "free-your-pc.com", true }, - { "free.com.tw", true }, { "freeasyshop.com", true }, { "freeben666.fr", true }, { "freebetoffers.co.uk", true }, - { "freeboson.org", true }, { "freebus.org", true }, { "freecloud.at", true }, { "freedev.cz", true }, @@ -7346,7 +7233,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freelance.nl", true }, { "freelancehunt.com", true }, { "freelifer.jp", true }, - { "freelo.cz", true }, { "freemanning.de", true }, { "freemedforms.com", true }, { "freemyipod.org", true }, @@ -7378,7 +7264,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freshdesigns.de", true }, { "freshdns.nl", true }, { "freshempire.gov", true }, - { "freshlymind.com", true }, { "freshmaza.com", true }, { "fretscha.com", true }, { "fretworksec.com", true }, @@ -7392,12 +7277,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "friendlysiberia.com", true }, { "friends-of-naz.com", true }, { "friends24.cz", true }, - { "friendship-quotes.co.uk", true }, { "friet.org", true }, { "frigi.ch", true }, { "frigolit.net", true }, { "frillip.com", true }, - { "frimons.com", true }, { "frinkiac.com", true }, { "frippz.se", true }, { "fritteli.ch", true }, @@ -7434,6 +7317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frugro.be", true }, { "fruition.co.jp", true }, { "frumious.fyi", true }, + { "frusky.de", true }, { "fs-gamenet.de", true }, { "fsapubs.gov", true }, { "fsbnh.bank", true }, @@ -7453,6 +7337,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fteproxy.org", true }, { "ftpi.ml", true }, { "ftrsecure.com", true }, + { "fuchsy.com", true }, { "fuckav.ru", true }, { "fuckbilibili.com", true }, { "fuckcf.cf", true }, @@ -7470,7 +7355,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fuliwang.info", true }, { "fullbundle.com", true }, { "fullmatch.net", true }, - { "fullyint.com", true }, { "fumblers.ca", true }, { "fumiware.com", true }, { "funandnatural.shop", true }, @@ -7515,6 +7399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "futuresonline.com", true }, { "futurestarsusa.org", true }, { "futurope.com", true }, + { "fuvpn.com", true }, { "fuwafuwa.moe", true }, { "fuxwerk.de", true }, { "fuyu.moe", true }, @@ -7552,7 +7437,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaasuper6.com", true }, { "gabemack.com", true }, { "gabi.soy", true }, - { "gabi.uno", true }, { "gablaxian.com", true }, { "gabriele-kluge.de", true }, { "gadgethacks.com", true }, @@ -7573,7 +7457,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gakkainavi4.jp", true }, { "gaku-architect.com", true }, { "galactic-crew.org", true }, - { "galena.io", true }, { "galeries.photo", true }, { "galgoafegao.com.br", true }, { "galgoingles.com.br", true }, @@ -7598,7 +7481,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gameconservation.org.uk", true }, { "gamedevelopers.pl", true }, { "gamegix.com", true }, - { "gameguardian.net", true }, { "gameisbest.jp", true }, { "gameofbay.org", true }, { "gamepad.com.br", true }, @@ -7654,7 +7536,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gatilagata.com.br", true }, { "gauche.com", true }, { "gaussorgues.me", true }, - { "gauthamelango.com", true }, + { "gauthamelango.com", false }, { "gautvedt.no", true }, { "gavick.com", false }, { "gay-sissies.com", true }, @@ -7686,7 +7568,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gearev.net", true }, { "gearset.com", true }, { "geblitzt.de", true }, - { "gebn.co.uk", true }, { "geboortestoeltje.com", true }, { "geborgen-wachsen.de", true }, { "gebruikershandleiding.com", true }, @@ -7742,6 +7623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "generic.cx", true }, { "genesischangelog.com", true }, { "genesiseureka.com", true }, + { "genetargetsolutions.com.au", true }, { "genetidyne.com", true }, { "geneve.guide", true }, { "genie-seiner-generation.de", true }, @@ -7754,7 +7636,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genslerapps.com", true }, { "genslerwisp.com", true }, { "gensonline.eu", true }, - { "genuxtsg.com", true }, { "genxbeats.com", true }, { "genxnotes.com", true }, { "geoffdev.com", true }, @@ -7827,6 +7708,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getshifter.io", true }, { "getsilknow.com", true }, { "getspeaker.com", true }, + { "getspire.com", true }, { "getsport.mobi", true }, { "getsubs.net", true }, { "getts.ro", true }, @@ -7850,9 +7732,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ggx.us", true }, { "gh16.com.ar", true }, { "gha.st", true }, + { "ghcif.de", true }, { "gheorghe-sarcov.ga", true }, { "ghislainphu.fr", true }, - { "ghostblog.info", true }, { "ghostcir.com", true }, { "ghostwritershigh.com", true }, { "ghrelinblocker.info", true }, @@ -7886,7 +7768,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gillet-cros.fr", true }, { "gillmanandsoame.co.uk", true }, { "gilnet.be", true }, - { "gilroywestwood.org", true }, { "gina-architektur.design", true }, { "gincher.net", true }, { "ginja.co.th", true }, @@ -7925,7 +7806,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gj-bochum.de", true }, { "gjcampbell.co.uk", true }, { "gjengset.com", true }, - { "gjspunk.de", false }, { "glamguru.co.il", true }, { "glamguru.world", true }, { "glamour4you.de", true }, @@ -7981,7 +7861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gn00.com", true }, { "gnetion.com", true }, { "gnetwork.eu", true }, - { "gnom.me", true }, { "gnunet.org", true }, { "gnwp.eu", true }, { "gnylf.com", true }, @@ -7999,7 +7878,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "godsofhell.com", true }, { "godsofhell.de", true }, { "goededoelkerstkaarten.nl", true }, - { "goedeke.ml", true }, { "goedverzekerd.net", true }, { "goerres2014.de", true }, { "goetemp.de", true }, @@ -8054,6 +7932,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gorgiaxx.com", true }, { "gorillow.com", true }, { "gorky.media", true }, + { "gorn.ch", true }, { "gorod74.ru", false }, { "gorschenin.com", true }, { "gosccs.com", true }, @@ -8063,6 +7942,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gospelfollower.com", true }, { "gospelofmark.ch", true }, { "gospelvestcination.de", true }, + { "gostudy.net", true }, { "gosuland.org", true }, { "gotech.com.eg", false }, { "gothic.dating", true }, @@ -8129,7 +8009,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grandwailea.com", true }, { "grannyshouse.de", true }, { "granth.io", true }, - { "grantmorrison.net", true }, { "granular.ag", true }, { "grapeintentions.com", true }, { "graphcommons.com", true }, @@ -8141,7 +8020,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gratis-app.com", true }, { "gratis-lovecheck.de", true }, { "gravitascreative.net", true }, - { "gravitation.pro", false }, { "gravitechthai.com", true }, { "gravity-dev.de", true }, { "gravity-inc.net", true }, @@ -8185,7 +8063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grepmaste.rs", true }, { "grepular.com", true }, { "gresak.io", true }, - { "gretchelizartistry.com", true }, { "grettogeek.com", true }, { "grevesgarten.de", true }, { "grey.house", true }, @@ -8217,7 +8094,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groben-itsolutions.de", true }, { "grocock.me.uk", true }, { "groenaquasolutions.nl", true }, - { "groenewoud.run", true }, { "groepjam-usedcars.be", true }, { "grog.pw", true }, { "grokker.com", true }, @@ -8234,6 +8110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groth.xyz", true }, { "grouchysysadmin.com", true }, { "group4layers.net", true }, + { "groupe-cassous.com", true }, { "groupebaillargeon.com", true }, { "groupme.com", true }, { "groups.google.com", true }, @@ -8241,7 +8118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grow-shop.lt", true }, { "grow-shop.lv", true }, { "growy.ch", true }, - { "grozip.com", true }, { "grsecurity.net", true }, { "gruelang.org", true }, { "gruene-wattenscheid.de", true }, @@ -8258,6 +8134,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gsimagebank.co.uk", true }, { "gsmkungen.com", true }, { "gsmsecurity.net", true }, + { "gsoc.se", true }, { "gsrc.io", true }, { "gt-mp.net", true }, { "gt-network.de", true }, @@ -8296,7 +8173,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guiltypleasuresroleplaying.com", true }, { "guim.co.uk", true }, { "guinea-pig.co", true }, - { "guineafruitcorp.com", true }, { "guineapigmustach.es", true }, { "guitarmarketing.com", false }, { "gulch.in.ua", false }, @@ -8310,6 +8186,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guphi.net", false }, { "gurkan.in", true }, { "gurmel.ru", true }, + { "gurochan.ch", true }, { "guru-naradi.cz", true }, { "gurueffect.com", true }, { "gus.host", true }, @@ -8337,7 +8214,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gymkirchenfeld.ch", true }, { "gymnasium-farmsen.de", true }, { "gympap.de", true }, - { "gyoza.beer", true }, + { "gyoza.beer", false }, { "gypsycatdreams.com", true }, { "gypsyreel.com", true }, { "gyu-raku.jp", true }, @@ -8354,7 +8231,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h11.io", true }, { "h11.moe", true }, { "h2u.tv", true }, - { "h3artbl33d.nl", true }, { "h3x.jp", true }, { "h3z.jp", true }, { "h404bi.com", false }, @@ -8363,7 +8239,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "habbos.es", true }, { "habtium.com", true }, { "habtium.es", true }, - { "hac30.com", true }, { "hachre.de", true }, { "hack.cz", true }, { "hackademix.net", true }, @@ -8382,7 +8257,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackerone.com", true }, { "hackerone.net", true }, { "hackerpoints.com", true }, - { "hackerspace-ntnu.no", true }, { "hackerstxt.org", true }, { "hackgins.com", true }, { "hackingdh.com", true }, @@ -8397,7 +8271,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hadouk.in", true }, { "hadrons.org", true }, { "haefligermedia.ch", true }, - { "haehnlein.at", true }, { "haens.li", true }, { "hafniatimes.com", true }, { "haiboxu.com", true }, @@ -8413,7 +8286,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "halkyon.net", true }, { "hallelujahsoftware.com", true }, { "hallhuber.com", true }, - { "halligladen.de", true }, { "hallmarkestates.ca", true }, { "hallucinogen.com", true }, { "hallucinogens.org", true }, @@ -8441,9 +8313,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "handmadegobelin.com", true }, { "handmadetutorials.ro", true }, { "handsandall.com", true }, - { "handycommerce.co", true }, + { "handycommerce.co", false }, { "handymanlondonplease.co.uk", true }, { "handysex.live", true }, + { "hang333.pw", true }, { "hanglage.de", true }, { "hangouts.google.com", true }, { "hangtenseo.com", true }, @@ -8479,6 +8352,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hapvm.com", true }, { "haraj.com.sa", true }, { "harambe.site", true }, + { "harbourweb.net", false }, { "hardeman.nu", true }, { "hardenize.com", true }, { "hardertimes.com", true }, @@ -8488,6 +8362,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hardh.at", true }, { "hardrain980.com", true }, { "hardtfrieden.de", true }, + { "hardyboyplant.com", true }, { "harlentimberproducts.co.uk", true }, { "harmoney.co.nz", true }, { "harmoney.com", true }, @@ -8508,7 +8383,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hasdf.de", true }, { "haselsteiner.me", true }, { "hash-archive.org", true }, - { "hash.my", true }, { "hash.works", true }, { "hashcat.net", true }, { "hashi.dk", true }, @@ -8528,7 +8402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hatcherlawgroupnm.com", true }, { "hatethe.uk", true }, { "hatisenang.com", true }, - { "haucke.xyz", true }, { "hauntedfishtank.com", false }, { "hauntedhouserecords.co.uk", true }, { "haus-garten-test.de", true }, @@ -8565,10 +8438,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hd-outillage.com", true }, { "hda.me", true }, { "hdc.cz", true }, + { "hdcenter.cc", true }, { "hdeaves.uk", true }, { "hdf.world", true }, { "hdfgroup.org", true }, - { "hdhoang.space", true }, { "hdrsource.com", true }, { "hdrtranscon.com", true }, { "hds-lan.de", true }, @@ -8596,10 +8469,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hearty.ga", true }, { "hearty.ink", true }, { "hearty.me", true }, - { "hearty.space", true }, { "hearty.tw", true }, { "heartycraft.com", true }, - { "heartyme.net", true }, { "heavenlysmokenc.com", true }, { "heavensattic.co.uk", true }, { "heavensinferno.net", true }, @@ -8646,14 +8517,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heitland-it.de", true }, { "hejahanif.se", true }, { "hejsupport.se", true }, - { "hekeki.com", true }, { "helden-spielen.de", true }, { "heldenhalde.de", true }, { "hele.cz", true }, - { "helencrump.co.uk", true }, { "helenkellersimulator.org", true }, + { "helgakristoffer.com", true }, + { "helgakristoffer.wedding", true }, { "helichat.de", true }, { "helikon.ro", true }, + { "helingqi.com", false }, { "helioanodyne.eu", true }, { "heliosnet.com", true }, { "helix.am", true }, @@ -8678,14 +8550,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hemlockhillscabinrentals.com", true }, { "hendyisaac.com", true }, { "hengelsportdeal.com", true }, + { "henkverlinde.com", false }, { "hennadesigns.org", true }, { "hennecke-forstbetrieb.de", true }, { "hennymerkel.com", true }, { "henok.eu", true }, - { "henriknoerr.com", true }, { "henriksen.is", true }, { "henrock.net", true }, { "henry.gg", true }, + { "henryphan.com", false }, { "hentai.design", true }, { "hentaimaster.net", true }, { "hentschke-bau.de", true }, @@ -8696,7 +8569,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heptner24.de", true }, { "her25.com", true }, { "herbandpat.org", true }, - { "herbert.io", true }, { "herbertmouwen.nl", true }, { "herbweb.net", true }, { "herbweb.org", true }, @@ -8706,6 +8578,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "here.ml", true }, { "herebedragons.io", true }, { "herecsrymy.cz", true }, + { "hermes-net.de", true }, { "hermes-servizi.it", true }, { "herni-kupony.cz", true }, { "herocentral.de", true }, @@ -8735,7 +8608,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexony.com", true }, { "heycms.com", false }, { "heyfringe.com", true }, - { "heyguevara.com", true }, { "hg.python.org", true }, { "hgbet.com", true }, { "hgw168.com", true }, @@ -8804,7 +8676,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hitter-lauzon.com", true }, { "hitter.family", true }, { "hitterfamily.com", true }, - { "hiv.gov", true }, { "hiverlune.net", true }, { "hiwiki.tk", true }, { "hiyacar.co.uk", true }, @@ -8848,7 +8719,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hogl.dk", true }, { "hohm.in", true }, { "hohnet.com", true }, - { "hoiku-map.tokyo", true }, { "hoken-wakaru.jp", true }, { "hokieprivacy.org", true }, { "holboxwhalesharktours.com", true }, @@ -8887,6 +8757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeseller.co.uk", true }, { "homeseller.com", true }, { "homewatt.co.uk", true }, + { "homeyantra.com", true }, { "homeyou.com", true }, { "homezhi.com.tw", true }, { "hommeatoutfaire.be", true }, @@ -8934,7 +8805,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hosmussynergie.nl", false }, { "hospitalhomelottery.org", true }, { "hostadvice.com", true }, - { "hostanalyticsconsulting.com", true }, { "hosted-oswa.org", true }, { "hosted4u.de", true }, { "hostedbgp.net", true }, @@ -8942,7 +8812,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostfission.com", true }, { "hostgigz.com", true }, { "hostingactive.it", true }, - { "hostingfj.com", true }, { "hostinghelp.guru", true }, { "hostinginnederland.nl", true }, { "hostix.de", true }, @@ -8953,7 +8822,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostserv.org", true }, { "hosyaku.gr.jp", true }, { "hot-spa.ch", true }, - { "hotartup.com", true }, { "hotel-huberhof.at", true }, { "hotel-kronjuwel.de", true }, { "hotel-pension-sonnalp.eu", true }, @@ -9045,7 +8913,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "htsure.ma", true }, { "http2.eu", true }, { "http2.pro", true }, - { "httphacker.com", true }, { "https.jetzt", true }, { "httpsecured.net", true }, { "httpsecurityreport.com", true }, @@ -9125,7 +8992,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hybridworx.net", true }, { "hybridworx.org", true }, { "hydaelyn.com", true }, - { "hydra.zone", true }, { "hydrante.ch", true }, { "hydrocloud.net", true }, { "hydroturbine.info", true }, @@ -9135,7 +9001,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hymerscollege.co.uk", true }, { "hynek.me", true }, { "hypemgmt.com", true }, - { "hyper-matrix.org", true }, { "hyper-text.org", true }, { "hyperalgesia.com", true }, { "hyperion.io", true }, @@ -9187,19 +9052,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icanhasht.ml", true }, { "icarlos.net", true }, { "icbemp.gov", true }, - { "icebat.dyndns.org", true }, { "iceberg.academy", true }, { "icecars.net", true }, { "iceloch.com", true }, { "ich-find-den-g.net", true }, - { "ich-mach-druck.eu", true }, { "ich-tanke.de", true }, { "ichbinkeinreh.de", true }, { "ichronos.net", true }, { "icij.org", false }, { "iclinic.ua", true }, { "icmp2018.org", true }, - { "icodeconnect.com", true }, { "iconomi.net", true }, { "icpc.pp.ua", true }, { "icpc2016.in.th", true }, @@ -9225,7 +9087,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idcrane.com", true }, { "iddconnect.com", true }, { "iddconnect.org", true }, - { "ideadozz.hu", true }, { "idealmoto.com", true }, { "idealwhite.space", true }, { "ideaman924.com", true }, @@ -9254,7 +9115,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idtheft.gov", true }, { "idubaj.cz", true }, { "idvl.de", true }, - { "iec.pe", true }, { "ieeespmb.org", true }, { "ieji.de", true }, { "iemas.azurewebsites.net", true }, @@ -9377,6 +9237,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imgg.es", true }, { "imguoguo.com", true }, { "imguploaden.nl", true }, + { "imirhil.fr", true }, { "imitza.com", true }, { "imjad.cn", true }, { "imjiangtao.com", true }, @@ -9393,14 +9254,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "immobilier-nice.fr", true }, { "immobilier92.net", true }, { "immoralgamingco.com", true }, - { "immoralgods.com", true }, { "immortal.run", true }, - { "immunicity.cc", true }, - { "immunicity.date", true }, - { "immunicity.host", true }, - { "immunicity.online", true }, - { "immunicity.rocks", true }, - { "immunicity.win", true }, { "imokuri123.com", true }, { "imoner.ga", true }, { "imouyang.com", true }, @@ -9445,7 +9299,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indian-elephant.com", true }, { "indianaffairs.gov", true }, { "indiawise.co.uk", true }, - { "indiecert.net", false }, { "indiemods.com", true }, { "indien.guide", true }, { "indievelopment.nl", true }, @@ -9453,7 +9306,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inditip.com", true }, { "indochina.io", true }, { "indovinabank.com.vn", true }, - { "indredouglas.me", true }, { "indusap.com", true }, { "indusfastremit-ca.com", true }, { "indusfastremit-us.com", true }, @@ -9504,7 +9356,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infrapirtis.lt", true }, { "infura.co.th", true }, { "ingalls.run", true }, - { "ingeeibach.de", true }, { "ingesol.fr", true }, { "inglesnarede.com.br", true }, { "inhaltsangabe.de", true }, @@ -9550,9 +9401,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "insighti.sk", true }, { "insouciant.org", true }, { "insping.com", true }, - { "inspirationalquotesuk.co.uk", true }, { "inspired-lua.org", true }, - { "inspy.me", true }, { "inst.mobi", true }, { "instagram-atom.appspot.com", true }, { "instagrammernews.com", true }, @@ -9631,7 +9480,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intheater.de", true }, { "inthepicture.com", true }, { "inthouse.cloud", true }, - { "intimateperrierjouet.com", true }, { "intl-webs.com", true }, { "intmissioncenter.org", true }, { "intocities.de", false }, @@ -9649,6 +9497,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inuyasha-petition.tk", true }, { "invasion.com", true }, { "invenio.software", true }, + { "inventionsteps.com.au", true }, { "investingtrader.net", true }, { "investor.gov", true }, { "investorforms.com", true }, @@ -9672,7 +9521,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iojo.net", true }, { "iompost.com", true }, { "iomstamps.com", true }, - { "ionas-law.ro", false }, { "ionc.ca", true }, { "ionlabs.kr", true }, { "ioover.net", true }, @@ -9687,13 +9535,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipal.name", true }, { "ipal.pl", true }, { "ipawind.com", true }, - { "ipbill.org.uk", true }, { "ipcareers.net", true }, { "ipcfg.me", true }, { "ipconsulting.se", true }, { "ipfirebox.de", true }, { "ipfp.pl", true }, { "ipfs.ink", true }, + { "iphoneunlock.nu", true }, { "ipintel.io", true }, { "iplabs.de", true }, { "ipledgeonline.org", false }, @@ -9715,9 +9563,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipv6.gr", true }, { "ipv6.watch", true }, { "ipv6vpn.net", true }, + { "ipvsec.nl", true }, { "iqboxy.com", true }, { "iqsmn.org", true }, - { "ir-saitama.com", true }, { "iranianholiday.com", true }, { "irc-results.com", true }, { "ircmett.de", true }, @@ -9794,6 +9642,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isolta.se", true }, { "isondo.com", true }, { "isonet.fr", true }, + { "isopres.de", true }, { "isoroc-nidzica.pl", true }, { "isowosi.com", true }, { "ispo.com.tw", true }, @@ -9857,7 +9706,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itfh.eu", true }, { "itfix.cz", true }, { "itforge.nl", true }, - { "ithenrik.com", true }, { "itilo.de", true }, { "itinsight.hu", true }, { "itis4u.ch", true }, @@ -9992,9 +9840,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "james-bell.co.uk", true }, { "jamesaimonetti.com", true }, { "jamesbillingham.com", true }, - { "jamesbywater.co.uk", true }, - { "jamesbywater.com", true }, - { "jamesbywater.uk", true }, { "jamescostian.com", true }, { "jamesevans.is", true }, { "jamesgreenfield.com", true }, @@ -10043,7 +9888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "japanphilosophy.com", true }, { "jardiniersduminotaure.fr", true }, { "jaredbates.net", false }, - { "jaredeberle.org", true }, + { "jaredeberle.org", false }, { "jaredfernandez.com", true }, { "jaredfraser.com", true }, { "jarl.ninja", true }, @@ -10051,14 +9896,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jarrettgraham.com", true }, { "jarroba.com", true }, { "jartza.org", true }, + { "jasl.works", true }, { "jasonamorrow.com", true }, - { "jasoncosper.com", true }, { "jasonian-photo.com", true }, { "jasonwindholz.com", true }, { "jasperespejo.com", true }, { "jasperhammink.com", true }, { "jasperhuttenmedia.com", true }, - { "java-board.com", true }, { "javachip.win", true }, { "javalestari.com", true }, { "javamilk.com", true }, @@ -10067,7 +9911,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "javfree.me", true }, { "jaxageto.de", true }, { "jaycouture.com", true }, - { "jayf.de", true }, { "jayfreestone.com", true }, { "jaymecd.rocks", true }, { "jayxon.com", true }, @@ -10078,10 +9921,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jazzinutrecht.info", true }, { "jazzncheese.com", true }, { "jazzy.pro", true }, + { "jazzysumi.com", true }, { "jbbd.fr", true }, { "jbelien.be", true }, { "jbelien.photography", true }, - { "jbfp.dk", true }, { "jbradaric.me", true }, { "jcaicedo.com", true }, { "jcaicedo.tk", true }, @@ -10103,7 +9946,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jean-remy.ch", true }, { "jeannecalment.com", true }, { "jeannelucienne.fr", true }, - { "jedentageinegutetarte.de", true }, { "jedipedia.net", true }, { "jedwarddurrett.com", true }, { "jeepmafia.com", true }, @@ -10123,11 +9965,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jekhar.com", true }, { "jekkt.com", true }, { "jelewa.de", true }, - { "jellow.nl", true }, { "jelly.cz", true }, + { "jellybeanbooks.com.au", true }, { "jelmer.co.uk", true }, { "jelmer.uk", true }, { "jena.space", true }, + { "jenjoit.de", true }, { "jennedebleser.com", false }, { "jennifercherniack.com", true }, { "jennifersauer.nl", true }, @@ -10136,7 +9979,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jenolson.net", true }, { "jens.hk", true }, { "jensrex.dk", true }, - { "jeproteste.info", true }, { "jeremiahbenes.com", true }, { "jeremybentham.com", true }, { "jeremycantu.com", true }, @@ -10152,9 +9994,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jessekaufman.com", true }, { "jessevictors.com", true }, { "jessgranger.com", true }, - { "jessicah.org", true }, { "jesters-court.net", true }, { "jesuisadmin.fr", true }, + { "jetbbs.com", true }, { "jetkittens.co.uk", true }, { "jetlagphotography.com", true }, { "jetsieswerda.nl", true }, @@ -10163,7 +10005,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jetzt-elektromobil.de", true }, { "jeva.nl", true }, { "jeweet.net", true }, - { "jewellerydesignstore.com", true }, { "jf-projects.de", false }, { "jfr.im", true }, { "jfreitag.de", true }, @@ -10177,12 +10018,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jhermsmeier.de", true }, { "jhollandtranslations.com", true }, { "jhuang.me", true }, - { "jialinwu.com", true }, - { "jianjia.io", true }, + { "jialinwu.com", false }, + { "jianjia.io", false }, { "jichi.me", true }, { "jie.dance", true }, { "jigsawdevelopments.com", true }, - { "jikegu.com", true }, { "jimbraaten.com", true }, { "jimmehcai.com", true }, { "jimmynelson.com", true }, @@ -10199,19 +10039,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jirav.com", true }, { "jiripudil.cz", true }, { "jisaku-homepage.com", true }, - { "jitsi.org", false }, { "jiveiaktivno.bg", true }, - { "jiyue.com", true }, { "jiyusu.com", true }, - { "jiyuu-ni.com", true }, - { "jiyuu-ni.net", true }, { "jjf.org.au", true }, { "jjj.blog", true }, { "jjvanoorschot.nl", true }, { "jka.io", true }, { "jkchocolate.com", true }, { "jkirsche.com", true }, - { "jko.works", true }, { "jkrippen.com", true }, { "jlhmedia.com", true }, { "jlkhosting.com", true }, @@ -10219,7 +10054,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jm-bea.net", true }, { "jmb.lc", true }, { "jmcleaning.services", true }, - { "jmdekker.it", true }, { "jmedved.com", true }, { "jmk.hu", true }, { "jmpmotorsport.co.uk", true }, @@ -10238,7 +10072,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jobmob.co.il", true }, { "jobs.at", true }, { "jobseekeritalia.it", true }, - { "jobshq.com", true }, { "jodel.ninja", true }, { "jodlajodla.si", true }, { "joduska.me", true }, @@ -10281,7 +10114,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnsiu.com", true }, { "johnvanhese.nl", true }, { "johnverkerk.com", true }, - { "jointoweb.com", true }, { "jokescoff.com", true }, { "jokewignand.nl", true }, { "jollausers.de", true }, @@ -10308,7 +10140,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonirrings.com", true }, { "jonkermedia.nl", true }, { "jonlabelle.com", true }, - { "jonnichols.info", true }, { "jonnybarnes.uk", true }, { "jonnystoten.com", true }, { "jonoalderson.com", true }, @@ -10324,8 +10155,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jordans.co.uk", true }, { "jordanscorporatelaw.com", true }, { "jordanstrustcompany.com", true }, + { "joretapo.fr", true }, { "jorgemesa.me", true }, { "jornadasciberdefensa2016.es", true }, + { "jorrit.info", true }, { "joscares.com", true }, { "josecage.com", true }, { "joseetesser.nl", true }, @@ -10333,6 +10166,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "josefjanosec.com", true }, { "josephre.es", true }, { "josephrees.uk", true }, + { "josericaurte.com", true }, { "joshgrancell.com", true }, { "joshharkema.com", true }, { "joshharmon.me", true }, @@ -10345,7 +10179,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joshuarogers.net", true }, { "joto.de", true }, { "journeytomastery.net", true }, - { "jovani.com", true }, + { "jovani.com", false }, { "joviam.com", true }, { "jovic.hamburg", true }, { "joworld.net", true }, @@ -10375,7 +10209,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "js-online.net", true }, { "jschumacher.info", true }, { "jskier.com", false }, - { "jslay.net", true }, { "jslidong.top", true }, { "json-viewer.com", true }, { "jsteward.moe", true }, @@ -10413,10 +10246,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juls.cloud", true }, { "jultube.de", true }, { "jumba.com.au", true }, - { "jumbster.com", true }, - { "jump.bg", true }, + { "jump.bg", false }, { "jump.wtf", true }, - { "jumping-duck.com", true }, { "junaos.com", true }, { "junethack.net", true }, { "jungaa.fr", true }, @@ -10464,6 +10295,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k-scr.me", true }, { "k-tube.com", true }, { "k-wallet.com", true }, + { "k258059.net", true }, { "k2mts.org", true }, { "k9swx.com", true }, { "kaangenc.me", true }, @@ -10502,6 +10334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kalastus.com", true }, { "kaleidomarketing.com", true }, { "kalender.com", true }, + { "kalevlamps.co.uk", true }, { "kaliaa.fi", true }, { "kalian.cz", true }, { "kall.is", true }, @@ -10509,8 +10342,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kalmar.com", true }, { "kaloix.de", true }, { "kalterersee.ch", true }, - { "kamcvicit.sk", true }, { "kamikatse.net", true }, + { "kamitech.ch", true }, { "kamixa.se", true }, { "kana.me", true }, { "kanaanonline.org", true }, @@ -10541,6 +10374,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kaptamedia.com", true }, { "kapverde.guide", true }, { "karabas.com", true }, + { "karabijnhaken.nl", false }, { "karachi.dating", true }, { "karamna.com", true }, { "karamomo.net", true }, @@ -10552,7 +10386,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karenledger.ca", true }, { "karguine.in", true }, { "karhm.com", true }, - { "karhukamera.com", true }, { "karit.nz", true }, { "karjala-ski.ru", true }, { "karlbowden.com", true }, @@ -10569,7 +10402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karneid.info", true }, { "karsofsystems.com", true }, { "kartec.com", true }, - { "karting34.com", true }, { "kartonmodellbau.org", true }, { "karuneshjohri.com", true }, { "kasadara.com", true }, @@ -10595,13 +10427,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katja-nikolic-design.de", true }, { "katka.info", true }, { "katnunn.co.uk", true }, - { "katproxy.al", true }, { "katrinjanke.de", true }, { "kattelans.eu", true }, { "kattenfun.be", true }, { "kattenfun.nl", true }, { "katyl.info", true }, - { "katzen.me", true }, { "kau-boys.com", true }, { "kau-boys.de", true }, { "kaufberatung.community", true }, @@ -10612,6 +10442,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kaweus.de", true }, { "kayipmurekkep.com", true }, { "kayleen.net", true }, + { "kaylyn.ink", true }, { "kayon.cf", true }, { "kayscs.com", true }, { "kaysis.gov.tr", true }, @@ -10642,9 +10473,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keepa.com", true }, { "keepcoalintheground.org", true }, { "keeperapp.com", true }, - { "keeperklan.com", true }, + { "keeperklan.com", false }, { "keepersecurity.com", true }, { "keeweb.info", true }, + { "kefaloniatoday.com", true }, { "keganthorrez.com", true }, { "kehlenbach.net", true }, { "keifel.de", true }, @@ -10657,6 +10489,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keksi.io", true }, { "kekz.org", true }, { "kela.jp", true }, + { "kellyandantony.com", true }, { "kellygrenard.com", true }, { "kempkens.io", true }, { "kemptown.co.uk", true }, @@ -10675,6 +10508,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kennedy.ie", true }, { "kenners.org", true }, { "kennethaasan.no", true }, + { "kennethlim.me", true }, { "kenny-peck.com", true }, { "kenoschwalb.com", true }, { "kentacademiestrust.org.uk", true }, @@ -10687,11 +10521,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kerem.xyz", true }, { "kerforhome.com", true }, { "kerijacoby.com", true }, - { "kermadec.blog", true }, { "kermadec.com", true }, { "kernel-error.de", true }, - { "kernelpanics.nl", true }, - { "kerp.se", true }, + { "kerp.se", false }, { "kerrfrequencycombs.org", true }, { "kerstkaart.nl", true }, { "kerus.net", true }, @@ -10731,7 +10563,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kgnk.ru", true }, { "khaganat.net", true }, { "khanovaskola.cz", true }, - { "kheshtar.pl", true }, { "khetzal.info", true }, { "khipu.com", true }, { "khmath.com", true }, @@ -10764,7 +10595,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kiel-kind.de", true }, { "kielderweather.org.uk", true }, { "kienlen.org", true }, - { "kieranjones.uk", true }, { "kiesuwkerstkaart.nl", true }, { "kiffmarks.com", true }, { "kigmbh.com", true }, @@ -10780,6 +10610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kilometertje.nl", true }, { "kimmel.com", true }, { "kimmel.in", true }, + { "kimoota.net", false }, { "kimotodental.com", true }, { "kimsufi-jordi.tk", true }, { "kinderbasar-luhe.de", true }, @@ -10809,7 +10640,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinomoto.ovh", true }, { "kinsights.com", false }, { "kinsmenhomelottery.com", true }, - { "kintawifi.com", false }, { "kintoandar.com", true }, { "kintone.com", true }, { "kintore.tv", true }, @@ -10834,17 +10664,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirstin-peters.de", true }, { "kis-toitoidixi.de", true }, { "kisallatorvos.hu", true }, - { "kiss-register.org", true }, { "kissflow.com", true }, { "kisskiss.ch", true }, { "kisstube.tv", true }, - { "kisstudio.co", true }, - { "kisun.co.jp", true }, { "kita.id", true }, { "kitabgaul.com", true }, + { "kitbag.com.au", true }, { "kitchen-profi.com.ua", true }, { "kitchen-profi.kz", true }, - { "kitchen-profi.ru", true }, + { "kitchenpunx.com", false }, { "kitestar.co.uk", true }, { "kittmedia.com", true }, { "kittyhacker101.tk", true }, @@ -10873,6 +10701,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klas.or.id", true }, { "klasfauseweh.de", true }, { "klatschreime.de", true }, + { "klausbrinch.dk", true }, { "klausimas.lt", true }, { "klaver.it", true }, { "klaw.xyz", true }, @@ -10882,6 +10711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klebetape.de", true }, { "kledingrekken.nl", true }, { "kleidertauschpartys.de", true }, + { "kleinblogje.nl", false }, { "kleine-dingen.nl", true }, { "kleineanfragen.de", true }, { "kleinerarchitekturfuehrer.de", true }, @@ -10928,7 +10758,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knightsbridge.net", true }, { "knip.ch", true }, { "knot-store.com", true }, - { "knowdebt.org", true }, { "knowledgehook.com", true }, { "knowlevillagecc.co.uk", true }, { "knthost.com", true }, @@ -10959,7 +10788,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kokensupport.com", true }, { "koketteriet.se", true }, { "kokumoto.com", true }, - { "kola-entertainments.de", true }, { "kolba.design", true }, { "koldanews.com", true }, { "kolkataflowermall.com", true }, @@ -10978,7 +10806,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "komoju.com", true }, { "kompetenzkurs.de", true }, { "kon-sil.de", true }, - { "konata.us", true }, { "kondou-butsudan.com", true }, { "kongar.org", true }, { "koniecfica.sk", true }, @@ -10986,6 +10813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "konings.it", true }, { "konklone.com", true }, { "konkurs.ba", true }, + { "konsertoversikt.no", true }, { "kontakthuman.hu", true }, { "kontaxis.org", true }, { "konventseliten.se", true }, @@ -10997,12 +10825,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kopykatz.org", false }, { "korea.dating", true }, { "koretech.nl", true }, - { "kori.ml", true }, { "korinar.com", true }, { "koriyoukai.net", true }, { "kornersafe.com", true }, { "korobi.io", true }, - { "korobkovsky.ru", true }, { "korono.de", true }, { "korrelzout.nl", true }, { "kortgebyr.dk", true }, @@ -11013,7 +10839,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kotilinkki.fi", true }, { "kotitesti.fi", true }, { "kotomei.moe", true }, - { "kottur.is", true }, { "kovaldo.ru", true }, { "kovals.sk", true }, { "kovnsk.net", true }, @@ -11033,6 +10858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kradalby.no", true }, { "kraft.blog", true }, { "kraft.im", true }, + { "kraftfleisch.de", true }, { "kraga.sk", true }, { "kraigwalker.com", true }, { "kraiwan.com", true }, @@ -11044,6 +10870,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kramsj.uk", true }, { "krang.org.uk", true }, { "krasota.ru", false }, + { "krasovsky.me", true }, { "kravelindo-adventure.com", false }, { "kraynik.com", true }, { "krc.link", true }, @@ -11066,6 +10893,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kristikala.nl", true }, { "kristinbailey.com", true }, { "kristjanrang.eu", true }, + { "kristofferkoch.com", true }, { "krizek.cc", true }, { "krk-media.pl", false }, { "krmela.com", true }, @@ -11103,6 +10931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kucheryavenkovn.ru", true }, { "kucnibudzet.com", true }, { "kueche-co.de", true }, + { "kuechenplan.online", true }, { "kuehndel.org", true }, { "kuehnel-bs.de", true }, { "kuehnel.org", true }, @@ -11117,7 +10946,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kulde.net", true }, { "kulivps.com", true }, { "kultmobil.se", true }, - { "kum.com", true }, { "kumachan.biz", true }, { "kumalog.com", true }, { "kumasanda.jp", true }, @@ -11133,9 +10961,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kupschke.net", true }, { "kurashino-mall.com", true }, { "kuro346.moe", true }, + { "kurofuku.me", true }, { "kuroisalva.xyz", true }, { "kurona.ga", true }, - { "kurrietv.nl", true }, { "kurschies.de", true }, { "kurswahl-online.de", true }, { "kuschku.de", true }, @@ -11180,6 +11008,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "l18.io", true }, { "l4n-clan.de", true }, { "la-baldosa.fr", true }, + { "la-grande-jaugue.fr", true }, { "la-maison.ch", true }, { "la-retraite-info.com", true }, { "labande-annonce.fr", true }, @@ -11205,7 +11034,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lacliniquefinanciere.com", true }, { "lacyc3.eu", true }, { "ladbroke.net", true }, - { "laextra.mx", true }, { "lafeemam.fr", true }, { "lafillepolyvalente.ca", true }, { "lafillepolyvalente.com", true }, @@ -11230,7 +11058,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lamakat.de", true }, { "lamapoll.de", true }, { "lambauer.com", true }, - { "lambda-complex.org", true }, { "lamboo.be", true }, { "laminine.info", true }, { "lamomebijou.paris", true }, @@ -11259,7 +11086,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "langly.fr", true }, { "languageterminal.com", true }, { "langworth.com", true }, - { "laniakean.com", true }, { "lanna.io", true }, { "lansechensilu.com", true }, { "lansinoh.co.uk", true }, @@ -11268,8 +11094,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lanyang.tk", true }, { "lanzainc.xyz", true }, { "lanzamientovirtual.es", true }, - { "lanzarote-online.info", true }, { "laos.dating", true }, + { "laozhu.me", true }, { "lapetition.be", true }, { "lapidge.net", true }, { "laplanetebleue.com", true }, @@ -11294,6 +11120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laserplaza.de", true }, { "laserplaza.net", true }, { "lasertechsolutions.com", true }, + { "lask.in", true }, { "laskas.pl", true }, { "lasnaves.com", true }, { "lasrecetasdeguada.com", true }, @@ -11329,6 +11156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laughinggrapepublishing.com", true }, { "laukstein.com", true }, { "laurakashiwase.com", true }, + { "laurasplacefamilysupport.org.au", true }, { "laurel4th.org", true }, { "laurelblack.com", true }, { "laureltv.org", true }, @@ -11464,9 +11292,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lemarcheelagrandeguerra.it", true }, { "lemoine.at", true }, { "lemon.co", true }, - { "lemondrops.xyz", true }, { "lemuslimpost.com", true }, - { "lenagroben.de", true }, { "lence.net", true }, { "lenders.direct", true }, { "lengzzz.com", true }, @@ -11488,6 +11314,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leondenard.com", true }, { "leonklingele.de", true }, { "leonmahler.consulting", true }, + { "leopoldina.net", true }, { "lep.gov", true }, { "lepenetapeti.com", true }, { "leppis-it.de", true }, @@ -11515,12 +11342,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lespecialiste-pradelexcellence.com", true }, { "lesscloud.com", true }, { "lessets-graphiques.com", true }, - { "lessing.consulting", true }, { "lessis.moe", true }, { "lesyndicat.info", true }, { "let-go.cc", true }, { "letemps.ch", true }, { "leticiagomeztagle.com", true }, + { "letitfly.me", true }, { "lets-go-acoustic.de", true }, { "lets.ninja", true }, { "lets.nu", true }, @@ -11536,7 +11363,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leu.to", false }, { "leuthardtfamily.com", true }, { "levans.fr", true }, - { "level-10.net", true }, { "levelupwear.com", true }, { "levendwater.org", true }, { "levensbron.nl", true }, @@ -11550,7 +11376,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lewisllewellyn.me", true }, { "lexico.pt", true }, { "lexicography.online", true }, - { "lexpierce.social", true }, { "lexway.pk", true }, { "lez-cuties.com", true }, { "lezdomsm.com", true }, @@ -11608,7 +11433,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lifekiss.ru", true }, { "lifenexto.com", true }, { "lifeqa.net", true }, - { "lifequotes-uk.co.uk", true }, { "lifi.digital", true }, { "lifi.is", true }, { "liftie.info", true }, @@ -11619,6 +11443,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lightpics.net", true }, { "lights.co.uk", true }, { "lightspeed.com", false }, + { "lighttp.com", true }, { "lignoma.com", true }, { "lihaul.dnsalias.net", true }, { "lijero.co", true }, @@ -11674,7 +11499,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linux.army", true }, { "linux.cn", true }, { "linux.fi", true }, - { "linux.sb", true }, { "linux3.org", true }, { "linuxbabe.com", false }, { "linuxbierwanderung.com", true }, @@ -11723,8 +11547,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "littleswitch.co.jp", true }, { "littlewatcher.com", true }, { "litvideoserver.de", true }, - { "litz.ca", true }, - { "litzenberger.ca", true }, { "liuboznaiko.eu", true }, { "liud.im", true }, { "liudon.org", true }, @@ -11759,12 +11581,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ljason.cn", true }, { "ljs.io", true }, { "lknw.de", true }, - { "lkp111138.me", true }, + { "lkummer.cz", true }, { "llamacuba.com", true }, { "llamasweet.tech", true }, { "lloyd-day.me", true }, - { "lm-pumpen.de", true }, + { "lm-pumpen.de", false }, { "lmddgtfy.net", true }, + { "lmerza.com", true }, { "lmintlcx.com", true }, { "lmkts.com", true }, { "lmmtfy.io", true }, @@ -11831,23 +11654,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logopaediereinhard.de", true }, { "logopoeia.com", true }, { "loichot.ch", true }, - { "lojadoprazer.com.br", true }, { "lojamagicalx.com", true }, { "lojix.com", true }, { "lojj.pt", true }, { "lokaal.org", true }, + { "loli.bz", true }, { "loli.pet", true }, { "loli.world", true }, { "lolicon.eu", true }, { "lolicon.info", true }, { "lolkot.ru", true }, - { "lolmegafroi.de", true }, { "lolpatrol.de", true }, { "lolpatrol.wtf", true }, { "lona.io", true }, { "lonal.com", true }, { "lonasdigital.com", true }, - { "london-transfers.com", true }, { "london.dating", true }, { "londongynaecologist.co", true }, { "londonkeyholdingcompany.co.uk", true }, @@ -11865,10 +11686,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lookastic.fr", true }, { "lookastic.mx", true }, { "lookastic.ru", true }, - { "looktothestars.org", true }, { "lookyman.net", true }, { "loony.info", true }, - { "loophost.com.br", false }, { "loopower.com", true }, { "loopstart.org", true }, { "loothole.com", true }, @@ -11908,6 +11727,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loveismore.sk", true }, { "loveisourweapon.com", true }, { "lovelive-anime.tk", true }, + { "lovelive.us", true }, { "lovelivewiki.com", true }, { "lovelyfriends.org", true }, { "lovemomiji.com", true }, @@ -11960,7 +11780,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lucyparsonslabs.com", true }, { "lucysan.net", true }, { "ludikovsky.name", true }, - { "ludwig.click", true }, { "ludwig.im", true }, { "luehne.de", true }, { "luelistan.net", true }, @@ -11968,7 +11787,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lugbb.org", true }, { "luisv.me", true }, { "lukas-oppermann.de", true }, + { "lukas-schauer.de", true }, { "lukas.im", true }, + { "lukas2511.de", true }, { "lukasberan.com", true }, { "lukasberan.cz", true }, { "lukasoppermann.com", true }, @@ -11980,6 +11801,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lukasztkacz.com", true }, { "luke.ch", true }, { "lukeistschuld.de", true }, + { "lukeng.net", true }, { "lumi.pw", true }, { "lumiere.com", true }, { "lunafag.ru", true }, @@ -12014,6 +11836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luxusnivoucher.cz", true }, { "luxusnyvoucher.sk", true }, { "luxvacuos.net", true }, + { "luzat.com", true }, { "luzfaltex.com", true }, { "lv0.it", true }, { "lvmoo.com", true }, @@ -12022,6 +11845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lwl.moe", true }, { "lwl12.com", true }, { "lydia-und-simon.de", true }, + { "lydiagorstein.com", true }, { "lyfbits.com", true }, { "lylares.com", true }, { "lymia.moe", true }, @@ -12036,8 +11860,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lyricfm.ie", true }, { "lys.ch", true }, { "lyst.co.uk", true }, - { "lyuba.fr", true }, { "lyx.dk", true }, + { "lzahq.tech", true }, { "lzzr.me", true }, { "m-22.com", true }, { "m-edmondson.co.uk", true }, @@ -12058,10 +11882,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maartenderaedemaeker.be", true }, { "maartenterpstra.xyz", true }, { "maartenvandekamp.nl", true }, + { "mabulledu.net", true }, { "mac1.net", true }, { "macandtonic.com", true }, { "macaque.io", false }, { "macaws.org", true }, + { "macchaberrycream.com", false }, { "maceinturecuir.com", true }, { "maces-net.de", true }, { "mach-politik.ch", true }, @@ -12114,15 +11940,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magenbrot.net", true }, { "magenda.sk", true }, { "magi.systems", true }, - { "magia360.com", true }, { "magicball.co", true }, { "magicbroccoli.de", true }, { "magiclen.org", true }, { "magicspaceninjapirates.de", true }, { "magictable.com", true }, - { "magilio.com", true }, { "magnacumlaude.co", true }, { "magneticanvil.com", true }, + { "magneticattraction.com.au", true }, { "magnets.jp", true }, { "magnettracker.com", true }, { "magnoliasib.ru", false }, @@ -12151,7 +11976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mailmag.net", true }, { "mailon.ga", true }, { "mailpenny.com", true }, - { "main-street-seo.com", true }, { "mainechiro.com", true }, { "mainframeserver.space", true }, { "mainlined.org", true }, @@ -12178,6 +12002,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malaysia.search.yahoo.com", false }, { "malaysian.dating", true }, { "maldiverna.guide", true }, + { "malenyflorist.com.au", true }, { "malesbdsm.com", true }, { "malibubeachrecoverycenter.com", true }, { "malinator.net", false }, @@ -12190,7 +12015,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mall.pl", true }, { "mall.sk", true }, { "mallach.net", true }, - { "mallner.me", true }, { "malnex.de", true }, { "malta-firma.com", true }, { "malware.watch", true }, @@ -12206,7 +12030,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mamot.fr", true }, { "mamout.xyz", true }, { "man3s.jp", true }, - { "manaboutahor.se", false }, { "manage.cm", true }, { "manage4all.com", true }, { "manage4all.de", true }, @@ -12302,19 +12125,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marianatherapy.com", true }, { "mariannenan.nl", true }, { "mariaolesen.dk", true }, - { "marie.club", true }, { "mariehane.com", true }, { "mariemiramont.fr", true }, { "marienschule-sundern.de", true }, { "marikafranke.de", true }, { "marilsnijders.nl", true }, { "marilynstreats.com", true }, - { "marinazarza.es", true }, { "marine.gov", true }, { "marinela.com.mx", true }, { "marinelausa.com", true }, { "marines-shop.com", true }, - { "mario.party", true }, { "mariposah.ch", true }, { "mariushubatschek.de", true }, { "mariviolin.com", true }, @@ -12332,7 +12152,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "markitzeroday.com", true }, { "markoh.co.uk", true }, { "markom.rs", true }, - { "markorszulak.com", true }, { "markow.io", true }, { "markprof.ru", true }, { "markri.nl", false }, @@ -12366,7 +12185,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "martialc.be", true }, { "martiestrimsalon.nl", true }, { "martin-mattel.com", true }, - { "martin-smith.info", true }, { "martine.nu", true }, { "martinestyle.com", true }, { "martinkup.cz", true }, @@ -12386,6 +12204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mascosolutions.com", true }, { "maservant.net", true }, { "mashek.net", true }, + { "mashnew.com", true }, { "masiniunelte.store.ro", true }, { "maskinkultur.com", true }, { "maskt.pw", true }, @@ -12410,7 +12229,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "masto.io", true }, { "mastod.life", true }, { "mastodon.at", true }, - { "mastodon.blue", true }, + { "mastodon.blue", false }, { "mastodon.co.nz", true }, { "mastodon.direct", true }, { "mastodon.engineering", true }, @@ -12436,16 +12255,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mathiasbynens.be", true }, { "mathiasgarbe.de", true }, { "mathieuguimond.com", true }, - { "mathieui.net", true }, { "maths.network", true }, { "mathspace.co", true }, { "matillat.ovh", true }, { "matlss.com", true }, - { "matomeplus.co", true }, { "matrixmedia.ro", true }, { "matt.tf", true }, { "mattandyana.com", true }, - { "mattcarr.net", true }, + { "mattcarr.net", false }, { "mattcoles.io", true }, { "matteomarescotti.it", true }, { "mattferderer.com", true }, @@ -12465,7 +12282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mattli.us", true }, { "mattmccutchen.net", true }, { "mattonline.me", true }, - { "mattwb65.com", true }, { "mattwservices.co.uk", true }, { "matze.co", true }, { "matze.org", true }, @@ -12531,10 +12347,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mbweir.com", true }, { "mc-team.org", true }, { "mc-venture.net", false }, + { "mc81.com", true }, { "mcadmin.net", true }, { "mcatnnlo.org", true }, { "mcb-bank.com", true }, - { "mccarty.io", true }, { "mccordworks.com", true }, { "mccrackon.com", true }, { "mcdanieldevelopmentservices.com", true }, @@ -12556,7 +12372,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mckinley.school", true }, { "mckinley1.com", true }, { "mcl.gg", true }, - { "mclist.it", true }, { "mclyr.com", true }, { "mcmillansedationdentistry.com", true }, { "mcneill.io", true }, @@ -12601,6 +12416,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mebio.us", false }, { "mecanicadom.com", true }, { "mecanicoautomotriz.org", true }, + { "mecenat-cassous.com", true }, { "mechanixdirect.co.uk", false }, { "mechanus.io", true }, { "med-otzyv.ru", true }, @@ -12635,7 +12451,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medusa.wtf", true }, { "meduza.io", true }, { "medy-me.com", true }, - { "medzinenews.com", true }, { "meedoenhartvanwestbrabant.nl", true }, { "meeko.cc", true }, { "meerutcake.com", true }, @@ -12680,7 +12495,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "melcher.it", true }, { "melchizedek-forum.de", true }, { "meldcode-assistent.nl", true }, - { "melearning.university", true }, { "meledia.com", true }, { "melenchatsmelenchiens.fr", true }, { "melf.nl", true }, @@ -12697,7 +12511,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "melted.me", true }, { "meltzow.net", true }, { "melvinlow.com", true }, - { "memberpress.com", true }, { "members-only-shopping.com", true }, { "members.nearlyfreespeech.net", false }, { "memdoc.org", true }, @@ -12743,7 +12556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mescaline.com", true }, { "mescaline.org", true }, { "mesh.gov", true }, - { "meshlab.co", true }, + { "meshok.ru", false }, { "meshotes.com", true }, { "mesicka.com", true }, { "messenger.com", false }, @@ -12790,7 +12603,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mexior.nl", true }, { "meyeraviation.com", true }, { "meyercloud.de", true }, - { "mfedderke.com", true }, { "mflodin.se", true }, { "mfxbe.de", true }, { "mgdigital.fr", true }, @@ -12818,10 +12630,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaeleichorn.com", true }, { "michaelkuchta.me", true }, { "michaelleibundgut.com", true }, - { "michaelmorpurgo.com", true }, { "michaelpfrommer.de", true }, { "michaelrigart.be", true }, - { "michaelscrivo.com", true }, { "michaelsulzer.com", true }, { "michaelsulzer.eu", true }, { "michaeltroger.com", true }, @@ -12864,7 +12674,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mihnea.net", true }, { "mijnetickets.nl", true }, { "mijnkerstkaarten.be", true }, - { "mijnkredietpaspoort.nl", true }, { "mijnreisoverzicht.nl", true }, { "mijnsite.ovh", true }, { "mijnstembureau.nl", true }, @@ -12885,13 +12694,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikewillia.ms", true }, { "miki.it", true }, { "mikii.club", true }, - { "mikk.cz", true }, { "mikkelvej.dk", true }, + { "miklcct.com", true }, { "miknight.com", true }, { "mikori.sk", true }, { "mikro-inwestycje.co.uk", true }, { "mikropixel.de", true }, { "mikroskeem.eu", true }, + { "mikusinec.com", true }, { "mil-spec.ch", true }, { "mil0.com", true }, { "milahendri.com", true }, @@ -12967,7 +12777,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minigolf-reisinger.com", true }, { "minikidz.es", true }, { "minikneet.com", true }, - { "minimoo.se", true }, { "minimvc.com", true }, { "minipainting.net", true }, { "minis-hip.de", true }, @@ -13022,6 +12831,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mistreaded.com", true }, { "mistybox.com", true }, { "misupport.dk", true }, + { "mit-uns.org", true }, { "mita.me", true }, { "mitarbeiter-pc.de", true }, { "mitchellhandymanservices.co.uk", true }, @@ -13051,12 +12861,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mjec.net", true }, { "mjhsc.nl", true }, { "mjlaurindo.pt", true }, - { "mk-dizajn.com", true }, { "mk89.de", true }, { "mkaciuba.com", true }, { "mkakh.com", true }, - { "mkakh.xyz", true }, - { "mkcert.org", true }, + { "mkasu.org", true }, { "mkes.com", true }, { "mkfs.fr", true }, { "mkimage.com", true }, @@ -13067,6 +12875,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mktdigital.info", true }, { "mktemp.org", true }, { "mkuznets.com", true }, + { "mkw.st", true }, { "mlcambiental.com.br", true }, { "mlcnfriends.com", true }, { "mlemay.com", true }, @@ -13090,7 +12899,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mmucha.de", true }, { "mncloud.de", true }, { "mnd.sc", true }, - { "mnec.io", true }, { "mnedc.org", true }, { "mnium.de", true }, { "mnsure.org", true }, @@ -13099,7 +12907,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mo.nl", true }, { "moa.moe", true }, { "moar.so", true }, - { "mobaircon.com", true }, { "mobal.com", true }, { "mobeforlife.com", true }, { "mobidea.com", true }, @@ -13123,12 +12930,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobsender.com", true }, { "mochoko.com", true }, { "mockmyapp.com", true }, - { "mocsuite.club", true }, { "modafinil.com", true }, { "modafinil.wiki", true }, { "modafo.com", true }, { "modalogi.com", true }, - { "modded-minecraft-server-list.com", true }, { "mode-individuell.de", true }, { "mode-marine.com", true }, { "modecaso.com", true }, @@ -13142,18 +12947,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moderatoren.org", true }, { "moderatortv.de", true }, { "modernapprenticeships.org", true }, + { "modernibytovytextil.cz", true }, { "modifiedmind.com", true }, { "modistry.com", true }, { "modmountain.com", true }, + { "modx.by", true }, { "modx.io", true }, { "moe-max.jp", true }, { "moe.pe", true }, - { "moe4sale.in", true }, { "moechel.com", true }, { "moefactory.com", true }, { "moefi.xyz", true }, { "moegirl.org", true }, { "moehrke.cc", true }, + { "moellers.systems", true }, { "moeloli.pw", true }, { "moevenpick-cafe.com", true }, { "mofohome.dyndns.org", true }, @@ -13162,7 +12969,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moipourtoit.ch", true }, { "moipourtoit.com", true }, { "moipourtoit.org", true }, - { "moitur.com", true }, { "mojaknjiznica.com", false }, { "mojapraca.sk", true }, { "mojzis.com", true }, @@ -13187,7 +12993,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monalisa.wtf", true }, { "monautoneuve.fr", true }, { "mondedie.fr", true }, - { "moneychangersoftware.com", true }, + { "moneycrownmedia.com", true }, { "moneygo.se", true }, { "moneyhouse.de", true }, { "monique.io", true }, @@ -13240,7 +13046,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moparisthebest.org", true }, { "moparscape.net", true }, { "mople71.cz", true }, - { "mopsuite.club", true }, { "morbatex.com", true }, { "morbitzer.de", false }, { "morbotron.com", true }, @@ -13258,8 +13063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moriz.de", true }, { "moriz.net", true }, { "morotech.com.br", true }, - { "morpheusx.at", true }, - { "morpheusxaut.net", true }, { "morteruelo.net", true }, { "morz.org", true }, { "moscow.dating", true }, @@ -13272,7 +13075,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motd.ch", true }, { "mothereff.in", false }, { "motohell.com", true }, - { "motorbiketourhanoi.com", true }, { "motorcheck.ie", true }, { "motoryachtclub-radolfzell.de", true }, { "mottomortgage.com", true }, @@ -13304,7 +13106,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mp3gratuiti.com", true }, { "mpc-hc.org", true }, { "mpcompliance.com", true }, - { "mpe.org", true }, { "mpetroff.net", true }, { "mpg.ovh", true }, { "mpkossen.com", true }, @@ -13323,13 +13124,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrdayman.com", true }, { "mredsanders.net", true }, { "mremallin.ca", true }, - { "mrhack.cz", true }, { "mrhee.com", true }, { "mrinalpurohit.in", true }, { "mrizzio.com", true }, { "mrmoregame.de", true }, { "mrsbairds.com", true }, { "mrserge.lv", true }, + { "mrsk.me", true }, { "mrx.one", true }, { "ms-alternativ.de", true }, { "msa-aesch.ch", true }, @@ -13430,6 +13231,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "musicschoolonline.com", true }, { "musicstore.de", false }, { "musicwear.cz", true }, + { "musketonhaken.nl", false }, { "muslim.singles", true }, { "muslimbanter.co.za", true }, { "musmann.io", true }, @@ -13455,8 +13257,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mwavuli.co.ke", true }, { "mwba.org", true }, { "mwe.st", true }, - { "mwohlfarth.de", true }, - { "mx.org.ua", false }, + { "mx.org.ua", true }, { "mx.search.yahoo.com", false }, { "mxawei.cn", true }, { "mxihan.xyz", true }, @@ -13526,7 +13327,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myimds.com", true }, { "myimmitracker.com", true }, { "myip.tech", true }, - { "mykeepsake.xyz", false }, { "myki.co", true }, { "mykontool.de", true }, { "mylittlemoppet.com", true }, @@ -13540,7 +13340,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myms.eu", true }, { "mymsr.de", true }, { "mymx.lu", true }, - { "mynetblog.com", true }, { "mynetworkingbuddy.com", true }, { "mynigma.org", true }, { "mynook.info", true }, @@ -13594,7 +13393,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mytc.fr", true }, { "mythengay.ch", true }, { "mythicdelirium.com", true }, - { "mythslegendscollection.com", true }, { "mytraiteurs.com", true }, { "mytripcar.co.uk", true }, { "mytripcar.com", true }, @@ -13624,7 +13422,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "n2servers.com", true }, { "n3twork.net", true }, { "n6a.net", true }, - { "n8ch.net", true }, { "naam.me", true }, { "nabankco.com", true }, { "nabu-bad-nauheim.de", true }, @@ -13642,6 +13439,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nagb.org", true }, { "nagel-dentaltechnik.de", true }, { "nagelfam.com", true }, + { "naggie.net", true }, + { "nagios.by", true }, { "nah.re", true }, { "nailsalon-aztplus.com", true }, { "nakama.tv", true }, @@ -13689,7 +13488,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "narodniki.com", true }, { "narodsovety.ru", true }, { "naroska.name", true }, - { "narrativasdigitais.pt", true }, { "narthollis.net", true }, { "nartuk.com.ua", false }, { "nasarawanewsonline.com", true }, @@ -13713,7 +13511,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nathaliebaroncoaching.ch", true }, { "nathan.io", true }, { "nathankonopinski.com", true }, - { "nathanmfarrugia.com", true }, { "nathansmetana.com", true }, { "nationalcentereg.org", true }, { "nationalcrimecheck.com.au", true }, @@ -13785,13 +13582,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nedcf.org.uk", true }, { "nedim-accueil.fr", true }, { "nediyor.com", true }, - { "nedlinin.com", true }, { "nedraconsult.ru", true }, { "neecist.org", true }, { "neeerd.org", true }, { "neel.ch", true }, { "neemzy.org", true }, - { "neer.io", true }, { "neet-investor.biz", true }, { "nefertitis.cz", true }, { "neftebitum-kngk.ru", true }, @@ -13865,12 +13660,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netera.se", true }, { "netfabb.com", true }, { "netfs.pl", false }, - { "netfxharmonics.com", false }, + { "netfxharmonics.com", true }, { "netguide.co.nz", true }, { "nethackwiki.com", true }, { "nethruster.com", true }, { "nethunter.top", true }, - { "netica.fr", false }, { "netlocal.ru", true }, { "netmazk.net", false }, { "netnodes.net", true }, @@ -13897,7 +13691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netvizura.co.uk", true }, { "netwarc.eu", true }, { "netwarc.nl", true }, - { "netwerkmanager.nl", true }, + { "netwerkmanager.nl", false }, { "network-notes.com", true }, { "network23.nl", true }, { "networkalarmcorp.com", true }, @@ -13935,8 +13729,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "new.travel.pl", true }, { "newantiagingcreams.com", true }, { "newbietech.cn", true }, - { "newbietech.xyz", true }, - { "newcarrentalubon.com", true }, { "newcityinfo.ch", true }, { "newcityinfo.info", true }, { "newcitystudio.ch", true }, @@ -14089,6 +13881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nitropur.de", true }, { "nitrous-networks.com", true }, { "niu.moe", true }, + { "niva.synology.me", true }, { "nivi.ca", true }, { "nja.id.au", true }, { "njpjanssen.nl", true }, @@ -14100,11 +13893,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nlap.ca", true }, { "nlegall.fr", true }, { "nlm.gov", true }, - { "nmadda.com", true }, { "nmd.so", true }, { "nmnd.de", true }, { "nmsnj.com", true }, - { "nmueller.at", true }, { "nn.cz", true }, { "nnote.net", true }, { "nnqc.nl", true }, @@ -14147,6 +13938,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noname-ev.de", true }, { "noncombatant.org", true }, { "noob-box.net", true }, + { "noobunbox.net", true }, { "noodles.net.nz", true }, { "noodlesandwich.com", true }, { "noodplan.co.za", true }, @@ -14184,7 +13976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nos-oignons.net", true }, { "nosbenevolesontdutalent.com", true }, { "noscript.net", true }, - { "nosfermiers.com", true }, { "nospoint.cz", true }, { "nossasenhora.net", true }, { "nossasenhoradaconceicao.com.br", true }, @@ -14205,11 +13996,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "notbolaget.se", true }, { "notcompletelycorrect.com", true }, { "note7forever.com", true }, - { "notenoughtime.de", true }, { "notesforpebble.com", true }, { "noticia.do", true }, { "noticiasdehumor.com", true }, { "notificami.com", true }, + { "notify.moe", true }, { "notinglife.com", true }, { "notjustbitchy.com", true }, { "notjustvacs.com", true }, @@ -14298,6 +14089,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "numm.fr", true }, { "nunnenmacher.net", true }, { "nunomoura.com", true }, + { "nuos.org", true }, { "nup.pw", true }, { "nuquery.com", true }, { "nuriacamaras.com", true }, @@ -14313,6 +14105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nutricuerpo.com", true }, { "nutrienti.eu", false }, { "nutripedia.gr", true }, + { "nuttyveg.com", true }, { "nuvechtdal.nl", true }, { "nuvini.com", true }, { "nuxer.fr", true }, @@ -14325,7 +14118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nyan.it", true }, { "nyanpasu.tv", true }, { "nyazeeland.guide", true }, - { "nyffo.com", true }, { "nyiad.edu", true }, { "nyip.co.uk", true }, { "nyip.edu", true }, @@ -14390,6 +14182,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocsigroup.fr", true }, { "octanio.com", true }, { "octav.name", false }, + { "octocat.ninja", true }, { "octod.tk", true }, { "octofox.de", true }, { "octolopagon.games", true }, @@ -14444,8 +14237,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ohlmeier.net", true }, { "ohlmeier.org", true }, { "ohnemusik.com", true }, + { "ohsocool.org", true }, { "ohyooo.com", true }, - { "oiepoie.nl", false }, { "ojls.co", true }, { "ojp.gov", true }, { "okad-center.de", true }, @@ -14456,7 +14249,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "okburrito.com", true }, { "okchicas.com", true }, { "oke.com.tw", false }, - { "okhrana.agency", true }, { "oklahomamoversassociation.org", true }, { "oklahomatickets.com", true }, { "okmx.de", false }, @@ -14475,6 +14267,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olightstore.com", true }, { "olightstore.ro", true }, { "oliver-pietsch.de", false }, + { "oliveraiedelabastideblanche.fr", true }, { "oliverfaircliff.com", true }, { "olivernaraki.com", true }, { "olivierlemoal.fr", true }, @@ -14553,7 +14346,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinelegalmedia.com", true }, { "onlinelighting.com.au", true }, { "onlinemarketingtraining.co.uk", true }, - { "onlinepokerspelen.be", true }, { "onlineschadestaat.nl", true }, { "onlinestoreninjas.com", true }, { "onlinetravelmoney.co.uk", true }, @@ -14583,15 +14375,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oogami.name", true }, { "oogartsennet.nl", true }, { "ooonja.de", true }, - { "ooooush.co.uk", true }, - { "oopsorup.com", true }, { "ooyo.be", true }, { "oparl.org", true }, { "opatut.de", true }, { "opcenter.de", true }, { "open-bs.com", true }, { "open-bs.ru", true }, - { "open-desk.org", true }, { "open-freax.fr", true }, { "open-future.be", true }, { "open-infrastructure.net", true }, @@ -14714,9 +14503,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oscloud.com.ua", true }, { "oscreen.me", true }, { "oscreen.org", true }, + { "oscsdp.cz", true }, { "osereso.tn", true }, { "oses.mobi", true }, { "osha-kimi.com", true }, + { "oshanko.de", true }, { "oshayr.com", true }, { "oshell.me", true }, { "oshinagaki.jp", true }, @@ -14724,9 +14515,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oskuro.net", true }, { "oslinux.net", true }, { "osm.is", true }, - { "osmanlitorunu.com", true }, { "osmosis.org", true }, - { "ospree.me", true }, { "osquery.io", true }, { "ostan-collections.net", true }, { "ostendorf.com", true }, @@ -14744,7 +14533,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "otellio.it", true }, { "oticasvisao.net.br", true }, { "otmns.net", true }, - { "otorrino.pt", true }, { "otoy.com", true }, { "otoya.space", true }, { "otpsmart.com.ua", true }, @@ -14779,7 +14567,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "overthinkingit.com", true }, { "overture.london", true }, { "ovpn.to", true }, - { "ovuscloud.de", true }, { "owensmith.website", true }, { "own3d.ch", true }, { "ownc.at", true }, @@ -14818,7 +14605,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pacoda.de", true }, { "pactf-flag-4boxdpa21ogonzkcrs9p.com", true }, { "pactf.com", true }, - { "pactocore.org", true }, { "paddy.rocks", true }, { "padianda.com", true }, { "padovani.de", true }, @@ -14877,6 +14663,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "papayapythons.com", true }, { "paper-republic.org", true }, { "papercrunch.io", true }, + { "paperhaven.com.au", true }, { "papermasters.com", true }, { "paperturn.com", true }, { "paperwork.co.za", true }, @@ -14897,6 +14684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parasitologyclub.org", true }, { "paratlan.hu", true }, { "paratxt.org", true }, + { "parchcraftaustralia.com", true }, { "parckwart.de", true }, { "parcon.it", true }, { "parentinterview.com", true }, @@ -14908,7 +14696,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parisfranceparking.nl", true }, { "parisvox.info", true }, { "parkingpoint.co.uk", true }, - { "parkwithark.com", true }, { "parlamento.gub.uy", true }, { "parleu2016.nl", true }, { "parleur.net", false }, @@ -14926,7 +14713,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "partnersfcu.org", true }, { "partridge.tech", true }, { "partsestore.com", true }, - { "partyvan.eu", true }, + { "partyvan.io", true }, { "parvaneh.fr", true }, { "pasadenapooch.org", true }, { "pasarella.eu", true }, @@ -14951,10 +14738,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "passwords.google.com", true }, { "pasta-factory.co.il", true }, { "pastaenprosecco.nl", true }, + { "pastdream.xyz", true }, { "paste.fedoraproject.org", true }, { "pastebin.co.za", true }, { "pasternok.org", true }, { "pasteros.io", true }, + { "pastie.se", true }, { "pastoral-verbund.de", true }, { "pastorbelgagroenendael.com.br", true }, { "pastorcanadense.com.br", true }, @@ -14985,7 +14774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulbakaus.com", true }, { "paulbdelaat.nl", true }, { "paulbramhall.uk", true }, - { "paulbunyanmls.com", true }, + { "paulchen.at", true }, { "paulerhof.com", true }, { "paulewen.ca", true }, { "paulinewesterman.nl", true }, @@ -15037,7 +14826,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "payupay.ru", true }, { "payzang.com", true }, { "pback.se", true }, - { "pbbr.com", true }, { "pbcknd.ml", true }, { "pbraunschdash.com", true }, { "pbscreens.com", true }, @@ -15052,7 +14840,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pcgamingfreaks.at", true }, { "pciconcursos.com.br", true }, { "pclaeuft.de", true }, - { "pclob.gov", true }, { "pcloud.com", true }, { "pcmr.info", true }, { "pcnotdienst-oldenburg-rastede.de", true }, @@ -15107,7 +14894,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peirong.me", true }, { "pekoe.se", true }, { "pelanucto.cz", true }, - { "peliculasaudiolatinoonline.com", true }, { "peliseries24.com", true }, { "pelopogrund.com", true }, { "pelopoplot.com", true }, @@ -15133,14 +14919,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "penz.media", true }, { "people-mozilla.org", true }, { "peoplesbankal.com", true }, - { "pepchid.com", false }, + { "peperiot.com", true }, { "peplog.nl", true }, - { "pepsicoemployeepreferencesurvey.com", true }, { "pepwaterproofing.com", true }, { "per-pedes.at", true }, { "percolate.com", true }, { "percraft.com", true }, { "percy.io", true }, + { "perd.re", true }, { "perdel.cn", false }, { "perecraft.com", true }, { "pereuda.com", true }, @@ -15150,7 +14936,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "perfektesgewicht.com", true }, { "perfektesgewicht.de", true }, { "performancesantafe.org", true }, - { "performaterm.ro", true }, { "performetric.net", true }, { "perfumeaz.com", true }, { "perfumes.com.br", true }, @@ -15167,13 +14952,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "personalcommunicationsecurity.com", true }, { "perspectivum.com", true }, { "perspektivwechsel-coaching.de", true }, + { "persson.im", true }, + { "persson.me", true }, { "perzeidi.hr", true }, - { "pesmyclub.com", true }, { "pestici.de", true }, { "pet-hotel-mura.net", true }, { "pet-life.top", true }, { "petabits.de", true }, { "petangen.se", true }, + { "petcarvers.com", true }, { "peter.org.ua", true }, { "peterboers.info", true }, { "peterdavehello.org", true }, @@ -15243,7 +15030,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "philia-sa.com", true }, { "philipkohn.com", true }, { "philipmordue.co.uk", true }, - { "philipp-trulson.de", true }, + { "philipp-trulson.de", false }, { "philippa.cool", true }, { "philipperoose.be", true }, { "philippheenen.de", true }, @@ -15261,6 +15048,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phishingusertraining.com", true }, { "phocean.net", true }, { "phoenix.dj", true }, + { "phoenixlogan.com", true }, { "phone-service-center.de", true }, { "phood.be", true }, { "phormance.com", true }, @@ -15268,6 +15056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phosagro.com", true }, { "phosagro.ru", true }, { "photo.org.il", true }, + { "photoancestry.com", true }, { "photoartelle.com", true }, { "photographe-reims.com", true }, { "photographyforchange.com", true }, @@ -15297,7 +15086,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phurl.io", true }, { "physicalism.com", true }, { "physicalist.com", true }, - { "physicaltherapist.com", true }, { "physiovesenaz.ch", true }, { "pi-control.de", true }, { "pi-eng.fr", true }, @@ -15352,14 +15140,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "piliszek.net", true }, { "pimhaarsma.nl", true }, { "pimhaarsmamedia.nl", true }, - { "pimpmymac.ru", true }, { "pimpmyperf.fr", true }, { "pims.global", true }, { "pimspage.nl", true }, { "pin.net.au", true }, - { "pincha.com.tw", true }, + { "pincha.com.tw", false }, { "pincodeit.com", true }, { "pindanutjes.be", false }, + { "pinemountainnursery.com.au", true }, { "pinemountbaptistchurch.org", true }, { "pinesandneedles.com", true }, { "pinimg.com", true }, @@ -15373,7 +15161,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinkyf.com", true }, { "pinnaclelife.co.nz", true }, { "pinnaclelife.nz", true }, - { "pinoyonlinetv.com", false }, { "pinpayments.com", true }, { "pinpointengineer.co.uk", true }, { "pinscher.com.br", true }, @@ -15393,22 +15180,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pirateproxy.tv", true }, { "piratesforums.co", true }, { "pires.ovh", true }, - { "pirman.es", true }, { "pirxpilot.me", true }, { "pissblau.com", true }, { "pisupp.ly", true }, { "pitchpinecapital.com", true }, { "pitchup.com", true }, { "pitfire.io", false }, - { "pitonarms.com", true }, { "pitsstop.nu", true }, + { "pittaya.com", true }, { "piwko.co", true }, { "pixel.facebook.com", false }, { "pixel.google.com", true }, { "pixelbash.de", true }, { "pixelcubed.com", true }, { "pixelminers.net", true }, - { "pixelneat.com", true }, { "pixelpoint.io", true }, { "pixipics.com", false }, { "pixiv.moe", false }, @@ -15456,12 +15241,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "play.google.com", true }, { "playanka.com", true }, { "playdreamcraft.com.br", true }, - { "playerhunter.com", true }, { "playform.cloud", true }, { "playhappywheelsunblocked.com", true }, { "playkh.com", true }, { "playmfe.com", true }, - { "playmyplay.com", true }, { "playpirates.com", true }, { "playsnake.org", true }, { "playsoundevents.be", true }, @@ -15529,6 +15312,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "podshrink.de", true }, { "poe.digital", true }, { "poed.com.au", true }, + { "poed.net.au", true }, + { "poedgirl.com", true }, { "poinsot.beer", true }, { "poinsot.info", false }, { "pointaction.com", true }, @@ -15537,7 +15322,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pointsixtyfive.com", true }, { "poitiers-ttacc-86.eu.org", true }, { "pojer.me", true }, - { "pokeduel.me", true }, { "pokefarm.com", true }, { "pokeinthe.io", true }, { "pokemondb.net", true }, @@ -15554,7 +15338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polis.or.at", true }, { "polis.to", false }, { "polit.im", true }, - { "politic.org.ua", true }, { "politiewervingshop.nl", true }, { "politik-bei-uns.de", true }, { "pollet-ghys.be", true }, @@ -15576,6 +15359,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "poneytelecom.org", true }, { "ponolau.com", true }, { "ponteencima.com", true }, + { "pontokay.com.br", false }, { "ponychan.net", true }, { "ponyfoo.com", true }, { "ponythread.com", false }, @@ -15608,7 +15392,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portalcentric.net", true }, { "portalisapres.cl", true }, { "portalm.tk", true }, - { "portaluniversalista.org", true }, + { "portaluniversalista.org", false }, { "portalzine.de", true }, { "portercup.com", true }, { "portofacil.com", true }, @@ -15680,8 +15464,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ppro.com", true }, { "ppy.sh", true }, { "pr1sm.com", true }, - { "pr2studio.com", true }, - { "practicallabs.com", true }, { "practicepanther.com", true }, { "practodev.com", true }, { "prado.it", true }, @@ -15689,7 +15471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "praguepsychology.com", true }, { "praguepsychology.cz", true }, { "prakharprasad.com", true }, - { "pratinav.xyz", true }, { "praxis-research.info", true }, { "prayerrequest.com", true }, { "prazynka.pl", true }, @@ -15700,7 +15481,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "precisionaeroimaging.com", true }, { "predoiu.ro", true }, { "preexport.com", true }, - { "prefis.com", true }, { "prefix.eu", true }, { "pregunteleakaren.gov", true }, { "preisser-it.de", true }, @@ -15732,8 +15512,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prestige-car-location.ch", true }, { "pretachique.com.br", true }, { "pretix.eu", true }, - { "pretty.hu", true }, - { "prettygrouse.com", true }, { "prettytunesapp.com", true }, { "pretzelx.com", true }, { "prideindomination.com", true }, @@ -15778,7 +15556,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privatestatic.com", false }, { "privatfrei.de", true }, { "privea.fr", true }, - { "privytime.com", true }, { "prjktruby.com", true }, { "prnav.com", true }, { "pro-bike.ro", true }, @@ -15789,7 +15566,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "procens.us", true }, { "procensus.com", true }, { "proclib.org", true }, - { "procode.gq", true }, { "procrastinationland.com", true }, { "prodct.info", true }, { "prodigia.com", true }, @@ -15801,7 +15577,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "profection.biz", true }, { "professionalboundaries.com", true }, { "professors.ee", true }, - { "profhome-shop.com", true }, { "profidea.cz", true }, { "profile.tf", true }, { "profiles.google.com", true }, @@ -15809,6 +15584,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "profitopia.de", true }, { "profpay.com", true }, { "progarm.org", true }, + { "progg.no", true }, { "proggersession.de", true }, { "progolfjourney.com", true }, { "progreso.pl", true }, @@ -15882,7 +15658,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proxybay.one", true }, { "proxybay.tv", true }, { "proxydesk.eu", true }, - { "proxydesk.net", true }, { "proxyrox.com", true }, { "proxyweb.us", true }, { "proymaganadera.com", true }, @@ -15917,11 +15692,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pson.ninja", true }, { "psono.pw", true }, { "pste.pw", true }, - { "pstrozniak.com", true }, { "pstudio.me", true }, { "psw-group.de", true }, { "psw.net", true }, - { "psxtr.com", true }, { "psychedelia.com", true }, { "psychedelics.org", true }, { "psychiatrie-betreuung.ch", true }, @@ -15938,6 +15711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ptbx.co", true }, { "pterodactylus.cz", true }, { "ptgoldensun.com", true }, + { "ptm.ro", false }, { "ptonet.com", true }, { "ptrbrs.nl", true }, { "puac.de", true }, @@ -15963,7 +15737,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pulledporkheaven.com", true }, { "pulsar.guru", false }, { "pult.co", false }, - { "punchkickinteractive.com", false }, + { "punchkickinteractive.com", true }, { "puneflowermall.com", true }, { "punikonta.de", true }, { "punitsheth.com", true }, @@ -15996,10 +15770,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pwdsafe.com", true }, { "pwe.vision", true }, { "pwfrance.com", true }, - { "pwntr.com", true }, + { "pwnies.dk", true }, { "pwolk.com", true }, { "pxx.io", true }, - { "pycrypto.org", true }, { "pygarage.com", true }, { "pyopenssl.org", true }, { "pypa.io", true }, @@ -16011,7 +15784,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pysays.net", true }, { "pyspace.org", true }, { "pythia.nz", true }, - { "python-hyper.org", true }, { "python.org", false }, { "pythonic.guru", true }, { "pzme.me", true }, @@ -16043,6 +15815,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qgustavor.tk", true }, { "qianalysis.com", true }, { "qikan.net", true }, + { "qiliang.wang", true }, { "qingpei.me", true }, { "qionouu.cn", true }, { "qipp.com", true }, @@ -16054,11 +15827,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qkka.org", true }, { "qkmortgage.com", true }, { "qldconservation.org.au", true }, + { "qldformulaford.org", true }, { "qlrace.com", false }, { "qm-marzahnnordwest.de", true }, { "qochealth.com", true }, { "qotw.net", true }, - { "qqj.net", true }, { "qr-city.org", true }, { "qredo.com", true }, { "qrlfinancial.com", true }, @@ -16156,7 +15929,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radeticlaw.com", true }, { "radfieldhomecare.co.uk", true }, { "radfieldhomecarefranchising.co.uk", true }, - { "radio-utopie.de", true }, { "radio1.ie", true }, { "radioilusion.es", true }, { "radiom.fr", true }, @@ -16216,12 +15988,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ranegroup.hosting", true }, { "rangde.org", true }, { "ranking-deli.jp", true }, - { "ranktopay.com", true }, { "ranos.org", true }, { "rantanda.com", true }, { "ranzbak.nl", true }, { "rapdogg.com", true }, { "rapenroer.com", true }, + { "rapenroer.nl", true }, { "raphael.li", true }, { "raphaelcasazza.ch", true }, { "rapido.nu", true }, @@ -16247,6 +16019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ravindran.me", true }, { "ravis.org", true }, { "ravkr.duckdns.org", true }, + { "ravse.dk", true }, { "rawsec.net", true }, { "raxion.tk", true }, { "ray-home.de", true }, @@ -16262,7 +16035,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "razeencheng.com", true }, { "razzolini.com.br", true }, { "rbensch.com", true }, - { "rbose.org", true }, { "rbqcloud.com", true }, { "rbtvshitstorm.is", true }, { "rburchell.com", true }, @@ -16294,6 +16066,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reaganlibrary.gov", true }, { "reagir43.fr", true }, { "real-compare.com", true }, + { "real-it.nl", true }, { "realcapoeira.ru", true }, { "realgarant-shop.de", false }, { "realhorsegirls.net", true }, @@ -16313,10 +16086,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rebootmc.com", true }, { "reboxetine.com", true }, { "recapp.ch", true }, - { "receitas-de-bolos.pt", true }, - { "receitasdebacalhau.pt", true }, { "receptionsbook.com", true }, { "recepty.eu", true }, + { "rechenknaecht.de", true }, { "rechenwerk.net", true }, { "recht-freundlich.de", true }, { "rechtsanwaeltin-vollmer.de", true }, @@ -16404,11 +16176,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reha-honpo.jp", true }, { "rehabili-shigoto.com", true }, { "rehabthailand.com", true }, + { "rei.ki", true }, { "reichel-steinmetz.de", true }, { "reichelt-cloud.de", true }, { "reichl-online.net", true }, - { "reiki-coaching.nl", true }, - { "reikiqueen.uk", true }, + { "reiki-coaching.nl", false }, { "reilly.io", true }, { "reimers.de", true }, { "reinaertvandecruys.me", true }, @@ -16446,18 +16218,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remoteham.com", true }, { "remotestance.com", true }, { "remoteutilities.com", true }, - { "rencaijia.com", true }, { "renderloop.com", true }, { "rene-stolp.de", true }, { "renearends.nl", true }, - { "renem.net", false }, { "renemayrhofer.com", true }, { "renemoser.net", true }, { "renerehelse.no", false }, { "renewablefreedom.org", true }, { "rengarenkblog.com", true }, { "renkenlaw.com", true }, - { "renkhosting.com", true }, { "rennfire.org", true }, { "renrenche.com", false }, { "rens.nu", true }, @@ -16466,10 +16235,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rentbrowser.com", true }, { "rentex.com", true }, { "rentinsingapore.com.sg", true }, - { "renuo.ch", true }, { "reox.at", false }, { "repair.by", true }, { "repaper.org", true }, + { "repaxan.com", true }, { "replicagunsswords.com", false }, { "report-to.com", true }, { "report-to.io", true }, @@ -16540,6 +16309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reuter.de", true }, { "revamed.com", false }, { "revelaciones.tv", true }, + { "revensoftware.com", true }, { "review.info", true }, { "reviewjust.com", true }, { "revivalinhisword.com", true }, @@ -16591,6 +16361,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richardlugten.nl", true }, { "richardrblocker.net", true }, { "richardwarrender.com", true }, + { "richmtdriver.com", true }, { "richonrails.com", true }, { "richterphilipp.com", true }, { "ricki-z.com", true }, @@ -16609,6 +16380,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ridingboutique.de", true }, { "ridingoklahoma.com", true }, { "riesenmagnete.de", true }, + { "riesenweber.id.au", true }, { "riesheating.com", true }, { "rievo.net", true }, { "rift.pictures", true }, @@ -16621,7 +16393,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rightcapital.com", true }, { "rightstuff.link", true }, { "righttobuy.gov.uk", true }, - { "rigolitch.fr", true }, + { "riiconnect24.net", true }, { "rijk-catering.nl", false }, { "rijnmondeg.nl", true }, { "rijschoolgevonden.nl", false }, @@ -16649,7 +16421,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riverbanktearooms.co.uk", true }, { "rivermendhealthcenters.com", true }, { "riversideauto.net", true }, - { "riversideradio.nl", true }, { "riverweb.gr", true }, { "rivy.org", true }, { "riyono.com", true }, @@ -16672,7 +16443,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rnag.ie", true }, { "ro.search.yahoo.com", false }, { "roave.com", true }, - { "rob.uk.com", true }, { "robandjanine.com", true }, { "robert-flynn.de", true }, { "robertabittle.com", true }, @@ -16687,7 +16457,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robertreiser.photography", true }, { "robhorstmanshof.nl", true }, { "robi-net.it", true }, - { "robin.co.kr", true }, { "robin.info", true }, { "robinadr.com", true }, { "robinhoodbingo.com", true }, @@ -16709,7 +16478,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rockcanyonbank.com", true }, { "rocketnet.ml", true }, { "rocketr.net", true }, - { "rockeyscrivo.com", true }, { "rockfax.com", true }, { "rockpesado.com.br", true }, { "rocssti.net", true }, @@ -16728,6 +16496,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roelof.io", true }, { "roelsworld.eu", true }, { "roerstaafjes.nl", true }, + { "roesemann.email", true }, { "roessner-network-solutions.com", true }, { "roffe.nu", true }, { "roflcopter.fr", true }, @@ -16759,14 +16528,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romainmuller.xyz", true }, { "roman-pavlik.cz", true }, { "romanpavlodar.kz", true }, - { "romantic-quotes.co.uk", true }, { "romanticvillas.com.au", true }, { "romarin.es", true }, { "rome.dating", true }, - { "romeoferraris.com", true }, { "rommelwood.de", true }, { "rondommen.nl", true }, - { "rondoniatec.com.br", true }, { "rondreis-planner.nl", true }, { "ronomon.com", true }, { "roo.ie", true }, @@ -16806,6 +16572,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rospa100.com", true }, { "rosset.me", true }, { "rosset.net", true }, + { "rosslug.org.uk", true }, { "rot47.net", true }, { "roten.email", true }, { "rotex1840.de", true }, @@ -16841,6 +16608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rpasafrica.com", true }, { "rpgmaker.es", true }, { "rpherbig.com", true }, + { "rpy.xyz", true }, { "rq-labo.jp", true }, { "rr105.de", true }, { "rring.me", true }, @@ -16848,6 +16616,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rrom.me", true }, { "rrudnik.com", true }, { "rs-devdemo.host", true }, + { "rsampaio.info", true }, { "rsauget.fr", true }, { "rsblake.net", true }, { "rsgcard.com", true }, @@ -16877,7 +16646,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rubbermaidoutlet.com", true }, { "ruben.am", true }, { "rubendv.be", true }, - { "rubi-ka.net", false }, { "rublacklist.net", true }, { "rubyist.today", true }, { "rubyquincunx.com", true }, @@ -16916,10 +16684,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "runtl.com", true }, { "runvs.io", true }, { "runzen.de", false }, - { "ruobiyi.com", true }, { "rus-trip.ru", false }, { "rusempire.ru", true }, { "rushball.net", true }, + { "rushpoppershop.co.uk", true }, { "rusi-ns.ca", true }, { "rusl.net", true }, { "russellandbrowns.co.uk", true }, @@ -16938,8 +16706,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rvsa2bevestigingen.nl", true }, { "rvsa4bevestigingen.nl", true }, { "rvsbevestigingen.nl", true }, + { "rw-solutions.tech", true }, { "rwanderlust.com", false }, { "rws-vertriebsportal.de", true }, + { "rww.name", false }, { "rxbn.de", true }, { "rxbusiness.com", true }, { "rxt.social", true }, @@ -16953,6 +16723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rynekpierwotny.pl", true }, { "rythgs.co", true }, { "ryuu.es", true }, + { "rzegroup.com", true }, { "s-c.se", true }, { "s-cubed.net", true }, { "s-mainte.com", true }, @@ -16996,6 +16767,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safersurfing.eu", true }, { "safescan.com", true }, { "safetext.me", true }, + { "safetyrisk.net", true }, { "safing.me", true }, { "safire.ac.za", true }, { "sagedocumentmanager.com", true }, @@ -17059,13 +16831,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samel.de", true }, { "samenwerkingsportaal.nl", true }, { "samenwerkingsportaal.tk", true }, - { "samfunnet.no", false }, { "samgrayson.me", true }, { "samifar.in", true }, { "samirnassar.com", true }, { "samizdat.cz", true }, { "samkelleher.com", true }, { "saml-gateway.org", true }, + { "sammyjohnson.com", true }, { "samp.im", true }, { "samuelkeeley.com", true }, { "samuellaulhau.fr", true }, @@ -17148,7 +16920,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sat4all.com", true }, { "satai.dk", true }, { "satal.in", true }, - { "satanichia.moe", true }, { "satmd.de", false }, { "saturn.pl", true }, { "saudenoclique.com.br", true }, @@ -17203,7 +16974,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scandinavia.dating", true }, { "scanleasing.net", true }, { "scanpay.dk", true }, - { "scenester.tv", true }, { "scenicbyways.info", true }, { "scepticism.com", true }, { "schaafenstrasse.koeln", true }, @@ -17253,9 +17023,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "school.in.th", true }, { "schoolotzyv.ru", true }, { "schoolze.com", true }, - { "schopenhauer-institut.de", true }, { "schorel.ovh", true }, { "schorelweb.nl", true }, + { "schrauger.com", true }, + { "schrauger.info", true }, + { "schrauger.net", true }, + { "schrauger.org", true }, + { "schrauger.run", true }, { "schreibers.ca", true }, { "schreibnacht.de", true }, { "schreinerei-jahreis.de", true }, @@ -17302,7 +17076,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scintillating.stream", true }, { "scionasset.com", true }, { "scitopia.me", true }, - { "sclgroup.cc", true }, { "scoolcode.com", true }, { "scooterservis.com", true }, { "scootfleet.com", true }, @@ -17319,7 +17092,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scoutdb.ch", true }, { "scoutnet.de", true }, { "scp-trens.notaires.fr", true }, - { "scramble.io", true }, { "scrap.tf", true }, { "scrayos.net", true }, { "scredible.com", true }, @@ -17374,14 +17146,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sec-mails.de", true }, { "sec.ec", true }, { "sec.gd", true }, - { "secanje.nl", true }, { "secboom.com", true }, { "seccomp.ru", true }, { "secctexasgiving.org", false }, { "sech.me", true }, { "secitem.at", true }, { "secitem.de", true }, - { "secnet.ga", true }, { "secnews.gr", true }, { "secomo.org", true }, { "secondpay.nl", true }, @@ -17416,6 +17186,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securejabber.me", true }, { "secureobscure.com", true }, { "secureonline.co", true }, + { "securesuisse.ch", true }, { "securethe.news", true }, { "securetheorem.com", true }, { "securetronic.ch", true }, @@ -17482,15 +17253,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "selcusters.nl", true }, { "selectary.com", true }, { "selected-properties.com", true }, - { "selectel.ru", true }, { "selectorders.com", true }, { "selegiline.com", true }, { "selent.me", true }, { "self-evident.org", true }, { "self-signed.com", true }, - { "selfdefenserx.com", true }, { "selfdestruct.net", true }, - { "selfhosters.com", true }, { "selfici.com", true }, { "selfici.cz", true }, { "selfishness.com", true }, @@ -17526,7 +17294,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "senorcontento.com", true }, { "sensebridge.com", true }, { "sensebridge.net", true }, - { "senseofnumber.co.uk", true }, { "sensepixel.com", true }, { "senshudo.tv", true }, { "sensualism.com", true }, @@ -17536,7 +17303,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seo-nerd.de", true }, { "seoagentur2go.de", true }, { "seoarchive.org", true }, - { "seobot.com.au", true }, { "seogeek.nl", true }, { "seohochschule.de", true }, { "seoinc.com", true }, @@ -17548,8 +17314,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seosof.com", true }, { "seoul.dating", true }, { "seouniversity.org", true }, - { "sep23.ru", true }, - { "sepalandseed.com", true }, { "sephr.com", true }, { "seppelec.com", true }, { "septakkordeon.de", true }, @@ -17558,6 +17322,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sequencing.com", true }, { "sequiturs.com", true }, { "serafin.tech", true }, + { "serbanpaun.ro", true }, { "serenaden.at", true }, { "serf.io", true }, { "sergeyreznikov.com", true }, @@ -17581,7 +17346,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serverangels.co.uk", true }, { "serverco.com", true }, { "serverfrog.de", true }, - { "serverlauget.no", true }, { "serveroffline.net", false }, { "serverpedia.de", true }, { "serverstuff.info", true }, @@ -17599,7 +17363,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sessionslogning.dk", true }, { "sesslerimmo.ch", true }, { "setfix.de", true }, - { "sethcaplan.com", true }, { "seti-germany.de", true }, { "settberg.de", true }, { "setterirlandes.com.br", true }, @@ -17608,6 +17371,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sevenhillsapartments.com.au", true }, { "sevenmatches.com", true }, { "severntrentinsuranceportal.com", true }, + { "sevsey.ru", true }, { "sevsopr.ru", true }, { "sex-education.com", true }, { "sexaki.com", true }, @@ -17633,13 +17397,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shadesofgrayadr.com", true }, { "shadesofgraylaw.com", true }, { "shadex.net", true }, - { "shadiku.com", true }, { "shadow-socks.net", true }, { "shadow-socks.org", true }, { "shadow-socks.pro", true }, { "shadowguardian507-irl.tk", true }, { "shadowguardian507.tk", true }, { "shadowkitsune.net", true }, + { "shadowlurker.com.au", true }, { "shadowplus.net", true }, { "shadowrocket.net", true }, { "shadowroket.com", true }, @@ -17668,6 +17432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shanae.nl", true }, { "shanetully.com", true }, { "shanewadleigh.com", true }, + { "shang-yu.cn", true }, { "shannoneichorn.com", true }, { "shansing.cn", true }, { "shansing.com", true }, @@ -17697,7 +17462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shav.it", true }, { "shavingks.com", true }, { "shawcentral.ca", false }, - { "shawnh.net", true }, { "shazbots.org", true }, { "shazzlemd.com", true }, { "shazzlepro.com", true }, @@ -17743,7 +17507,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shipping24h.com", true }, { "shirakaba-cc.com", true }, { "shiroki-k.net", true }, - { "shirt2go.shop", true }, { "shirtsofholland.com", true }, { "shishamania.de", true }, { "shishkin.link", true }, @@ -17791,6 +17554,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shrub.ca", true }, { "shtorku.com", true }, { "shu-fu.net", true }, + { "shu-kin.net", true }, { "shulan.moe", true }, { "shurita.org", true }, { "shuro.de", true }, @@ -17798,6 +17562,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shymeck.pw", true }, { "si-benelux.nl", true }, { "siamojo.com", true }, + { "siamsnus.com", true }, { "sianimacion.com", true }, { "sibrenvasse.nl", true }, { "sicken.eu", true }, @@ -17810,11 +17575,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sideshowbarker.net", true }, { "sidium.de", true }, { "sidnicio.us", true }, + { "siebeve.be", true }, { "siegemund-frankfurt.de", true }, { "sieh.es", true }, { "siewert-kau.de", true }, { "sifreuret.com", true }, { "sift-tool.org", true }, + { "sig6.org", true }, { "sigabrt.org", true }, { "siggerudklatreklubb.no", true }, { "sightcure.jp", true }, @@ -17836,11 +17603,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "siirtutkusu.com", true }, { "sijmenschoon.nl", true }, { "sikatehtaat.fi", true }, - { "sikayetvar.com", true }, { "sikevux.se", true }, { "siku-shop.ch", true }, { "silashes.com", true }, { "silent.live", true }, + { "silentexplosion.de", true }, { "silentkernel.fr", true }, { "silentundo.org", true }, { "siliconchip.me", true }, @@ -17901,7 +17668,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simlau.net", true }, { "simnovo.net", true }, { "simon-hofmann.org", true }, - { "simon-pokorny.com", true }, + { "simon.lc", true }, { "simoncommunity.org.uk", true }, { "simoncook.org", true }, { "simonhirscher.de", true }, @@ -17910,7 +17677,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simonlyabonnement.nl", true }, { "simonreich.de", true }, { "simonschmitt.ch", true }, - { "simonsmh.cc", false }, + { "simonsmh.cc", true }, { "simonsreich.de", true }, { "simonwessel.net", true }, { "simonwoodside.com", true }, @@ -17991,7 +17758,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sizzle.co.uk", true }, { "sjoorm.com", true }, { "sjsc.fr", true }, - { "sk-net.cz", true }, { "skalender.ch", false }, { "skandiabanken.no", true }, { "skanvordoff.ru", true }, @@ -18007,7 +17773,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skeeley.com", true }, { "skepticalsports.com", true }, { "sketchmyroom.com", true }, - { "sketchywebsite.net", true }, { "skhoop.cz", true }, { "skia.org", true }, { "skifairview.com", true }, @@ -18015,9 +17780,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skiinstructor.services", true }, { "skilldetector.com", true }, { "skilletfood.com", true }, - { "skillproxy.com", true }, - { "skillproxy.net", true }, - { "skillproxy.org", true }, { "skills2services.com", true }, { "skillseo.com", true }, { "skimming.net", true }, @@ -18048,6 +17810,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sktan.com", true }, { "sktsolution.com", true }, { "sky-aroma.com", true }, + { "skyasker.cn", true }, { "skyasker.com", true }, { "skydragoness.com", true }, { "skydrive.live.com", false }, @@ -18070,7 +17833,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slamdjapan.com", true }, { "slamix.nl", true }, { "slangbellor.com", true }, - { "slanterns.net", true }, { "slapen17.nl", true }, { "slaps.be", true }, { "slash64.co.uk", true }, @@ -18102,12 +17864,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slotcar.com", false }, { "sloths.org", true }, { "slovenskycestovatel.sk", true }, - { "slovoice.org", true }, { "slow.zone", true }, { "slowb.ro", true }, - { "slowfood.es", true }, { "slowgames.xyz", true }, { "slse.ca", true }, + { "sluitkampzeist.nl", false }, { "slvh.fr", true }, { "slwilde.ca", true }, { "slxh.eu", true }, @@ -18127,9 +17888,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smart-wohnen.net", true }, { "smart.gov", true }, { "smartairkey.com", true }, - { "smartbuyelectric.com", true }, { "smartcheck.gov", true }, - { "smartcleaningcenter.nl", false }, + { "smartcleaningcenter.nl", true }, { "smartest-trading.com", true }, { "smartfon4you.ru", true }, { "smartftp.com", true }, @@ -18162,7 +17922,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smith.is", true }, { "smithandcanova.co.uk", true }, { "smittix.co.uk", true }, - { "smksultanismail2.com", true }, { "smkw.com", false }, { "sml.lc", true }, { "smm.im", true }, @@ -18181,7 +17940,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smskeywords.co.uk", true }, { "smurfrp.com", false }, { "smvfd.info", true }, - { "smzsq.com", true }, { "snafu.cz", true }, { "snapappointments.com", true }, { "snapfinance.com", true }, @@ -18229,13 +17987,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soccersavings.com", true }, { "sochi-sochno.ru", true }, { "social-events.net", false }, - { "social-journey.com", true }, { "social-media-strategies.it", true }, { "socialcs.xyz", true }, { "socialdevelop.biz", false }, { "socialgrowing.cl", true }, { "socialhams.net", true }, - { "socialhub.com", true }, { "socialnitro.com", true }, { "socialnous.co", true }, { "socialrank.com", true }, @@ -18249,7 +18005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sociobiology.com", true }, { "sociopathy.org", true }, { "socketize.com", true }, - { "sockeye.io", true }, + { "sockeye.io", false }, { "sockscap64.com", true }, { "sodi.nl", true }, { "sodiao.cc", true }, @@ -18287,14 +18043,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solfegiator.ch", true }, { "solidshield.com", true }, { "solidtuesday.com", true }, - { "solidus.systems", true }, { "solidwebnetworks.co.uk", true }, { "solihullcarnival.co.uk", true }, { "solihulllionsclub.org.uk", true }, { "solinter.com.br", true }, { "solipym.net", true }, { "solit.systems", true }, - { "soljem.com", true }, { "solmek.co.uk", true }, { "solmek.com", true }, { "solomisael.com", true }, @@ -18308,7 +18062,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solvemethod.com", true }, { "solvops.com", true }, { "solymar.co", true }, - { "somali-derp.com", true }, { "somaliagenda.com", true }, { "somanao.com", true }, { "somebodycares.org", true }, @@ -18318,7 +18071,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "somweyr.de", true }, { "sona-gaming.com", true }, { "sonafe.info", true }, - { "sonarqube.com", true }, + { "sonarqube.com", false }, { "sondergaard.de", true }, { "sonerezh.bzh", true }, { "songsthatsavedyourlife.com", true }, @@ -18338,6 +18091,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sorensen-online.com", true }, { "sorenstudios.com", true }, { "sorex.photo", true }, + { "sorincocorada.ro", true }, { "sorn.service.gov.uk", true }, { "sortaweird.net", false }, { "soruly.com", true }, @@ -18372,6 +18126,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soundtalks.com", true }, { "sour.is", true }, { "souravsaha.com", true }, + { "sourcebox.be", true }, { "sourcecode.love", true }, { "sourcely.net", true }, { "sourceway.de", true }, @@ -18430,8 +18185,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spedplus.com.br", false }, { "speechndraw.com", true }, { "speeddate.it", false }, - { "speedmann.de", false }, - { "speeds.vip", true }, { "speedtest-russia.com", true }, { "speich.net", true }, { "spellcheck24.net", true }, @@ -18441,6 +18194,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sperrstun.de", true }, { "spesys-services.fr", true }, { "sphereblur.com", true }, + { "spherenix.org", true }, { "sphinx.network", true }, { "spibe.is", false }, { "spicydog.org", true }, @@ -18468,7 +18222,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "split.is", true }, { "splitdna.com", true }, { "splitreflection.com", true }, - { "splunk.net", true }, { "spoketwist.com", true }, { "spokonline.com", true }, { "spom.net", true }, @@ -18523,7 +18276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sqshq.de", true }, { "squaddraft.com", true }, { "square-gaming.org", true }, - { "square-src.de", true }, + { "square-src.de", false }, { "square.com", false }, { "squarelab.it", true }, { "squareonebgc.com.ph", true }, @@ -18547,7 +18300,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ss-free.net", true }, { "ss-x.ru", true }, { "ss.lt", true }, - { "ss.lv", true }, { "ss.ua", true }, { "ss64.com", true }, { "ss64.org", true }, @@ -18577,8 +18329,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ssls.cz", true }, { "sslsurvey.de", true }, { "sslzilla.de", true }, - { "ssn1.ru", true }, - { "ssrvpn.tech", true }, { "sss3s.com", true }, { "sstewartgallus.com", true }, { "st-kilian-markt-erlbach.de", true }, @@ -18587,7 +18337,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staatsschutz.at", true }, { "staatsschutzgesetz.at", true }, { "stablelib.com", true }, - { "stackfiles.io", true }, { "stackptr.com", true }, { "stacktile.io", true }, { "stadionmanager.com", true }, @@ -18612,7 +18361,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stamboomvanderwal.nl", true }, { "stamkassa.nl", true }, { "stammtisch.domains", true }, - { "stamonicatourandtravel.com", true }, { "stamparmakarije.me", true }, { "stampederadon.com", true }, { "stanandjerre.org", true }, @@ -18677,7 +18425,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steamdb.info", true }, { "steckregal-super.de", true }, { "steef389.eu", true }, - { "steelbea.ms", true }, { "steelephys.com.au", true }, { "steem.io", true }, { "steemit.com", true }, @@ -18708,6 +18455,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stephenhaunts.com", true }, { "stephenhorler.com.au", true }, { "stephenjvoiceovers.com", true }, + { "stephenschrauger.com", true }, + { "stephenschrauger.info", true }, + { "stephenschrauger.net", true }, + { "stephenschrauger.org", true }, { "stephenskory.com", true }, { "stereo.lu", true }, { "stereochro.me", false }, @@ -18736,7 +18487,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stichtingsticky.nl", true }, { "stick2bike.de", true }, { "stickies.io", true }, - { "sticklerjs.org", true }, { "stickswag.cf", true }, { "stift-kremsmuenster.at", true }, { "stigharder.com", true }, @@ -18775,7 +18525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "storbritannien.guide", true }, { "storedsafe.com", true }, { "storgom.ua", false }, - { "storiesofhealth.org", true }, { "stormwatcher.org", true }, { "stormyyd.com", true }, { "storvann.net", true }, @@ -18829,6 +18578,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuartbell.co.uk", true }, { "stuco.co", true }, { "studenckiemetody.pl", true }, + { "student.andover.edu", true }, { "studentite.bg", false }, { "studentloans.gov", true }, { "studentrdh.com", true }, @@ -18836,7 +18586,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studenttenant.com", true }, { "studer.su", true }, { "studienportal.eu", true }, - { "studio-panic.com", true }, { "studiodentisticosanmarco.it", true }, { "studiodewit.nl", true }, { "studiograou.com", true }, @@ -18853,12 +18602,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuermer.me", true }, { "stuetzredli.ch", true }, { "stuff-fibre.co.nz", true }, + { "stuka-art.de", true }, { "stulda.cz", true }, { "stumf.si", true }, { "stuntmen.xyz", true }, - { "stupendous.net", true }, { "sturbi.de", true }, - { "sturbock.me", true }, { "stutelage.com", true }, { "stuur.nl", false }, { "stuvel.eu", true }, @@ -18903,16 +18651,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suiranfes.com", true }, { "suitocracy.com", true }, { "suki.moe", true }, + { "suksit.com", true }, { "sulek.eu", true }, { "sumguy.com", true }, { "summa.eu", false }, - { "summitbankofkc.com", true }, { "sumthing.com", true }, { "sunbritetv.com", true }, { "sundayfundayjapan.com", true }, { "suneilpatel.com", true }, { "sunfox.cz", true }, - { "sunfulong.me", true }, { "sungo.wtf", true }, { "sunjaydhama.com", true }, { "sunsetwx.com", true }, @@ -18940,6 +18687,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supersu.kr", true }, { "superswingtrainer.com", true }, { "supeuro.com", true }, + { "supinbot.ovh", false }, { "supplementler.com", true }, { "supplies24.at", true }, { "supplies24.es", true }, @@ -18951,7 +18699,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suprem.ch", true }, { "sur-v.com", true }, { "surasak.io", true }, - { "surasak.org", true }, { "surasak.xyz", true }, { "surgenet.nl", true }, { "surgeongeneral.gov", true }, @@ -19031,7 +18778,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swissxperts.ch", true }, { "swite.com", true }, { "swordfeng.xyz", true }, - { "swu.party", true }, { "swyn.net", true }, { "sx3.no", true }, { "sy-anduril.de", true }, @@ -19059,7 +18805,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "synchtu.be", false }, { "syncmylife.net", false }, { "syncrise.co.jp", true }, - { "syncserve.net", false }, { "syndic-discount.fr", false }, { "synfin.org", true }, { "synony.me", true }, @@ -19067,14 +18812,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "syntaxnightmare.com", true }, { "sysadmin.pm", true }, { "sysadmins.ro", true }, - { "sysadminstory.com", true }, { "sysctl.se", true }, { "sysdb.io", true }, { "sysert.tv", false }, - { "sysgeek.cn", true }, { "sysmike.de", true }, { "sysmike.net", true }, - { "sysrq.tech", true }, { "syss.de", true }, { "system.cf", true }, { "system.is", true }, @@ -19099,13 +18841,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t-point.eu", true }, { "t-stonegroup.com", true }, { "t.facebook.com", false }, - { "t0dd.eu", false }, { "t0ne.net", true }, { "t2000headphones.com", true }, { "t2000laserpointers.com", true }, { "t23m-navi.jp", false }, { "t3rror.net", true }, - { "t4c-rebirth.com", true }, { "t7e.de", false }, { "ta-65.com", true }, { "ta-sports.net", true }, @@ -19129,7 +18869,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taglioepiega.eu", true }, { "taglioepiega.it", true }, { "tahakomat.cz", true }, - { "tahf.net", true }, { "tahosa.co", true }, { "tahosalodge.org", true }, { "tailpuff.net", true }, @@ -19148,7 +18887,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "takumi-s.net", true }, { "takusan.ru", true }, { "takuto.de", true }, - { "talado.gr", false }, { "talentcast.nl", true }, { "talentos.pt", true }, { "talentuar.com", true }, @@ -19175,7 +18913,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tango-cats.de", true }, { "tango-ouest.com", true }, { "tangoalpha.co.uk", true }, - { "tangyue.date", true }, { "tanhit.com", true }, { "taniesianie.pl", true }, { "tankski.co.uk", true }, @@ -19187,6 +18924,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tanzhijun.com", true }, { "taquilla.com", true }, { "taqun.club", true }, + { "taranis.re", true }, { "tarantul.org.ua", true }, { "tarasecurity.co.uk", true }, { "tarasecurity.com", true }, @@ -19205,6 +18943,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taskstream.com", true }, { "taskulu.com", true }, { "tassup.com", true }, + { "tasta.ro", true }, { "tastycake.net", true }, { "tatara.ne.jp", true }, { "tateesq.com", true }, @@ -19237,9 +18976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tdelmas.ovh", true }, { "tdfbfoundation.org", true }, { "tdrs.info", true }, - { "tdsb.cf", true }, - { "tdsb.ga", true }, - { "tdsb.gq", true }, { "tdsb.ml", true }, { "tdude.co", true }, { "teabagdesign.co.uk", true }, @@ -19306,9 +19042,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techfactslive.com", true }, { "techiehall.com", true }, { "techinet.pl", true }, - { "techjoe.co", true }, { "techmajesty.com", true }, - { "techmasters.andover.edu", true }, { "techmasters.io", true }, { "technicalforensic.com", true }, { "technifocal.com", true }, @@ -19330,7 +19064,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techwayz.com", true }, { "techwords.io", true }, { "tecnoarea.com.ar", true }, - { "tecnodritte.it", true }, { "tecture.de", true }, { "tedb.us", true }, { "teddy.ch", true }, @@ -19341,6 +19074,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tee-idf.net", true }, { "teebeedee.org", true }, { "teedb.de", true }, + { "teehaus-shila.de", true }, { "teemo.gg", true }, { "teemperor.de", true }, { "teencounseling.com", true }, @@ -19352,7 +19086,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tehplace.club", true }, { "tehrabbitt.com", false }, { "teixobactin.com", true }, - { "tekiro.com", true }, { "teknik.io", true }, { "teknogeek.id", true }, { "teknologi.or.id", false }, @@ -19378,6 +19111,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "temptraining.ru", true }, { "tenable.com.au", true }, { "tenbos.ch", true }, + { "tendermaster.com.ua", true }, { "tenderstem.co.uk", true }, { "tendertime.jp", true }, { "tenenz.com", true }, @@ -19392,7 +19126,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tenta.com", true }, { "tentabrowser.com", true }, { "tentations-voyages.com", true }, - { "tentins.com", true }, { "tenyx.de", true }, { "teodio.cl", true }, { "teoskanta.fi", true }, @@ -19419,7 +19152,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terrty.net", true }, { "tesche.biz", true }, { "teschenhausen.com", true }, - { "tescoirelandpayslips.com", true }, { "tesoro.pr", true }, { "tessai.ga", true }, { "testadren.com", true }, @@ -19442,6 +19174,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "texasllcpros.com", true }, { "texby.com", true }, { "textburst.com", true }, + { "texter-linz.at", true }, { "texter.at", true }, { "texterseo.at", true }, { "texterseo.de", true }, @@ -19498,7 +19231,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebimhub.com", true }, { "theblackknightsings.com", true }, { "thebreakroom.org", true }, - { "thebrightons.co.uk", true }, { "thebte.com", true }, { "thebuffalotavern.com", true }, { "thecandidforum.com", true }, @@ -19514,7 +19246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecoffeesuperstore.com", true }, { "thecondobuyers.com", true }, { "thecrochetcottage.net", true }, - { "thecustomizewindows.com", true }, + { "thecustomizewindows.com", false }, { "thedailyupvote.com", true }, { "thedark1337.com", true }, { "thedarkartsandcrafts.com", true }, @@ -19533,10 +19265,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theflyingbear.net", true }, { "thefnafarchive.org", true }, { "thefox.co", true }, + { "thefox.com.fr", true }, { "thefreebirds.in", true }, { "thegamerscamp.com", true }, { "thegarrowcompany.com", true }, - { "thegasshop.co.uk", true }, + { "thegasshop.co.uk", false }, { "thegioinano.com", true }, { "thegoldregister.co.uk", true }, { "thegraciousgourmet.com", true }, @@ -19577,7 +19310,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themecraft.studio", true }, { "themilanlife.com", true }, { "themillerslive.com", true }, - { "themimitoof.fr", true }, { "themoep.at", true }, { "themoneyconverter.com", true }, { "themonthly.com.au", true }, @@ -19665,6 +19397,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theyosh.nl", true }, { "thezero.org", true }, { "thibautcharles.net", true }, + { "thierryhayoz.ch", true }, { "thijsvanderveen.net", true }, { "thingies.site", true }, { "thinkcash.nl", true }, @@ -19698,7 +19431,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thomasgriffin.io", true }, { "thomasharvey.me", true }, { "thomashunter.name", false }, - { "thomasmeester.nl", true }, { "thomasnet.fr", true }, { "thomastimepieces.com.au", true }, { "thomasvochten.com", true }, @@ -19718,6 +19450,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "threebrothersbrewing.com", true }, { "threecrownsllp.com", true }, { "threedpro.me", true }, + { "threefours.net", true }, { "threelions.ch", true }, { "threv.net", true }, { "thriveta.com", true }, @@ -19729,7 +19462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "throwpass.com", true }, { "thrx.net", true }, { "thues.eu", true }, - { "thundercampaign.com", true }, { "thunderfox.nl", true }, { "thundr.eu", true }, { "thunraz.com", true }, @@ -19748,12 +19480,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tianxing.pro", true }, { "tianxingvpn.pro", true }, { "tianya.tv", true }, + { "tibbitshall.ca", true }, + { "ticfleet.com", true }, { "ticketmates.com.au", true }, { "ticketoplichting.nl", true }, { "ticketsourcebeta.co.uk", true }, { "tid.jp", true }, { "tidycustoms.net", true }, - { "tie-online.org", true }, { "tiendavertigo.com", true }, { "tiens-ib.cz", true }, { "tier-1-entrepreneur.com", true }, @@ -19768,9 +19501,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tiki-god.co.uk", true }, { "tiledailyshop.com", true }, { "tileyourvisit.pt", true }, - { "tiliaze.biz", true }, - { "tiliaze.info", true }, - { "tiliaze.net", true }, { "tilikum.io", true }, { "till.im", true }, { "tillcraft.com", true }, @@ -19792,11 +19522,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timoxbrow.com", true }, { "timroes.de", true }, { "timschubert.net", true }, - { "timstoffel.net", false }, { "timtaubert.de", true }, { "timtelfer.com", true }, { "timtj.ca", true }, { "timvandekamp.nl", true }, + { "timvivian.ca", true }, { "timweb.ca", true }, { "timysewyn.be", true }, { "tinastahlschmidt.de", true }, @@ -19806,11 +19536,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinfoleak.com", true }, { "tink.network", true }, { "tinker.career", true }, - { "tinkerboard.org", true }, { "tinkertry.com", true }, { "tinte24.de", true }, { "tintencenter.com", true }, { "tintenfix.net", true }, + { "tinyhousefinance.com.au", true }, + { "tinylan.com", true }, { "tinyspeck.com", true }, { "tinyssh.com", true }, { "tinyssh.org", true }, @@ -19823,11 +19554,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tipoftheday.tips", true }, { "tipps-fuer-den-haushalt.de", true }, { "tippspiel.cc", true }, + { "tipshindi.com", true }, { "tir-pistolet-chexbres.ch", true }, { "tiredofeating.com", true }, { "tiremoni.ch", true }, { "tirs4ne.ch", true }, - { "tism.in", true }, { "tiste.org", true }, { "tit.systems", true }, { "titanous.com", true }, @@ -19913,7 +19644,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tofa-koeln.de", true }, { "tofe.io", true }, { "tofilmhub.com", true }, - { "tofu.im", true }, { "togech.jp", true }, { "togetter.com", true }, { "tojeto.eu", true }, @@ -19951,7 +19681,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tombrossman.com", true }, { "tomcort.com", true }, { "tomdudfield.com", true }, - { "tomend.es", true }, { "tomevans.io", true }, { "tomfisher.eu", true }, { "tomharling.co.uk", true }, @@ -19964,7 +19693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomm.yt", true }, { "tomnatt.com", true }, { "tomo.gr", false }, - { "tomphill.co.uk", true }, { "tomrei.com", true }, { "tomrichards.net", true }, { "tomschlick.com", true }, @@ -20027,7 +19755,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topnotepad.com", true }, { "topnovini.com", true }, { "topodin.com", true }, - { "topspeedgolf.com", true }, + { "topspeedgolf.com", false }, { "toptenthebest.com", true }, { "toptexture.com", true }, { "toptranslation.com", false }, @@ -20035,10 +19763,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tor2web.org", true }, { "torchl.it", true }, { "toretame.jp", true }, + { "toretfaction.net", true }, { "tormentedradio.com", true }, { "torn1.se", true }, { "torproject.org", false }, - { "torproject.org.uk", true }, { "torprojects.com", true }, { "torquato.de", false }, { "torrent.fedoraproject.org", true }, @@ -20074,7 +19802,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "touchoflife.in", true }, { "touchpointidg.us", true }, { "touchstonefms.co.uk", true }, - { "touchtable.nl", true }, { "touha.me", true }, { "touhou.cc", true }, { "touray-enterprise.ch", true }, @@ -20134,14 +19861,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trafarm.ro", true }, { "trafficologyblueprint.com", true }, { "trafficquality.org", true }, - { "traffixdevices.com", true }, + { "traffixdevices.com", false }, { "tragmi.ch", true }, { "trailerparty.com", true }, { "trailforks.com", true }, { "trainex.org", true }, { "trainhornforums.com", true }, { "trainiac.com.au", true }, - { "training4girls.ru", true }, { "traininglist.org", true }, { "trainline.de", true }, { "trainline.es", true }, @@ -20150,7 +19876,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trainline.it", true }, { "trainsgoodplanesbad.com", true }, { "traista.ru", true }, - { "trajano.net", true }, { "trakfusion.com", true }, { "tran.pw", true }, { "trance-heal.com", true }, @@ -20207,6 +19932,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travelpricecheck.com", true }, { "travi.org", true }, { "travisf.net", true }, + { "travisforte.io", true }, { "travisfranck.com", true }, { "travler.net", true }, { "trbanka.com", true }, @@ -20221,7 +19947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "treino.blog.br", true }, { "trek-planet.ru", true }, { "treker.us", true }, - { "trell.co.in", true }, { "tremolosoftware.com", true }, { "tremoureux.fr", true }, { "trendingpulse.com", true }, @@ -20246,7 +19971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trigardon-rg.de", true }, { "trigular.de", true }, { "trik.es", false }, - { "trileg.net", true }, { "trim-a-slab.com", true }, { "trimage.org", true }, { "trinary.ca", true }, @@ -20287,6 +20011,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trueteaching.com", true }, { "truetrophies.com", true }, { "trufflemonkey.co.uk", true }, + { "truserve.org", true }, { "trusitio.com", true }, { "trustcase.com", true }, { "trustedinnovators.com", true }, @@ -20331,7 +20056,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ttz.im", true }, { "tu6.pm", true }, { "tubanten.nl", true }, - { "tubbutec.de", true }, { "tube.tools", true }, { "tubejack.nl", true }, { "tubex.ga", true }, @@ -20341,6 +20065,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tudorproject.org", true }, { "tueche.com.ar", true }, { "tuincentersnaet.be", true }, + { "tuingereedschappen.net", false }, { "tuitle.com", true }, { "tuja.hu", true }, { "tulsameetingroom.com", true }, @@ -20376,7 +20101,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tutorio.ga", true }, { "tuttimundi.org", true }, { "tuttoandroid.net", true }, - { "tuxflow.de", true }, + { "tuxcloud.net", true }, { "tuxgeo.com", false }, { "tuxie.com", true }, { "tuxlife.net", true }, @@ -20392,7 +20117,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tver-msk.ru", true }, { "tverskaya-outlet.ru", true }, { "tw.search.yahoo.com", false }, - { "tw2-tools.ga", true }, { "twaka.com", true }, { "twd2.me", true }, { "twd2.net", false }, @@ -20417,7 +20141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twelve.today", true }, { "twelverocks.com", true }, { "twentymilliseconds.com", true }, - { "twisata.com", true }, { "twistapp.com", true }, { "twistedwave.com", true }, { "twisto.cz", true }, @@ -20425,6 +20148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twitter.ax", true }, { "twitter.com", false }, { "twitteroauth.com", true }, + { "twlan.org", true }, { "twodadsgames.com", true }, { "twofactorauth.org", true }, { "twojfaktum.pl", true }, @@ -20456,7 +20180,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "typeria.net", true }, { "typewolf.com", true }, { "typing.com", true }, - { "typingrevolution.com", true }, { "typo3.com", true }, { "tysye.ca", true }, { "tzwe.com", true }, @@ -20501,7 +20224,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ugcdn.com", true }, { "uggedal.com", true }, { "ugisgutless.com", true }, - { "ugo.ninja", true }, { "uhc.gg", true }, { "uhm.io", true }, { "uhrenlux.de", true }, @@ -20540,12 +20262,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unblocked.bet", true }, { "unblocked.blue", true }, { "unblocked.cam", true }, - { "unblocked.date", true }, - { "unblocked.faith", true }, { "unblocked.ink", true }, { "unblocked.live", true }, { "unblocked.one", true }, - { "unblocked.party", true }, { "unblocked.uno", true }, { "unblocked.vip", true }, { "unblockedbay.info", true }, @@ -20633,6 +20352,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unseen.is", true }, { "unseen.tw", true }, { "unser-gartenforum.de", true }, + { "unsupervised.ca", true }, { "unsuspicious.click", true }, { "unterfrankenclan.de", true }, { "unterschicht.tv", true }, @@ -20653,10 +20373,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uploadbeta.com", true }, { "upmchealthsecurity.us", true }, { "upnext.io", true }, - { "uporoops.com", true }, { "upplevelse.com", true }, { "upr-info.org", true }, - { "upr.com.ua", true }, { "uptic.net", true }, { "uptimed.com", true }, { "uptimenotguaranteed.com", true }, @@ -20684,7 +20402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "url.rw", false }, { "url0.eu", true }, { "urlaub-leitner.at", true }, - { "urlchomp.com", true }, { "urlscan.io", true }, { "urspringer.de", true }, { "ursuslibris.hu", true }, @@ -20699,7 +20416,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usakitchensandflooring.com", true }, { "usap.gov", false }, { "usbcraft.com", true }, - { "usbirthcertificate.com", false }, { "uscloud.nl", true }, { "usd.de", true }, { "use.be", true }, @@ -20748,16 +20464,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uzmandroid.com", true }, { "v-u-z.ru", true }, { "v0rtex.xyz", true }, - { "v0tti.com", false }, { "v1sit0r.ru", true }, { "v2bv.win", true }, { "v2ex.com", true }, { "v2ex.us", true }, - { "v7.cl", true }, { "v789.com", true }, { "va-reitartikel.com", true }, { "vaaddress.co", true }, - { "vaalmarketplace.co.za", true }, { "vacationality.com", true }, { "vacationscostarica.com", true }, { "vaccines.gov", true }, @@ -20781,6 +20494,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valenhub.com", true }, { "valenhub.es", true }, { "valenscaelum.com", true }, + { "valentin-sundermann.de", true }, { "valentinritz.com", true }, { "valeriansaliou.name", true }, { "valesdigital.com", true }, @@ -20792,6 +20506,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valkohattu.fi", true }, { "vallei-veluwe.nl", true }, { "valokuva-albumi.fi", true }, + { "valopv.be", true }, { "valordolarblue.com.ar", true }, { "valorem-tax.ch", true }, { "valoremtax.ch", true }, @@ -20809,6 +20524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vandeput.be", true }, { "vanderkrieken.org", true }, { "vanderrijt.nl", true }, + { "vanderstraeten.dynv6.net", true }, { "vanderziel.org", true }, { "vanessabalibridal.com", true }, { "vangeluwedeberlaere.be", true }, @@ -20930,9 +20646,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vertner.net", true }, { "veryapt.com", true }, { "veryyounglesbians.com", true }, - { "ves.vn.ua", true }, { "vespacascadia.com", true }, - { "vestacp.top", true }, { "vetinte.eu", true }, { "vetofish.com", true }, { "vets.gov", true }, @@ -20966,11 +20680,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "videomail.io", true }, { "videorullen.se", true }, { "videosqr.com", true }, - { "videoueberwachung-set.de", true }, { "vider.ga", true }, { "vidister.de", true }, { "vieclam24h.vn", false }, - { "viekelis.lt", true }, + { "viekelis.lt", false }, { "viemeister.com", true }, { "viemontante.be", true }, { "viennan.net", true }, @@ -21033,7 +20746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "virtualperez.com", false }, { "virtualsanity.com", true }, { "virtualstrongbox.ca", true }, - { "virtubox.net", true }, + { "virtubox.net", false }, { "visalogy.com", true }, { "visanhigia.com", true }, { "visaop.com", true }, @@ -21050,7 +20763,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visiontree.eu", true }, { "vispaleistexel.nl", true }, { "vissersgrootboek.nl", true }, - { "vistaalmar.es", true }, { "vistb.me", true }, { "visualideas.org", true }, { "visualvotes.co.uk", true }, @@ -21061,7 +20773,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vitalismaatjes.nl", true }, { "vitalthings.de", true }, { "vitaminler.com", true }, - { "vitapingu.de", true }, { "vitastic.nl", true }, { "vitkausk.as", true }, { "vitrado.de", true }, @@ -21071,7 +20782,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivatv.com.tw", true }, { "vivendi.de", true }, { "vizzboard.com", true }, - { "vjeff.com", true }, { "vk4wip.org.au", true }, { "vkox.com", true }, { "vksportphoto.com", true }, @@ -21088,7 +20798,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vmgirls.com", true }, { "vmis.nl", true }, { "vmoagents.com", false }, - { "vmug.pl", true }, { "vn.search.yahoo.com", false }, { "vnd.cloud", true }, { "vnfs-team.com", true }, @@ -21120,13 +20829,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volkswurst.de", true }, { "volto.io", true }, { "voltotc.com", true }, + { "vomitb.in", true }, { "vonauw.com", true }, - { "vonavy-cukor.sk", true }, - { "vonavycukor.sk", true }, - { "vonedelmann.de", true }, + { "vonedelmann.de", false }, { "vonniehudson.com", true }, { "voodoochile.at", true }, - { "vooreenveiligthuis.nl", true }, { "voorjou.com", true }, { "vop.li", true }, { "vorangerie.com", true }, @@ -21136,6 +20843,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vorlif.org", true }, { "vorm2.com", true }, { "vorodevops.com", true }, + { "voshod.org", true }, { "vostronet.com", true }, { "voter-info.uk", true }, { "votocek.cz", true }, @@ -21146,6 +20854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "voxographe.com", false }, { "voyageforum.com", true }, { "vpc-display.com", true }, + { "vpn.black", true }, { "vpn.ht", true }, { "vpnzoom.com", true }, { "vpsboard.com", true }, @@ -21235,19 +20944,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "walkhighlandsandislands.com", true }, { "walkingforhealth.org.uk", true }, { "walksedona.com", true }, - { "wallabag.it", true }, - { "wallabag.org", true }, { "wallabies.org", true }, { "wallace-group.net", true }, { "wallet.google.com", true }, { "wallet.pp.ua", true }, { "wallethub.com", false }, { "wallingford.cc", true }, + { "wallpapers.pub", true }, { "walls.io", true }, { "walnutgaming.com", true }, { "walnutis.net", true }, { "walruses.org", true }, - { "walterlynnmosley.com", true }, { "wanashi.com", true }, { "wander.al", true }, { "wandervoll.ch", true }, @@ -21255,23 +20962,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wangjiatun.com.tw", true }, { "wangqiliang.cn", true }, { "wangqiliang.com", true }, + { "wangqiliang.org", true }, { "wangql.cn", true }, { "wangql.net", true }, { "wangqr.tk", true }, { "wangyue.blog", true }, { "wantshow.com.br", true }, - { "wanybug.cn", true }, { "wardow.com", true }, { "warekon.com", true }, { "warekon.dk", true }, { "warflame.net", true }, { "wargameexclusive.com", true }, + { "warhaggis.com", true }, { "warlions.info", false }, { "warmestwishes.ca", true }, { "warmlyyours.com", false }, { "warmservers.com", true }, { "warr.ath.cx", true }, - { "warrencreative.com", false }, { "warsh.moe", true }, { "wartorngalaxy.com", true }, { "warumsuchen.at", true }, @@ -21282,6 +20989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waslh.com", true }, { "wasserspucker.de", true }, { "wassibauer.com", true }, + { "wassim.is", true }, { "watchface.watch", true }, { "watchinventory.com", true }, { "watchstyle.com", true }, @@ -21329,7 +21037,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web-hotel.gr", true }, { "web-kouza.com", true }, { "web-mail.info", true }, - { "web-redacteuren.nl", true }, { "web-wave.jp", true }, { "web.cc", false }, { "web2033.com", true }, @@ -21344,6 +21051,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webcollect.org.uk", true }, { "webcontentspinning.com", true }, { "webcrm.com", true }, + { "webdeflect.com", true }, { "webdesign-st.de", true }, { "webdesigneauclaire.com", true }, { "webdesignplay.com", true }, @@ -21377,7 +21085,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webmedpharmacy.co.uk", true }, { "webmel.com", true }, { "webmetering.at", true }, - { "webninja.work", true }, { "webogram.org", false }, { "webproguru.com", true }, { "webproject.rocks", true }, @@ -21390,6 +21097,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "websecurity.is", true }, { "webseitendesigner.com", false }, { "webseitenserver.com", true }, + { "websenat.de", true }, { "websiteadvice.com.au", true }, { "websitedesign.bg", true }, { "websiteservice.pro", true }, @@ -21440,9 +21148,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weiyuz.com", true }, { "weizenke.im", true }, { "weizenspr.eu", true }, + { "wekibe.de", true }, { "welches-kinderfahrrad.de", true }, { "welcomehelp.de", true }, - { "welkers.org", true }, { "wellacapability.com", true }, { "welldrake.com", true }, { "wellensteyn.ru", true }, @@ -21452,7 +21160,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wellproducedwines.com", true }, { "wellspringcamps.com", true }, { "welovemail.com", true }, - { "welpy.com", true }, { "welsh.com.br", true }, { "welteneroberer.de", true }, { "weltengilde.de", true }, @@ -21498,7 +21205,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wetherbyweather.org.uk", true }, { "wetofu.top", true }, { "wetoxic.com", true }, - { "wettbonus.info", false }, + { "wettbonus.info", true }, { "wetthost.com", true }, { "wevenues.com", true }, { "wewillgo.com", true }, @@ -21553,7 +21260,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whistleb.com", true }, { "whistleblower.gov", true }, { "whitefm.ch", true }, - { "whitehat.id", false }, { "whitehathackers.com.br", true }, { "whitehouse.gov", true }, { "whiteink.com", true }, @@ -21626,6 +21332,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wildnisfamilie.net", true }, { "wildtrip.blog", true }, { "wilfrid-calixte.fr", true }, + { "wilhelm-nathan.de", true }, { "willbarnesphotography.co.uk", true }, { "willberg.bayern", true }, { "willeminfo.ch", true }, @@ -21682,6 +21389,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wireframesoftware.com", true }, { "wireheading.com", true }, { "wirelesswatch.com.au", true }, + { "wireshark.org", true }, { "wiretime.de", true }, { "wirhabenspass.de", true }, { "wirkstoffreich.de", true }, @@ -21707,7 +21415,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wizzley.com", false }, { "wizzr.nl", true }, { "wje-online.de", true }, - { "wjglerum.nl", true }, { "wkennington.com", true }, { "wkv.com", true }, { "wkz.io", true }, @@ -21721,10 +21428,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wnu.com", true }, { "wo2forum.nl", false }, { "wobble.ninja", true }, - { "wochenentwicklung.com", true }, { "wodboss.com", true }, { "wodinaz.com", true }, - { "wodka-division.de", true }, { "woelkchen.me", true }, { "wofford-ecs.org", true }, { "woffs.de", true }, @@ -21762,7 +21467,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wonderlandmovies.de", true }, { "wondermags.com", true }, { "wondershift.biz", true }, - { "wondy.com", true }, { "woodbury.io", true }, { "woodlandschurch.net", true }, { "woodlandsmetro.church", true }, @@ -21813,7 +21517,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wp-tao.com", true }, { "wpac.de", true }, { "wpandup.org", true }, - { "wpfast.net", false }, { "wphostingblog.nl", true }, { "wpinfos.de", true }, { "wpinter.com", true }, @@ -21862,7 +21565,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wth.in", true }, { "wtpmj.com", true }, { "wubocong.com", true }, - { "wubthecaptain.eu", true }, { "wuetix.de", true }, { "wug.news", true }, { "wuji.cz", true }, @@ -21875,7 +21577,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wv-n.de", true }, { "wvg.myds.me", true }, { "wvr-law.de", false }, - { "ww2onlineshop.com", false }, { "wwgc2011.se", true }, { "www-507.net", true }, { "www-746.com", true }, @@ -21950,7 +21651,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.wordpress.com", false }, { "wxcafe.net", true }, { "wxh.jp", true }, - { "wxrlab.com", true }, { "wxster.com", true }, { "wy6.org", true }, { "wyam.io", true }, @@ -21962,6 +21662,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wynterhill.co.uk", true }, { "wypemagazine.se", true }, { "wyssmuller.ch", true }, + { "wyzphoto.nl", true }, { "wzrd.in", true }, { "wzyboy.org", true }, { "x-iweb.ru", true }, @@ -21986,15 +21687,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xboxdownloadthat.com", true }, { "xboxlivegoldshop.nl", true }, { "xbrlsuccess.appspot.com", true }, + { "xbt.co", true }, { "xbtce.com", true }, { "xbtmusic.org", true }, { "xcentricmold.com", true }, - { "xclirion-support.de", true }, { "xd.cm", true }, { "xd.fi", true }, { "xdd.io", true }, { "xdeftor.com", true }, - { "xecure.zone", true }, { "xecureit.com", true }, { "xenophile.name", true }, { "xenosphere.tk", true }, @@ -22013,7 +21713,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xgusto.com", true }, { "xhadius.de", true }, { "xho.me", true }, - { "xia100.xyz", true }, { "xiamuzi.com", true }, { "xiangweiqing.co.uk", true }, { "xiangwenquan.me", true }, @@ -22032,31 +21731,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xilkoi.net", true }, { "ximage.me", false }, { "ximbo.net", true }, + { "xinbiji.cn", true }, { "xing.ml", true }, { "xiqi.us", true }, { "xirion.net", true }, { "xivpn.com", true }, - { "xjoin.de", true }, { "xkbcommon.org", false }, { "xkcd.pw", true }, { "xkviz.net", true }, { "xlange.com", true }, { "xlii.io", true }, - { "xliu.cf", true }, - { "xmedius.com", true }, + { "xmedius.com", false }, { "xmedius.eu", true }, { "xmlbeam.org", true }, { "xmpp.dk", true }, + { "xmppwocky.net", true }, { "xmr.to", true }, + { "xmv.cz", true }, { "xn----7sbmucgqdbgwwc5e9b.xn--p1ai", true }, { "xn----8hcdn2ankm1bfq.com", true }, { "xn--0kqx72g4gftob.com", true }, { "xn--3lqp21gwna.cn", true }, { "xn--3lqp21gwna.xn--fiqs8s", true }, { "xn--3lqp21gwna.xn--fiqz9s", true }, - { "xn--3px.jp", true }, { "xn--4dbjwf8c.ml", true }, - { "xn--6cv66l79sp0n0ibo7s9ne.xyz", true }, { "xn--7v8h.cf", true }, { "xn--7xa.google.com", true }, { "xn--80aocgsfei.xn--p1ai", true }, @@ -22074,9 +21772,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--detrkl13b9sbv53j.com", true }, { "xn--detrkl13b9sbv53j.org", true }, { "xn--dmonenjger-q5ag.net", true }, - { "xn--ekr87w7se89ay98ezcs.biz", true }, { "xn--fischereiverein-mnsterhausen-i7c.de", true }, - { "xn--hfk-allgu-schwaben-stb.de", true }, { "xn--internetlnen-1cb.com", true }, { "xn--jbs-tna.de", true }, { "xn--jda.tk", true }, @@ -22113,7 +21809,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--v-wfa35g.ro", true }, { "xn--v6q426ishax2a.xyz", true }, { "xn--wmq.jp", true }, - { "xn--xdtx3pfzbiw3ar8e7yedqrhui.com", true }, { "xn--y8j148r.xn--q9jyb4c", true }, { "xn5.de", true }, { "xnaas.info", true }, @@ -22133,7 +21828,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xplore-dna.net", true }, { "xpressprint.com.br", true }, { "xps2pdf.co.uk", true }, - { "xqin.net", true }, { "xr.cx", true }, { "xrippedhd.com", true }, { "xrockx.de", true }, @@ -22171,7 +21865,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y-s.pw", true }, { "yabrt.cn", true }, { "yaccin.com", true }, - { "yachts-magazine.com", true }, { "yacobo.com", true }, { "yafuoku.ru", true }, { "yagihiro.tech", true }, @@ -22181,7 +21874,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yakaz.com", true }, { "yakmade.com", true }, { "yakmoo.se", true }, - { "yal.sh", true }, + { "yal.sh", false }, { "yalla.jp", true }, { "yama.su", true }, { "yamadaya.tv", true }, @@ -22197,7 +21890,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yarcom.ru", false }, { "yarogneva.ru", true }, { "yasutomonodokoiko.com", true }, - { "yatesun.com", true }, { "yatorie.net", true }, { "yatsuenpoon.com", true }, { "yaup.tk", true }, @@ -22221,7 +21913,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yesonline.asia", false }, { "yesonline.me", false }, { "yeswehack.com", true }, - { "yetii.net", true }, { "yetzt.me", false }, { "yeu.io", true }, { "yfengs.moe", true }, @@ -22255,7 +21946,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yoga-prive.de", true }, { "yoga-school.xyz", true }, { "yoga-schwerin.de", true }, - { "yoga.is-an-engineer.com", true }, { "yogananda-roma.org", true }, { "yogeshbeniwal.com", true }, { "yogoeasy.com", true }, @@ -22269,7 +21959,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yolops.net", true }, { "yombo.net", true }, { "yomena.in", true }, - { "yomepre.com", true }, { "yooooex.com", true }, { "yopers.com", true }, { "yoramvandevelde.net", true }, @@ -22293,10 +21982,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youkaryote.org", true }, { "youkok2.com", true }, { "youlend.com", true }, - { "youlog.net", true }, { "youms.de", true }, { "youngdogs.org", true }, - { "youngfree.cn", true }, { "youpark.no", true }, { "youran.me", true }, { "yourciso.com", true }, @@ -22311,6 +21998,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "youtous.me", true }, { "youtubedownloader.com", true }, { "youyoulemon.com", true }, + { "yoyoost.duckdns.org", true }, { "ypart.eu", true }, { "ypcs.fi", true }, { "ypid.de", true }, @@ -22367,6 +22055,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yutangyun.com", true }, { "yuwei.org", true }, { "yux.fr", true }, + { "yuxingxin.com", true }, { "yuyu.io", true }, { "yuzu.tk", true }, { "yveshield.com", true }, @@ -22380,17 +22069,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z.ai", true }, { "z0rro.net", true }, { "z1h.de", true }, + { "z33.ch", true }, { "z4k.de", true }, { "z99944x.xyz", true }, { "zaalleatherwear.nl", false }, { "zabszk.net", true }, { "zacarias.com.ar", true }, { "zachborboa.com", true }, + { "zachgibbens.org", true }, { "zachpeters.org", true }, { "zaclys.com", true }, { "zadroweb.com", true }, { "zafirus.name", true }, - { "zahe.me", true }, { "zaidan.de", true }, { "zaidan.eu", true }, { "zaidanfood.com", true }, @@ -22402,13 +22092,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zakmccrac.de", true }, { "zakr.es", true }, { "zalan.do", true }, + { "zamis.net", true }, { "zandcell.com", true }, { "zaneweb.org", true }, { "zaoshanghao-dajia.rhcloud.com", true }, { "zapier.com", true }, { "zappbuildapps.com", true }, { "zaratan.fr", true }, - { "zary.me", true }, { "zaufanatrzeciastrona.pl", true }, { "zavca.com", true }, { "zavetaji.lv", true }, @@ -22428,7 +22118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zdbl.de", true }, { "zdenekspacek.cz", true }, { "zdorovayasimya.com", true }, - { "zdravotnickainformatika.cz", true }, { "zdrojak.cz", true }, { "ze3kr.com", true }, { "zebry.nl", true }, @@ -22445,7 +22134,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zemlova.cz", true }, { "zen-ume.com", true }, { "zenfusion.fr", true }, - { "zenghx.tk", true }, { "zenhaiku.com", true }, { "zenithmedia.ca", true }, { "zenk-security.com", true }, @@ -22468,6 +22156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zeropush.com", true }, { "zerossl.com", true }, { "zertif.info", true }, + { "zertitude.com", true }, { "zeryn.net", true }, { "zespia.tw", false }, { "zetamode.com", true }, @@ -22477,7 +22166,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zewtie.com", true }, { "zfo.gg", true }, { "zgrep.org", true }, - { "zh1.li", true }, { "zhang-hao.com", true }, { "zhang.wtf", true }, { "zhangfangzhou.com", true }, @@ -22498,6 +22186,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zian.online", true }, { "ziegler-family.com", true }, { "ziegler-heizung-frankfurt.de", true }, + { "zifb.in", true }, { "zigi.io", true }, { "zigzagmart.com", true }, { "ziin.de", false }, @@ -22520,8 +22209,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zivmergers.com", true }, { "zixiao.wang", true }, { "zixo.sk", true }, - { "ziyuanabc.xyz", true }, - { "zju.tv", true }, { "zkrypt.cc", true }, { "zlatosnadno.cz", true }, { "zlavomat.sk", true }, @@ -22532,7 +22219,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zobraz.cz", true }, { "zockenbiszumumfallen.de", true }, { "zoeller.me", true }, - { "zohar.link", true }, { "zohar.shop", true }, { "zohar.wang", true }, { "zoigl.club", true }, @@ -22570,6 +22256,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zten.org", true }, { "ztjuh.tk", true }, { "zuckerfloh.de", true }, + { "zudomc.me", true }, { "zuefle.net", true }, { "zughilfen-test.de", true }, { "zukix.com", true }, @@ -22584,6 +22271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zupago.pe", true }, { "zuram.net", true }, { "zurret.de", true }, + { "zuviel.space", true }, { "zuzumba.es", true }, { "zvps.uk", true }, { "zvxr.net", true }, @@ -22599,7 +22287,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zxity.uk", true }, { "zxtcode.com", true }, { "zybbo.com", true }, - { "zymbit.com", true }, { "zymmm.com", true }, { "zync.ca", true }, { "zypern-firma.com", true },