diff --git a/accessible/generic/RootAccessible.cpp b/accessible/generic/RootAccessible.cpp index 5817f2da9..cea6487be 100644 --- a/accessible/generic/RootAccessible.cpp +++ b/accessible/generic/RootAccessible.cpp @@ -365,6 +365,15 @@ RootAccessible::ProcessDOMEvent(nsIDOMEvent* aDOMEvent) if (FocusMgr()->HasDOMFocus(targetNode)) { nsCOMPtr multiSel = do_QueryInterface(targetNode); + if (!multiSel) { + // This shouldn't be possible. All XUL trees should have + // nsIDOMXULMultiSelectControlElement, and the tree is focused, so it + // shouldn't be dying. Nevertheless, this sometimes happens in the wild + // (bug 1597043). + MOZ_ASSERT_UNREACHABLE( + "XUL tree doesn't have nsIDOMXULMultiSelectControlElement"); + return; + } nsAutoString selType; multiSel->GetSelType(selType); if (selType.IsEmpty() || !selType.EqualsLiteral("single")) { diff --git a/application/basilisk/base/content/sanitize.js b/application/basilisk/base/content/sanitize.js index 6f47740e6..69fa37cbc 100644 --- a/application/basilisk/base/content/sanitize.js +++ b/application/basilisk/base/content/sanitize.js @@ -17,8 +17,8 @@ XPCOMUtils.defineLazyModuleGetter(this, "Task", "resource://gre/modules/Task.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "DownloadsCommon", "resource:///modules/DownloadsCommon.jsm"); -XPCOMUtils.defineLazyModuleGetter(this, "TelemetryStopwatch", - "resource://gre/modules/TelemetryStopwatch.jsm"); +/*XPCOMUtils.defineLazyModuleGetter(this, "TelemetryStopwatch", + "resource://gre/modules/TelemetryStopwatch.jsm");*/ XPCOMUtils.defineLazyModuleGetter(this, "console", "resource://gre/modules/Console.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Preferences", @@ -152,7 +152,7 @@ Sanitizer.prototype = { // Callers should check returned errors and give user feedback // about items that could not be sanitized let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_TOTAL", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_TOTAL", refObj); let annotateError = (name, ex) => { progress[name] = "failed"; @@ -184,7 +184,7 @@ Sanitizer.prototype = { } // Sanitization is complete. - TelemetryStopwatch.finish("FX_SANITIZE_TOTAL", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_TOTAL", refObj); // Reset the inProgress preference since we were not killed during // sanitization. Preferences.reset(Sanitizer.PREF_SANITIZE_IN_PROGRESS); @@ -207,7 +207,7 @@ Sanitizer.prototype = { clear: Task.async(function* (range) { let seenException; let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_CACHE", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_CACHE", refObj); try { // Cache doesn't consult timespan, nor does it have the @@ -228,7 +228,7 @@ Sanitizer.prototype = { seenException = ex; } - TelemetryStopwatch.finish("FX_SANITIZE_CACHE", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_CACHE", refObj); if (seenException) { throw seenException; } @@ -242,7 +242,7 @@ Sanitizer.prototype = { let refObj = {}; // Clear cookies. - TelemetryStopwatch.start("FX_SANITIZE_COOKIES_2", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_COOKIES_2", refObj); try { let cookieMgr = Components.classes["@mozilla.org/cookiemanager;1"] .getService(Ci.nsICookieManager); @@ -270,7 +270,7 @@ Sanitizer.prototype = { } catch (ex) { seenException = ex; } finally { - TelemetryStopwatch.finish("FX_SANITIZE_COOKIES_2", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_COOKIES_2", refObj); } // Clear deviceIds. Done asynchronously (returns before complete). @@ -346,7 +346,7 @@ Sanitizer.prototype = { clear: Task.async(function* (range) { let seenException; let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_HISTORY", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_HISTORY", refObj); try { if (range) { yield PlacesUtils.history.removeVisitsByFilter({ @@ -360,7 +360,7 @@ Sanitizer.prototype = { } catch (ex) { seenException = ex; } finally { - TelemetryStopwatch.finish("FX_SANITIZE_HISTORY", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_HISTORY", refObj); } try { @@ -388,7 +388,7 @@ Sanitizer.prototype = { clear: Task.async(function* (range) { let seenException; let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_FORMDATA", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_FORMDATA", refObj); try { // Clear undo history of all search bars. let windows = Services.wm.getEnumerator("navigator:browser"); @@ -442,7 +442,7 @@ Sanitizer.prototype = { seenException = ex; } - TelemetryStopwatch.finish("FX_SANITIZE_FORMDATA", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_FORMDATA", refObj); if (seenException) { throw seenException; } @@ -452,7 +452,7 @@ Sanitizer.prototype = { downloads: { clear: Task.async(function* (range) { let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_DOWNLOADS", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_DOWNLOADS", refObj); try { let filterByTime = null; if (range) { @@ -467,7 +467,7 @@ Sanitizer.prototype = { let list = yield Downloads.getList(Downloads.ALL); list.removeFinished(filterByTime); } finally { - TelemetryStopwatch.finish("FX_SANITIZE_DOWNLOADS", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_DOWNLOADS", refObj); } }) }, @@ -475,7 +475,7 @@ Sanitizer.prototype = { sessions: { clear: Task.async(function* (range) { let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_SESSIONS", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_SESSIONS", refObj); try { // clear all auth tokens @@ -486,7 +486,7 @@ Sanitizer.prototype = { // clear FTP and plain HTTP auth sessions Services.obs.notifyObservers(null, "net:clear-active-logins", null); } finally { - TelemetryStopwatch.finish("FX_SANITIZE_SESSIONS", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_SESSIONS", refObj); } }) }, @@ -495,7 +495,7 @@ Sanitizer.prototype = { clear: Task.async(function* (range) { let seenException; let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_SITESETTINGS", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_SITESETTINGS", refObj); let startDateMS = range ? range[0] / 1000 : null; @@ -553,7 +553,7 @@ Sanitizer.prototype = { seenException = ex; } - TelemetryStopwatch.finish("FX_SANITIZE_SITESETTINGS", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_SITESETTINGS", refObj); if (seenException) { throw seenException; } @@ -611,7 +611,7 @@ Sanitizer.prototype = { // If/once we get here, we should actually be able to close all windows. let refObj = {}; - TelemetryStopwatch.start("FX_SANITIZE_OPENWINDOWS", refObj); + //TelemetryStopwatch.start("FX_SANITIZE_OPENWINDOWS", refObj); // First create a new window. We do this first so that on non-mac, we don't // accidentally close the app by closing all the windows. @@ -657,7 +657,7 @@ Sanitizer.prototype = { newWindowOpened = true; // If we're the last thing to happen, invoke callback. if (numWindowsClosing == 0) { - TelemetryStopwatch.finish("FX_SANITIZE_OPENWINDOWS", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_OPENWINDOWS", refObj); resolve(); } } @@ -669,7 +669,7 @@ Sanitizer.prototype = { Services.obs.removeObserver(onWindowClosed, "xul-window-destroyed"); // If we're the last thing to happen, invoke callback. if (newWindowOpened) { - TelemetryStopwatch.finish("FX_SANITIZE_OPENWINDOWS", refObj); + //TelemetryStopwatch.finish("FX_SANITIZE_OPENWINDOWS", refObj); resolve(); } } @@ -788,7 +788,7 @@ Sanitizer.clearPluginData = Task.async(function* (range) { if (/\bFlash\b/.test(tag.name)) { probe = tag.loaded ? "FX_SANITIZE_LOADED_FLASH" : "FX_SANITIZE_UNLOADED_FLASH"; - TelemetryStopwatch.start(probe, refObj); + //TelemetryStopwatch.start(probe, refObj); } try { let rv = yield new Promise(resolve => @@ -801,12 +801,12 @@ Sanitizer.clearPluginData = Task.async(function* (range) { ); } if (probe) { - TelemetryStopwatch.finish(probe, refObj); + //TelemetryStopwatch.finish(probe, refObj); } } catch (ex) { // Ignore errors from plug-ins if (probe) { - TelemetryStopwatch.cancel(probe, refObj); + //TelemetryStopwatch.cancel(probe, refObj); } } } diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp index 3af715ed5..e9e61a513 100644 --- a/dom/base/nsContentUtils.cpp +++ b/dom/base/nsContentUtils.cpp @@ -3359,7 +3359,14 @@ nsContentUtils::GetImageFromContent(nsIImageLoadingContent* aContent, } if (aRequest) { - imgRequest.swap(*aRequest); + // If the consumer wants the request, verify it has actually loaded + // successfully. + uint32_t imgStatus; + imgRequest->GetImageStatus(&imgStatus); + if (imgStatus & imgIRequest::STATUS_FRAME_COMPLETE && + !(imgStatus & imgIRequest::STATUS_ERROR)) { + imgRequest.swap(*aRequest); + } } return imgContainer.forget(); diff --git a/dom/base/nsGlobalWindow.cpp b/dom/base/nsGlobalWindow.cpp index 0c3b4dcda..dbd8536ad 100644 --- a/dom/base/nsGlobalWindow.cpp +++ b/dom/base/nsGlobalWindow.cpp @@ -10873,35 +10873,12 @@ nsGlobalWindow::GetComputedStyleHelperOuter(Element& aElt, { MOZ_RELEASE_ASSERT(IsOuterWindow()); - if (!mDocShell) { + if (!mDoc) { return nullptr; } - nsCOMPtr presShell = mDocShell->GetPresShell(); - - if (!presShell) { - // Try flushing frames on our parent in case there's a pending - // style change that will create the presshell. - auto* parent = nsGlobalWindow::Cast(GetPrivateParent()); - if (!parent) { - return nullptr; - } - - parent->FlushPendingNotifications(FlushType::Frames); - - // Might have killed mDocShell - if (!mDocShell) { - return nullptr; - } - - presShell = mDocShell->GetPresShell(); - if (!presShell) { - return nullptr; - } - } - RefPtr compStyle = - NS_NewComputedDOMStyle(&aElt, aPseudoElt, presShell, + NS_NewComputedDOMStyle(&aElt, aPseudoElt, mDoc, aDefaultStylesOnly ? nsComputedDOMStyle::eDefaultOnly : nsComputedDOMStyle::eAll); diff --git a/dom/indexedDB/ActorsChild.cpp b/dom/indexedDB/ActorsChild.cpp index f6dbf6d7b..dfaf42ff0 100644 --- a/dom/indexedDB/ActorsChild.cpp +++ b/dom/indexedDB/ActorsChild.cpp @@ -3306,6 +3306,10 @@ BackgroundCursorChild::HandleResponse( auto& responses = const_cast&>(aResponses); + // If a new cursor is created, we need to keep a reference to it until the + // ResultHelper creates a DOM Binding. + RefPtr newCursor; + for (ObjectStoreCursorResponse& response : responses) { StructuredCloneReadInfo cloneReadInfo(Move(response.cloneInfo())); cloneReadInfo.mDatabase = mTransaction->Database(); @@ -3315,8 +3319,6 @@ BackgroundCursorChild::HandleResponse( nullptr, cloneReadInfo.mFiles); - RefPtr newCursor; - if (mCursor) { mCursor->Reset(Move(response.key()), Move(cloneReadInfo)); } else { diff --git a/dom/interfaces/css/nsIDOMCSSGroupingRule.idl b/dom/interfaces/css/nsIDOMCSSGroupingRule.idl index 593da6152..348af52b5 100644 --- a/dom/interfaces/css/nsIDOMCSSGroupingRule.idl +++ b/dom/interfaces/css/nsIDOMCSSGroupingRule.idl @@ -16,7 +16,7 @@ interface nsIDOMCSSGroupingRule : nsISupports readonly attribute nsIDOMCSSRuleList cssRules; unsigned long insertRule(in DOMString rule, - in unsigned long index) + [optional] in unsigned long index) raises(DOMException); void deleteRule(in unsigned long index) raises(DOMException); diff --git a/dom/interfaces/css/nsIDOMCSSStyleSheet.idl b/dom/interfaces/css/nsIDOMCSSStyleSheet.idl index b9e13134e..cefe4f704 100644 --- a/dom/interfaces/css/nsIDOMCSSStyleSheet.idl +++ b/dom/interfaces/css/nsIDOMCSSStyleSheet.idl @@ -20,7 +20,7 @@ interface nsIDOMCSSStyleSheet : nsIDOMStyleSheet readonly attribute nsIDOMCSSRuleList cssRules; unsigned long insertRule(in DOMString rule, - in unsigned long index) + [optional] in unsigned long index) raises(DOMException); void deleteRule(in unsigned long index) raises(DOMException); diff --git a/dom/smil/nsSMILCSSProperty.cpp b/dom/smil/nsSMILCSSProperty.cpp index 53f3e0fbf..e74512443 100644 --- a/dom/smil/nsSMILCSSProperty.cpp +++ b/dom/smil/nsSMILCSSProperty.cpp @@ -38,14 +38,8 @@ GetCSSComputedValue(Element* aElem, return false; } - nsIPresShell* shell = doc->GetShell(); - if (!shell) { - NS_WARNING("Unable to look up computed style -- no pres shell"); - return false; - } - RefPtr computedStyle = - NS_NewComputedDOMStyle(aElem, EmptyString(), shell); + NS_NewComputedDOMStyle(aElem, EmptyString(), doc); computedStyle->GetPropertyValue(aPropID, aResult); return true; diff --git a/dom/webidl/CSSStyleSheet.webidl b/dom/webidl/CSSStyleSheet.webidl index f51b89cd1..4c5f1977e 100644 --- a/dom/webidl/CSSStyleSheet.webidl +++ b/dom/webidl/CSSStyleSheet.webidl @@ -21,7 +21,7 @@ interface CSSStyleSheet : StyleSheet { [ChromeOnly, BinaryName="parsingModeDOM"] readonly attribute CSSStyleSheetParsingMode parsingMode; [Throws, NeedsSubjectPrincipal] - unsigned long insertRule(DOMString rule, unsigned long index); + unsigned long insertRule(DOMString rule, optional unsigned long index = 0); [Throws, NeedsSubjectPrincipal] void deleteRule(unsigned long index); }; diff --git a/editor/libeditor/CSSEditUtils.cpp b/editor/libeditor/CSSEditUtils.cpp index 8e2effdf1..dfce858a5 100644 --- a/editor/libeditor/CSSEditUtils.cpp +++ b/editor/libeditor/CSSEditUtils.cpp @@ -570,11 +570,8 @@ CSSEditUtils::GetComputedStyle(Element* aElement) nsIDocument* doc = aElement->GetUncomposedDoc(); NS_ENSURE_TRUE(doc, nullptr); - nsIPresShell* presShell = doc->GetShell(); - NS_ENSURE_TRUE(presShell, nullptr); - RefPtr style = - NS_NewComputedDOMStyle(aElement, EmptyString(), presShell); + NS_NewComputedDOMStyle(aElement, EmptyString(), doc); return style.forget(); } diff --git a/layout/style/nsComputedDOMStyle.cpp b/layout/style/nsComputedDOMStyle.cpp index b471eb2c2..838fd136b 100644 --- a/layout/style/nsComputedDOMStyle.cpp +++ b/layout/style/nsComputedDOMStyle.cpp @@ -64,13 +64,13 @@ using namespace mozilla::dom; */ already_AddRefed -NS_NewComputedDOMStyle(dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, +NS_NewComputedDOMStyle(dom::Element* aElement, + const nsAString& aPseudoElt, + nsIDocument* aDocument, nsComputedDOMStyle::StyleType aStyleType) { RefPtr computedStyle; - computedStyle = new nsComputedDOMStyle(aElement, aPseudoElt, aPresShell, - aStyleType); + computedStyle = new nsComputedDOMStyle(aElement, aPseudoElt, aDocument, aStyleType); return computedStyle.forget(); } @@ -243,7 +243,7 @@ nsComputedStyleMap::Update() nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, StyleType aStyleType) : mDocumentWeak(nullptr) , mOuterFrame(nullptr) @@ -254,11 +254,13 @@ nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, , mExposeVisitedStyle(false) , mResolvedStyleContext(false) { - MOZ_ASSERT(aElement && aPresShell); + MOZ_ASSERT(aElement); + MOZ_ASSERT(aDocument); + // TODO(emilio, bug 548397, https://github.com/w3c/csswg-drafts/issues/2403): + // Should use aElement->OwnerDoc() instead. + mDocumentWeak = do_GetWeakReference(aDocument); - mDocumentWeak = do_GetWeakReference(aPresShell->GetDocument()); - - mContent = aElement; + mElement = aElement; if (!DOMStringIsNull(aPseudoElt) && !aPseudoElt.IsEmpty() && aPseudoElt.First() == char16_t(':')) { @@ -285,8 +287,6 @@ nsComputedDOMStyle::nsComputedDOMStyle(dom::Element* aElement, mPseudo = nullptr; } } - - MOZ_ASSERT(aPresShell->GetPresContext()); } nsComputedDOMStyle::~nsComputedDOMStyle() @@ -297,13 +297,13 @@ nsComputedDOMStyle::~nsComputedDOMStyle() NS_IMPL_CYCLE_COLLECTION_CLASS(nsComputedDOMStyle) NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsComputedDOMStyle) - tmp->ClearStyleContext(); // remove observer before clearing mContent - NS_IMPL_CYCLE_COLLECTION_UNLINK(mContent) + tmp->ClearStyleContext(); // remove observer before clearing mElement + NS_IMPL_CYCLE_COLLECTION_UNLINK(mElement) NS_IMPL_CYCLE_COLLECTION_UNLINK_PRESERVED_WRAPPER NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsComputedDOMStyle) - NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mContent) + NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mElement) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_TRACE_WRAPPERCACHE(nsComputedDOMStyle) @@ -366,8 +366,6 @@ nsComputedDOMStyle::SetCssText(const nsAString& aCssText) NS_IMETHODIMP nsComputedDOMStyle::GetLength(uint32_t* aLength) { - NS_PRECONDITION(aLength, "Null aLength! Prepare to die!"); - uint32_t length = GetComputedStyleMap()->Length(); // Make sure we have up to date style so that we can include custom @@ -375,6 +373,8 @@ nsComputedDOMStyle::GetLength(uint32_t* aLength) UpdateCurrentStyleSources(false); if (mStyleContext) { length += StyleVariables()->mVariables.Count(); + } else { + length = 0; } *aLength = length; @@ -772,7 +772,7 @@ nsComputedDOMStyle::ClearStyleContext() { if (mResolvedStyleContext) { mResolvedStyleContext = false; - mContent->RemoveMutationObserver(this); + mElement->RemoveMutationObserver(this); } mStyleContext = nullptr; } @@ -782,7 +782,7 @@ nsComputedDOMStyle::SetResolvedStyleContext(RefPtr&& aContext) { if (!mResolvedStyleContext) { mResolvedStyleContext = true; - mContent->AddMutationObserver(this); + mElement->AddMutationObserver(this); } mStyleContext = aContext; } @@ -807,7 +807,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) // Flush _before_ getting the presshell, since that could create a new // presshell. Also note that we want to flush the style on the document - // we're computing style in, not on the document mContent is in -- the two + // we're computing style in, not on the document mElement is in -- the two // may be different. document->FlushPendingNotifications( aNeedsLayoutFlush ? FlushType::Layout : FlushType::Style); @@ -815,7 +815,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mFlushedPendingReflows = aNeedsLayoutFlush; #endif - nsCOMPtr presShellForContent = GetPresShellForContent(mContent); + nsCOMPtr presShellForContent = GetPresShellForContent(mElement); if (presShellForContent && presShellForContent != document->GetShell()) { presShellForContent->FlushPendingNotifications(FlushType::Style); } @@ -830,7 +830,11 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mPresShell->GetPresContext()->GetRestyleGeneration(); if (mStyleContext) { - if (mStyleContextGeneration == currentGeneration) { + // We can't rely on the undisplayed restyle generation if mElement is + // out-of-document, since that generation is not incremented for DOM changes + // on out-of-document elements. + if (mStyleContextGeneration == currentGeneration && + mElement->IsInComposedDoc()) { // Our cached style context is still valid. return; } @@ -839,12 +843,12 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) mStyleContext = nullptr; } - // XXX the !mContent->IsHTMLElement(nsGkAtoms::area) + // XXX the !mElement->IsHTMLElement(nsGkAtoms::area) // check is needed due to bug 135040 (to avoid using // mPrimaryFrame). Remove it once that's fixed. if (!mPseudo && mStyleType == eAll && - !mContent->IsHTMLElement(nsGkAtoms::area)) { - mOuterFrame = mContent->GetPrimaryFrame(); + !mElement->IsHTMLElement(nsGkAtoms::area)) { + mOuterFrame = mElement->GetPrimaryFrame(); mInnerFrame = mOuterFrame; if (mOuterFrame) { nsIAtom* type = mOuterFrame->GetType(); @@ -887,7 +891,7 @@ nsComputedDOMStyle::UpdateCurrentStyleSources(bool aNeedsLayoutFlush) // Need to resolve a style context RefPtr resolvedStyleContext = nsComputedDOMStyle::GetStyleContextForElementNoFlush( - mContent->AsElement(), + mElement, mPseudo, presShellForContent ? presShellForContent.get() : mPresShell, mStyleType); @@ -980,7 +984,6 @@ nsComputedDOMStyle::GetPropertyCSSValue(const nsAString& aPropertyName, ErrorRes UpdateCurrentStyleSources(needsLayoutFlush); if (!mStyleContext) { - aRv.Throw(NS_ERROR_NOT_AVAILABLE); return nullptr; } @@ -3040,7 +3043,7 @@ nsComputedDOMStyle::DoGetGridTemplateColumns() nsGridContainerFrame* gridFrame = nsGridContainerFrame::GetGridFrameWithComputedInfo( - mContent->GetPrimaryFrame()); + mElement->GetPrimaryFrame()); if (gridFrame) { info = gridFrame->GetComputedTemplateColumns(); @@ -3056,7 +3059,7 @@ nsComputedDOMStyle::DoGetGridTemplateRows() nsGridContainerFrame* gridFrame = nsGridContainerFrame::GetGridFrameWithComputedInfo( - mContent->GetPrimaryFrame()); + mElement->GetPrimaryFrame()); if (gridFrame) { info = gridFrame->GetComputedTemplateRows(); @@ -5398,7 +5401,7 @@ nsComputedDOMStyle::GetLineHeightCoord(nscoord& aCoord) // lie about font size inflation since we lie about font size (since // the inflation only applies to text) - aCoord = ReflowInput::CalcLineHeight(mContent, mStyleContext, + aCoord = ReflowInput::CalcLineHeight(mElement, mStyleContext, blockHeight, 1.0f); // CalcLineHeight uses font->mFont.size, but we want to use @@ -6828,7 +6831,7 @@ nsComputedDOMStyle::DoGetCustomProperty(const nsAString& aPropertyName) void nsComputedDOMStyle::ParentChainChanged(nsIContent* aContent) { - NS_ASSERTION(mContent == aContent, "didn't we register mContent?"); + NS_ASSERTION(mElement == aContent, "didn't we register mElement?"); NS_ASSERTION(mResolvedStyleContext, "should have only registered an observer when " "mResolvedStyleContext is true"); diff --git a/layout/style/nsComputedDOMStyle.h b/layout/style/nsComputedDOMStyle.h index 433c15619..7ecdf8efa 100644 --- a/layout/style/nsComputedDOMStyle.h +++ b/layout/style/nsComputedDOMStyle.h @@ -76,12 +76,12 @@ public: nsComputedDOMStyle(mozilla::dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, StyleType aStyleType); - virtual nsINode *GetParentObject() override + nsINode *GetParentObject() override { - return mContent; + return reinterpret_cast(mElement.get()); } static already_AddRefed @@ -687,9 +687,9 @@ private: // We don't really have a good immutable representation of "presentation". // Given the way GetComputedStyle is currently used, we should just grab the - // 0th presshell, if any, from the document. + // presshell, if any, from the document. nsWeakPtr mDocumentWeak; - nsCOMPtr mContent; + RefPtr mElement; /** * Strong reference to the style context we access data from. This can be @@ -755,7 +755,7 @@ private: already_AddRefed NS_NewComputedDOMStyle(mozilla::dom::Element* aElement, const nsAString& aPseudoElt, - nsIPresShell* aPresShell, + nsIDocument* aDocument, nsComputedDOMStyle::StyleType aStyleType = nsComputedDOMStyle::eAll); diff --git a/media/webrtc/trunk/webrtc/video_engine/desktop_capture_impl.cc b/media/webrtc/trunk/webrtc/video_engine/desktop_capture_impl.cc index 8039e4a52..f7a0d0711 100644 --- a/media/webrtc/trunk/webrtc/video_engine/desktop_capture_impl.cc +++ b/media/webrtc/trunk/webrtc/video_engine/desktop_capture_impl.cc @@ -82,7 +82,7 @@ int32_t ScreenDeviceInfoImpl::GetDeviceName(uint32_t deviceNumber, const char *deviceName = desktopDisplayDevice.getDeviceName(); len = deviceName ? strlen(deviceName) : 0; - if (len && deviceNameUTF8 && len <= deviceNameUTF8Length) { + if (len && deviceNameUTF8 && len < deviceNameUTF8Length) { memcpy(deviceNameUTF8, deviceName, len); @@ -90,7 +90,7 @@ int32_t ScreenDeviceInfoImpl::GetDeviceName(uint32_t deviceNumber, const char *deviceUniqueId = desktopDisplayDevice.getUniqueIdName(); len = deviceUniqueId ? strlen(deviceUniqueId) : 0; - if (len && deviceUniqueIdUTF8 && len <= deviceUniqueIdUTF8Length) { + if (len && deviceUniqueIdUTF8 && len < deviceUniqueIdUTF8Length) { memcpy(deviceUniqueIdUTF8, deviceUniqueId, len); @@ -177,13 +177,13 @@ int32_t AppDeviceInfoImpl::GetDeviceName(uint32_t deviceNumber, const char *deviceName = desktopApplication.getProcessAppName(); len = deviceName ? strlen(deviceName) : 0; - if (len && len <= deviceNameUTF8Length) { + if (len && len < deviceNameUTF8Length) { memcpy(deviceNameUTF8, deviceName, len); } const char *deviceUniqueId = desktopApplication.getUniqueIdName(); len = deviceUniqueId ? strlen(deviceUniqueId) : 0; - if (len && deviceUniqueIdUTF8 && len <= deviceUniqueIdUTF8Length) { + if (len && deviceUniqueIdUTF8 && len < deviceUniqueIdUTF8Length) { memcpy(deviceUniqueIdUTF8, deviceUniqueId, len); @@ -305,7 +305,7 @@ int32_t WindowDeviceInfoImpl::GetDeviceName(uint32_t deviceNumber, const char *deviceName = desktopDisplayDevice.getDeviceName(); len = deviceName ? strlen(deviceName) : 0; - if (len && deviceNameUTF8 && len <= deviceNameUTF8Length) { + if (len && deviceNameUTF8 && len < deviceNameUTF8Length) { memcpy(deviceNameUTF8, deviceName, len); @@ -313,7 +313,7 @@ int32_t WindowDeviceInfoImpl::GetDeviceName(uint32_t deviceNumber, const char *deviceUniqueId = desktopDisplayDevice.getUniqueIdName(); len = deviceUniqueId ? strlen(deviceUniqueId) : 0; - if (len && deviceUniqueIdUTF8 && len <= deviceUniqueIdUTF8Length) { + if (len && deviceUniqueIdUTF8 && len < deviceUniqueIdUTF8Length) { memcpy(deviceUniqueIdUTF8, deviceUniqueId, len); diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 3b6e84025..804c78dc6 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1697,12 +1697,8 @@ pref("dom.server-events.default-reconnection-time", 5000); // in milliseconds // by the jar channel. pref("network.jar.open-unsafe-types", false); // If true, loading remote JAR files using the jar: protocol will be prevented. -#ifdef RELEASE_OR_BETA -// Keep allowing remote JAR files for IBM iNotes (see bug 1255139) for now. +// See also bug 1255139 if you have issues with Lotus Notes. pref("network.jar.block-remote-files", false); -#else -pref("network.jar.block-remote-files", true); -#endif // This preference, if true, causes all UTF-8 domain names to be normalized to // punycode. The intention is to allow UTF-8 domain names as input, but never @@ -3572,7 +3568,7 @@ pref("intl.imm.vertical_writing.always_assume_not_supported", false); // We cannot retrieve active IME name with IMM32 API if a TIP of TSF is active. // This pref can specify active IME name when Japanese TIP is active. // For example: -// Google Japanese Input: "Google 日本語入力 IMM32 モジュール" +// Google Japanese Input: "Google ?本語入??IMM32 ?ジ?ー?? // ATOK 2011: "ATOK 2011" (similarly, e.g., ATOK 2013 is "ATOK 2013") pref("intl.imm.japanese.assume_active_tip_name_as", ""); diff --git a/netwerk/base/ProxyAutoConfig.cpp b/netwerk/base/ProxyAutoConfig.cpp index 4d7a6c1fd..cdc7481d7 100644 --- a/netwerk/base/ProxyAutoConfig.cpp +++ b/netwerk/base/ProxyAutoConfig.cpp @@ -270,7 +270,8 @@ public: NS_DECL_THREADSAFE_ISUPPORTS PACResolver() - : mStatus(NS_ERROR_FAILURE) + : mStatus(NS_ERROR_FAILURE), + mMutex("PACResolver::Mutex") { } @@ -279,12 +280,17 @@ public: nsIDNSRecord *record, nsresult status) override { - if (mTimer) { - mTimer->Cancel(); - mTimer = nullptr; + nsCOMPtr timer; + { + MutexAutoLock lock(mMutex); + timer.swap(mTimer); + mRequest = nullptr; + } + + if (timer) { + timer->Cancel(); } - mRequest = nullptr; mStatus = status; mResponse = record; return NS_OK; @@ -303,6 +309,7 @@ public: nsCOMPtr mRequest; nsCOMPtr mResponse; nsCOMPtr mTimer; + Mutex mMutex; private: ~PACResolver() {} diff --git a/netwerk/dns/effective_tld_names.dat b/netwerk/dns/effective_tld_names.dat index 565efd225..caa040c5c 100644 --- a/netwerk/dns/effective_tld_names.dat +++ b/netwerk/dns/effective_tld_names.dat @@ -241,7 +241,7 @@ wa.au // 3LDs act.edu.au catholic.edu.au -eq.edu.au +// eq.edu.au - Removed at the request of the Queensland Department of Education nsw.edu.au nt.edu.au qld.edu.au @@ -982,8 +982,19 @@ fi // TODO: Check for updates (expected to be phased out around Q1/2009) aland.fi -// fj : https://en.wikipedia.org/wiki/.fj -*.fj +// fj : http://domains.fj/ +// Submitted by registry 2020-02-11 +fj +ac.fj +biz.fj +com.fj +gov.fj +info.fj +mil.fj +name.fj +net.fj +org.fj +pro.fj // fk : https://en.wikipedia.org/wiki/.fk *.fk @@ -7074,7 +7085,7 @@ org.zw // newGTLDs -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2019-12-11T17:19:54Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2020-02-06T17:49:42Z // This list is auto-generated, don't edit it manually. // aaa : 2015-02-26 American Automobile Association, Inc. aaa @@ -7196,6 +7207,9 @@ alsace // alstom : 2015-07-30 ALSTOM alstom +// amazon : 2019-12-19 Amazon EU S.à r.l. +amazon + // americanexpress : 2015-07-31 American Express Travel Related Services Company, Inc. americanexpress @@ -7373,7 +7387,7 @@ bcn // beats : 2015-05-14 Beats Electronics, LLC beats -// beauty : 2015-12-03 L'Oréal +// beauty : 2015-12-03 XYZ.COM LLC beauty // beer : 2014-01-09 Minds + Machines Group Limited @@ -7829,7 +7843,7 @@ cuisinella // cymru : 2014-05-08 Nominet UK cymru -// cyou : 2015-01-22 Beijing Gamease Age Digital Technology Co., Ltd. +// cyou : 2015-01-22 ShortDot SA cyou // dabur : 2014-02-06 Dabur India Limited @@ -8396,7 +8410,7 @@ guitars // guru : 2013-08-27 Binky Moon, LLC guru -// hair : 2015-12-03 L'Oréal +// hair : 2015-12-03 XYZ.COM LLC hair // hamburg : 2014-02-20 Hamburg Top-Level-Domain GmbH @@ -8795,9 +8809,6 @@ lexus // lgbt : 2014-05-08 Afilias Limited lgbt -// liaison : 2014-10-02 Liaison Technologies, Incorporated -liaison - // lidl : 2014-09-18 Schwarz Domains und Services GmbH & Co. KG lidl @@ -8918,7 +8929,7 @@ maif // maison : 2013-12-05 Binky Moon, LLC maison -// makeup : 2015-01-15 L'Oréal +// makeup : 2015-01-15 XYZ.COM LLC makeup // man : 2014-12-04 MAN SE @@ -9062,9 +9073,6 @@ mov // movie : 2015-02-05 Binky Moon, LLC movie -// movistar : 2014-10-16 Telefónica S.A. -movistar - // msd : 2015-07-23 MSD Registry Holdings, Inc. msd @@ -9764,7 +9772,7 @@ site // ski : 2015-04-09 Afilias Limited ski -// skin : 2015-01-15 L'Oréal +// skin : 2015-01-15 XYZ.COM LLC skin // sky : 2014-06-19 Sky International AG @@ -9959,9 +9967,6 @@ tech // technology : 2013-09-13 Binky Moon, LLC technology -// telefonica : 2014-10-16 Telefónica S.A. -telefonica - // temasek : 2014-08-07 Temasek Holdings (Private) Limited temasek @@ -10403,6 +10408,9 @@ xin // xn--cck2b3b : 2015-02-26 Amazon Registry Services, Inc. ストア +// xn--cckwcxetd : 2019-12-19 Amazon EU S.à r.l. +アマゾン + // xn--cg4bki : 2013-09-27 SAMSUNG SDS CO., LTD 삼성 @@ -10472,6 +10480,9 @@ xin // xn--j1aef : 2015-01-15 VeriSign Sarl ком +// xn--jlq480n2rg : 2019-12-19 Amazon EU S.à r.l. +亚马逊 + // xn--jlq61u9w7b : 2015-01-08 Nokia Corporation 诺基亚 @@ -10532,7 +10543,7 @@ xin // xn--nyqy26a : 2014-11-07 Stable Tone Limited 健康 -// xn--otu796d : 2017-08-06 Internet DotTrademark Organisation Limited +// xn--otu796d : 2017-08-06 Jiang Yu Liang Cai Technology Company Limited 招聘 // xn--p1acf : 2013-12-12 Rusnames Limited @@ -10954,8 +10965,9 @@ certmgr.org xenapponazure.com // Civilized Discourse Construction Kit, Inc. : https://www.discourse.org/ -// Submitted by Rishabh Nambiar +// Submitted by Rishabh Nambiar & Michael Brown discourse.group +discourse.team // ClearVox : http://www.clearvox.nl/ // Submitted by Leon Rowland @@ -11685,6 +11697,7 @@ vologda.su // Fancy Bits, LLC : http://getchannels.com // Submitted by Aman Gupta channelsdvr.net +u.channelsdvr.net // Fastly Inc. : http://www.fastly.com/ // Submitted by Fastly Security @@ -12604,6 +12617,10 @@ pubtls.org // Submitted by Xavier De Cock qualifioapp.com +// QuickBackend: https://www.quickbackend.com +// Submitted by Dani Biro +qbuser.com + // Redstar Consultants : https://www.redstarconsultants.com/ // Submitted by Jons Slemmer instantcloud.cn @@ -12718,6 +12735,10 @@ my-firewall.org myfirewall.org spdns.org +// Senseering GmbH : https://www.senseering.de +// Submitted by Felix Mönckemeyer +senseering.net + // Service Online LLC : http://drs.ua/ // Submitted by Serhii Bulakh biz.ua @@ -12988,6 +13009,14 @@ remotewd.com // Submitted by Yuvi Panda wmflabs.org +// WoltLab GmbH : https://www.woltlab.com +// Submitted by Tim Düsterhus +myforum.community +community-pro.de +diskussionsbereich.de +community-pro.net +meinforum.net + // XenonCloud GbR: https://xenoncloud.net // Submitted by Julian Uphoff half.host diff --git a/netwerk/protocol/ftp/nsFtpConnectionThread.cpp b/netwerk/protocol/ftp/nsFtpConnectionThread.cpp index 5efa7f877..f06899cbd 100644 --- a/netwerk/protocol/ftp/nsFtpConnectionThread.cpp +++ b/netwerk/protocol/ftp/nsFtpConnectionThread.cpp @@ -87,6 +87,7 @@ nsFtpState::nsFtpState() , mAnonymous(true) , mRetryPass(false) , mStorReplyReceived(false) + , mRlist1xxReceived(false) , mInternalError(NS_OK) , mReconnectAndLoginAgain(false) , mCacheConnection(true) @@ -1189,15 +1190,18 @@ nsFtpState::S_list() { FTP_STATE nsFtpState::R_list() { if (mResponseCode/100 == 1) { + mRlist1xxReceived = true; + // OK, time to start reading from the data connection. if (mDataStream && HasPendingCallback()) mDataStream->AsyncWait(this, 0, 0, CallbackTarget()); return FTP_READ_BUF; } - if (mResponseCode/100 == 2) { + if (mResponseCode/100 == 2 && mRlist1xxReceived) { //(DONE) mNextState = FTP_COMPLETE; + mRlist1xxReceived = false; return FTP_COMPLETE; } return FTP_ERROR; diff --git a/netwerk/protocol/ftp/nsFtpConnectionThread.h b/netwerk/protocol/ftp/nsFtpConnectionThread.h index c8177e1b7..85bf8c922 100644 --- a/netwerk/protocol/ftp/nsFtpConnectionThread.h +++ b/netwerk/protocol/ftp/nsFtpConnectionThread.h @@ -185,6 +185,8 @@ private: bool mRetryPass; // retrying the password bool mStorReplyReceived; // FALSE if waiting for STOR // completion status from server + bool mRlist1xxReceived; // TRUE if we have received a LIST + // 1xx response from the server nsresult mInternalError; // represents internal state errors bool mReconnectAndLoginAgain; bool mCacheConnection; diff --git a/parser/html/javasrc/TreeBuilder.java b/parser/html/javasrc/TreeBuilder.java index 3e255d6d1..72abf0545 100644 --- a/parser/html/javasrc/TreeBuilder.java +++ b/parser/html/javasrc/TreeBuilder.java @@ -722,8 +722,6 @@ public abstract class TreeBuilder implements TokenHandler, contextName); } } - contextName = null; - contextNode = null; } else { mode = INITIAL; // If we are viewing XML source, put a foreign element permanently @@ -1629,8 +1627,6 @@ public abstract class TreeBuilder implements TokenHandler, * @see nu.validator.htmlparser.common.TokenHandler#endTokenization() */ public final void endTokenization() throws SAXException { - formPointer = null; - headPointer = null; deepTreeSurrogateParent = null; templateModeStack = null; if (stack != null) { diff --git a/parser/html/nsHtml5TreeBuilder.cpp b/parser/html/nsHtml5TreeBuilder.cpp index 5fa00f347..a273d00ea 100644 --- a/parser/html/nsHtml5TreeBuilder.cpp +++ b/parser/html/nsHtml5TreeBuilder.cpp @@ -143,8 +143,6 @@ nsHtml5TreeBuilder::startTokenization(nsHtml5Tokenizer* self) tokenizer->setState(NS_HTML5TOKENIZER_DATA); } } - contextName = nullptr; - contextNode = nullptr; } else { mode = NS_HTML5TREE_BUILDER_INITIAL; if (tokenizer->isViewingXmlSource()) { @@ -583,6 +581,8 @@ nsHtml5TreeBuilder::endTokenization() { formPointer = nullptr; headPointer = nullptr; + contextName = nullptr; + contextNode = nullptr; deepTreeSurrogateParent = nullptr; templateModeStack = nullptr; if (stack) { diff --git a/security/manager/ssl/StaticHPKPins.h b/security/manager/ssl/StaticHPKPins.h index 091f5af6d..bedb3d6d4 100644 --- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -686,7 +686,6 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "chrome-devtools-frontend.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "chrome.com", true, false, false, -1, &kPinset_google_root_pems }, { "chrome.google.com", true, false, false, -1, &kPinset_google_root_pems }, - { "chromereporting-pa.googleapis.com", true, false, false, -1, &kPinset_google_root_pems }, { "chromiumbugs.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "chromiumcodereview.appspot.com", true, false, false, -1, &kPinset_google_root_pems }, { "cl.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, @@ -1083,7 +1082,6 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "torproject.org", false, false, false, -1, &kPinset_tor }, { "touch.facebook.com", true, false, false, -1, &kPinset_facebook }, { "tr.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, - { "translate.googleapis.com", true, false, false, -1, &kPinset_google_root_pems }, { "tv.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "tw.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "twimg.com", true, false, false, -1, &kPinset_twitterCDN }, @@ -1133,8 +1131,8 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = { { "zh.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, }; -// Pinning Preload List Length = 488; +// Pinning Preload List Length = 486; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1585251655362000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1590413552686000); diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc index e0353b0c3..24f9a84bf 100644 --- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -10,7 +10,7 @@ /* imported from ESR68 by TenFourFox conversion script */ #include -const PRTime gPreloadListExpirationTime = INT64_C(1587670826479000); +const PRTime gPreloadListExpirationTime = INT64_C(1592832724562000); class nsSTSPreload { @@ -26,6 +26,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0-24.net", true }, { "00004048.com", true }, { "000321365.com", true }, + { "0007552.com", false }, { "000a1.com", true }, { "000a2.com", true }, { "000a3.com", true }, @@ -35,27 +36,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "000a8.com", true }, { "000a9.com", true }, { "000b58.com", true }, - { "000btt.net", true }, { "000x2.com", true }, { "000x3.com", true }, { "00100010.net", true }, { "0010100.net", true }, - { "0011d88.com", true }, { "00120012.net", true }, { "00130013.net", true }, - { "0013d88.com", true }, { "00140014.net", true }, - { "0014d88.com", true }, { "00150015.net", true }, { "0015d88.com", true }, { "00160016.net", true }, { "00168365.com", true }, { "0016d88.com", true }, + { "0017552.com", false }, { "0017d88.com", true }, { "00180018.net", true }, { "0018d88.com", true }, { "00190019.net", true }, - { "0019d88.com", true }, { "001yapan.com", true }, { "0020d88.com", true }, { "00220022.net", true }, @@ -63,39 +60,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "00228.org", true }, { "00228555.com", true }, { "00228999.com", true }, - { "00228aa.com", true }, - { "00228b.com", true }, - { "00228bb.com", true }, - { "00228c.com", true }, - { "00228cc.com", true }, - { "00228d.com", true }, - { "00228dd.com", true }, - { "00228e.com", true }, - { "00228ee.com", true }, - { "00228f.com", true }, - { "00228g.com", true }, - { "00228gg.com", true }, - { "00228h.com", true }, - { "00228hh.com", true }, - { "00228jj.com", true }, - { "00228k.com", true }, - { "00228kk.com", true }, - { "00228m.com", true }, - { "00228mm.com", true }, - { "00228nn.com", true }, - { "00228p.com", true }, - { "00228pp.com", true }, - { "00228q.com", true }, - { "00228r.com", true }, - { "00228rr.com", true }, - { "00228s.com", true }, - { "00228ss.com", true }, - { "00228t.com", true }, - { "00228tt.com", true }, - { "00228u.com", true }, - { "00228v.com", true }, - { "00228vip1.com", true }, - { "00228vip3.com", true }, { "00228vip5.com", true }, { "00228vip6.com", true }, { "00228vip8.com", true }, @@ -112,25 +76,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "002d88.com", true }, { "002k8.com", true }, { "00365t.com", true }, + { "0037552.com", false }, { "003971.com", true }, { "003d88.com", true }, - { "003zl.com", true }, { "00440044.net", true }, + { "0047552.com", false }, { "004d88.com", true }, { "00550055.net", true }, + { "0057552.com", false }, { "005d88.com", true }, + { "0064427.com", true }, { "00660066.net", true }, + { "0067552.com", false }, { "006d88.com", true }, { "00770077.net", true }, + { "0077552.com", false }, { "007d88.com", true }, { "007kf.com", true }, { "008207.com", true }, { "008251.com", true }, { "008253.com", true }, { "008271.com", true }, + { "0087552.com", false }, { "00880088.net", true }, { "008d88.com", true }, { "009597.com", true }, + { "0097552.com", false }, { "00990099.net", false }, { "009d88.com", true }, { "009zl.com", true }, @@ -139,6 +110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "00dani.me", true }, { "00f.net", true }, { "00wbf.com", true }, + { "01.org", true }, { "01011970.xyz", true }, { "010203.ru", true }, { "010kb.com", true }, @@ -146,15 +118,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "010ks.net", true }, { "01100010011001010111001101110100.com", true }, { "01110000011100110111001001100111.com", true }, + { "0117552.com", false }, { "011ks.com", true }, - { "011zl.com", true }, { "01234048.com", true }, { "012345678365.com", true }, { "0123456789365.com", true }, - { "012zl.com", true }, + { "0127552.com", false }, { "01365t.com", true }, - { "0138365.com", true }, - { "0139365.com", true }, + { "0137552.com", false }, + { "0138365.com", false }, + { "0139365.com", false }, { "013zl.com", true }, { "015kb.com", true }, { "015ks.com", true }, @@ -176,7 +149,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "019ks.com", true }, { "019zl.com", true }, { "01smh.com", true }, - { "01tools.com", true }, { "020ks.com", true }, { "020ks.net", true }, { "021002.com", true }, @@ -251,6 +223,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0377z6.com", true }, { "038456.com", true }, { "038663.com", true }, + { "038899.com", true }, { "0391315.com", true }, { "0393gg.com", true }, { "0393hh.com", true }, @@ -461,19 +434,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0777z6.com", true }, { "077810.com", true }, { "077863.com", true }, + { "077969.com", true }, { "0779z6.com", true }, { "077k8.com", true }, { "078663.com", true }, { "0788yh.com", true }, { "078kb.com", true }, { "0792112.com", true }, - { "079606.com", true }, - { "079607.com", true }, { "0798rcw.com", true }, { "0799ks.com", true }, { "07am8.com", true }, { "07d88.com", true }, - { "07d88.net", true }, { "0809yh.com", true }, { "081115.com", true }, { "081752.com", true }, @@ -585,6 +556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "0o0.edu.pl", true }, { "0paste.com", true }, { "0q0.eu", true }, + { "0verl0rd.ir", true }, { "0vi.org", true }, { "0vo.moe", true }, { "0wx.cat", true }, @@ -631,7 +603,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1000minds.com", true }, { "1000serien.com", true }, { "1000wordsevents.com", true }, - { "1001.best", true }, { "1001carats.fr", true }, { "1001firms.com", true }, { "1001kartini.com", true }, @@ -639,6 +610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1001mv.com", true }, { "1003365.com", true }, { "1004233.com", true }, + { "1007337.com", true }, { "10086.ru", true }, { "100k.eu", true }, { "100kredite.de", true }, @@ -646,7 +618,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "100mani.it", true }, { "100onrainkajino.com", true }, { "100pounds.co.uk", true }, - { "100pudov.tk", true }, { "100up.de", true }, { "100up.org", true }, { "100visits.tk", true }, @@ -699,6 +670,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "10gbit.ovh", true }, { "10hz.de", true }, { "10k.ag", true }, + { "10milliondollarpage.com", true }, { "10og.de", true }, { "10ppm.com", true }, { "10x.ooo", true }, @@ -708,7 +680,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "110110110.net", true }, { "11018vip.com", true }, { "11018xpj.com", true }, - { "110320.com", true }, { "110692.com", true }, { "110k8.com", true }, { "111.one", true }, @@ -726,10 +697,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1117035.com", true }, { "1117z6.com", true }, { "1119365.com", true }, - { "1119968.com", true }, { "1119z6.com", true }, { "111b58.com", true }, - { "111plus.design", true }, + { "111ttt.com", true }, { "111z6.com", true }, { "111zlong.com", true }, { "1120301.com", true }, @@ -779,6 +749,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1120350.com", true }, { "112112112.net", true }, { "11221jz.com", true }, + { "11223837.com", true }, { "1122z6.com", true }, { "1126p.com", true }, { "112app.nl", true }, @@ -788,6 +759,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1130p.com", true }, { "113113113.net", true }, { "11321365.com", true }, + { "11333837.com", true }, { "11335835.com", true }, { "1133z6.com", true }, { "11365t.com", true }, @@ -795,22 +767,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "113kb.com", true }, { "113ks.com", true }, { "113z6.com", true }, + { "11443837.com", true }, { "11445835.com", true }, { "114514ss.com", true }, + { "11553837.com", true }, { "11555835.com", true }, { "115lc.com", true }, { "115z6.com", true }, + { "11663837.com", true }, { "11665835.com", true }, { "1166z6.com", true }, { "116ks.com", true }, { "116lc.com", true }, { "116vip.net", true }, { "116z6.com", true }, + { "11773837.com", true }, { "11775835.com", true }, { "1177z6.com", true }, { "117lc.com", true }, { "117z6.com", true }, { "118118118.net", true }, + { "11883837.com", true }, { "11885835.com", true }, { "1188bet.vip", true }, { "1188z6.com", true }, @@ -818,11 +795,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "118vip.net", true }, { "118z6.com", true }, { "1190america.tk", true }, + { "11993837.com", true }, { "11995835.com", true }, { "1199bet.vip", true }, { "1199z6.com", true }, { "119lc.com", true }, { "119z6.com", true }, + { "11ag8.com", true }, { "11assets.com", true }, { "11b58.com", true }, { "11dzon.com", true }, @@ -832,6 +811,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "11thstreetcoffee.com", true }, { "11urss.com", true }, { "120323.com", true }, + { "120percent-inc.com", true }, { "1212873467.rsc.cdn77.org", true }, { "1212z6.com", true }, { "1218641649.rsc.cdn77.org", true }, @@ -933,34 +913,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "123nutricion.es", true }, { "123opstalverzekeringen.nl", true }, { "123plons.nl", true }, + { "123pornmovies.club", true }, { "123roulement.be", true }, { "123roulement.com", true }, { "123seo.ml", true }, { "123termpapers.com", true }, + { "123viajando.com", true }, { "123writings.com", true }, { "123z6.com", true }, { "124133.com", true }, + { "1244546066.rsc.cdn77.org", true }, { "124633.com", true }, + { "1248.ink", true }, { "125m125.de", true }, - { "126772.com", true }, { "127661.com", true }, - { "127662.com", true }, - { "127663.com", true }, - { "127665.com", true }, { "127ks.com", true }, { "1288366.com", true }, { "1288fc.com", true }, + { "12ag8.com", true }, { "12autoankauf-berlin.de", true }, { "12l.nl", true }, { "12thmanrising.com", true }, { "12train.com", true }, { "12vpn.net", true }, - { "12zw.com", true }, { "13-th.com", true }, { "130.ua", true }, - { "130032.com", true }, - { "130212.com", true }, - { "130232.com", true }, { "130kb.com", true }, { "130ks.com", true }, { "130ks.net", true }, @@ -987,17 +964,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "131z6.com", true }, { "13214.cc", true }, { "132301.com", true }, - { "132302.com", true }, { "132k66.ag", true }, { "132kb.com", true }, { "132ks.com", true }, + { "132ks.net", true }, { "132kv.ch", true }, { "132z6.com", true }, { "13318522.com", true }, { "133294.com", true }, { "1333z6.com", true }, { "133492.com", true }, - { "1337.vg", true }, + { "133769.xyz", true }, { "133846.xyz", true }, { "133ks.com", true }, { "133ks.net", true }, @@ -1013,7 +990,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "136774.com", true }, { "136814.com", true }, { "136824.com", true }, - { "136924.com", true }, { "136k66.ag", true }, { "136k66.com", true }, { "136ks.com", true }, @@ -1025,11 +1001,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "137z6.com", true }, { "13826145000.com", true }, { "138k66.ag", true }, + { "138ks.net", true }, { "138z6.com", true }, { "1391kj.com", true }, { "1395kj.com", true }, { "139k66.ag", true }, { "139z6.com", true }, + { "13ag8.com", true }, { "13th-dover.uk", true }, { "141145.com", true }, { "14159.gb.net", true }, @@ -1037,7 +1015,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "143533.com", true }, { "143633.com", true }, { "143733.com", true }, - { "143918.com", true }, { "143933.com", true }, { "1453914078.rsc.cdn77.org", true }, { "145433.com", true }, @@ -1069,6 +1046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "14x3.de", true }, { "15-10.com", true }, { "150ks.com", true }, + { "150ks.net", true }, { "1511774230.rsc.cdn77.org", true }, { "1517598.com", true }, { "1517668.com", true }, @@ -1125,8 +1103,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1527web.com", true }, { "152k66.ag", true }, { "152k66.com", true }, + { "152ks.com", true }, { "152z6.com", true }, { "153kb.com", true }, + { "153ks.com", true }, { "153ks.net", true }, { "153z.com", true }, { "153z6.com", true }, @@ -1266,6 +1246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "168zz.cc", true }, { "1698k.com", true }, { "169xpj.com", true }, + { "16ag6.com", true }, { "16agks.com", true }, { "16packets.com", true }, { "16qw.tk", true }, @@ -1274,6 +1255,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "170376.com", true }, { "170386.com", true }, { "170686.com", true }, + { "170kb.com", true }, { "170ks.com", true }, { "171083.com", true }, { "17187q.com", true }, @@ -1325,7 +1307,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1720348.com", true }, { "1720349.com", true }, { "1720350.com", true }, - { "173940.com", true }, + { "173940.com", false }, { "173jsh.com", true }, { "173ks.com", true }, { "174.net.nz", true }, @@ -1338,7 +1320,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "176ks.net", true }, { "177603.com", true }, { "177ks.net", true }, - { "178btt.com", true }, { "178jsh.com", true }, { "178kb.com", true }, { "178ks.net", true }, @@ -1429,6 +1410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "185zlong.com", true }, { "186kb.com", true }, { "186ks.com", true }, + { "186ks.net", true }, { "186z6.com", true }, { "1876996.com", true }, { "187kb.com", true }, @@ -1439,12 +1421,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "188da.com", true }, { "188kb.com", true }, { "188kb.net", true }, + { "188ks.net", true }, { "188lilai.com", true }, { "188wei.com", true }, { "188z6.com", true }, { "188zlong.com", true }, { "189dv.com", true }, { "189fc.com", true }, + { "189ks.net", true }, { "189z6.com", true }, { "18agks.com", true }, { "18f.gov", true }, @@ -1462,6 +1446,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1921958389.rsc.cdn77.org", true }, { "192433.com", true }, { "192ks.com", true }, + { "1939365.com", true }, { "1941-45.ru", true }, { "1972969867.rsc.cdn77.org", true }, { "197jjj.com", true }, @@ -1496,7 +1481,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "19990ll.com", true }, { "19990m.com", true }, { "19990mm.com", true }, - { "19990nn.com", true }, + { "19990nn.com", false }, { "19990o.com", true }, { "19990oo.com", true }, { "19990p.com", true }, @@ -1525,22 +1510,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1a-diamantscheiben.de", true }, { "1a-werkstattgeraete.de", true }, { "1ab-machinery.com", true }, + { "1abcicka.ru", true }, { "1ag777.com", true }, { "1ag88.com", true }, { "1android.de", true }, - { "1b1.pl", true }, { "1baks.tk", true }, + { "1bet86.com", true }, { "1blazing.cf", true }, { "1c-power.ru", true }, { "1cedibet.com", true }, { "1chan.pl", true }, + { "1codex.online", true }, { "1cool.vip", true }, { "1cover.co.nz", true }, { "1cover.com.au", true }, { "1cprosto.tk", true }, + { "1cswd.com", true }, { "1datatec.com", true }, { "1day1ac.red", true }, { "1e9.nl", true }, + { "1eanda.com", true }, { "1er-secours.ch", true }, { "1europlan.nl", true }, { "1f123.net", true }, @@ -1562,6 +1551,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "1lord1faith.com", true }, { "1m.duckdns.org", true }, { "1malaysian.tk", true }, + { "1me.cz", true }, { "1minutoomenos.com", true }, { "1montre.fr", true }, { "1morebounce.co.uk", true }, @@ -1616,7 +1606,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2000meter.no", true }, { "2001y.me", true }, { "200201.xyz", true }, - { "20071019780415.com", false }, + { "2002138.com", true }, + { "20071019780415.com", true }, { "200fcw.com", true }, { "200ks.com", true }, { "2012.ovh", true }, @@ -1688,15 +1679,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "20at.com", true }, { "20denier.com", true }, { "210k8.com", true }, + { "2132-app.com", true }, + { "2132-vip.com", true }, + { "2132app.com", true }, + { "2132hb.com", true }, + { "2132hd.com", true }, + { "2132kf.com", true }, + { "2132vip.com", true }, + { "2138-vip.com", true }, + { "2138kf.com", true }, + { "2138vip.com", true }, { "213k8.com", true }, - { "2155hg.com", true }, + { "2155hg.com", false }, { "21566365.com", false }, { "215dy.net", true }, { "216vv.com", true }, { "217778.com", true }, { "218btt.com", true }, { "219k8.com", true }, - { "21sthammersmith.org.uk", true }, { "21stnc.us", true }, { "21x9.org", true }, { "2206p.com", true }, @@ -1704,14 +1704,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "22168365.com", true }, { "222001.com", true }, { "222111.cc", true }, + { "222138vip.com", true }, { "2222365t.com", true }, { "2222k8.com", true }, { "2222k8.net", true }, { "222321365.com", true }, - { "22245j.com", true }, - { "22256j.com", true }, + { "22245j.com", false }, + { "22256j.com", false }, { "2226321.com", true }, { "2227035.com", true }, + { "2227552.com", false }, { "222b58.com", true }, { "222k8.com", true }, { "222k8.net", true }, @@ -1721,6 +1723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "225485.com", true }, { "2255motion.com", true }, { "2264707.ru", true }, + { "2277bet.com", true }, { "228668.com", true }, { "22884.org", true }, { "2288422.com", true }, @@ -1733,7 +1736,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "22884f.com", true }, { "22884g.com", true }, { "22884h.com", true }, - { "2288bet.vip", true }, + { "2288bet.vip", false }, { "228wns.com", true }, { "22918.net", true }, { "22994.org", true }, @@ -1744,6 +1747,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2299466.com", true }, { "2299477.com", true }, { "2299488.com", true }, + { "22ag6.com", true }, { "22b58.com", true }, { "22d.io", true }, { "22delta.com", true }, @@ -1781,11 +1785,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "233yes.com", true }, { "2340365.com", false }, { "23436565.com", true }, + { "234567365.com", true }, + { "2345678365.com", true }, + { "23456789365.com", true }, { "2346321.com", true }, { "234666365.com", true }, { "234lc.com", true }, + { "235551.com", true }, { "235u.net", true }, { "23732.com", true }, + { "2378.com", true }, { "238212.com", true }, { "23ks.app", true }, { "23lhb.com", true }, @@ -1794,7 +1803,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "240vv.com", true }, { "241552.com", false }, { "242552.com", false }, - { "242712.com", true }, { "245meadowvistaway.com", false }, { "246060.ru", true }, { "246773.com", true }, @@ -1802,6 +1810,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "247a.co.uk", true }, { "247healthshop.com", true }, { "247medplan.com", true }, + { "247naijabuzz.com", true }, { "2484811.com", true }, { "24848168.com", true }, { "24848188.com", true }, @@ -1843,6 +1852,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "249722.com", true }, { "249cq.com", true }, { "24dian30.com", true }, + { "24gazette.ga", true }, { "24hour-locksmithsanantonio.com", true }, { "24hourcyclist.co.uk", true }, { "24hourelectricalservices.co.uk", true }, @@ -1919,6 +1929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "281180.de", true }, { "281ks.com", true }, { "282ks.com", true }, + { "2831365.com", true }, { "28365cn-365.com", true }, { "284365.com", true }, { "285551.com", true }, @@ -1951,6 +1962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2b3b.com", true }, { "2bas.nl", true }, { "2bcompany.ch", false }, + { "2bet86.com", true }, { "2bis10.de", true }, { "2bitout.com", true }, { "2blazing.cf", true }, @@ -1965,11 +1977,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2chan.eu", true }, { "2chan.jp", true }, { "2cv-fahrer.de", true }, - { "2dua.com", true }, { "2earn-online.com", false }, { "2evip.com", true }, { "2fm.ie", true }, { "2fm.radio", true }, + { "2fr3.com", true }, { "2fraud.pro", true }, { "2g1s.net", true }, { "2gen.com", true }, @@ -2001,22 +2013,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "2rsc.net", true }, { "2stv.net", false }, { "2th.me", true }, + { "2travel8.world", true }, { "2tuu.com", true }, { "2ulcceria.nl", true }, { "2wheel.com", false }, + { "2x.nu", true }, { "2y.fi", true }, { "2y3x.com", true }, { "3-dot-careapp1-146314.appspot.com", true }, { "30019.com", true }, { "3004233.com", true }, { "3006789.com", true }, + { "3007337.com", true }, { "300m.com", false }, { "301.technology", true }, { "301355.com", true }, { "30160365.com", true }, { "301ks.com", true }, { "302422.com", true }, - { "303112.com", true }, { "303312.com", true }, { "3033888.com", true }, { "303422.com", true }, @@ -2035,7 +2049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "304622.com", true }, { "3056999.com", true }, { "308wns.com", true }, - { "308xpj.com", true }, + { "308xpj.com", false }, { "309422.com", true }, { "30bet365.com", true }, { "30hzcollective.com", true }, @@ -2043,7 +2057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "311186.com", true }, { "311191.com", true }, { "313422.com", true }, - { "313xpj.com", true }, + { "313xpj.com", false }, { "314022.com", true }, { "314122.com", true }, { "314322.com", true }, @@ -2053,7 +2067,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "314633.com", true }, { "314922.com", true }, { "315422.com", true }, - { "315xpj.com", true }, + { "315xpj.com", false }, { "316433.com", true }, { "3165365.com", true }, { "3175365.com", true }, @@ -2128,6 +2142,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "324533.com", true }, { "324922.com", true }, { "325422.com", true }, + { "325552.com", true }, { "326422.com", true }, { "326433.com", true }, { "3265623.com", true }, @@ -2146,6 +2161,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "33123777.com", true }, { "33123888.com", true }, { "33123999.com", true }, + { "33138app.com", true }, + { "33138vip.com", true }, { "33168365.com", true }, { "3322z6.com", true }, { "33321365.com", true }, @@ -2163,7 +2180,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "333b58.com", true }, { "333wei.com", true }, { "333zlong.com", true }, - { "33445.com", true }, { "33445111.com", true }, { "33445222.com", true }, { "33445333.com", true }, @@ -2217,6 +2233,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "343722.com", true }, { "343922.com", true }, { "34536565.com", true }, + { "345678365.com", true }, + { "3456789365.com", true }, { "345lc.com", true }, { "346022.com", true }, { "346033.com", true }, @@ -2280,7 +2298,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "35898y.com", true }, { "35898z.com", true }, { "35d88.com", true }, - { "360-staffing.com", true }, { "360365.com", true }, { "360hosting.com.au", true }, { "360live.fr", true }, @@ -2292,10 +2309,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "361171.com", true }, { "361173.com", true }, { "361183.com", true }, + { "361365.cc", true }, { "3615jacky.fr", true }, { "362590.com", true }, + { "363331.com", true }, { "364553.com", true }, { "365.asia", true }, + { "365.systems", true }, { "3650607.com", true }, { "36506088.com", true }, { "36506099.com", true }, @@ -2304,6 +2324,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3651146.com", true }, { "3651147.com", true }, { "3651149.com", true }, + { "3651201.com", true }, + { "3651202.com", true }, + { "3651203.com", true }, + { "3651204.com", true }, + { "3651205.com", true }, + { "365123456.com", false }, { "3651267.com", false }, { "3652367.com", false }, { "3652389.com", false }, @@ -2328,12 +2354,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "36533t.com", true }, { "36533u.com", true }, { "36533v.com", true }, + { "365361.cc", true }, { "365365.com", true }, + { "3653650000.com", false }, + { "3653651111.com", false }, { "36536533.vip", false }, - { "36536555.vip", true }, + { "3653653333.com", false }, + { "3653654444.com", false }, + { "36536555.vip", false }, { "36536566.vip", false }, { "36536588.vip", false }, { "36536599.vip", false }, + { "3655053.com", true }, { "36554ll.com", true }, { "36554mm.com", true }, { "3655612.com", false }, @@ -2427,18 +2459,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "366z6.com", true }, { "367553.com", true }, { "367556.com", true }, + { "36ag8.com", true }, + { "36bobines.com", true }, { "370422.com", true }, { "371422.com", true }, { "371687.com", true }, { "371cloud.com", false }, - { "373.moe", true }, { "3733366.xyz", true }, { "373422.com", true }, { "373816.com", true }, { "374933.com", true }, { "375422.com", true }, { "375ks.com", true }, - { "376208.com", true }, { "376557.com", true }, { "377625.com", true }, { "377632.com", true }, @@ -2451,15 +2483,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "378902.com", true }, { "378ks.com", true }, { "379700.com", true }, - { "3798.com", true }, - { "3798.vip", true }, { "37987.com", true }, { "37987a.com", true }, { "37987c.com", true }, { "37987d.com", true }, { "37987e.com", true }, { "37987f.com", true }, - { "37987g.com", false }, + { "37987g.com", true }, + { "37zk.com", true }, { "37zw.com", true }, { "3800611.com", true }, { "380111000.com", true }, @@ -2483,8 +2514,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3808833.com", true }, { "3809955.com", true }, { "380wns.com", true }, + { "381115.com", true }, { "38138938.com", true }, { "382225.com", true }, + { "3837a.com", true }, + { "3837app.com", true }, + { "3837app3837app.com", true }, + { "3837app3837app3837app.com", true }, { "3837b.com", true }, { "3837c.com", true }, { "3837d.com", true }, @@ -2520,6 +2556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "38irkutsk.tk", true }, { "390422.com", true }, { "390933.com", true }, + { "391119.com", true }, { "391231.com", true }, { "392365.com", true }, { "392422.com", true }, @@ -2639,25 +2676,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "39sihu.com", false }, { "39w66.com", true }, { "39w66.net", true }, - { "3aandl.com", true }, { "3aexpert.com.ua", true }, { "3ags.de", true }, { "3amtoolbox.se", true }, { "3ank.in", false }, { "3b.pm", true }, + { "3bet86.com", true }, { "3bigking.com", true }, { "3blazing.cf", true }, { "3c-d.de", true }, { "3candy.com", true }, + { "3cbalance.pl", true }, { "3countiescastlehire.co.uk", true }, { "3cs.ch", true }, { "3d-animator.net", true }, { "3d-fotoservice.de", true }, + { "3d-glow.de", true }, { "3d1t0r4.com", false }, { "3danimation.tk", true }, { "3dcollective.es", true }, { "3de5.nl", true }, { "3deeplearner.com", true }, + { "3deni.com", true }, { "3dgep.com", true }, { "3djuegos.com", true }, { "3dlab.team", true }, @@ -2672,6 +2712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3dreactions.com", true }, { "3dsupplies.be", true }, { "3dtootmine.ee", true }, + { "3elife.vn", true }, { "3gdh.vip", true }, { "3haeuserprojekt.org", true }, { "3haueserprojekt.org", true }, @@ -2687,9 +2728,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "3lot.ru", true }, { "3mbo.de", true }, { "3n5b.com", true }, + { "3niu1.com", true }, { "3niu6.com", true }, - { "3niuurl.com", false }, - { "3oneseven.com", true }, + { "3niusurl.com", true }, + { "3niuurl.com", true }, { "3os.ooo", true }, { "3pestki.org", true }, { "3phase.pw", true }, @@ -2723,6 +2765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4-1-where.com", true }, { "4-it.de", true }, { "4000milestare.com", true }, + { "4000sf.com", true }, { "4001365.com", true }, { "4002365.com", true }, { "4003365.com", true }, @@ -2762,6 +2805,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4025x.com", true }, { "4025y.com", true }, { "403.ch", true }, + { "403page.com", true }, { "404.guide", true }, { "4048.co", true }, { "40481234.com", true }, @@ -2826,6 +2870,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "414553.com", true }, { "4151365.com", true }, { "416365.com", true }, + { "41844.de", false }, { "418663.com", true }, { "41studio.com", true }, { "41where.com", true }, @@ -2834,6 +2879,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "420java.com", true }, { "420screen.com", true }, { "420weedcenter.com", true }, + { "4233065.com", true }, + { "4233068.com", true }, + { "4233069.com", true }, { "4233070.com", true }, { "4233330.com", true }, { "4233331.com", true }, @@ -2846,6 +2894,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4233339.com", true }, { "4251365.com", true }, { "426773.com", true }, + { "427138.com", true }, { "427552.com", true }, { "428northampton.com", true }, { "42ch.com", true }, @@ -2856,7 +2905,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "432666365.com", true }, { "432web.net", true }, { "4345.me", true }, + { "4351365.com", true }, { "436773.com", true }, + { "437138.com", true }, { "437844.com", true }, { "438663.com", true }, { "439050.com", true }, @@ -2872,6 +2923,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "443887.com", true }, { "444321365.com", true }, { "4447035.com", true }, + { "4447552.com", false }, { "444887.com", true }, { "444b58.com", true }, { "4455bet.vip", true }, @@ -2881,10 +2933,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "451.ooo", true }, { "451365.com", true }, { "45365t.com", true }, + { "4551365.com", true }, { "455327.com", true }, { "455328.com", true }, { "4553s.com", true }, { "4553vip.com", true }, + { "4562030.com", true }, + { "4562040.com", true }, + { "4562050.com", true }, { "45636565.com", true }, { "456365t.com", true }, { "4566321.com", true }, @@ -2899,7 +2955,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "463855.com", true }, { "4661049.com", true }, { "46d88.com", true }, - { "46d88.net", true }, { "46fa.com", true }, { "47.rs", true }, { "4706666.com", true }, @@ -2913,11 +2968,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4776070.com", true }, { "4786666.com", true }, { "47d88.com", true }, - { "47d88.net", true }, { "47essays.com", true }, { "47tech.com", true }, { "48365365cn.com", true }, { "48365cn-365.com", true }, + { "486138.com", true }, { "486773.com", true }, { "487511.com", true }, { "487522.com", true }, @@ -2939,11 +2994,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "49dollaridahoregisteredagent.com", true }, { "4baby.com.br", true }, { "4best.tk", true }, + { "4bet86.com", true }, { "4c-haircare.com", true }, + { "4cavaleiros.com.br", true }, { "4d2.xyz", true }, { "4dbygg.se", true }, { "4dillusion.tk", true }, { "4dpredict.com", true }, + { "4dropping.com", true }, { "4everproxy.com", true }, { "4evip.com", true }, { "4eyes.ch", true }, @@ -2959,16 +3017,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4kpi.eu", true }, { "4kprojektory.cz", true }, { "4loc.us", true }, + { "4mama.ua", true }, { "4mm.org", true }, { "4monar.com", true }, { "4o5.xyz", true }, { "4obgyne.com", true }, + { "4pillarsit.com", true }, { "4played.de", true }, { "4played.vip", true }, { "4plebs.moe", true }, { "4project.co.il", true }, { "4share.tv", true }, { "4sics.se", true }, + { "4smart.cz", true }, { "4smart.house", true }, { "4tgw34.tk", true }, { "4th-ave-studio.com", true }, @@ -2977,6 +3038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "4u2ore.net", true }, { "4vector.com", true }, { "4vf.de", true }, + { "4vio.com", true }, { "4web-hosting.com", true }, { "4wrd.cc", true }, { "4x.fi", true }, @@ -3033,8 +3095,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "50lakeshore.com", true }, { "50ma.xyz", true }, { "50milli.com", true }, - { "50north.de", true }, { "50plusnet.nl", true }, + { "50ten40.com", true }, + { "5132app.com", true }, + { "5132hb.com", true }, + { "5132hd.com", true }, + { "5132vip.com", true }, { "513651.com", true }, { "51365a.com", true }, { "51365aa.com", true }, @@ -3061,6 +3127,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "517vpn.cn", true }, { "518.com.tw", true }, { "51877.net", true }, + { "5188900.com", true }, { "518d88.com", true }, { "518k8.com", true }, { "518wns.com", true }, @@ -3114,6 +3181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5197zz.co", true }, { "51acg.eu.org", true }, { "51aifuli.com", true }, + { "51cls.tw", true }, { "51club8.com", true }, { "51guaq.com", true }, { "51tiaojiu.com", true }, @@ -3146,22 +3214,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "52051.com", true }, { "52051a.com", true }, { "5205365.com", false }, - { "52062a.com", true }, { "52062b.com", true }, - { "52062g.com", true }, - { "52062i.com", true }, + { "52062d.com", true }, + { "52062e.com", true }, { "52062j.com", true }, - { "52062l.com", true }, - { "52062o.com", true }, + { "52062m.com", true }, { "52062p.com", true }, { "52062q.com", true }, - { "52062t.com", true }, - { "52062w.com", true }, + { "52062v.com", true }, { "52062y.com", true }, - { "52062z.com", true }, { "5206365.com", false }, { "5209365.com", false }, - { "520xpjxpj.com", true }, + { "520xpjxpj.com", false }, { "5214889.com", true }, { "5219.ml", true }, { "521jsh.com", true }, @@ -3202,10 +3266,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "53ningen.com", true }, { "540922.com", true }, { "541022.com", true }, + { "5414app.com", true }, + { "5414hd.com", true }, + { "5414vip.com", true }, { "541622.com", true }, { "541651.com", true }, { "541722.com", true }, { "541922.com", true }, + { "5424app.com", true }, + { "5424hd.com", true }, + { "5424vip.com", true }, + { "5438xs.com", true }, + { "5454app.com", true }, + { "5454hd.com", true }, + { "5454pk.com", true }, { "545755.com", true }, { "545922.com", true }, { "546802.com", true }, @@ -3227,6 +3301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5555k8.net", true }, { "5556321.com", true }, { "5557035.com", true }, + { "5557552.com", false }, { "555b58.com", true }, { "555btt.com", true }, { "555k8.com", true }, @@ -3247,17 +3322,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "559z6.com", true }, { "55b58.com", true }, { "55d88.com", true }, + { "55k66.vip", true }, { "55ks.app", true }, { "55lc8.com", true }, - { "56011r.com", true }, - { "56011s.com", true }, - { "56011t.com", true }, - { "56011u.com", true }, - { "56011v.com", true }, - { "56011w.com", true }, - { "56011x.com", true }, - { "56011y.com", true }, - { "56011z.com", true }, { "56365t.com", true }, { "565kb.com", true }, { "5663.cc", true }, @@ -3270,6 +3337,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "56736565.com", true }, { "5676321.com", true }, { "567666365.com", true }, + { "567667.cc", true }, { "56784048.com", true }, { "56877.com", true }, { "572kb.com", true }, @@ -3292,7 +3360,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5796.org", true }, { "5797.org", true }, { "57wilkie.net", true }, - { "581018.com", true }, { "581kb.com", true }, { "583422.com", true }, { "585380.com", true }, @@ -3385,12 +3452,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "59859z.vip", true }, { "5986fc.com", true }, { "598877.com", true }, + { "59937.com", true }, { "5997891.com", true }, { "599980.com", true }, { "599ks.com", true }, { "59rus.tk", true }, { "5agks.com", true }, { "5apps.com", true }, + { "5bet86.com", true }, { "5c1fd0f31022cbc40af9f785847baaf9.space", true }, { "5ccapitalinvestments.com", true }, { "5chat.it", true }, @@ -3409,10 +3478,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "5lc8.com", true }, { "5lc8.net", true }, { "5percentperweek.com", true }, + { "5sba.ru", true }, { "5stars.tv", true }, { "5thchichesterscouts.org.uk", true }, { "5y.fi", true }, - { "5yeb.com", true }, { "6004233.com", true }, { "60062b.cc", true }, { "60062h.cc", true }, @@ -3434,24 +3503,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "608vets.com", true }, { "609422.com", true }, { "60n13.com", true }, - { "611121.com", true }, - { "611125.com", true }, + { "611121.com", false }, + { "611125.com", false }, { "611135.com", true }, { "611165.com", true }, { "611195.com", true }, + { "6132-app.com", true }, + { "6132-hd.com", true }, + { "6132-vip.com", true }, + { "6132app.com", true }, + { "6132hb.com", true }, + { "6132hd.com", true }, + { "6132kf.com", true }, + { "6132pk.com", true }, + { "6132vip.com", true }, { "614022.com", true }, { "614322.com", true }, { "614922.com", true }, + { "616578.com", true }, { "616675.com", true }, - { "616btt.com", true }, + { "616728.com", true }, + { "616758.com", true }, + { "616798.com", true }, { "616btt.net", true }, { "616f88.com", true }, { "616xin.com", true }, { "617020.com", true }, { "61730123.com", true }, { "618btt.com", true }, - { "618btt.net", true }, { "619kb.com", true }, + { "61ag8.com", true }, { "61d88.com", true }, { "61z6.com", true }, { "620207.com", true }, @@ -3462,6 +3543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "621nn.com", true }, { "621vv.com", true }, { "62222.com", true }, + { "622283.com", true }, { "622812.com", true }, { "622z6.com", true }, { "62314.cc", true }, @@ -3474,7 +3556,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "625kb.com", true }, { "626380.com", true }, { "626422.com", true }, - { "628vv.com", true }, { "630422.com", true }, { "631422.com", true }, { "632017.com", true }, @@ -3498,6 +3579,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "632147.com", true }, { "632148.com", false }, { "632174.com", false }, + { "633362.com", true }, { "633663.cc", true }, { "633663.net", true }, { "633663.vip", true }, @@ -3552,9 +3634,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6365zj.com", true }, { "638566.com", true }, { "639422.com", true }, + { "6396000.com", true }, + { "63960000.com", true }, + { "63961111.com", true }, + { "639611111.com", true }, + { "6396222.com", true }, + { "63962222.com", true }, + { "639622222.com", true }, + { "6396333.com", true }, + { "63963333.com", true }, + { "639633333.com", true }, + { "6396444.com", true }, + { "63964444.com", true }, + { "639644444.com", true }, + { "63965555.com", true }, + { "639655555.com", true }, + { "639666666.com", true }, + { "63967777.com", true }, + { "639677777.com", true }, + { "63968888.com", true }, + { "639688888.com", true }, + { "63969999.com", true }, + { "639699999.com", true }, + { "6396aaa.com", true }, + { "6396bbb.com", true }, { "6396ccc.com", true }, + { "6396eee.com", true }, { "6396fff.com", true }, + { "6396ggg.com", true }, { "6396hhh.com", true }, + { "6396iii.com", true }, + { "6396jjj.com", true }, { "6396ooo.com", true }, { "6396qqq.com", true }, { "6396rrr.com", true }, @@ -3605,7 +3715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "649822.com", true }, { "64bitgaming.de", true }, { "64d88.com", true }, - { "64d88.net", true }, + { "64stacks.com", true }, { "65131a.com", true }, { "65131b.com", true }, { "65131c.com", true }, @@ -3631,7 +3741,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "65131w.com", true }, { "65131x.com", true }, { "65131y.com", true }, - { "65131z.com", true }, + { "65131z.com", false }, { "651422.com", true }, { "6520265.com", true }, { "652422.com", true }, @@ -3649,6 +3759,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6547766.com", true }, { "6548855.com", true }, { "6548877.com", true }, + { "655591.com", true }, { "6556a.com", true }, { "6556b.com", true }, { "6556c.com", true }, @@ -3685,38 +3796,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "662z6.com", true }, { "66321365.com", true }, { "6633445.com", true }, - { "663365666.com", true }, - { "663365777.com", true }, - { "663365888.com", true }, - { "663365a.vip", true }, - { "663365b.vip", true }, - { "663365c.vip", true }, - { "663365d.vip", true }, - { "663365e.vip", true }, - { "663365f.vip", true }, - { "663365g.vip", true }, - { "663365h.vip", true }, - { "663365i.com", true }, - { "663365i.vip", true }, - { "663365j.com", true }, - { "663365j.vip", true }, - { "663365k.com", true }, - { "663365k.vip", true }, - { "663365l.com", true }, - { "663365m.com", true }, - { "663365n.com", true }, - { "663365o.com", true }, - { "663365p.com", true }, - { "663365q.com", true }, - { "663365r.com", true }, - { "663365s.com", true }, - { "663365t.com", true }, - { "663365u.com", true }, - { "663365v.com", true }, - { "663365w.com", true }, - { "663365x.com", true }, - { "663365y.com", true }, - { "663365z.com", true }, + { "663365666.com", false }, + { "663365777.com", false }, + { "663365888.com", false }, + { "663365a.vip", false }, + { "663365b.vip", false }, + { "663365c.vip", false }, + { "663365d.vip", false }, + { "663365e.vip", false }, + { "663365f.vip", false }, + { "663365g.vip", false }, + { "663365h.vip", false }, + { "663365i.com", false }, + { "663365i.vip", false }, + { "663365j.com", false }, + { "663365j.vip", false }, + { "663365k.com", false }, + { "663365k.vip", false }, + { "663365l.com", false }, + { "663365m.com", false }, + { "663365n.com", false }, + { "663365o.com", false }, + { "663365p.com", false }, + { "663365q.com", false }, + { "663365r.com", false }, + { "663365s.com", false }, + { "663365t.com", false }, + { "663365u.com", false }, + { "663365v.com", false }, + { "663365w.com", false }, + { "663365x.com", false }, + { "663365y.com", false }, + { "663365z.com", false }, { "6639s.com", true }, { "663z6.com", true }, { "664048.com", true }, @@ -3738,6 +3849,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "666618.cc", true }, { "6666365q.com", true }, { "66664048.com", true }, + { "666648.com", false }, { "666668722.com", true }, { "6666sb.com", true }, { "6667035.com", true }, @@ -3752,13 +3864,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "666k66.com", true }, { "666k8.com", true }, { "666k8.net", true }, + { "666ks.app", true }, { "666omg.com", true }, { "666zlong.com", true }, { "6671365.com", true }, { "6672365.com", true }, { "6673365.com", true }, { "6677.us", true }, - { "6677bet.vip", true }, + { "6677bet.vip", false }, { "667z6.com", true }, { "6685m.com", true }, { "668825.vip", true }, @@ -3769,11 +3882,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "668ks.com", true }, { "668z6.com", true }, { "669z6.com", true }, + { "66ag9.com", true }, { "66agks.com", true }, { "66b58.com", true }, { "66bwf.com", true }, { "66d88.net", true }, { "66k66.ag", true }, + { "66k66.vip", true }, { "66lc8.com", true }, { "66lc8.net", true }, { "670102.com", true }, @@ -3786,9 +3901,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6729.co", false }, { "672990.com", true }, { "6729a.co", true }, - { "6729a.com", true }, { "6729aa.co", true }, - { "6729aa.com", true }, { "6729apk.com", true }, { "6729app.com", true }, { "6729b.co", true }, @@ -3935,15 +4048,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6848.com", true }, { "68522.com", true }, { "68522c.com", true }, - { "68522k.com", true }, - { "68522m.com", true }, - { "68522s.com", true }, + { "68522k.com", false }, + { "68522m.com", false }, + { "68522s.com", false }, { "68622.com", true }, - { "68622a.com", true }, - { "68622b.com", true }, + { "68622a.com", false }, + { "68622b.com", false }, { "6863070.com", true }, { "686848.com", true }, - { "68722.com", true }, + { "68722.com", false }, { "688libo.com", true }, { "688z6.com", true }, { "68agks.com", true }, @@ -4038,6 +4151,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "69mentor.com", true }, { "69wasted.net", true }, { "6agks.com", true }, + { "6bet86.com", true }, { "6bwcp.com", true }, { "6dec.gc.ca", true }, { "6hzx.com", true }, @@ -4051,17 +4165,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "6lc8.net", true }, { "6lo.zgora.pl", true }, { "6t-montjoye.org", true }, + { "6thmarch.com", true }, { "6u55ooxpo38mnikkxqvbmwfwauiiv35bsmm-2yj.com", true }, + { "6upagent.com", true }, { "6wbz.com", true }, - { "7.plus", true }, { "700.az", true }, { "7004233.com", true }, + { "7007337.com", true }, { "700k8.com", true }, { "700wns.com", true }, { "701135.com", true }, { "70160365.com", true }, { "701605.com", true }, - { "70365365.com", true }, + { "70365365.com", false }, { "704233.com", true }, { "7045.com", true }, { "704533.com", true }, @@ -4069,18 +4185,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "704633.com", true }, { "705994.com", true }, { "707wns.com", true }, - { "7080997.com", true }, { "70872.com", true }, { "709129.com", true }, { "70d88.com", true }, { "70d88.net", true }, + { "70mpg.org", true }, { "7111365.com", true }, { "712433.com", true }, { "712kb.com", true }, { "713367.com", true }, { "713387.com", true }, { "713433.com", true }, - { "71365365.com", true }, + { "71365365.com", false }, + { "7139365.com", true }, { "713kb.com", true }, { "714133.com", true }, { "714533.com", true }, @@ -4091,7 +4208,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "716331.com", true }, { "718113.com", true }, { "718227.com", true }, - { "7183.org", true }, + { "7183.org", false }, { "718337.com", true }, { "718433.com", true }, { "718552.com", true }, @@ -4115,6 +4232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "726433.com", true }, { "728433.com", true }, { "729433.com", true }, + { "72hours2sold.com", true }, { "72ty.com", true }, { "72ty.net", true }, { "730433.com", true }, @@ -4123,7 +4241,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "731783.com", true }, { "732433.com", true }, { "733575.com", true }, - { "73365365.com", true }, + { "73365365.com", false }, + { "7337006.com", true }, + { "7337007.com", true }, + { "7337app.com", true }, + { "7337dh.com", true }, + { "7337dz.com", true }, { "733z6.com", true }, { "735433.com", true }, { "736371.com", true }, @@ -4138,6 +4261,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "743833.com", true }, { "74d88.com", true }, { "74th.jp", true }, + { "7552001.com", false }, + { "7552002.com", false }, + { "7552005.com", false }, + { "7552006.com", false }, + { "7552008.com", false }, + { "7552009.com", false }, + { "7552010.com", false }, + { "7552011.com", false }, + { "7552012.com", false }, + { "7552013.com", false }, { "755204.com", false }, { "755243.com", true }, { "755245.com", false }, @@ -4155,9 +4288,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "762.ch", false }, { "762116.com", true }, { "763137.com", true }, - { "76365365.com", true }, + { "76365365.com", false }, { "7652.cc", true }, - { "7654321c.com", true }, + { "7654321c.com", false }, { "765666365.com", true }, { "7666321.com", true }, { "76668.com", true }, @@ -4169,12 +4302,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "76956.com", true }, { "769k.com", true }, { "76z66.com", true }, - { "77018aa.com", true }, - { "77018bb.com", true }, - { "77018cc.com", true }, - { "77018dd.com", true }, - { "77018ee.com", true }, - { "77018vip.com", true }, + { "77018aa.com", false }, + { "77018bb.com", false }, + { "77018cc.com", false }, + { "77018dd.com", false }, + { "77018ee.com", false }, + { "77018vip.com", false }, { "77168365.com", true }, { "77177.de", true }, { "772z6.com", true }, @@ -4185,9 +4318,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "775018.com", true }, { "775z6.com", true }, { "776z6.com", true }, - { "7770b.com", true }, { "7770t.com", true }, - { "777234567.com", true }, + { "777234567.com", false }, { "777365t.com", true }, { "7776321.com", false }, { "7776365.com", true }, @@ -4196,7 +4328,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7777k8.com", true }, { "7777k8.net", true }, { "77789j.com", true }, - { "777btt.net", true }, { "777coin.com", true }, { "7788bet.vip", true }, { "778z6.com", true }, @@ -4212,16 +4343,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "781683.com", true }, { "781713.com", true }, { "783631.com", true }, - { "78365app.com", true }, - { "78365b.com", true }, - { "78365bb.com", true }, - { "78365c.com", true }, - { "78365cc.com", true }, - { "78365dd.com", true }, - { "78365ee.com", true }, + { "78365app.com", false }, + { "78365b.com", false }, + { "78365bb.com", false }, + { "78365c.com", false }, + { "78365cc.com", false }, + { "78365dd.com", false }, + { "78365ee.com", false }, { "783lab.com", true }, { "787637.com", true }, - { "7878365.com", true }, + { "7878365.com", false }, { "787k3.com", true }, { "787kb.com", true }, { "7885765.com", true }, @@ -4236,18 +4367,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "78936565.com", true }, { "789365t.com", true }, { "7894.net", true }, - { "789451.com", true }, - { "789453.com", true }, - { "789455.com", true }, + { "789451.com", false }, + { "789453.com", false }, + { "789455.com", false }, { "790security.co.za", true }, - { "791188.com", true }, - { "792ww.com", true }, + { "791188.com", false }, { "793ww.com", true }, { "797715.com", true }, { "799jsh.com", true }, { "799ks.com", true }, { "799z6.com", true }, { "79ch.com", true }, + { "7bet86.com", true }, { "7careconnect.com", true }, { "7delights.com", true }, { "7delights.in", true }, @@ -4258,6 +4389,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7k66.ag", true }, { "7k66.vip", true }, { "7ka.co", true }, + { "7ki.photography", true }, { "7kicks.com", true }, { "7kovrikov.ru", true }, { "7l00p.com", true }, @@ -4271,6 +4403,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "7plus.com.au", true }, { "7proxies.com", true }, { "7sdre.am", true }, + { "7th-heaven.me", true }, { "7thcircledesigns.com", true }, { "7win.am", true }, { "7x24servis.com", true }, @@ -4281,6 +4414,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8003pay.com", true }, { "8006d.com", true }, { "8006d88.com", true }, + { "8007337.com", true }, { "8007d.com", true }, { "8007d88.com", true }, { "8008d88.com", true }, @@ -4311,7 +4445,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8032d88.com", true }, { "8033d88.com", true }, { "8035d88.com", true }, - { "80365365.com", true }, + { "80365365.com", false }, { "8036d88.com", true }, { "8037d88.com", true }, { "8038d88.com", true }, @@ -4325,6 +4459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "805vv.com", true }, { "8060d88.com", true }, { "8061d88.com", true }, + { "80630.com", true }, { "80651a.com", true }, { "80651c.com", true }, { "8065d.com", true }, @@ -4337,14 +4472,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "80780780.com", true }, { "8078d.com", true }, { "8080883.com", true }, - { "8080889.com", true }, { "8081d.com", true }, { "8083d.com", true }, - { "80883.cc", true }, { "80887.cc", true }, { "808phone.net", true }, { "809088.cc", true }, - { "8092d.com", true }, { "8092d88.com", true }, { "8093d.com", true }, { "809422.com", true }, @@ -4370,7 +4502,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8133d.com", true }, { "8133d88.com", true }, { "8135d88.com", true }, - { "81365365.com", true }, + { "81365365.com", false }, { "81365b.com", true }, { "81365c.com", true }, { "81365d.com", true }, @@ -4715,7 +4847,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8722ph.com", true }, { "8722tw.com", true }, { "8722usa.com", true }, - { "87365365.com", true }, + { "87365365.com", false }, { "87577.com", true }, { "877027.com", true }, { "877791.com", true }, @@ -4726,7 +4858,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "878365bb.com", true }, { "878365c.com", true }, { "878365cc.com", true }, - { "878365cn.com", true }, { "878365d.com", true }, { "878365dd.com", true }, { "878365ee.com", true }, @@ -4736,9 +4867,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "878365mm.com", true }, { "878365nn.com", true }, { "878989.com", true }, + { "87ag9.com", true }, { "87kb88.com", true }, { "88-line.com", true }, { "88-line.net", true }, + { "8800ks.com", true }, { "8801ks.com", true }, { "8802ks.com", true }, { "8802p.com", true }, @@ -4791,6 +4924,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8850d88.com", true }, { "8850ks.com", true }, { "8851d88.com", true }, + { "8851ks.com", true }, { "88522am.com", true }, { "885287.com", true }, { "8852d.com", true }, @@ -4888,7 +5022,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8884567j.com", true }, { "888456j.com", true }, { "88851333.com", true }, - { "88851777.com", true }, { "888567j.com", true }, { "8885ks.com", true }, { "888666pj.com", true }, @@ -4906,11 +5039,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8889ks.com", true }, { "888am8.com", true }, { "888am8.net", true }, + { "888b58.com", true }, { "888bwf.com", true }, { "888funcity.com", true }, { "888funcity.net", true }, { "888k66.com", true }, - { "888xpjxpj.com", true }, + { "888xpjxpj.com", false }, { "8890d.com", true }, { "8890ks.com", true }, { "8891d.com", true }, @@ -4936,7 +5070,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "88d.com", true }, { "88djl.cc", true }, { "88home9.com", true }, + { "88k66.vip", true }, { "88kash.com", true }, + { "88kb.app", true }, { "88kb88.com", true }, { "88laohu.cc", true }, { "88laohu.com", true }, @@ -5009,12 +5145,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "89he.com", true }, { "89kb88.com", true }, { "8ack.de", true }, + { "8ag8.org", true }, { "8ag88.com", true }, { "8agks.com", true }, { "8b8888.com", true }, { "8ballbombom.uk", true }, { "8balls.nl", true }, - { "8btt.app", true }, + { "8bet86.com", true }, { "8dabet.com", true }, { "8e8z.com", true }, { "8hrs.net", true }, @@ -5022,6 +5159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8lc8.net", true }, { "8maerz.at", true }, { "8me.nl", true }, + { "8o8wave.com", true }, { "8pecxstudios.com", true }, { "8shequapp.com", true }, { "8t8.eu", true }, @@ -5037,12 +5175,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "8xxbet.net", true }, { "8xxxxxxx.com", true }, { "8y.network", true }, + { "8yabo.com", true }, { "8yun.cf", true }, { "8yun.ga", true }, { "9-11commission.gov", true }, { "9005424.com", true }, + { "9007337.com", true }, { "900823.com", true }, - { "9009019.com", true }, + { "9009019.com", false }, { "900k8.com", true }, { "901543.com", true }, { "903422.com", true }, @@ -5070,7 +5210,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "915kb.com", true }, { "917.moe", true }, { "917jjj.com", true }, - { "918-siteinfo.com", true }, { "918.com", true }, { "9180.fun", true }, { "9180nn.com", true }, @@ -5079,7 +5218,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9180xx.com", true }, { "9180yy.com", true }, { "9180zz.com", true }, - { "918101.net", true }, { "918116.com", true }, { "9181181.com", true }, { "9181182.com", true }, @@ -5108,19 +5246,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918aff.com", true }, { "918agr.co", true }, { "918ahh.com", true }, - { "918ajj.com", true }, - { "918akk.com", true }, { "918amj.co", true }, - { "918arr.com", true }, - { "918att.com", true }, { "918awx.co", true }, { "918axx.com", true }, { "918ayy.com", true }, - { "918bb.com", true }, { "918bbd.com", true }, { "918bbg.com", true }, { "918bbm.co", true }, - { "918bbt.com", true }, { "918bby.co", true }, { "918bby.com", true }, { "918bcf.co", true }, @@ -5142,9 +5274,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918bzz.com", true }, { "918ca.com", true }, { "918caa.com", true }, - { "918cca.com", true }, - { "918ccb.com", true }, - { "918cce.com", true }, { "918cch.com", true }, { "918ccq.com", true }, { "918ccs.com", true }, @@ -5153,7 +5282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918ccv.com", true }, { "918ccw.com", true }, { "918ccy.com", true }, - { "918ccz.com", true }, { "918cdd.com", true }, { "918cff.com", true }, { "918cgg.com", true }, @@ -5173,8 +5301,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918dbb.com", true }, { "918dc04.com", true }, { "918dc16.com", true }, - { "918dc19.com", true }, - { "918dc20.com", true }, { "918dcc.com", true }, { "918dda.com", true }, { "918dde.com", true }, @@ -5187,7 +5313,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918ddr.com", true }, { "918ddw.com", true }, { "918ddx.com", true }, - { "918ddy.com", true }, { "918dgg.com", true }, { "918dkk.com", true }, { "918dp.com", true }, @@ -5205,7 +5330,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918eed.com", true }, { "918eef.com", true }, { "918eeg.com", true }, - { "918eej.com", true }, { "918eek.com", true }, { "918eem.com", true }, { "918een.com", true }, @@ -5217,7 +5341,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918eey.com", true }, { "918eez.com", true }, { "918ej.com", true }, - { "918ejj.com", true }, { "918emm.com", true }, { "918epp.com", true }, { "918err.com", true }, @@ -5225,13 +5348,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918euu.com", true }, { "918ev.com", true }, { "918exx.com", true }, - { "918fdd.com", true }, { "918fee.com", true }, { "918ffa.com", true }, - { "918ffb.com", true }, { "918ffc.com", true }, - { "918ffd.com", true }, - { "918ffe.com", true }, { "918ffh.com", true }, { "918ffk.com", true }, { "918ffn.com", true }, @@ -5244,18 +5363,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918hs.com", true }, { "918hu.com", true }, { "918hw.com", true }, - { "918hzoz.com", true }, - { "918ia.com", true }, - { "918iwo.com", true }, { "918iz.com", true }, - { "918izoz.com", true }, { "918ji.com", true }, { "918jt.co", true }, - { "918jwo.com", true }, + { "918kissinw.com", true }, { "918kx.com", true }, - { "918ll.com", true }, - { "918lwo.com", true }, - { "918lzoz.com", true }, { "918ma.com", true }, { "918mc.com", true }, { "918md10.com", true }, @@ -5282,19 +5394,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918qs.com", true }, { "918qz.com", true }, { "918rh.com", true }, - { "918rs.com", true }, - { "918rt.com", true }, { "918rw.com", true }, { "918sa.com", true }, { "918sj.com", true }, { "918sn.com", true }, { "918ta.com", true }, - { "918te.com", true }, { "918tj.com", true }, { "918tr.com", true }, { "918tw.com", true }, - { "918tx.com", true }, - { "918ug.com", true }, { "918uh.com", true }, { "918ui.com", true }, { "918um.com", true }, @@ -5313,7 +5420,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "918xe.com", true }, { "918xn.com", true }, { "918yy.net", true }, - { "918za.com", true }, { "918ze.com", true }, { "918zm.com", true }, { "918zv.com", true }, @@ -5328,23 +5434,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "91d13.com", true }, { "91d15.com", true }, { "91d16.com", true }, - { "91d17.com", true }, { "91d18.com", true }, - { "91d19.com", true }, - { "91d20.com", true }, - { "91d21.com", true }, - { "91d23.com", true }, - { "91d26.com", true }, { "91d27.com", true }, - { "91d28.com", true }, { "91d30.com", true }, { "91d31.com", true }, { "91d32.com", true }, { "91d33.com", true }, - { "91d35.com", true }, - { "91d36.com", true }, - { "91d37.com", true }, - { "91d38.com", true }, { "91d39.com", true }, { "91d50.com", true }, { "91d51.com", true }, @@ -5364,11 +5459,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "91d67.com", true }, { "91d68.com", true }, { "91d69.com", true }, - { "91d70.com", true }, - { "91d71.com", true }, { "91d72.com", true }, { "91d73.com", true }, - { "91d77.com", true }, { "91d80.com", true }, { "91d81.com", true }, { "91d82.com", true }, @@ -5378,12 +5470,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "91d87.com", true }, { "91d89.com", true }, { "91d90.com", true }, - { "91d91.com", true }, { "91d93.com", true }, - { "91d95.com", true }, - { "91d96.com", true }, - { "91d97.com", true }, - { "91d98.com", true }, { "91d99.com", true }, { "91dh.cc", true }, { "91fldz.com", true }, @@ -5457,7 +5544,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9297z.co", true }, { "9297zz.co", true }, { "92kb88.com", true }, - { "92owl.com", true }, { "92url.com", true }, { "931422.com", true }, { "932422.com", true }, @@ -5466,18 +5552,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "934122.com", true }, { "937774.com", true }, { "939394.org", true }, - { "9397.com", true }, - { "9397b.com", true }, - { "9397c.com", true }, + { "9397.com", false }, { "9397dh.com", false }, + { "9397e.com", false }, { "9397hb.com", true }, { "9397hd.com", false }, - { "9397j.com", true }, - { "9397kk.com", true }, - { "9397l.com", true }, - { "9397ll.com", true }, - { "9397m.com", true }, - { "9397mm.com", true }, + { "9397l.com", false }, + { "9397mm.com", false }, { "9397n.com", true }, { "9397nn.com", true }, { "9397o.com", true }, @@ -5500,12 +5581,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9397ww.com", true }, { "9397x.com", true }, { "9397xx.com", true }, - { "9397y.com", true }, - { "9397yy.com", true }, - { "9397z.com", true }, - { "9397zz.com", true }, { "939wns.com", true }, + { "93ag8.com", true }, { "93cq.com", true }, + { "93jc.cn", true }, { "93kb88.com", true }, { "940365.com", true }, { "941988.cn", true }, @@ -5539,7 +5618,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9499369.com", true }, { "9499399.com", true }, { "9499403.com", true }, - { "9499459.com", true }, + { "9499459.com", false }, { "9499518.com", true }, { "9499558.com", true }, { "9499565.com", true }, @@ -5548,59 +5627,58 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9499668.com", true }, { "9499676.com", true }, { "9499682.com", true }, - { "9499737.com", true }, { "9499757.com", true }, { "9499835.com", true }, { "9499855.com", true }, { "9499869.com", true }, { "9499958.com", true }, - { "9499aaaa.com", true }, - { "9499bbbb.com", true }, - { "9499cccc.com", true }, - { "9499dc.com", true }, - { "9499dddd.com", true }, - { "9499eeee.com", true }, - { "9499ffff.com", true }, - { "9499gggg.com", true }, - { "9499good.com", true }, - { "9499hhhh.com", true }, - { "9499iiii.com", true }, - { "9499jjj.com", true }, - { "9499jjjj.com", true }, - { "9499kkkk.com", true }, - { "9499l.com", true }, - { "9499llll.com", true }, - { "9499love.com", true }, + { "9499aaaa.com", false }, + { "9499bbbb.com", false }, + { "9499cccc.com", false }, + { "9499dc.com", false }, + { "9499dddd.com", false }, + { "9499eeee.com", false }, + { "9499ffff.com", false }, + { "9499gggg.com", false }, + { "9499good.com", false }, + { "9499hhhh.com", false }, + { "9499iiii.com", false }, + { "9499jjj.com", false }, + { "9499jjjj.com", false }, + { "9499kkkk.com", false }, + { "9499l.com", false }, + { "9499llll.com", false }, + { "9499love.com", false }, { "9499mmmm.com", true }, - { "9499nnnn.com", true }, - { "9499oooo.com", true }, - { "9499pppp.com", true }, - { "9499qqqq.com", true }, - { "9499rrrr.com", true }, - { "9499ssss.com", true }, - { "9499ttt.com", true }, - { "9499tttt.com", true }, - { "9499uuuu.com", true }, - { "9499vvvv.com", true }, - { "9499wwww.com", true }, - { "9499xxx.com", true }, - { "9499xxxx.com", true }, + { "9499nnnn.com", false }, + { "9499oooo.com", false }, + { "9499pppp.com", false }, + { "9499qqqq.com", false }, + { "9499rrrr.com", false }, + { "9499ssss.com", false }, + { "9499ttt.com", false }, + { "9499tttt.com", false }, + { "9499uuuu.com", false }, + { "9499vvvv.com", false }, + { "9499wwww.com", false }, + { "9499xxx.com", false }, + { "9499xxxx.com", false }, { "9499yl.com", true }, - { "9499yyyy.com", true }, - { "9499zzzz.com", true }, + { "9499yyyy.com", false }, + { "9499zzzz.com", false }, { "94imk.com", true }, { "955z6.com", true }, { "956jj.com", true }, { "95am8.com", true }, { "95kb88.com", true }, - { "96002.com", false }, + { "96002.com", true }, { "96002e.com", true }, { "961705.com", true }, { "9617818.com", true }, { "9617818.net", true }, { "962312.com", true }, { "9666ks.com", true }, - { "96678.com", true }, + { "96678.com", false }, { "966k66.com", true }, { "966kb.com", true }, { "966ks.com", true }, @@ -5625,10 +5703,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9721dd.com", false }, { "9721dh.com", false }, { "9721e.com", true }, - { "9721ee.com", true }, + { "9721ee.com", false }, { "9721f.com", true }, { "9721ff.com", true }, - { "9721g.com", true }, + { "9721g.com", false }, { "9721gg.com", true }, { "9721h.com", true }, { "9721hd.com", false }, @@ -5641,7 +5719,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9721l.com", true }, { "9721ll.com", true }, { "9721m.com", true }, - { "9721mm.com", true }, + { "9721mm.com", false }, { "9721n.com", true }, { "9721nn.com", true }, { "9721o.com", true }, @@ -5649,25 +5727,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9721p.com", true }, { "9721pp.com", true }, { "9721q.com", true }, - { "9721qq.com", true }, - { "9721r.com", true }, - { "9721rr.com", true }, - { "9721s.com", true }, - { "9721ss.com", true }, - { "9721t.com", true }, - { "9721tt.com", true }, - { "9721u.com", true }, - { "9721uu.com", true }, - { "9721v.com", true }, - { "9721vv.com", true }, - { "9721w.com", true }, - { "9721ww.com", true }, - { "9721x.com", true }, - { "9721xx.com", true }, - { "9721y.com", true }, - { "9721yy.com", true }, - { "9721z.com", true }, - { "9721zz.com", true }, + { "9721yy.com", false }, { "972422.com", true }, { "9728a.co", true }, { "9728aa.co", true }, @@ -5775,82 +5835,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99599.fi", true }, { "99599.net", true }, { "995z6.com", true }, - { "9968.ag", true }, - { "9968.love", true }, - { "9968131.com", true }, - { "9968166.com", true }, - { "9968282.com", true }, - { "9968363.com", true }, - { "9968389.com", true }, - { "9968393.com", true }, - { "9968505.com", true }, - { "9968508.com", true }, - { "9968535.com", true }, - { "9968595.com", true }, - { "9968600.com", true }, - { "9968656.com", true }, - { "9968707.com", true }, - { "9968717.com", true }, - { "9968838.com", true }, - { "9968909.com", true }, - { "9968959.com", true }, - { "9968969.com", true }, - { "9968aa.com", true }, + { "9968909.com", false }, { "9968aaa.com", true }, - { "9968ab.com", true }, - { "9968abc.com", true }, - { "9968app.com", true }, - { "9968bbb.com", true }, - { "9968caipiao.com", true }, - { "9968cc.com", true }, - { "9968ccc.com", true }, - { "9968com.com", true }, - { "9968dd.com", true }, - { "9968ddd.com", true }, - { "9968ee.com", true }, - { "9968eee.com", true }, - { "9968ff.com", true }, - { "9968fff.com", true }, - { "9968gg.com", true }, - { "9968ggg.com", true }, - { "9968go.com", true }, - { "9968hh.com", true }, - { "9968hhh.com", true }, - { "9968ii.com", true }, - { "9968iii.com", true }, - { "9968jj.com", true }, - { "9968jjj.com", true }, - { "9968ll.com", true }, - { "9968lll.com", true }, - { "9968mm.com", true }, - { "9968mmm.com", true }, - { "9968nn.com", true }, - { "9968nnn.com", true }, - { "9968ok.com", true }, - { "9968oo.com", true }, - { "9968ooo.com", true }, - { "9968pp.com", true }, - { "9968ppp.com", true }, - { "9968qq.com", true }, - { "9968qqq.com", true }, - { "9968rr.com", true }, - { "9968rrr.com", true }, - { "9968ss.com", true }, - { "9968sss.com", true }, - { "9968ttt.com", true }, - { "9968uu.com", true }, - { "9968uuu.com", true }, - { "9968vv.com", true }, - { "9968vvv.com", true }, - { "9968ww.com", true }, - { "9968www.com", true }, { "9968xl.com", true }, - { "9968xx.com", true }, - { "9968xxx.com", true }, - { "9968yy.com", true }, - { "9968yyy.com", true }, - { "9968zz.com", true }, - { "9968zzz.com", true }, { "996z6.com", true }, { "9977432.com", true }, { "99789j.com", true }, @@ -5882,6 +5869,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "999b58.com", true }, { "999btt.net", true }, { "999k66.com", true }, + { "999ks.app", true }, { "999salon.co", true }, { "999salon.com", true }, { "999zlong.com", true }, @@ -5889,7 +5877,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "99buffets.com", true }, { "99d88.com", true }, { "99kb88.com", true }, - { "99lib.net", true }, { "99naturalfoods.de", true }, { "99qp.org", true }, { "99rst.org", true }, @@ -5898,8 +5885,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9ag88.com", true }, { "9agks.com", true }, { "9allery.com", true }, + { "9articles.org", true }, + { "9bet86.com", true }, { "9bingo.net", true }, { "9box.jp", true }, + { "9elements.com", true }, { "9farm.com", true }, { "9fvip.net", true }, { "9h.pl", true }, @@ -5957,7 +5947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k322.com", true }, { "9k323.com", true }, { "9k325.com", true }, - { "9k326.com", true }, { "9k327.com", true }, { "9k328.com", true }, { "9k329.com", true }, @@ -5970,16 +5959,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k362.com", true }, { "9k363.com", true }, { "9k366.com", true }, - { "9k367.com", true }, { "9k368.com", true }, { "9k372.com", true }, { "9k373.com", true }, { "9k375.com", true }, { "9k376.com", true }, - { "9k377.com", true }, { "9k378.com", true }, { "9k379.com", true }, - { "9k382.com", true }, { "9k383.com", true }, { "9k385.com", true }, { "9k386.com", true }, @@ -5988,37 +5974,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k389.com", true }, { "9k392.com", true }, { "9k393.com", true }, - { "9k395.com", true }, - { "9k396.com", true }, { "9k397.com", true }, { "9k398.com", true }, - { "9k399.com", true }, { "9k562.com", true }, - { "9k563.com", true }, - { "9k565.com", true }, { "9k566.com", true }, { "9k568.com", true }, { "9k569.com", true }, { "9k572.com", true }, { "9k573.com", true }, - { "9k575.com", true }, - { "9k576.com", true }, { "9k577.com", true }, - { "9k578.com", true }, - { "9k579.com", true }, - { "9k582.com", true }, - { "9k583.com", true }, { "9k585.com", true }, { "9k586.com", true }, { "9k587.com", true }, { "9k589.com", true }, - { "9k592.com", true }, - { "9k622.com", true }, - { "9k623.com", true }, { "9k625.com", true }, { "9k626.com", true }, { "9k627.com", true }, - { "9k628.com", true }, { "9k629.com", true }, { "9k632.com", true }, { "9k633.com", true }, @@ -6027,7 +5998,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k637.com", true }, { "9k638.com", true }, { "9k639.com", true }, - { "9k652.com", true }, { "9k653.com", true }, { "9k655.com", true }, { "9k656.com", true }, @@ -6041,7 +6011,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k668.com", true }, { "9k669.com", true }, { "9k672.com", true }, - { "9k673.com", true }, { "9k675.com", true }, { "9k677.com", true }, { "9k679.com", true }, @@ -6050,7 +6019,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k686.com", true }, { "9k687.com", true }, { "9k689.com", true }, - { "9k692.com", true }, { "9k693.com", true }, { "9k695.com", true }, { "9k696.com", true }, @@ -6060,7 +6028,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k823.com", true }, { "9k825.com", true }, { "9k826.com", true }, - { "9k827.com", true }, { "9k828.com", true }, { "9k829.com", true }, { "9k832.com", true }, @@ -6069,15 +6036,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k836.com", true }, { "9k837.com", true }, { "9k838.com", true }, - { "9k839.com", true }, { "9k852.com", true }, { "9k855.com", true }, - { "9k856.com", true }, { "9k857.com", true }, { "9k858.com", true }, { "9k859.com", true }, { "9k862.com", true }, - { "9k863.com", true }, { "9k865.com", true }, { "9k866.com", true }, { "9k867.com", true }, @@ -6086,9 +6050,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "9k872.com", true }, { "9k873.com", true }, { "9k875.com", true }, - { "9k876.com", true }, { "9k877.com", true }, - { "9k878.com", true }, { "9k879.com", true }, { "9k882.com", true }, { "9k883.com", true }, @@ -6118,8 +6080,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-1basements.com", true }, { "a-1indianawaterproofing.com", true }, { "a-allard.be", true }, + { "a-bicycleshop.com", true }, { "a-care.net", true }, - { "a-classinflatables.co.uk", true }, + { "a-h-p.de", true }, { "a-invest.de", true }, { "a-ix.net", true }, { "a-msystems.com", true }, @@ -6129,7 +6092,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a-tes-cotes.com", true }, { "a-wife.net", true }, { "a-ztransmission.com", true }, - { "a00228.com", false }, + { "a00228.com", true }, { "a04gameapp.com", true }, { "a04webapp.com", true }, { "a06gameapp.com", true }, @@ -6139,10 +6102,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a1798.com", true }, { "a1autotransport.com", true }, { "a1bouncycastlehire.com", true }, + { "a1demolitionhauling.com", true }, { "a1jumpandbounce.co.uk", true }, { "a1moldsolutions.com", true }, { "a1post.bg", true }, { "a1scuba.com", true }, + { "a1towgrant.com", true }, { "a210.online", true }, { "a22z.xyz", true }, { "a291.cc", true }, @@ -6154,6 +6119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a2os.club", true }, { "a2os.xyz", true }, { "a30.tokyo", false }, + { "a30365.com", true }, { "a36533.com", true }, { "a36594.com", true }, { "a365vip1.com", true }, @@ -6172,6 +6138,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a50666.com", true }, { "a50999.com", true }, { "a5197.co", true }, + { "a632079.me", true }, { "a66.la", true }, { "a6619.com", true }, { "a6621.com", true }, @@ -6204,7 +6171,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a70777.com", true }, { "a70888.com", true }, { "a70999.com", true }, - { "a77018.com", false }, + { "a77018.com", true }, { "a7m2.me", true }, { "a81365.com", true }, { "a82365.com", true }, @@ -6212,13 +6179,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "a899365.com", true }, { "a8q.org", true }, { "a9297.co", true }, - { "a9397.com", true }, - { "a9721.com", true }, { "a9728.co", true }, { "aa-tour.ru", true }, { "aa00228.com", false }, { "aa43d.cn", true }, - { "aa4888.com", true }, + { "aa4888.com", false }, { "aa5197.co", true }, { "aa6688.net", false }, { "aa6729.co", true }, @@ -6226,8 +6191,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aa6957.co", true }, { "aa793.com", true }, { "aa9297.co", true }, - { "aa9397.com", true }, - { "aa9721.com", true }, { "aa9728.co", true }, { "aaa-racing.com", true }, { "aaa-racing.net", true }, @@ -6238,7 +6201,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aaben-bank.dk", true }, { "aabenbank.dk", true }, { "aabenjaminjewelry.com", true }, - { "aacfree.com", true }, { "aacs-design.com", true }, { "aadv.com.br", true }, { "aaex.uk", true }, @@ -6249,17 +6211,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aaltocapital.com", true }, { "aamwa.com", true }, { "aanbieders.ga", true }, + { "aandachtsmeditatie.nl", true }, { "aandkevents.co.uk", true }, { "aanmpc.com", true }, { "aanwp.com", true }, { "aaomidi.com", true }, { "aapar.nl", true }, - { "aarailfan.com", true }, + { "aardvarksoep.nl", true }, { "aariefhaafiz.com", true }, { "aarklendoia.com", true }, { "aarkue.eu", true }, { "aaron-russell.co.uk", true }, - { "aaron.xin", true }, + { "aaron-schaal.de", true }, { "aaronburt.co.uk", true }, { "aaronfurtado.com", true }, { "aaronhorler.com", true }, @@ -6283,6 +6246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ab2888.cn", true }, { "ab28s.com", true }, { "ab2web.com", true }, + { "ab91corp.com", true }, { "abaapplianceservice.com", true }, { "abaaustin.com", true }, { "ababyco.com.hr", true }, @@ -6302,6 +6266,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abbeyvetspets.co.uk", true }, { "abbottscastles.co.uk", true }, { "abbruch-star.de", true }, + { "abbtw.com", true }, { "abc-rz.de", true }, { "abc-solutions.cf", true }, { "abc.li", true }, @@ -6314,8 +6279,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abcheck.se", true }, { "abckam.com", true }, { "abcode.ml", true }, + { "abcorporate-aviation.com", true }, + { "abcorporate-aviation.fr", true }, { "abcpartyhire.com", true }, { "abcstudio.com.au", true }, + { "abctowinghelp.com", true }, { "abdel.me", true }, { "abdelaliezzyn.be", true }, { "abdelaliezzyn.tk", true }, @@ -6325,7 +6293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abdullahavci.com.tr", true }, { "abdullahavci.net.tr", true }, { "abdullahzubayerofficial.ml", true }, - { "abdulrahman.eu", true }, + { "abdulrahman.eu", false }, { "abdulwahaab.ca", true }, { "abdurrahmangazidis.tk", true }, { "abdurrehman.tk", true }, @@ -6334,6 +6302,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abecodes.net", true }, { "abeilles-idapi.fr", false }, { "abelbarretto.tk", true }, + { "abellis-formation.com", true }, { "abelrubio.me", true }, { "abelsflooringandtile.com", true }, { "abenteuer-ahnenforschung.de", true }, @@ -6342,6 +6311,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aberdeencastles.co.uk", true }, { "aberdeenjudo.co.uk", true }, { "aberon.pl", true }, + { "abetterdeath.com", true }, { "abeus.com", true }, { "abg.ninja", true }, { "abhaldus.ee", true }, @@ -6349,6 +6319,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abhishekkabdijain.tk", true }, { "abi-2017.tk", true }, { "abi-fvs.de", true }, + { "abi95oha.de", true }, { "abiapp.net", true }, { "abibruce.co.uk", true }, { "abidinginhesed.com", true }, @@ -6378,6 +6349,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abmledger.ca", true }, { "abmtax.ca", true }, { "abn-consultants.ie", true }, + { "abnamropensioenen.nl", true }, { "abnehmen.com", true }, { "abobuch.de", true }, { "aboces.org", true }, @@ -6435,6 +6407,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abox-kb.com", true }, { "abpis.hr", true }, { "abracadabra.co.jp", false }, + { "abrafast.com", true }, + { "abrah.am", true }, { "abrahametalero.tk", true }, { "abraxan.pro", true }, { "abrightspark.gq", true }, @@ -6444,6 +6418,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "abrition.com", true }, { "abseits.org", true }, { "absolem.cc", false }, + { "absoluav.com", true }, + { "absoluconseils.com", true }, + { "absolucopine.com", true }, + { "absolugroupe.com", true }, + { "absoluphoto.com", true }, { "absolutcruceros.com", true }, { "absoluteautobody.com", true }, { "absolutedouble.co.uk", true }, @@ -6451,15 +6430,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "absoluterush.net", true }, { "absolutewebdesigns.com", true }, { "absolutviajes.com", true }, + { "abstechs.ae", true }, + { "abstimmen.online", true }, { "abstractbarista.com", true }, { "abstractbarista.net", true }, - { "abstraction21.com", true }, { "absturztau.be", true }, { "absturztaube.ch", true }, { "absynthe-inquisition.fr", true }, { "abth.tk", true }, { "abthorpe.org", true }, { "abulanov.com", true }, + { "abundanteconomy.com", true }, { "abundent.com", true }, { "abuse.ch", true }, { "abuse.fi", true }, @@ -6481,7 +6462,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "academica.nl", true }, { "academichealthscience.net", true }, { "academie-de-police.ch", false }, - { "academie-musique-nice.com", true }, + { "academie-essentiel.ch", true }, + { "academie-musique-nice.com", false }, { "academkin.com", true }, { "academus.io", true }, { "academy-awards.ml", true }, @@ -6497,6 +6479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acatec.de", true }, { "acbrussels-used.be", false }, { "accademia24.it", true }, + { "accademiaditruccoblog.it", true }, { "accademiapugilistica.it", true }, { "accadia.academy", true }, { "accbay.com", true }, @@ -6517,6 +6500,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accessibilityguidelines.com", true }, { "accessibletravelclub.com", true }, { "accesskeycloning.com", true }, + { "accessnetworks.com", true }, { "accessoirescheveuxchic.com", true }, { "accessoripersmartphone.it", true }, { "acchicocchi.com", true }, @@ -6538,6 +6522,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "accs.org.au", true }, { "accudraftpaintbooths.com", true }, { "accurateautobodywa.com", true }, + { "accuritconsulting.com", true }, { "accutint.com", true }, { "accwing.com", true }, { "acdcbrasil.net", true }, @@ -6558,6 +6543,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acemypaper.com", true }, { "acen.eu", true }, { "acerentalandsales.com", true }, + { "acerislaw.com", true }, { "aceshop702.com", true }, { "acessibilidadebr.com.br", true }, { "acessoeducacao.com", true }, @@ -6583,21 +6569,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "achterstieg.dedyn.io", true }, { "achtzehn.de", true }, { "achtzehn.eu", true }, - { "achtzehnterachter.de", true }, { "achtzig20.de", true }, { "achwo.de", true }, { "acid.ninja", true }, { "acihotel.vn", true }, { "aciksite.com", true }, - { "acilicraft.cn", true }, { "acinq.co", true }, { "ackermann.ch", true }, { "ackis.duckdns.org", true }, { "acl.gov", true }, + { "aclandia.fr", true }, { "aclu.org", false }, { "acluva.org", false }, + { "acmegamer.com", true }, { "acmi.fr", true }, { "acneintelligence.com", true }, + { "acnpacific.com", true }, { "acodess.com", true }, { "aconnor.xyz", true }, { "acordes.online", true }, @@ -6612,7 +6599,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acousticsoundrecords.com", true }, { "acoustique-tardy.com", false }, { "acperu.ch", false }, + { "acpica.org", true }, { "acpinformatique.fr", true }, + { "acprail.com.vn", true }, { "acquaparrucchieri.it", true }, { "acquire.media", true }, { "acquisition.gov", true }, @@ -6647,6 +6636,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "action-verite.fr", true }, { "actioncleaningnd.com", true }, { "actioncoachignite.co.za", true }, + { "actioncutprint.com", true }, { "actionfinancialservices.net", true }, { "actionlabs.net", true }, { "actionmadagascar.ch", false }, @@ -6703,6 +6693,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "acupunturamadrid.xyz", true }, { "acupunturavalencia.xyz", true }, { "acus.gov", true }, + { "acutehoest.nl", true }, { "acutewealthadvisors.com", true }, { "acwcerts.co.uk", true }, { "acwi.gov", true }, @@ -6724,6 +6715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ada.eco", true }, { "ada.gov", true }, { "adaera.com", true }, + { "adagia.eu", true }, { "adalis.org", true }, { "adam-ant.co.uk", true }, { "adam-kostecki.de", true }, @@ -6737,6 +6729,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adamfontenot.com", true }, { "adamgibbins.com", true }, { "adamh.us", true }, + { "adamh.website", true }, { "adamjoycegames.co.uk", true }, { "adamkostecki.de", true }, { "adamlee.com", true }, @@ -6753,14 +6746,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adapt-elektronik.com", true }, { "adapt.de", true }, { "adaptablesecurity.org", true }, - { "adaptergonomics.com", true }, { "adapti.de", true }, { "adaptiv.ltd", true }, { "adaptiveicons.com", true }, { "adaptivemechanics.edu.au", true }, { "adarixconsultores.com", true }, { "adarshcloud.in", true }, + { "adarshthapa.in", true }, { "adasbench.com", true }, + { "adata.kz", true }, { "adativos.com.br", true }, { "adawolfa.cz", true }, { "adayinthelifeof.nl", true }, @@ -6774,7 +6768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "addcrazy.com", true }, { "addeekt.com", true }, { "adderall.space", true }, - { "addicional.com", true }, + { "addictedtolength.co.uk", true }, { "addictic.fr", true }, { "addictionresource.com", true }, { "addictively.com", true }, @@ -6797,7 +6791,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adelebeals.com", true }, { "adelgace.top", true }, { "adelightfulglow.com", true }, + { "adelina.com.br", true }, { "adeline.mobi", true }, + { "adenos.in", true }, { "adentalsolution.com", true }, { "adeon.ml", true }, { "adept-elearning.com", true }, @@ -6811,12 +6807,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adhesivelaundry.co.uk", true }, { "adhgroup.ug", true }, { "adhocracy.plus", true }, + { "adi.com.au", true }, + { "adi.net.au", true }, + { "adidas-2020-spring.com", true }, { "adidasrunningpartners.com", true }, { "adiehard.party", false }, { "adimaja.com", true }, { "adimplere.com.br", true }, { "adinariversloveschool.com", true }, { "adingenierie.fr", true }, + { "adinternational.com.au", true }, { "adiprospero.it", true }, { "aditibhatia.com", true }, { "adjagu.org", true }, @@ -6849,15 +6849,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "admirable.pro", true }, { "admody.com", true }, { "admongo.gov", true }, + { "adn-recrutement.fr", true }, { "adnanotoyedekparca.com", true }, { "adnexa.it", true }, { "adnmb1.com", true }, { "adnolesh.com", true }, + { "adnotam.ch", true }, { "adnseguros.es", true }, { "adoll.ml", true }, { "adollarseo.com", true }, { "adomani-italia.com", true }, - { "adomicilio.com.gt", true }, { "adonai.eti.br", true }, { "adonis.hosting", true }, { "adonis.media", true }, @@ -6874,8 +6875,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adorecricket.com", true }, { "adorewe.com", true }, { "adorno-gymnasium.de", true }, + { "adotta.me", true }, { "adoucisseur.shop", true }, { "adpkdsim.org", true }, + { "adpot.xyz", true }, { "adquisitio.co.uk", true }, { "adquisitio.es", true }, { "adquisitio.fr", true }, @@ -6883,6 +6886,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adr.gov", true }, { "adra.com", true }, { "adrafinil.wiki", true }, + { "adrans.com", true }, + { "adregain.com", true }, + { "adregain.ru", true }, { "adrenalin.od.ua", true }, { "adrenalin.travel", true }, { "adrenaline-gaming.ru", true }, @@ -6893,16 +6899,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adriancostin.ro", true }, { "adrianjensen.com", true }, { "adrianmejias.com", true }, + { "adrianoansaldi.it", true }, { "adrianobarbosa.xyz", true }, + { "adrianseo.ro", false }, + { "adriarae.xyz", true }, + { "adriatic.hr", true }, { "adriatrans.ga", true }, { "adrienjacquierbret.com", true }, { "adrienkohlbecker.com", true }, { "adriennesmiles.com", true }, - { "adrinet.tk", true }, { "adrup.com", true }, { "adsamcik.com", true }, { "adsbouncycastles.co.uk", true }, { "adsbtc.org", true }, + { "adsense-arbitrage.com", true }, { "adsib.gob.bo", true }, { "adsl2meg.fr", true }, { "adsviews.gq", true }, @@ -6911,13 +6921,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adtgroup.com", true }, { "adult.properties", true }, { "adultbizz.eu", true }, + { "adultforum.gr", true }, { "adultwebcams1.com", true }, { "adurra.com", true }, { "aduvi.de", true }, { "adv-f1.ru", true }, { "adv.cr", true }, { "advaith.fun", true }, - { "advaithbot.com", true }, { "advaithnikhi.ml", true }, { "advaithnikhi.tk", true }, { "advance.hr", true }, @@ -6954,19 +6964,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "adventry.tk", true }, { "adventure-inn.com", true }, { "adventureally.com", true }, + { "adventurealpinetreks.com", true }, { "adventurecreators.com", true }, { "adventuredrives.com", false }, { "adventureforest.co.nz", true }, { "adventureforest.nz", true }, { "adventuregamers.com", true }, { "adventurenow.nl", true }, + { "adventures.com", true }, { "adventureswithlillie.ca", true }, { "adventureworldtour.com", true }, { "adventurousway.com", true }, + { "adventus.space", true }, { "adversus-test.tk", false }, { "adversus-web-staging.tk", false }, { "advertis.biz", true }, { "advertisemant.com", true }, + { "adveszker.hu", true }, + { "advisercentre.com.au", true }, { "advocate-europe.eu", true }, { "advocator.ca", true }, { "advocoeurdehaan.nl", true }, @@ -6976,6 +6991,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "advokat-vvp.com.ua", true }, { "advokaty-onlajn.gq", true }, { "advokaty-yuristy.tk", true }, + { "advst.uk", true }, { "advtran.com", true }, { "adware.pl", false }, { "adwokatkosterka.pl", true }, @@ -7013,20 +7029,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ae86zx.com", true }, { "aeb.io", true }, { "aebian.org", true }, + { "aebleskoven.dk", true }, { "aecexpert.fr", true }, { "aecis.org", true }, { "aedollon.com", true }, { "aefcleaning.com", true }, + { "aegee-utrecht.nl", true }, { "aegis.moe", true }, { "aegisalarm.co.uk", true }, { "aegisalarm.com", true }, { "aegisalarms.co.uk", true }, { "aegisalarms.com", true }, + { "aegisinsight.com", true }, { "aegrel.ee", true }, { "aeh5134.cc", true }, { "aehe.us", true }, { "aei.co.uk", true }, { "aeksistem.com", true }, + { "aelisya.net", true }, { "aelurus.com", true }, { "aenterprise.info", true }, { "aeon.co", true }, @@ -7059,6 +7079,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aesthetikpiercing.de", true }, { "aesthetx.com", true }, { "aestore.by", true }, + { "aesvalanalys.com", true }, { "aesym.de", true }, { "aeternus.tech", true }, { "aetherc0r3.eu", true }, @@ -7070,20 +7091,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aextron.de", true }, { "aextron.org", true }, { "af.link", true }, + { "afadvantage.gov", true }, { "afashion.com.au", true }, { "afavre.io", true }, { "afbeelding.im", true }, { "afbeeldinguploaden.nl", true }, + { "afbrunswick.com", true }, + { "afbtoto.com", true }, + { "afc-capital.mx", true }, { "afcmrs.org", true }, { "afcmrsfeedback.org", true }, { "afcmrstest.org", true }, - { "afcompany.it", true }, { "afcurgentcarelyndhurst.com", true }, { "affaire.com", true }, { "affairefacile.net", true }, { "affarsnatverk.nu", true }, + { "affcoupon.com", true }, { "affektblog.de", true }, - { "affichagepub3.com", true }, { "affiliates.trade", true }, { "affiliatetest.azurewebsites.net", true }, { "affilie.de", true }, @@ -7105,6 +7129,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "affordableracingparts.com.au", true }, { "affpass.com", true }, { "affping.com", true }, + { "affsquare.com", true }, { "affvps.net", true }, { "afgaim.com", true }, { "afghan.dating", true }, @@ -7116,12 +7141,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afinadoronline.com.br", true }, { "afinaudio.com", true }, { "afinterio.com", true }, + { "aflattr.com", true }, { "aflebedevo.tk", true }, { "aflfreebets.com", true }, { "aflowershop.ca", true }, { "afmtevents.com", true }, { "afonso.io", true }, { "afp548.com", true }, + { "afpayday.com", true }, + { "afrakib.com", true }, { "afri.cc", true }, { "africa.dating", true }, { "africalebanon.tk", true }, @@ -7134,10 +7162,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "afrikmag.com", true }, { "afrishade.com", true }, { "afrodigital.uk", true }, - { "afs-asso.org", true }, { "afscheidsportret.nl", true }, { "afslankspecialist.nl", true }, - { "aftab-alam.de", true }, { "after.digital", true }, { "afterdwi.info", true }, { "afterhate.fr", true }, @@ -7155,62 +7181,216 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ag-55.net", true }, { "ag-777.com", true }, { "ag0.app", true }, + { "ag000.com", true }, + { "ag01.la", true }, { "ag0101g.com", true }, + { "ag011.net", true }, + { "ag018.cc", true }, { "ag0202a.com", true }, + { "ag022.net", true }, + { "ag06.la", true }, + { "ag066.vip", true }, { "ag0707a.com", true }, + { "ag08.la", true }, + { "ag09.la", true }, + { "ag11.net", true }, + { "ag123.la", true }, + { "ag130.net", true }, + { "ag138.com", true }, + { "ag13842.com", true }, + { "ag1386.com", true }, { "ag1515a.com", true }, + { "ag155.net", true }, + { "ag158.cc", true }, { "ag1588.com", true }, + { "ag1601.com", true }, + { "ag1603.com", true }, + { "ag1604.com", true }, + { "ag1607.com", true }, + { "ag166.com", true }, { "ag18ks.com", true }, { "ag2.app", true }, { "ag2017.cc", true }, { "ag2020a.com", true }, + { "ag271.com", true }, + { "ag2722.com", true }, + { "ag2786.com", true }, + { "ag285.com", true }, + { "ag2855.com", true }, + { "ag288.vip", true }, + { "ag2886.com", true }, + { "ag2897.com", true }, + { "ag2978.com", true }, { "ag2983.com", true }, { "ag3.app", true }, + { "ag3.la", true }, + { "ag3115.com", true }, + { "ag3117.com", true }, + { "ag3119.com", true }, { "ag3131a.com", true }, { "ag3232g.com", true }, + { "ag33.la", true }, + { "ag388.vip", true }, + { "ag3916.com", true }, + { "ag3917.com", true }, + { "ag393.com", true }, + { "ag3953.com", true }, { "ag4.app", true }, { "ag4141a.com", true }, { "ag4848g.com", true }, { "ag4949g.com", true }, + { "ag5152.com", true }, + { "ag5159.com", true }, { "ag518518.net", true }, + { "ag5326.com", true }, + { "ag5358.com", true }, + { "ag5392.com", true }, + { "ag5519.com", true }, + { "ag556.com", true }, + { "ag5623.com", true }, + { "ag5657.com", true }, + { "ag5662.com", true }, { "ag5688.com", true }, + { "ag5758.com", true }, + { "ag5761.com", true }, + { "ag5852.com", true }, + { "ag5856.com", true }, + { "ag5862.com", true }, + { "ag5876.com", true }, { "ag58ks.com", true }, + { "ag5917.com", true }, + { "ag5933.com", true }, + { "ag5936.com", true }, + { "ag5939.com", true }, + { "ag5951.com", true }, + { "ag5952.com", true }, + { "ag5967.com", true }, + { "ag6.com", true }, + { "ag6.im", true }, + { "ag6.pub", true }, + { "ag6.pw", true }, + { "ag6.us", true }, + { "ag6.vc", true }, + { "ag6.vip", true }, { "ag600.com", true }, + { "ag600.la", true }, { "ag6005.com", true }, { "ag6016.com", true }, { "ag6033.com", true }, { "ag6037.com", true }, { "ag6072.com", true }, { "ag6086.com", true }, + { "ag618.la", true }, { "ag6211.com", true }, { "ag6215.com", true }, { "ag6225.com", true }, { "ag6262g.com", true }, + { "ag6272.com", true }, + { "ag6283.com", true }, + { "ag6291.com", true }, + { "ag6298.com", true }, { "ag6306.com", true }, { "ag660.com", true }, { "ag66321.com", true }, + { "ag66567.com", true }, + { "ag666.vip", true }, + { "ag66668.com", true }, + { "ag6675.com", true }, + { "ag6676.com", true }, + { "ag6819.com", true }, + { "ag6825.com", true }, { "ag686.com", true }, { "ag68ks.com", true }, + { "ag69000.com", true }, { "ag698.com", true }, + { "ag6995.com", true }, { "ag7.app", true }, + { "ag7.la", true }, { "ag700.com", true }, + { "ag72.vip", true }, + { "ag7273.com", true }, + { "ag77.la", true }, + { "ag77.win", true }, { "ag775.com", true }, + { "ag77655.com", true }, + { "ag7811.com", true }, + { "ag7822.com", true }, { "ag8-game.com", true }, { "ag8.email", true }, + { "ag8.im", true }, + { "ag8.live", true }, + { "ag8.us", true }, + { "ag8.vip", true }, { "ag800.com", true }, + { "ag806.tv", true }, { "ag80808.com", true }, { "ag80880.com", true }, + { "ag81117.com", true }, + { "ag81119.com", true }, + { "ag81122.com", true }, + { "ag81125.com", true }, + { "ag81163.com", true }, + { "ag81191.com", true }, + { "ag812.com", true }, + { "ag812.tv", true }, + { "ag81211.com", true }, + { "ag81213.com", true }, + { "ag81215.com", true }, + { "ag81268.com", true }, + { "ag81275.com", true }, + { "ag81277.com", true }, + { "ag81279.com", true }, + { "ag81325.com", true }, + { "ag81362.com", true }, + { "ag81393.com", true }, + { "ag81399.com", true }, + { "ag81568.com", true }, + { "ag816.com", true }, + { "ag81611.com", true }, + { "ag81613.com", true }, + { "ag818.cc", true }, + { "ag818.net", true }, { "ag8181g.com", true }, { "ag81826.com", true }, { "ag81867.com", true }, + { "ag81879.com", true }, + { "ag81881.com", true }, { "ag818818.com", true }, { "ag818818.net", true }, + { "ag81886.com", true }, + { "ag819.tv", true }, + { "ag81912.com", true }, + { "ag81917.com", true }, + { "ag81933.com", true }, + { "ag81939.com", true }, + { "ag82001.com", true }, + { "ag82006.com", true }, + { "ag82007.com", true }, + { "ag82011.vip", true }, + { "ag82015.com", true }, + { "ag82018.cc", true }, + { "ag82018.com", true }, + { "ag82022.cc", true }, + { "ag821.com", true }, + { "ag82135.com", true }, + { "ag8218.com", true }, + { "ag822.com", true }, + { "ag82225.com", true }, + { "ag82226.com", true }, + { "ag82287.com", true }, + { "ag8400.com", true }, + { "ag8500.com", true }, { "ag855.net", true }, + { "ag860.com", true }, + { "ag8600.com", true }, + { "ag865.com", true }, { "ag87777.com", true }, + { "ag8778.net", true }, { "ag878.com", true }, { "ag88-guide.com", true }, { "ag88.com", true }, { "ag880.com", true }, + { "ag880.win", true }, { "ag88001.com", true }, { "ag88008.com", true }, { "ag88018.com", true }, @@ -7259,38 +7439,76 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ag88dc22.com", true }, { "ag88ks.com", true }, { "ag89000.com", true }, + { "ag891.com", true }, + { "ag898.cc", true }, + { "ag899.com", true }, + { "ag89951.com", true }, { "ag89ks.com", true }, + { "ag8vip.com", true }, + { "ag9.com", true }, + { "ag9.im", true }, + { "ag9.vip", true }, + { "ag9005.com", true }, + { "ag905.com", true }, + { "ag908.com", true }, + { "ag9100.com", true }, { "ag918.ag", true }, + { "ag918.cc", true }, + { "ag918.co", true }, + { "ag918.top", true }, + { "ag92018.com", true }, + { "ag9532.com", true }, + { "ag955.net", true }, + { "ag96.win", true }, + { "ag961.com", true }, + { "ag9621.com", true }, + { "ag9623.com", true }, + { "ag966.net", true }, { "ag978.com", true }, + { "ag9792.com", true }, + { "ag9793.com", true }, + { "ag98.tv", true }, + { "ag9800.com", true }, + { "ag9815.com", true }, + { "ag983.com", true }, { "ag98ks.com", true }, + { "ag992.com", true }, + { "ag9931.com", true }, + { "ag995.com", true }, + { "ag9973.com", true }, { "ag998.com", true }, { "ag9999.co", true }, { "ag9ks.com", true }, + { "ag9vip.com", true }, { "agaa35.com", true }, { "agaa41.com", true }, + { "agagent.vip", true }, { "agalliasis.ch", false }, + { "agambarta.com", true }, { "agamsecurity.ch", false }, { "agatajanik.de", true }, { "agate.pw", true }, { "agaveandpine.com", true }, { "agdalieso.com.ba", true }, + { "agds.pw", true }, + { "age-encryption.org", true }, + { "age.hk", false }, { "agechecker.net", true }, { "agefriendlyri.org", true }, - { "ageg.ca", true }, { "agelesscitizen.com", true }, { "agelesscitizens.com", true }, { "agemfis.com", true }, { "agence-wazacom.fr", true }, { "agences-cegee.fr", true }, + { "agencesaintpierre.fr", true }, { "agencia.barcelona", true }, { "agencia.cat", true }, { "agencia.pro", true }, - { "agenciabonobo.com", true }, { "agenciacorujadesign.com.br", true }, { "agenciadeempregosdourados.com.br", true }, { "agenciafiscal.pe", true }, - { "agenciamseo.com.br", true }, { "agencyalacarte.com", true }, + { "agencybeam.com", true }, { "agencyinmotion.com", true }, { "agencymanager.be", true }, { "agencytsunami.com", true }, @@ -7298,7 +7516,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agenda21senden.de", true }, { "agendaspectacles.fr", true }, { "agent-grow.com", true }, - { "agenteit.com", true }, { "agentprocessing.com", true }, { "agentrisk.com", true }, { "agentur-pottkinder.de", true }, @@ -7308,6 +7525,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agenziapubblicitaria.roma.it", true }, { "ageragrosirdistro.com", false }, { "agfmedia.com", true }, + { "agg097.com", true }, + { "agg66.com", true }, + { "agg77.com", true }, + { "agg88.com", true }, { "agglo-sion.ch", true }, { "agh6p.com", true }, { "aghayeva-edler.de", true }, @@ -7318,7 +7539,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agilebits.com", true }, { "agilebits.net", false }, { "agilecraft.com", true }, - { "agilesurvey.ch", true }, { "agileui.com", true }, { "agiley.se", true }, { "agilicus.ca", true }, @@ -7329,6 +7549,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agingstop.net", true }, { "aginion.net", true }, { "agiserv.fr", true }, + { "agk.co.com", true }, { "agks0.com", true }, { "agks006.com", true }, { "agks007.com", true }, @@ -7440,6 +7661,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agm8383.com", true }, { "agnesk.blog", true }, { "agonswim.com", true }, + { "agonworks.com", true }, { "agoodmind.com", true }, { "agoravm.tk", true }, { "agoravox.fr", true }, @@ -7461,6 +7683,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agouraoutdoorlighting.com", true }, { "agowa338.de", true }, { "agpideas.com", true }, + { "agproducts.co.uk", true }, { "agpsn.com", true }, { "agr.asia", true }, { "agrargruppe.tk", true }, @@ -7468,12 +7691,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agrarking.de", true }, { "agrarshop4u.de", true }, { "agrekov.ru", true }, + { "agremo.com", true }, { "agreor.com", true }, { "agrichamber.com.ua", true }, { "agriculture-schools.com", true }, - { "agridir.site", true }, { "agrikulturchic.com", true }, { "agrios.de", true }, + { "agripartner.fr", true }, { "agriquads.nl", true }, { "agro-forestry.net", true }, { "agrobaza.com.ua", true }, @@ -7492,12 +7716,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "agslot.com", true }, { "agslot.net", true }, { "agslot777.com", true }, + { "agsogou.com", true }, + { "agsun6.com", true }, { "aguiascarecas.org", true }, - { "aguijara.com", true }, { "agung-furniture.com", true }, + { "agvip1000.com", true }, { "agvip168.com", true }, + { "agvip1888.com", true }, + { "agvip2001.com", true }, + { "agvip2008.com", true }, + { "agvip2013.com", true }, { "agvip88.com", true }, { "agvip8800.com", true }, + { "agvip986.com", true }, { "agwa.name", true }, { "agweili.com", false }, { "agwin1.com", true }, @@ -7515,6 +7746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ahd.com", false }, { "ahegao.ca", true }, { "ahero4all.org", true }, + { "ahfazahmed.net", true }, { "ahidta.gov", true }, { "ahj.no", true }, { "ahkubiak.ovh", false }, @@ -7579,8 +7811,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aignermunich.com", true }, { "aignermunich.de", true }, { "aignermunich.jp", true }, - { "aiho.stream", true }, - { "aiicy.org", true }, { "aiinsurance.io", true }, { "aiinsurance.xyz", true }, { "aijsk.com", true }, @@ -7588,6 +7818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aikenpromotions.com", true }, { "aiki.de", true }, { "aiki.do", true }, + { "aiki.tk", false }, { "aikido-club-limburg.de", true }, { "aikido-kiel.de", true }, { "aikido-linz.at", true }, @@ -7600,23 +7831,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aimeeandalec.com", true }, { "aimgroup.co.tz", true }, { "aimi-salon.com", true }, - { "aimiastestseries.com", true }, { "aimotive.com", true }, { "aimrom.org", true }, - { "aimstoreglobal.com", true }, { "ainfographie.com", true }, - { "aini99.club", false }, { "ainvest.de", true }, { "ainzu.net", true }, { "aioboot.com", true }, { "aiois.com", true }, { "aipbarcelona.com", true }, { "aiphyron.com", true }, + { "aipi.de", true }, { "air-craftglass.com", true }, { "air-shots.ch", false }, { "air-techniques.fr", true }, { "air-we-go.co.uk", true }, - { "airanyumi.net", true }, + { "airalamo.com", true }, { "airbnb.ae", true }, { "airbnb.at", true }, { "airbnb.be", true }, @@ -7712,6 +7941,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "airikai.com", true }, { "airlibre-parachutisme.com", true }, { "airlinesettlement.com", true }, + { "airlinesreservation.org", true }, { "airmail.cc", false }, { "airmash.online", true }, { "airmaxinflatables.com", true }, @@ -7720,7 +7950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "airplay-inflatable-hire.co.uk", true }, { "airplayradio.nl", true }, { "airport-charlotte.com", true }, - { "airportal.cn", true }, + { "airportal.cn", false }, { "airpurifierproductsonline.com", true }, { "airrestoration.ch", true }, { "airship.com", true }, @@ -7732,6 +7962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "airtec-france.fr", true }, { "airtimerewards.co.uk", false }, { "airtoolaccessoryo.com", true }, + { "airventilation.ca", true }, { "airvpn.org", true }, { "airvuz.com", true }, { "airwaystorage.net", true }, @@ -7754,6 +7985,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aivan.ai", true }, { "aivd.lol", true }, { "aivene.com", true }, + { "aiwansky.com", true }, { "aiwosq.cn", true }, { "aizxxs.com", true }, { "aizxxs.net", true }, @@ -7762,7 +7994,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ajarope.com", true }, { "ajaxed.net", true }, { "ajaxtime.tk", true }, - { "ajbenet.com", true }, { "ajbouncycastles.co.uk", true }, { "ajces.com", true }, { "ajdiaz.me", true }, @@ -7788,6 +8019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ak-webit.de", true }, { "ak47-miyamoto.spdns.org", true }, { "aka.ms", true }, + { "akaal.pw", true }, { "akachanikuji.com", true }, { "akademeia.moe", true }, { "akademie-frankfurt.de", true }, @@ -7797,6 +8029,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akash.tk", true }, { "akasha.world", true }, { "akashdsouza.now.sh", true }, + { "akay.me", true }, { "akdigitalegesellschaft.de", false }, { "akdusekbudil.cz", true }, { "akeenext.com", true }, @@ -7819,7 +8052,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "akj.io", true }, { "akkade.be", true }, { "akkbouncycastles.co.uk", true }, - { "akkeylab.com", true }, { "akmade.uk", true }, { "akoch.net", true }, { "akostecki.de", true }, @@ -7886,7 +8118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alan.moe", false }, { "alana.com.ua", true }, { "alanberger.me.uk", true }, - { "aland.co.uk", true }, { "alandoyle.com", true }, { "alanhua.ng", true }, { "alanhuang.name", true }, @@ -7905,18 +8136,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alasta.info", true }, { "alastairs-place.net", true }, { "alatkesehatan.tk", true }, + { "alaturkaonline.com", true }, { "alauda-home.de", true }, { "alaundeil.xyz", true }, { "alaunus.com", true }, { "alaxyjewellers.co.za", true }, { "alb-flirt.de", true }, { "albagora.nl", true }, + { "albalat.cat", true }, + { "albalat.info", true }, { "albalatedelarzobispo.tk", true }, { "albanesi.it", true }, { "albanycountydems.com", true }, { "albareport.com", true }, - { "albatrosswear.com", true }, { "albbounce.co.uk", true }, + { "albergolafiorita.com", true }, { "alberoraydolap.com", true }, { "albersdruck.de", true }, { "albert-yu.com", true }, @@ -7929,6 +8163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "albilaga.id", true }, { "albinma.com", true }, { "albion2.org", true }, + { "albionfaeries.org.uk", true }, { "alboweb.nl", true }, { "albrocar.com", true }, { "albstaedter-kids-cup.de", true }, @@ -7938,7 +8173,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alcatelonetouch.us", true }, { "alchemy-media-marketing.com", true }, { "alchemy.gr", true }, + { "alchemyvfx.com", true }, { "alchimic.ch", false }, + { "alcites.com", true }, { "alcnutrition.com", true }, { "alco-united.com", true }, { "alcobendas.tk", true }, @@ -7989,7 +8226,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alexandra-schulze.de", true }, { "alexandrastorm.com", true }, { "alexandrastylist.com", false }, - { "alexandre-blond.fr", true }, { "alexandrefa.ovh", true }, { "alexandreguarita.com.br", true }, { "alexandros.io", true }, @@ -8044,11 +8280,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alfa-host.ml", true }, { "alfa-tech.su", true }, { "alfacharlie.co", true }, + { "alfadlmedical.com", true }, { "alfadlmedical.net", true }, - { "alfagroup.es", true }, { "alfaproweb.fr", true }, { "alfastone.com.ua", true }, { "alfavit.cf", true }, + { "alfiebarker.com", true }, { "alforto.nl", true }, { "alfratehotelcampiglio.it", true }, { "alfred-figge.de", true }, @@ -8066,16 +8303,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "algorithmic.ml", true }, { "algorithmofsuccess.com", true }, { "algoritmus-uspechu.cz", true }, + { "algoritmususpechu.cz", true }, + { "algustionesa.com", true }, { "alhost.ml", true }, { "aliacraft.net", true }, + { "aliancapelobrasil.rio.br", true }, { "aliantsoft.pl", true }, { "aliaswp.com", true }, + { "alibamu.com", true }, { "alibamu.org", true }, { "alibangash.com", true }, { "alibip.de", true }, { "alice-memorial.de", true }, { "alice-noutore.com", true }, - { "alice-of-alice.top", true }, { "alice.tw", true }, { "alicemaywebdesign.com.au", true }, { "alicestudio.it", true }, @@ -8092,11 +8332,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alighierirescaldina.it", true }, { "alignrs.com", true }, { "aliim.gdn", true }, - { "alijammusic.com", false }, { "alikulov.me", true }, { "alilialili.ga", true }, + { "alimentosmcf.com", true }, + { "alimentsduquebecaumenu.com", true }, { "alinasmusicstudio.com", true }, { "alinbu.net", true }, + { "alineasatu.com", true }, { "alineonline.tk", true }, { "alinode.com", true }, { "aliorange.com", true }, @@ -8122,7 +8364,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alkamitech.com", true }, { "alkel.info", true }, { "alkemi-si.fr", true }, - { "alko-centr.ru", true }, { "alko-stop.ml", true }, { "alkopedia.tk", true }, { "alkor.tk", true }, @@ -8133,7 +8374,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "all-things.tk", true }, { "all4hardware4u.de", true }, { "all878.com", true }, - { "allaboutbelgaum.com", false }, { "allaboutfunuk.com", true }, { "allaboutgreg.net", true }, { "allaboutreligions.tk", true }, @@ -8162,14 +8402,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allcarepharmacy.com", true }, { "allcarespecialty.pharmacy", true }, { "allcinema.net", true }, - { "allcleaningservice.org", true }, { "allcleanservices.ca", true }, { "allcloud.com", true }, { "allcountyins.com", true }, { "allcovered.nl", true }, { "allcoveredbyac.com", true }, { "alldewall.de", true }, - { "alldigitalsolutions.com", true }, { "alldm.ru", true }, { "alle-zonvakanties.nl", true }, { "alle.bg", true }, @@ -8188,9 +8426,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allforyou.at", true }, { "allfundsconnect.com", true }, { "allgaragefloors.com", true }, + { "allgemeinarzt-wenta-bralla.de", true }, { "allgosts.ru", true }, { "allgovernmentjobs.in", true }, - { "allgrass.es", true }, { "allgrass.net", true }, { "allgreenturf.com.au", true }, { "allhard.org", true }, @@ -8225,7 +8463,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allontanamentovolatili.it", true }, { "allontanamentovolatili.milano.it", true }, { "allopurinol300mg.ml", true }, - { "alloutatl.com", true }, { "alloutofgum.com", true }, { "alloutsec.com", true }, { "alloverthehill.com", true }, @@ -8255,7 +8492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allstarcashforcars.com", true }, { "allstarpartyinflatables.co.uk", true }, { "allstarquilts.com", true }, - { "allstorebrasil.com.br", true }, { "allsun.online", true }, { "allsurpl.us", true }, { "allsync.com", true }, @@ -8272,6 +8508,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "allthingswild.co.uk", true }, { "alltubedownload.net", true }, { "allurebikerental.com", true }, + { "alluremedicalaesthetic.com", true }, { "allurescarves.com", true }, { "alluvion.studio", true }, { "allvips.ru", false }, @@ -8318,6 +8555,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alpha-bet.com.ua", true }, { "alpha-force.net", false }, { "alpha-premium.com", true }, + { "alpha-shop.gr", true }, { "alpha.ch", true }, { "alpha88uat.com", true }, { "alphaantileak.net", true }, @@ -8331,6 +8569,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alphafiduciaryservices.ch", false }, { "alphahunks.com", true }, { "alphainflatablehire.com", true }, + { "alphaman.ooo", true }, { "alphamedphysicians.com", true }, { "alphanodes.com", true }, { "alphapengu.in", true }, @@ -8341,6 +8580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alphasall.com", true }, { "alphasib.ru", true }, { "alphassl.de", true }, + { "alphatrash.de", true }, { "alphavote-avex.com", true }, { "alphavote.com", true }, { "alphera.nl", true }, @@ -8353,8 +8593,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alpinepubliclibrary.org", true }, { "alpinestarmassage.com", true }, { "alplogopedia.it", true }, - { "alpstarentaisetaxi.com", true }, - { "alpstarentaisetaxi.fr", true }, { "alquds.edu", true }, { "alquiaga.com", true }, { "alrait.com", true }, @@ -8378,6 +8616,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altedirect.com", true }, { "alteiria.fr", true }, { "alter-news.fr", true }, + { "alteralife.eu", true }, { "alteraro.com", true }, { "alteraro.org", true }, { "alterbaum.net", true }, @@ -8388,12 +8627,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alternative.hosting", true }, { "alternativebit.fr", true }, { "alternativedev.ca", true }, - { "alternativehosting.ca", true }, { "alternativehosting.com", true }, { "alternativeinternet.ca", true }, { "alternativet.party", true }, { "alternativetomeds.com", true }, { "alternatiwa.tk", true }, + { "alternatyv.ch", true }, { "alterspalter.de", true }, { "altertek.org", true }, { "altes-sportamt.de", true }, @@ -8402,6 +8641,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altijdleroy.nl", true }, { "altijdleroy.online", true }, { "altisdev.com", true }, + { "altiup.com", true }, { "altkremsmuensterer.at", true }, { "altmaestrat.es", true }, { "altmann-systems.de", true }, @@ -8415,21 +8655,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "altporn.xyz", true }, { "altrui.st", true }, { "altsdigital.com", true }, - { "altstipendiaten.de", true }, { "alttrackr.com", true }, { "altunbas.info", true }, + { "alukard999.tk", true }, { "aluminium-express.ru", true }, { "alumni-kusa.jp", true }, + { "alunara.eu", true }, { "alupferd.de", true }, { "aluroof.eu", true }, { "alushta-vostorg.tk", true }, { "alvaiazere.net", true }, - { "alvcs.com", true }, { "alviano.com", false }, { "alvicom.hu", true }, { "alvimedika.com.ua", true }, { "alvn.ga", true }, { "alvosec.com", true }, + { "alwa.fi", true }, + { "always.com.mx", true }, { "alwayshowher.tk", true }, { "alwayslookingyourbest.com", true }, { "alwaysmine.fi", true }, @@ -8440,7 +8682,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alxyjc.net", true }, { "alyanak.ca", true }, { "alyoung.com", true }, - { "alyssahart.net", true }, { "alza.at", true }, { "alza.co.uk", true }, { "alza.cz", true }, @@ -8448,21 +8689,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "alza.hu", true }, { "alza.sk", true }, { "alzashop.com", true }, + { "alziamoiltetto.it", true }, { "am-39.com", true }, { "am-dd.com", true }, { "am-executive-consulting.com", true }, + { "am-globalgroup.com", true }, { "am-liaotian.com", true }, { "am156.com", true }, { "am2288m.com", true }, { "am22i6xaf1m2a5m9k.xyz", true }, { "am2s.fr", true }, { "am3.se", true }, + { "am5.pl", true }, { "am5039.com", true }, { "am5188.com", true }, { "am5199.com", true }, - { "am5566m.com", true }, { "am6118.com", true }, { "am615.am", true }, + { "am8.ag", true }, { "am8.com", true }, { "am8.im", true }, { "am8009.com", true }, @@ -8479,7 +8723,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "am8898.net", true }, { "am8info.com", true }, { "am9588.com", true }, - { "am9d104.com", true }, { "ama.ne.jp", true }, { "amaderelectronics.com", true }, { "amadoraslindas.com", true }, @@ -8489,6 +8732,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amagical.net", false }, { "amaiz.com", true }, { "amal2019.com", true }, + { "amalfi5stars.com", true }, { "amalficoastransfers.it", true }, { "amalfilapiazzetta.it", true }, { "amalfipositanoboatrental.com", true }, @@ -8505,6 +8749,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amaranthus.com.ph", true }, { "amardham.org", true }, { "amaresq.com", true }, + { "amarreconbrujeria.com", true }, + { "amarresconvudu.com", true }, + { "amarresimposibles.com", true }, + { "amarresperuanos.com", true }, + { "amarresydominio.com", true }, { "amartinz.at", true }, { "amateri.com", true }, { "amateurpornhours.com", true }, @@ -8513,10 +8762,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amati.solutions", true }, { "amato.tk", true }, { "amatsuka.com", true }, + { "amatzen.dk", true }, { "amauf.de", true }, { "amautorepairwa.com", true }, { "amazetimberfurniture.com.au", true }, - { "amazighlove.com", true }, { "amazili-communication.com", true }, { "amazing-castles.co.uk", true }, { "amazinginflatables.co.uk", true }, @@ -8531,6 +8780,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amberglowleisure.co.uk", true }, { "amberlightleisure.com", true }, { "amberoad.tk", true }, + { "amberwiz.com", true }, { "ambholding-usedcars.be", false }, { "ambiente.one", true }, { "ambiq.nl", true }, @@ -8548,11 +8798,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amdm.ru", true }, { "amdouglas.com", true }, { "amdouglas.uk", true }, + { "amechancez.work", true }, { "ameego.com", true }, { "ameego.it", true }, { "ameego.net", true }, { "ameego.nl", true }, { "ameego.org", true }, + { "ameeradubai.com", true }, { "amees.me", false }, { "ameeventos.pt", true }, { "ameho.me", false }, @@ -8563,20 +8815,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "america.gov", true }, { "america250.gov", true }, { "americafamilylawcenter.org", true }, + { "americagambles.com", true }, { "american-school-search.com", true }, { "american.dating", true }, + { "americanartwarehouse.com", true }, { "americandetour.com", true }, { "americanflooring.co", true }, { "americanfoundationbr.com", true }, + { "americanindiancoc.org", false }, { "americanindiannursing.com", true }, { "americanmediainstitute.com", true }, + { "americanreservations.us", true }, { "americans.cam", true }, - { "americansforcommunitydevelopment.org", true }, { "americanunicornparty.tk", true }, { "americanwater.lk", true }, { "americasbasementcontractor.com", true }, { "americasdirector.com", true }, + { "americathebeautifulquarters.gov", true }, { "americkykongres.cz", true }, + { "americoadvogados.com.br", true }, { "americorps.gov", true }, { "ameriikanpoijat.org", true }, { "amerika-forum.de", true }, @@ -8586,9 +8843,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ames.gq", true }, { "amesgen.de", true }, { "amesvacuumrepair.com", true }, - { "amethystbodyart.com", true }, { "amethystcards.co.uk", true }, { "amethystdevelopment.co.uk", true }, + { "amethystwebsitedesign.com", true }, { "ameza.co.uk", true }, { "ameza.com.mx", true }, { "ameza.io", true }, @@ -8606,6 +8863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amicalecanyon.ch", false }, { "amiciperlatesta.it", true }, { "amifoundation.net", true }, + { "amigosencanada.com", true }, { "amigucrochet.com", true }, { "amikootours.com", true }, { "amilum.org", true }, @@ -8623,7 +8881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amiserver.de", true }, { "amisharingstuff.com", true }, { "amitabhsirkiclasses.org.in", true }, - { "amitpatra.com", true }, + { "amitpatra.com", false }, { "amiu.org", true }, { "amj74-informatique.fr", true }, { "amjinc.ca", true }, @@ -8636,6 +8894,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amministratorecondominio.roma.it", true }, { "ammobrand.com", true }, { "amnesty-bf.org", true }, + { "amnesty-in-bewegung.de", true }, { "amnesty.org.au", true }, { "amnesy.fr", true }, { "amobileway.co.uk", true }, @@ -8644,6 +8903,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amoozesh98.com", true }, { "amoozesh98.ir", true }, { "amorgos-aegialis.com", true }, + { "amorgosrentandgo.gr", true }, { "amorim.ca", true }, { "amoryurgentcare.com", true }, { "amosng.com", true }, @@ -8658,6 +8918,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amplead.com", true }, { "ampledesigners.com", true }, { "ampleinfographics.com", true }, + { "ampleitsolutions.com.au", true }, { "ampleroads.com", true }, { "ampproject.com", true }, { "ampproject.org", true }, @@ -8675,12 +8936,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amt-taxfrance.com", true }, { "amtcd88.com", true }, { "amtentertainments.co.uk", true }, - { "amtsinfo.in", true }, { "amunoz.org", true }, { "amuq.net", true }, { "amuraimpianti.it", true }, { "amusa.cl", true }, + { "amv.su", true }, { "amvip9.com", true }, + { "amvisualgraphics.com", true }, { "amxpj888.com", false }, { "amyfoundhermann.com", true }, { "amymabel.com", true }, @@ -8691,9 +8953,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "amzn.rocks", true }, { "an-alles-gedacht.de", true }, { "an7hrax.se", true }, - { "anabolic.co", false }, { "anabolickdieta.ga", true }, { "anabolics.tk", true }, + { "anabolitics.com", true }, { "anachristinarodriguez.com", true }, { "anacreon.de", true }, { "anacruz.es", true }, @@ -8702,8 +8964,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anageorgia.com", true }, { "anagramma.tk", true }, { "anaiscoachpersonal.es", true }, - { "anaisfae.art", true }, - { "anaisypirueta.es", true }, { "anakin.ca", true }, { "analangelsteen.com", true }, { "analgesia.net", true }, @@ -8720,14 +8980,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "analyticum.eu", true }, { "analyticum.net", true }, { "analyzemyfriends.com", true }, + { "anamelikian.com", true }, { "anandchowdhary.com", true }, { "ananiev.ml", true }, { "ananke.io", true }, { "anankecosmetics.com", true }, { "ananswer.org", true }, { "anantshri.info", true }, - { "ananyoo.com", true }, { "anarajaoui.ma", true }, + { "anarchista.top", true }, { "anarchistischegroepnijmegen.nl", false }, { "anarchistos.tk", true }, { "anarcho-copy.org", true }, @@ -8740,7 +9001,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anastasia-shamara.ru", true }, { "anatoray.com", true }, { "anayarealm.com", true }, - { "anblik.com", true }, { "ance.lv", false }, { "ancel.io", true }, { "ancestramil.fr", true }, @@ -8750,7 +9010,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anciennes-automobiles.fr", true }, { "anciens.org", true }, { "ancient-gates.de", true }, - { "ancient-times.info", true }, { "ancientnorth.com", true }, { "ancientnorth.nl", true }, { "ancolies-andre.com", false }, @@ -8784,11 +9043,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andreagobetti.com", true }, { "andreagourmet.it", true }, { "andreahruby.it", true }, - { "andrealand.sk", true }, { "andreamcnett.com", true }, { "andreariccitraduzioni.it", true }, { "andreas-kluge.eu", true }, - { "andreaseracleous.com", true }, { "andreasfeusi.ch", true }, { "andreasjanker.de", true }, { "andreaskluge.eu", true }, @@ -8836,6 +9093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andrewsun.com", true }, { "andrewtasso.com", true }, { "andrewtchin.com", true }, + { "andrewwiggins.ca", true }, { "andrewx.net", true }, { "andrey.red", true }, { "andrey1p.ru", true }, @@ -8843,7 +9101,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andreypopp.com", true }, { "andreysmirnov.tk", true }, { "andrianova.ml", true }, - { "andrija-i-andjelka.com", true }, { "andriraharjo.com", true }, { "andrisilberschmidt.ch", true }, { "andro2id.com", true }, @@ -8858,13 +9115,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "androidservicetool.com", true }, { "androidsis.com", true }, { "androidtamer.com", true }, + { "androidtcpdump.com", true }, { "androidtelefony.cz", true }, { "androidzone.me", true }, { "andromeda.se", true }, { "andromedacenter.com", true }, { "andronika.net", false }, - { "androtech.xyz", true }, - { "androticsdirect.com", true }, { "androtix.com", true }, { "andruvision.cz", true }, { "andsat.org", true }, @@ -8876,6 +9132,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "andycraftz.eu", true }, { "andycrockett.io", true }, { "andys-place.co.uk", true }, + { "andyson.at", true }, { "andysroom.dynu.net", true }, { "andyt.eu", true }, { "andzia.art.pl", true }, @@ -8899,14 +9156,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "angelesydemonios.es", true }, { "angeletakis.net", true }, { "angelicare.co.uk", true }, + { "angelikaclothing.com", true }, + { "angelikasolorzano.cloud", true }, { "angelinahair.com", true }, { "angeljmadrid.com", true }, + { "angeloanan.xyz", true }, { "angelok.ru", true }, { "angelremigene.com", false }, { "angelsgirl.eu.org", true }, { "angelspabeauty.co.uk", true }, { "angepsychedelices.tk", true }, { "angiejones.com", true }, + { "angiewickes.com", true }, { "anginf.de", true }, { "angkasa.net.id", true }, { "anglersconservation.net", true }, @@ -8916,7 +9177,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anglictinasojcak.cz", true }, { "anglingactive.co.uk", true }, { "anglirl.eu.org", true }, - { "angora.freesite.host", true }, { "angora.me", true }, { "angrido.com", true }, { "angristan.fr", true }, @@ -8939,7 +9199,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anim.ee", true }, { "animaemundi.be", false }, { "animal-liberation.com", true }, + { "animal-nature-human.com", true }, { "animal-rights.com", true }, + { "animalconnect.org.za", true }, { "animalistic.io", true }, { "animalliberation.tk", true }, { "animalstropic.com", true }, @@ -8947,7 +9209,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "animalz.tk", true }, { "animamega.tk", true }, { "animan.ca", true }, - { "animationsmusicales.ch", false }, { "anime-culture.com", true }, { "anime-rg.com", true }, { "anime-tip.com", true }, @@ -8966,12 +9227,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "animefluxxx.com", true }, { "animehf.com", true }, { "animeinsights.net", true }, + { "animem.es", true }, { "animemotivation.com", true }, { "animeone.me", true }, { "animes-portal.info", true }, { "animesharp.com", true }, { "animetriad.com", true }, { "animojis.es", true }, + { "animorphsfanforum.com", true }, { "anipassion.com", false }, { "anirvalle.com", true }, { "anitaalbersen.nl", true }, @@ -8995,7 +9258,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ankitpati.in", true }, { "ankiuser.net", true }, { "ankiweb.net", true }, - { "ankwanoma.com", true }, { "ankya9.com", true }, { "anleitung-deutsch-lernen.de", true }, { "anleitung-zum-flechten.de", true }, @@ -9013,6 +9275,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annangela.moe", true }, { "annarokina.com", true }, { "annawagner.pl", true }, + { "annawang.com.au", true }, { "annedaniels.co.uk", true }, { "anneeden.de", true }, { "annejan.com", true }, @@ -9025,6 +9288,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annevankesteren.com", true }, { "annevankesteren.nl", true }, { "annevankesteren.org", true }, + { "annexorien.com", true }, { "anney-life.com", true }, { "annicascakes.nl", true }, { "anniversary-cruise.com", true }, @@ -9037,6 +9301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "annuaire-jcb.com", true }, { "annuaire-photographe.fr", false }, { "annunciationbvmchurch.org", true }, + { "annynantasiri.com", true }, { "anodas.lt", true }, { "anohana.org", true }, { "anojan.com", true }, @@ -9048,13 +9313,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anoncrypto.org", true }, { "anoneko.com", true }, { "anongoth.pl", true }, + { "anonish.com", true }, { "anonrea.ch", true }, { "anons.fr", false }, { "anonser.tk", true }, { "anonukradio.org", true }, { "anonym-surfen.de", true }, + { "anonym-surfen.online", true }, { "anonyme-spieler.at", true }, { "anonymousbitcoinexchange.org", true }, + { "anonymster.com", true }, { "anopan.tk", true }, { "anora.ai", true }, { "anoracdn.net", true }, @@ -9090,11 +9358,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antanavagefarbiarz.com", true }, { "antani.cloud", true }, { "antarcti.co", true }, - { "antarees.net", true }, { "antaresmedia.com.py", true }, - { "antarespc.com", true }, { "antcas.com", false }, { "antecim.fr", true }, + { "antelope.ai", true }, { "antennajunkies.com", true }, { "antennista.bari.it", true }, { "antennista.catania.it", true }, @@ -9126,6 +9393,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "anti-nsa.tk", true }, { "anti-radar.org", true }, { "anti-spy.net", false }, + { "antianti.nl", true }, { "antiaz.com", true }, { "anticapitalist.party", false }, { "anticopyright.com", true }, @@ -9139,7 +9407,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antikvarius.ro", true }, { "antilaserpriority.com", true }, { "antiled.by", true }, - { "antimine.kr", false }, { "antimine.me", true }, { "antincendio.it", true }, { "antincendio.roma.it", true }, @@ -9152,7 +9419,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antispeciesist.com", true }, { "antivirusprotection.reviews", true }, { "antizon.net", true }, - { "antocom.com", true }, + { "antocom.net", true }, { "antoga.eu", true }, { "antoinedeschenes.com", true }, { "antoineelizabe.com", true }, @@ -9161,11 +9428,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "antonellabb.eu", true }, { "antonimos.com.br", true }, { "antonin.one", true }, - { "antonio-gartenbau.de", true }, + { "antonio-gartenbau.de", false }, { "antoniogatti.ro", true }, + { "antoniotirado.com", true }, { "antonjuulnaber.dk", true }, { "antonoff.tk", true }, { "antonok.com", true }, + { "antonyraz.de", true }, { "antota.lt", true }, { "antragsgruen.de", true }, { "antraxx.ee", true }, @@ -9235,6 +9504,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apachehaus.de", false }, { "apachelounge.com", true }, { "apachezone.com", true }, + { "apadmi.com", true }, { "apadvantage.com", true }, { "apalancamiento.trade", true }, { "aparaatti.org", true }, @@ -9254,7 +9524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apdx.com", true }, { "apef.ch", false }, { "apercloud.es", true }, - { "apertis.org", true }, + { "apertis.org", false }, { "aperture-science.net", true }, { "apertureimaging.com", true }, { "aperturelabs.tk", true }, @@ -9270,9 +9540,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "api-connect.com", false }, { "api.biz.tr", true }, { "api.intercom.io", true }, - { "api.lookout.com", false }, + { "api.lookout.com", true }, { "api.recurly.com", true }, - { "api.simple.com", false }, { "api.xero.com", false }, { "apiary.blog", true }, { "apiary.clothing", true }, @@ -9291,9 +9560,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apirest.top", true }, { "apis.blue", true }, { "apis.google.com", true }, + { "apisvida.com.br", true }, { "apisyouwonthate.com", true }, { "apitodemestre.com.br", true }, { "apiu.me", true }, + { "apix.uz", true }, { "apk.li", true }, { "apk4fun.com", true }, { "apkclash.com", true }, @@ -9305,7 +9576,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aplis-online.de", false }, { "aplpackaging.co.uk", true }, { "aplu.fr", true }, - { "aplus-usa.net", true }, { "aplusdownload.com", true }, { "apluswaterservices.com", true }, { "apm.com.tw", true }, @@ -9316,10 +9586,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apobot.de", true }, { "apocalypseboard.tk", true }, { "apocalypsemud.org", true }, - { "apod-portal-daily.azurewebsites.net", true }, { "apod.com.au", true }, + { "apod.ml", true }, { "apogeephoto.com", true }, - { "apoil.org", true }, { "apollo-auto.com", true }, { "apollyon.work", true }, { "apoly.de", true }, @@ -9341,7 +9610,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "apotheke55.de", true }, { "apothes.is", true }, { "app", true }, + { "app-2132.com", true }, + { "app-2138.com", true }, + { "app-6132.com", true }, { "app-at.work", true }, + { "app-scantech.com", true }, { "app-scope.com", true }, { "app.lookout.com", true }, { "app.recurly.com", true }, @@ -9349,12 +9622,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "app.yinxiang.com", false }, { "app00228.com", true }, { "app11018.com", true }, + { "app2132.com", true }, + { "app2138.com", true }, { "app2get.de", true }, - { "app5671.com", true }, + { "app33138.com", true }, + { "app5132.com", true }, + { "app5414.com", true }, + { "app5424.com", true }, + { "app5454.com", true }, + { "app6132.com", true }, { "app666365.com", true }, { "app6810.com", true }, + { "app7337.com", true }, { "app77018.com", true }, { "appagility.co.nz", true }, + { "appapi.link", true }, { "apparelfashionwiki.com", true }, { "appartement-andrea.at", true }, { "appartement-evolene.net", false }, @@ -9390,13 +9672,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "application-travel.us.com", true }, { "applicationmanager.gov", true }, { "applied-privacy.net", true }, - { "appliquette.com.au", true }, { "apply-esta.us.com", true }, { "apply-eta.org", true }, { "apply-visa.us.com", true }, { "apply.eu", true }, { "apply55gx.com", true }, { "appmeas.co.uk", true }, + { "appmeucredito.com.br", true }, + { "appmobi.com", true }, { "appmobile.io", true }, { "appninjas.com", true }, { "apponic.com", true }, @@ -9409,7 +9692,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "approbo.com", true }, { "approval-workflow.com", true }, { "approvedtreecare.com", true }, - { "apps.co", true }, { "apps.facebook.com", false }, { "apps.fedoraproject.org", true }, { "apps.stg.fedoraproject.org", true }, @@ -9429,6 +9711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "appuals.com", true }, { "appub.co.jp", true }, { "appui-de-fenetre.fr", true }, + { "appuntidallarete.com", true }, { "appveyor.com", true }, { "appworld.ga", true }, { "appzoojoo.be", true }, @@ -9515,10 +9798,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aranycsillag.net", true }, { "araratour.com", true }, { "araro.ch", false }, + { "ararrl.com", true }, + { "ararrl.net", true }, { "araseifudousan.com", true }, - { "arawaza.com", false }, { "arawaza.info", true }, { "araxis.com", true }, + { "arbavere.ee", true }, { "arbeitsch.eu", true }, { "arbeitskreis-asyl-eningen.de", true }, { "arbeitslosenverwaltung.de", true }, @@ -9529,6 +9814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arboworks.com", true }, { "arbu.eu", false }, { "arcadeencasa.com", true }, + { "arcadegames.com", true }, { "arcadio.fr", true }, { "arcaik.net", true }, { "arcanetides.com", true }, @@ -9540,6 +9826,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "archauthority.com", true }, { "archbishop.ga", true }, { "archeologicatoscana.it", true }, + { "archeryaid.com", true }, { "archframe.net", true }, { "archimedicx.com", true }, { "archina.ir", true }, @@ -9550,6 +9837,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "architectureandgovernance.com", true }, { "architecturequote.com", true }, { "architectus.ga", true }, + { "archival-services.gov.ge", true }, + { "archive.gov.ge", true }, { "archivero.es", true }, { "archivesdelavieordinaire.ch", true }, { "archivium.biz", true }, @@ -9565,6 +9854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arcismant.com.br", true }, { "arckr.com", true }, { "arclandholdings.com.au", true }, + { "arco.lu", true }, { "arcobalabs.ca", true }, { "arcogb.co", true }, { "arcovix.com", true }, @@ -9573,6 +9863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arctic.gov", true }, { "arctica.io", true }, { "arcticbit.net", true }, + { "arcticwolf.com", true }, { "arctus-security.com", true }, { "arcueil-cachan.fr", false }, { "arcusnova.de", true }, @@ -9587,13 +9878,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "areafiftylan.nl", true }, { "areallyneatwebsite.com", true }, { "areatrend.com", true }, + { "areavipbrasil.com.br", true }, { "arefidgetspinnersgay.com", true }, { "areis.pt", true }, { "arekatieandchrisgettingmarried.com", true }, { "arekatieandchrisgettingmarried.today", true }, { "arekatieandchrismarriedyet.com", true }, { "arena-lemgo.de", true }, - { "arenda247.by", true }, + { "arenda247.by", false }, { "arendburgers.nl", true }, { "arenlor.com", true }, { "arenlor.info", true }, @@ -9603,6 +9895,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ares-trading.de", true }, { "aresanel.com", true }, { "arethsu.se", true }, + { "arex-corp.com", true }, { "arfad.ch", false }, { "argama-nature.com", true }, { "arganaderm.ch", false }, @@ -9625,6 +9918,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ariana.wtf", true }, { "arias.re", true }, { "ariba.info", true }, + { "aridhia.com", true }, { "ariege-pyrenees.net", true }, { "arielpereira.tk", true }, { "arieswdd.com", true }, @@ -9639,7 +9933,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arimarie.com", true }, { "arinde.ee", true }, { "arinflatablefun.co.uk", true }, - { "arionta.com", true }, { "arise19.com", true }, { "arisechurch.com", true }, { "ariseconference.org.nz", true }, @@ -9687,6 +9980,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "armadaquadrat.com", true }, { "armageddonstuff.com", true }, { "armandsdiscount.com", true }, + { "armanet-promotion.fr", true }, { "armanozak.com", true }, { "armansfinejewellery.com", true }, { "armansfinejewellery.com.au", true }, @@ -9696,17 +9990,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "armedpoet.com", true }, { "armenians.online", true }, { "armeniaweb.tk", true }, + { "armensc.com", true }, { "armeo.top", true }, { "armil.it", true }, { "armin-cme.de", true }, { "arminc.tk", true }, { "arminpech.de", true }, + { "arminsure.com", true }, { "armor.ai", true }, { "armpads.nl", true }, { "armstrongsengineering.com", true }, { "armtopnews.tk", true }, { "army24.cz", true }, - { "armyofbane.com", true }, { "armyprodej.cz", true }, { "arnakdanielian.com", true }, { "arnaudardans.com", true }, @@ -9722,10 +10017,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arno-klein.de", true }, { "arno-klein.eu", true }, { "arno-klein.fr", true }, + { "arno-klein.it", true }, { "arno-klein.net", true }, { "arno.pm", true }, { "arnoklein.eu", true }, { "arnoklein.fr", true }, + { "arnoklein.it", true }, { "arnoldkontz-occasions.lu", false }, { "arnonerba.com", true }, { "arnor.org", true }, @@ -9756,7 +10053,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arquitet.com.br", true }, { "arquitetura.pt", true }, { "arrakis.se", true }, + { "arrasdelucia.com", true }, { "arraudi.be", true }, + { "arraudi.eu", true }, { "arrazane.com.br", true }, { "arresttracker.com", true }, { "arrive.by", true }, @@ -9766,15 +10065,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arrow-analytics.nl", true }, { "arrow-api.nl", true }, { "arrowfastener.com", true }, - { "arrowgrove.com", true }, + { "arrowgrove.com", false }, { "arrowheadaddict.com", true }, { "arrowheadflats.com", true }, { "arrowit.net", true }, { "arrowwebprojects.nl", true }, { "ars-online.pl", true }, { "arschkrebs.org", true }, - { "arsenal-charodeya.com", true }, - { "arsenal.ru", true }, + { "arsicad.id", true }, { "arsindecor.com", true }, { "arsk1.com", true }, { "arslankaynakmetal.com", true }, @@ -9795,7 +10093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artansoft.com", true }, { "artboja.com", true }, { "artc.at", true }, - { "artcaly.com.br", true }, + { "artcar24.ru", true }, { "artchic.vn", true }, { "artdeco-photo.com", false }, { "arte-soft.co", true }, @@ -9809,13 +10107,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artecat.ch", true }, { "artedellavetrina.it", true }, { "artedona.com", true }, - { "artefakt.es", true }, { "arteinstudio.it", true }, { "artelt.com", true }, { "artemis.re", true }, { "artera.spb.ru", true }, { "arterienundvenen.ch", true }, { "arterydb.ru", true }, + { "artesacraloreto.it", true }, { "artesaniascym.com.ar", true }, { "artesaniastonalaytlaquepaque.com", true }, { "arteseideias.com.pt", true }, @@ -9827,6 +10125,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arthermitage.org", true }, { "arthritisrheumaticdiseases.com", true }, { "arthur.cn", true }, + { "arthurdejong.org", true }, { "arthurlaw.ca", true }, { "arthurmelo.com", false }, { "arthuryidi.com", true }, @@ -9836,6 +10135,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "articulatedmedia.com", true }, { "artifact.spb.ru", true }, { "artifexnet.com", true }, + { "artificethefilm.com", true }, { "artificial.army", true }, { "artificialgrassandlandscaping.com", true }, { "artificialplants.tk", true }, @@ -9856,11 +10156,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artisavotins.com", true }, { "artisense.de", true }, { "artistagenda.com", true }, + { "artistcorporation.com", true }, { "artistedeparis.fr", true }, { "artisticedgegranite.net", true }, { "artistrunwebsite.com", true }, { "artitbe.net", true }, { "artiwear.com.tw", true }, + { "artj.jp", true }, { "artlabdentistry.com", true }, { "artlantis.nl", true }, { "artleading.ru", true }, @@ -9890,7 +10192,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "artsmarket.ca", true }, { "artspac.es", true }, { "arttel-media.ru", true }, - { "arturkohut.com", true }, { "arturli.be", true }, { "arturopinto.com.mx", true }, { "arturrossa.de", true }, @@ -9909,11 +10210,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "arvindhariharan.com", true }, { "arvindhariharan.me", true }, { "arvutiladu.ee", true }, + { "arvyncerezo.com", true }, { "arweth.com", true }, { "arx-libertatis.org", true }, { "arx.vg", true }, { "arx8x.net", true }, - { "arxell.com", true }, { "aryalaroca.de", true }, { "aryan-nation.com", true }, { "aryasenna.net", true }, @@ -9923,9 +10224,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "as200753.net", true }, { "as204982.net", true }, { "as395.com", true }, + { "as396.com", true }, { "as397.com", true }, { "as398.com", true }, - { "as44222.net", true }, + { "as44222.net", false }, { "as5158.com", true }, { "as8423.net", true }, { "asaabforever.com", true }, @@ -9939,6 +10241,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asananutrition.co.uk", true }, { "asandu.eu", true }, { "asanger.biz", true }, + { "asaphomeinspect.com", true }, { "asart.bg", true }, { "asato-jewelry.com", true }, { "asbestosthedarkarts.com", true }, @@ -9946,6 +10249,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ascamso.com", true }, { "ascension.run", true }, { "ascensori.biz", true }, + { "ascent360.com", true }, { "ascgathering.com", true }, { "aschismatic.com", true }, { "ascii.moe", true }, @@ -9961,6 +10265,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aselectionoffice.gov", true }, { "asenno.com", true }, { "aserver.co", true }, + { "asesoriaglobalenseguros.com.mx", true }, { "aseth.de", true }, { "asexualitat.cat", true }, { "asfaleianet.gr", true }, @@ -9973,8 +10278,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ashenm.ml", true }, { "ashessin.com", true }, { "ashlarimoveis.com.br", true }, + { "ashley.net.in", true }, { "ashleyadum.com", true }, - { "ashleyashbee.com", true }, { "ashleyedisonuk.com", true }, { "ashleyfoley.photography", true }, { "ashleykaryl.com", true }, @@ -9991,14 +10296,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asia-gazette.com", true }, { "asia-global-risk.com", false }, { "asia.dating", true }, + { "asiabike.ir", true }, { "asiaflash.com", true }, { "asiaheavens.com", true }, { "asialeonding.at", true }, { "asian-industry.eu", true }, { "asianodor.com", true }, - { "asianshops.net", true }, { "asianspa.co.uk", true }, { "asianwebcams.webcam", true }, + { "asiasexgazette.com", true }, { "asiasmi.tk", true }, { "asiba.com.au", true }, { "asiesvenezuela.com", true }, @@ -10012,6 +10318,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ask.pe", true }, { "ask.stg.fedoraproject.org", true }, { "ask1.org", true }, + { "askcaisse.com", true }, { "askcascade.com", true }, { "asker-massasje.no", true }, { "askeustache.com", true }, @@ -10019,12 +10326,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "askizzy.org.au", true }, { "askkaren.gov", true }, { "askmagicconch.com", false }, - { "askme-events.vip", true }, + { "askme-events.vip", false }, { "askme24.de", true }, { "askvg.com", true }, { "askwhy.cz", true }, { "askwhy.eu", true }, { "aslinfinity.com", true }, + { "asm.io", true }, { "asmanyasgiven.com", true }, { "asmbsurvey.com", true }, { "asmdz.com", true }, @@ -10032,6 +10340,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asmood.net", true }, { "asmrbuluo.com", true }, { "asngear.biz", true }, + { "asnhgh.biz", true }, { "asoagroca.com", true }, { "asociacionbienestarinmobiliariobogota.com", true }, { "asokan.org", true }, @@ -10046,7 +10355,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asperti.com", true }, { "aspformacion.com", true }, { "asphaltfruehling.de", true }, - { "asphyxia.su", true }, { "aspiescentral.com", true }, { "aspiradorasbaratas.net", true }, { "aspirantum.com", true }, @@ -10058,10 +10366,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aspisdata.com", true }, { "asprion.org", true }, { "asproni.it", true }, + { "asps.biz", true }, { "asr.cloud", true }, { "asr.li", true }, { "asr.rocks", true }, { "asr.solar", true }, + { "asr9k.de", true }, { "asra.gr", true }, { "asral7.com", true }, { "asrob.eu", false }, @@ -10073,7 +10383,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "assemble-together.org", true }, { "assemblytechnicianjobs.com", true }, { "assemblywithoutthewalls.org", true }, - { "assempsaibiza.com", true }, { "assertion.de", true }, { "assessoriati.com.br", true }, { "assetbacked.capital", false }, @@ -10092,10 +10401,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "assistenzamicroonde.org", true }, { "associatedwomenshealthcare.com", true }, { "associationhorizon.tk", true }, - { "associazionelbn.it", true }, + { "associazionelbn.it", false }, { "assodigitale.it", true }, { "asspinter.me", true }, { "assumptionpj.org", true }, + { "assuredspc.com", true }, { "asta-bar.de", false }, { "astal.rs", true }, { "astaninki.com", true }, @@ -10117,6 +10427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "astrath.net", true }, { "astrea-voetbal-groningen.nl", true }, { "astroalloys.com.au", true }, + { "astrobriga.es", true }, { "astrociencia.tk", true }, { "astrojunkies.com", true }, { "astroloeches.tk", true }, @@ -10144,7 +10455,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "asws.nl", true }, { "asylbarn.no", true }, { "asystent-dzierzawy.pl", true }, - { "aszw.org", true }, { "at.search.yahoo.com", false }, { "at5.nl", true }, { "at7s.me", true }, @@ -10173,6 +10483,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atelier-viennois-cannes.fr", true }, { "atelieraphelion.com", true }, { "atelierbw.com", true }, + { "ateliercoquelicot.fr", true }, { "atelierdefrancais.ch", false }, { "atelierdeloulou.fr", true }, { "atelierdesflammesnoires.fr", true }, @@ -10198,15 +10509,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atheit.com", true }, { "athekiu.com", true }, { "athemis.de", true }, + { "athena-garage.co.uk", true }, { "athenadynamics.com", true }, { "athenaneuro.com", true }, { "athens-limousines.com", true }, + { "athenstn.gov", true }, { "atheoryofchange.com", true }, { "atherosense.ga", true }, { "athlin.de", true }, { "athomedeco.fr", true }, { "atigerseye.com", true }, { "atimbertownservices.com", true }, + { "atinmarket.com", true }, { "atinylittle.space", true }, { "atis-ars.ru", true }, { "atishchenko.com", true }, @@ -10217,19 +10531,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atisoft.web.tr", true }, { "atitude.com", true }, { "ativapsicologia.com.br", true }, + { "atizanvip.com", true }, { "atk.me", true }, { "atkstore.com", true }, { "atl-paas.net", true }, + { "atlantacompa-international.co.uk", true }, { "atlantacustomfab.com", false }, { "atlantareroof.com", true }, { "atlantaspringroll.com", true }, { "atlantichomes.com.au", true }, { "atlanticmarina.com", true }, + { "atlanticmenshealth.com", true }, { "atlanticpediatricortho.com", true }, { "atlanticyellowpages.com", true }, { "atlantis-kh.noip.me", true }, { "atlantischild.hu", true }, - { "atlantishq.de", true }, { "atlantiswaterproofing.com", true }, { "atlas-5.site", true }, { "atlas-heritage.com", true }, @@ -10244,6 +10560,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atlassian.io", true }, { "atlassignsandplaques.com", true }, { "atletika.hu", true }, + { "atlseccon.com", true }, { "atmalta.com", true }, { "atmind.nl", true }, { "atmmantenimiento.co", true }, @@ -10259,6 +10576,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atomic.red", true }, { "atomicbounce.co.uk", true }, { "atomism.com", true }, + { "atomiumvn.com", true }, { "atomnetworks.ca", true }, { "atplonline.co", true }, { "atpnutrition.com", true }, @@ -10292,6 +10610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "attunedstore.com", true }, { "attwood.org", true }, { "attwoodmarshall.com.au", true }, + { "atuendomr.com", true }, { "atviras.lt", false }, { "atvirtual.at", true }, { "atvsafety.gov", true }, @@ -10304,13 +10623,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "atypicom.it", true }, { "atypicom.pt", true }, { "atzenchefin.de", true }, - { "atzzz.com", true }, { "au-be.net", true }, - { "au.ci", true }, { "au2pb.net", true }, { "au2pb.org", true }, { "aubergegilly.ch", false }, - { "aubg.org", true }, + { "aubg.org", false }, { "aubio.org", true }, { "aubonheurdeshuiles.fr", true }, { "aubonmanger.fr", false }, @@ -10328,6 +10645,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "audiencedefolie.com", true }, { "audiense.com", false }, { "audio-detector.com", true }, + { "audioblackmagic.com", true }, { "audiobookboo.com", true }, { "audiobookstudio.com", true }, { "audioboom.com", true }, @@ -10344,7 +10662,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "audiorecording.me", true }, { "audiorental.net", true }, { "audioschoolonline.com", true }, - { "audiotechniker.de", true }, + { "audiovoodoo.pl", true }, { "audirsq3.de", true }, { "audisto.com", true }, { "auditmatrix.com", true }, @@ -10389,6 +10707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "auntie-eileens.com.au", true }, { "auntiesnorkel.com", true }, { "auntmia.com", true }, + { "aunto.xyz", true }, { "aupaysdesanes.com", true }, { "auplidespages.fr", true }, { "aura7chakr.com", true }, @@ -10415,8 +10734,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aussieseobrisbane.com.au", true }, { "aussieservicedown.com", true }, { "aussiestoresonline.com", true }, + { "aussiestories.dk", true }, { "austenplumbing.com", true }, - { "austerevisuals.com", true }, { "austin-pearce.com", true }, { "austin-security-cameras.com", true }, { "austincardiac.com", true }, @@ -10456,7 +10775,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "author24.info", true }, { "authoritysolutions.com", true }, { "authsrv.nl.eu.org", true }, - { "autimatisering.nl", true }, { "autismewoerden.nl", true }, { "auto-anleitung.de", true }, { "auto-dealership-news.com", true }, @@ -10466,6 +10784,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "auto-plus.tn", true }, { "auto-res.ru", true }, { "auto-skills.ru", true }, + { "auto.nl", true }, { "auto1.fi", true }, { "autoauctionsohio.com", true }, { "autoauctionsvirginia.com", true }, @@ -10515,6 +10834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "automotivegroup-usedcars.be", false }, { "automotivemechanic.org", true }, { "automoto-tom.net", true }, + { "automuovifix.fi", true }, { "automy.de", true }, { "autonewssite.com", true }, { "autonoleggio.milano.it", true }, @@ -10525,6 +10845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autoparts.sh", true }, { "autoparts.wf", true }, { "autopaulito.pt", true }, + { "autopeople.ru", true }, { "autopower.gr", true }, { "autoprice.info", false }, { "autoprogconsortium.ga", true }, @@ -10537,6 +10858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "autorijschoolrichardschut.nl", true }, { "autorijschoolstorm.nl", true }, { "autosaan.ro", true }, + { "autosalesmachine.net", true }, { "autoschadeschreuder.nl", true }, { "autoschool.ga", true }, { "autoscuola.roma.it", true }, @@ -10609,6 +10931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "avanet.com", true }, { "avangvpn.ga", true }, { "avanovum.de", true }, + { "avanpost.co", true }, { "avantitualatin.com", true }, { "avarcom.tk", true }, { "avarty.com", true }, @@ -10629,13 +10952,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "averam.net", true }, { "averen.co.uk", true }, { "avernis.de", true }, + { "averste.com", true }, { "avestawebbtjanst.se", false }, { "avexon.com", true }, { "avg.club", true }, + { "avgindiantech.com", true }, + { "avhwelding.com", true }, { "avi12.com", true }, { "avi9526.pp.ua", true }, { "avia-krasnoyarsk.ru", true }, { "avia-ufa.ru", true }, + { "aviannahelise.com", true }, { "aviasalon.spb.ru", true }, { "aviationmilitaire.tk", true }, { "aviationstrategies.aero", true }, @@ -10692,6 +11019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aw.gov.pl", true }, { "aw.net", true }, { "await.one", true }, + { "awakengr.com", true }, { "awan.tech", true }, { "awangardaszkola.pl", true }, { "awardplatform.com", true }, @@ -10712,6 +11040,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "awesomesit.es", true }, { "awf0.xyz", true }, { "awic.ca", true }, + { "awinninghabit.com", true }, { "awk.tw", true }, { "awksolutions.com", true }, { "awlgolf.com", true }, @@ -10732,14 +11061,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "awxg.org", true }, { "ax25.org", true }, { "axa.de", true }, - { "axault.com", true }, { "axchap.ir", true }, + { "axearrow.nl", true }, { "axel-fischer.net", true }, { "axel-fischer.science", true }, - { "axel-voss.eu", true }, + { "axel-voss.eu", false }, { "axelname.ru", true }, { "axelteichmann.net", true }, - { "axelvoss.eu", true }, + { "axelvoss.eu", false }, { "axiatancell.com", true }, { "axin888.vip", true }, { "axiodl.com", true }, @@ -10803,6 +11132,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "azadliq.online", true }, { "azarus.ch", true }, { "azazy.net", false }, + { "azcensus2020.gov", true }, { "azerinews.tk", true }, { "azertyjobs.com", true }, { "azh-kunden.de", true }, @@ -10811,14 +11141,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "azimut.fr", true }, { "azino777.ru", true }, { "azithromycine.gq", true }, - { "azizvicdan.com", false }, + { "azl-app.be", true }, { "azlk-team.ru", true }, + { "azlo.com", false }, { "azlocalbusiness.com", true }, { "azmusica.biz", true }, { "aznews.site", true }, { "azora.cf", true }, { "azort.com", true }, { "azotobacter.nl", true }, + { "azpeach.com", true }, { "azpogomap.com", true }, { "azrangers.gov", true }, { "azrazalea.net", true }, @@ -10829,6 +11161,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "aztraslochi.it", true }, { "aztrix.me", true }, { "aztummytuck.com", true }, + { "aztv.cc", true }, { "azu-l.com", true }, { "azu-l.jp", true }, { "azuki.cloud", true }, @@ -10844,7 +11177,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b-b-law.com", true }, { "b-boom.nl", true }, { "b-cyclesshop.ch", false }, - { "b-dd.com", true }, { "b-entropy.com", true }, { "b-freerobux.ga", true }, { "b-honey.gr", true }, @@ -10852,6 +11184,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b-performance.de", true }, { "b-root-force.de", true }, { "b-services.net", false }, + { "b-techflow.com", true }, { "b-ticket.ch", true }, { "b-tree.be", true }, { "b0000.co", true }, @@ -10887,7 +11220,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b2486.net", true }, { "b2b-nestle.com.br", true }, { "b2bmuzikbank.com", true }, + { "b2m.co.nz", true }, + { "b3.nu", true }, { "b303.me", true }, + { "b30365.com", true }, { "b3177.com", true }, { "b31aa.com", true }, { "b31bb.com", true }, @@ -10903,6 +11239,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b36520.com", false }, { "b36594.com", true }, { "b365cc.com", false }, + { "b3pacific.com", true }, { "b422edu.com", true }, { "b4bouncycastles.co.uk", true }, { "b4ckbone.de", true }, @@ -10971,6 +11308,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b67702.com", true }, { "b67703.com", true }, { "b67704.com", true }, + { "b67705.com", true }, { "b67772.com", true }, { "b67773.com", true }, { "b67774.com", true }, @@ -10979,6 +11317,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b67802.com", true }, { "b67803.com", true }, { "b67805.com", true }, + { "b67881.com", true }, + { "b67882.com", true }, + { "b67883.com", true }, + { "b67884.com", true }, + { "b67885.com", true }, { "b67901.com", true }, { "b67902.com", true }, { "b67903.com", true }, @@ -10986,6 +11329,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b67905.com", true }, { "b68.xyz", true }, { "b6957.co", true }, + { "b70301.com", true }, + { "b70302.com", true }, + { "b70303.com", true }, + { "b70304.com", true }, + { "b70305.com", true }, { "b7035.com", true }, { "b70661.com", true }, { "b70663.com", true }, @@ -11013,16 +11361,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b73dd.com", true }, { "b73ee.com", true }, { "b73ff.com", true }, + { "b7501.com", true }, { "b7502.com", true }, { "b7503.com", true }, { "b7506.com", true }, { "b7507.com", true }, + { "b7508.com", true }, { "b7509.com", true }, { "b767.net", true }, { "b77018.com", true }, { "b789.co", true }, { "b81365.com", true }, - { "b81818.com", true }, { "b82365.com", true }, { "b83.tv", true }, { "b83aa.com", true }, @@ -11055,11 +11404,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b89bb.com", false }, { "b89cc.com", false }, { "b89dd.com", false }, - { "b89ee.com", true }, + { "b89ee.com", false }, { "b89ff.com", true }, { "b89gg.com", true }, { "b89hh.com", true }, - { "b89jj.com", true }, + { "b89ii.com", false }, + { "b89jj.com", false }, { "b8a.me", true }, { "b9018.com", true }, { "b9018.net", true }, @@ -11194,9 +11544,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "b9king.cc", true }, { "b9king.com", true }, { "b9king.net", true }, + { "b9l8tt.com", true }, { "b9winner.cc", true }, { "b9winner.com", true }, - { "b9winner.net", true }, { "ba47.net", true }, { "baac-dewellmed.com", true }, { "baalsworld.de", true }, @@ -11219,6 +11569,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baby-bath-tub.com", true }, { "baby-care.ir", true }, { "baby-digne.com", false }, + { "babybedding.com", true }, { "babyboom.pl", true }, { "babybuddah.ga", true }, { "babycamapp.com", true }, @@ -11234,6 +11585,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baches-piscines.com", true }, { "bachmannyachts.com", true }, { "bachmatt-baar.ch", true }, + { "bachomp.net", true }, { "bachweid-baar.ch", true }, { "baciu.ch", false }, { "backeby.eu", true }, @@ -11244,7 +11596,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "backgroundchecks.online", true }, { "backgroundscreenersofamerica.com", true }, { "backgroundz.net", true }, - { "backlinkbase.com", true }, { "backlogapp.io", true }, { "backmitra.com", true }, { "backmitra.mx", true }, @@ -11253,14 +11604,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "backpacken.org", true }, { "backpacker.dating", true }, { "backpackingtours.com", true }, + { "backpainandsciaticahouston.com", true }, { "backscattering.de", false }, { "backschues.com", true }, { "backschues.de", true }, { "backschues.net", true }, { "backseatbandits.com", true }, { "backsideverbier.ch", false }, + { "backspace.dev", true }, + { "backspace.rocks", true }, { "backterris.com", true }, { "backtest.org", true }, + { "backtheeffup.com", true }, { "backup-kurumsal.com", true }, { "backupassist.de", true }, { "backupcloud.ru", true }, @@ -11269,6 +11624,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bacontreeconsulting.com", true }, { "bacoux.com", true }, { "bacsmegye.hu", true }, + { "bacterias.mx", false }, { "bactrim-antibiotic.ml", true }, { "bacula.jp", true }, { "bad-wurzach.de", true }, @@ -11284,10 +11640,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "badcreditcarsfinance.co.uk", true }, { "badedesign.no", true }, { "badf00d.de", true }, + { "badge.rs", true }, { "badgersystems.de", true }, { "badges.fedoraproject.org", true }, { "badges.stg.fedoraproject.org", true }, { "badgirlsbible.com", true }, + { "badgr.com", true }, { "badgr.io", true }, { "badhusky.com", false }, { "badkamermarkt.nl", true }, @@ -11312,6 +11670,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bageluncle.com", true }, { "baggy.me.uk", true }, { "bagheera.me.uk", true }, + { "bagiobella.com", true }, + { "bagira.guru", true }, { "baglu.com", false }, { "bagni-chimici.roma.it", true }, { "bagnichimici.milano.it", true }, @@ -11344,6 +11704,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baitap.net", false }, { "baitaplamvan.com", true }, { "baitcon.com", true }, + { "baithe.co.za", true }, { "baitulongbaycruises.com", true }, { "baiyangliu.com", true }, { "baiyu.blog", true }, @@ -11364,6 +11725,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bakhansen.com", true }, { "bakibal.com", true }, { "bakingstone.com", true }, + { "bakkerij-janschrieks.nl", true }, { "bakkerinjebuurt.be", true }, { "bakongcondo.com", true }, { "bakxnet.com", true }, @@ -11401,6 +11763,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ballbusting-cbt.com", true }, { "ballejaune.com", true }, { "balletcenterofhouston.com", true }, + { "ballettstudio-ost.de", true }, + { "ballinw.com", true }, { "ballisticdetailing.com", true }, { "ballitolocksmith.com", true }, { "ballmerpeak.org", true }, @@ -11422,17 +11786,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "balticmed.pl", true }, { "balticnetworks.com", true }, { "baltimorecashflow.com", true }, + { "bamaagahi.ir", true }, { "bamahammer.com", true }, - { "bamanshop.com", true }, - { "bambambaby.com.br", false }, + { "bamanshop.com", false }, { "bamboehof.nl", true }, { "bambooforest.nl", true }, { "bamboorelay.com", true }, + { "bambumania.com.br", true }, { "bamily.rocks", true }, { "bamtoki.com", true }, { "ban.moe", true }, { "bananabandy.com", true }, - { "bananacloud.fr", true }, + { "bananacloud.fr", false }, { "banananet.work", true }, { "bananavapes.com", true }, { "bananice.moe", true }, @@ -11441,6 +11806,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bancastato.ch", true }, { "bancobai.ao", true }, { "bancoctt.pt", true }, + { "bancodeloja.fin.ec", true }, { "bancomap.ch", true }, { "bancor.network", true }, { "bancosdominicanos.net", true }, @@ -11458,17 +11824,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bandolino.nl", true }, { "baneh-academic.com", true }, { "banes.ch", true }, + { "banfun.org", true }, { "bangdream.ga", true }, { "bangkok-dark-night.com", true }, { "bangkok.dating", true }, { "bangkokcity.de", true }, { "bangkokcookingclass.com", true }, + { "bangkrak.com", true }, { "banglarfont.com", true }, { "banglets.com", true }, { "bangorfederal.com", true }, { "banguilacoquette.com", true }, { "bangumi.co", true }, { "bangyu.wang", true }, + { "bangzhu88.com", true }, { "banham.co.uk", false }, { "banham.com", true }, { "banjostringiz.com", true }, @@ -11479,6 +11848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "banka.space", true }, { "bankanswers.gov", true }, { "bankapp.se", true }, + { "bankapply.eu", true }, { "bankbranchlocator.com", true }, { "bankcardoffer.com", true }, { "bankcircle.co.in", true }, @@ -11505,6 +11875,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "banlinhdanong.com", true }, { "banned-bitches.tk", true }, { "bannermarquees.ie", true }, + { "bannerworld.co.uk", true }, { "banningca.gov", true }, { "bannisbierblog.de", true }, { "bannsecurity.com", true }, @@ -11514,6 +11885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "banter.city", true }, { "bao-in.com", true }, { "bao-in.net", true }, + { "baobeiglass.com", true }, { "baodan666.com", true }, { "baofengtech.com", true }, { "baogiathicongnoithat.com", true }, @@ -11528,6 +11900,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baoxue7.com", true }, { "baoxue8.com", true }, { "baoxue9.com", true }, + { "bap-consult.at", true }, { "bapha.be", true }, { "baptiste-peugnez.fr", true }, { "baptisteplanckaert.tk", true }, @@ -11554,6 +11927,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barburas.com", true }, { "barca-movie.jp", true }, { "barcamp.koeln", true }, + { "barcats.co.nz", true }, + { "barcats.com", true }, + { "barcats.com.au", true }, { "barcel.com.mx", true }, { "barcelonabagels.cat", true }, { "barcelonapremium.es", true }, @@ -11578,10 +11954,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "barkassen15.se", true }, { "barkerjr.xyz", true }, { "barkingaboutbusiness.com", true }, + { "barkstop.net", true }, + { "barlamane.com", true }, + { "barlex.pl", true }, { "barlotta.net", true }, { "barmayoon.ir", true }, { "barnabycolby.io", true }, - { "barnel.com", true }, + { "barnakstudio.com", true }, + { "barnakstudio.ir", true }, { "barnettville.com", true }, { "barneveldcentrum.nl", true }, { "barneydavey.com", true }, @@ -11625,17 +12005,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bascht.com", true }, { "basculasconfiables.com", true }, { "base-autonome-durable.com", false }, + { "base-n.ru", true }, { "basebalance.net", true }, - { "baseballrampage.com", true }, { "baseballsavings.com", true }, - { "baseballwarehouse.com", true }, { "basebyte.nl", true }, { "baseconvert.com", true }, + { "basedos.com", true }, { "baseerapp.com", true }, { "basel-gynaecology.com", true }, { "basel-gynaekologie.ch", true }, { "baselang.com", true }, { "basement961.co.nz", true }, + { "basementdoctor.com", false }, { "basementdoctornorthwest.com", true }, { "basementfinishingohio.com", true }, { "basementwaterproofingdesmoines.com", true }, @@ -11646,7 +12027,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bashing-battlecats.com", true }, { "bashkirlife.tk", true }, { "bashstreetband.co.uk", true }, - { "basicamente.digital", true }, { "basicapparel.de", true }, { "basicattentiontoken.org", true }, { "basics.net", true }, @@ -11667,11 +12047,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bassrhymeposse.tk", true }, { "bassrider.eu", true }, { "bassys.com.co", true }, + { "bastardandpoors.com", true }, { "bastelzauberwelt.de", true }, - { "bastide-viens.com", true }, { "bastiv.com", true }, { "bastivmobile.com", true }, { "bastolino.de", true }, + { "bastter.com", true }, { "basw.eu", true }, { "baswag.de", true }, { "baswetter.photography", true }, @@ -11689,7 +12070,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "batipresta.ch", false }, { "batiskaf.ua", true }, { "batitrakya.org", true }, - { "batlab.ch", false }, { "batolis.com", true }, { "batook.org", true }, { "batschu.de", true }, @@ -11699,9 +12079,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "batterystaple.pw", true }, { "battle-game.com", true }, { "battleboxx.com", false }, - { "battleground.com.au", true }, { "battleguard.net", true }, { "battleofthegridiron.com", true }, + { "battlerealms.cc", true }, { "batuhanbensoy.com.tr", true }, { "batvip9.net", true }, { "bauer.network", true }, @@ -11713,10 +12093,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bauingenieur24.de", true }, { "baumannfabrice.com", true }, { "baumkuchen-aus-dresden.de", true }, - { "baur.de", true }, { "bausep.de", true }, { "bauthier-occasions.be", false }, { "bautied.de", true }, + { "bautizodelucia.com", true }, { "bauunternehmen-herr.de", true }, { "bavaroparadise.com", true }, { "bavarovillage.com", true }, @@ -11727,6 +12107,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bayden.com", true }, { "bayer-stefan.com", true }, { "bayer-stefan.de", true }, + { "bayer.earth", true }, { "bayerhazard.de", true }, { "bayerstefan.com", true }, { "bayerstefan.de", true }, @@ -11745,12 +12126,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "baystreet.com.mt", true }, { "baytalebaa.com", true }, { "baytownent.com", true }, + { "baytv.it", true }, { "baywatch.io", true }, { "bayz.de", true }, { "baza-gai.com.ua", true }, { "bazaarbhaav.com", true }, { "bazaarcompass.com", true }, + { "bazaclub.ru", true }, { "bazari.com.pl", true }, + { "bazinga-events.nl", true }, { "bazos.at", true }, { "bazos.cz", true }, { "bazos.pl", true }, @@ -11760,7 +12144,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bb057.com", true }, { "bb087.com", true }, { "bb168.cc", true }, + { "bb211.com", true }, { "bb221.com", true }, + { "bb321.com", true }, { "bb37roma.it", true }, { "bb5197.co", true }, { "bb6729.co", true }, @@ -11768,7 +12154,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bb6957.co", true }, { "bb882.com", true }, { "bb9297.co", true }, - { "bb9721.com", true }, { "bb9728.co", true }, { "bbalposticino.it", true }, { "bbb1991.me", false }, @@ -11776,6 +12161,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bbc67.fr", true }, { "bbcastles.com", true }, { "bbcomcdn.com", true }, + { "bbforums.com", true }, { "bbgeschenke.ch", false }, { "bbimarketing.com", true }, { "bbinsure.com", true }, @@ -11784,6 +12170,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bbld.de", true }, { "bblove.me", true }, { "bblsa.ch", false }, + { "bbmagnagrecia.it", true }, { "bbnx.net", true }, { "bbs8080.net", true }, { "bbsec.xyz", true }, @@ -11793,6 +12180,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bbw.dating", true }, { "bbwcs.co.uk", true }, { "bbwfacesitting.us", true }, + { "bbwsexclips.com", true }, { "bbwteens.org", true }, { "bbxin9.com", true }, { "bbxin9.net", true }, @@ -11818,6 +12206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcmhire.co.uk", true }, { "bcmlu.org", true }, { "bcnet.com.hk", true }, + { "bcoffices.com.mx", true }, { "bcpc-ccgpfcheminots.com", true }, { "bcradio.org", true }, { "bcrook.com", true }, @@ -11827,6 +12216,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bcvps.com", true }, { "bcyw56.live", false }, { "bd-media.tk", true }, + { "bd.foundation", true }, { "bd2positivo.com", true }, { "bda-boulevarddesairs.com", false }, { "bdbxml.net", true }, @@ -11834,6 +12224,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bdikaros-network.net", true }, { "bdpachicago.tech", true }, { "bdpestsolutionsstlouis.com", true }, + { "bdsmwiki.hu", true }, { "bdtopshop.com", true }, { "bdvg.org", true }, { "be-a-password.ninja", true }, @@ -11873,12 +12264,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beamstat.com", true }, { "beanbagaa.com", true }, { "beanbot.party", true }, + { "beanilla.com", true }, { "beanjuice.me", true }, { "beans-one.com", false }, { "beansgalore.com.au", true }, { "bearcms.com", true }, { "bearded.sexy", true }, { "beardedbearthegame.com", true }, + { "bearden.io", true }, { "beardic.cn", true }, { "beardsome.me", true }, { "beargoggleson.com", true }, @@ -11900,13 +12293,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beauty-form.ir", true }, { "beauty-italy.ru", true }, { "beauty-yan-enterprise.com", true }, + { "beauty.moe", true }, { "beauty24.de", true }, { "beautyandfashionadvice.com", true }, { "beautybh.com", true }, { "beautyby.tv", true }, { "beautycarepack.com.ng", true }, + { "beautycon.ir", true }, { "beautyevent.fr", true }, - { "beautykat.ru", true }, { "beautyseasons.ru", true }, { "beaver-creek.ga", true }, { "beaverdamautos.com", true }, @@ -11923,12 +12317,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beboldpr.com", true }, { "bebout.domains", true }, { "bebout.pw", true }, + { "becausecapitalism.org", true }, { "beccaanne.photography", true }, { "beccajoshwedding.com", true }, - { "beckerantiques.com", true }, + { "bech32.net", true }, { "beckijayes.family", true }, { "becklove.cn", true }, - { "beckyhirstconsulting.com.au", true }, { "becleverwithyourcash.com", true }, { "become-lucky.com", true }, { "becomeabricklayer.com.au", true }, @@ -11951,7 +12345,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bedrijfsfotoreportages.nl", true }, { "bedrijfsportaal.nl", true }, { "bedrijvencentrum-maartenslaan.nl", true }, + { "bedrijvencentrum-malberg.nl", true }, { "bedrocklinux.org", true }, + { "bedset.me", true }, { "bedste10.dk", true }, { "bedtimeflirt.com", true }, { "bee-creative.nl", true }, @@ -11994,12 +12390,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beerjet.sk", true }, { "beerjetcz.cz", true }, { "beerly.eu", true }, + { "beermedlar.com", true }, { "beerradar.no", true }, { "beerradar.party", true }, { "beers.my", true }, { "beersandco.ch", true }, { "beersconf.com", true }, { "beerview.ga", true }, + { "beerxa.cz", true }, { "beestation13.com", true }, { "beeswarmrehoming.com.au", true }, { "beeswax-orgone.com", true }, @@ -12011,6 +12409,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beezkneezcastles.co.uk", true }, { "beeznest.com", true }, { "befoodsafe.gov", true }, + { "beforesunrise.de", true }, { "beforeyoueatoc.com", true }, { "beframed.ch", false }, { "befreewifi.info", true }, @@ -12019,11 +12418,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "begabungsfoerderung.info", true }, { "begbie.com", true }, { "beginner.nl", true }, - { "begintravel.co.th", true }, { "beginwp.top", true }, { "behamepresrdce.sk", true }, { "behamzdarma.cz", true }, { "behar-selimi.tk", true }, + { "behaviorchangeimpact.org", true }, { "behead.de", true }, { "beherit.pl", true }, { "behindertenagentur.de", true }, @@ -12045,6 +12444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beizsoft.com", true }, { "bejarano.io", true }, { "bekolite.com", true }, + { "bel-snegirek.ru", true }, { "belacapa.com.br", true }, { "belafonte.co", true }, { "belanglos.de", true }, @@ -12066,12 +12466,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belfastbounce.co.uk", true }, { "belfastlocks.com", true }, { "belfasttechservices.co.uk", true }, - { "belfastvibes.com", true }, + { "belfix.be", true }, { "belfor-probleme.de", true }, { "belfordroxo.net.br", true }, { "belge.rs", true }, { "belgers.com", true }, { "belgicaservices.be", true }, + { "belgie-postcodes.be", true }, { "belgraver.email", true }, { "belgraver.eu", true }, { "belgraver.xyz", true }, @@ -12080,15 +12481,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belien-tweedehandswagens.be", false }, { "believablebook.com", false }, { "believersweb.org", true }, + { "belkamfish.com", true }, { "belkys.net", false }, { "bell.id.au", true }, { "bella.network", true }, { "bellaaroma.com.tw", true }, + { "bellabrowbydesign.com", true }, { "bellaklein.de", true }, { "bellamodeling.com", true }, { "bellamy.cloud", true }, { "bellavistaoutdoor.com", true }, { "bellebakes.blog", true }, + { "bellevuechiropracticassociates.com", true }, { "bellevueowners.tk", true }, { "bellezzasenzalimiti.it", true }, { "bellinghamdetailandglass.com", true }, @@ -12100,6 +12504,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "belly-button-piercings.com", true }, { "bellyandbrain.amsterdam", true }, { "belmontgoessolar.org", true }, + { "belonggsumc.com", true }, { "belos.at", true }, { "belouga.org", true }, { "belpbleibtbelp.ch", true }, @@ -12136,12 +12541,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bendyworks.com", true }, { "beneathvt.com", true }, { "benedict-balzer.de", true }, + { "benedictoaguilar.tech", true }, { "benediktgeissler.de", true }, { "benefits.gov", true }, { "benefitsbookcase.com", true }, { "benefitshub.io", true }, { "benefitshub.xyz", true }, - { "beneri.se", true }, { "benetcasablancas.tk", true }, { "benevisim.com", true }, { "benevita.bio", true }, @@ -12176,6 +12581,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "benmack.net", true }, { "benmatthews.com.au", true }, { "benmillett.us", false }, + { "bennet.org", true }, { "bennettsbouncycastlehire.co.uk", true }, { "bennettshire.co.uk", true }, { "benni1.eu", true }, @@ -12202,6 +12608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bentonweatherstone.co.uk", true }, { "bentrask.com", true }, { "benu.cz", true }, + { "benulekaren.sk", true }, { "benvds.com", true }, { "benz-hikaku.com", true }, { "benzi.io", true }, @@ -12215,6 +12622,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bepsvpt.me", true }, { "bequ1ck.com", true }, { "bequiia.com", true }, + { "berakad.com", true }, { "beranovi.com", true }, { "berasavocate.com", true }, { "beraten-entwickeln-steuern.de", true }, @@ -12225,7 +12633,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bereaplumber.co.za", true }, { "bereginy.com.ua", true }, { "berend.tk", true }, - { "bergenson.nl", true }, + { "bergenson.nl", false }, { "berger-chiro.com", true }, { "bergevoet-fa.nl", false }, { "bergfex.at", true }, @@ -12243,6 +12651,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "berksabstract.com", true }, { "berksarl.org", true }, { "berksnetworking.com", true }, + { "berlin-cuisine.com", true }, { "berlin-flirt.de", true }, { "berlin.dating", true }, { "berluga.com", true }, @@ -12255,7 +12664,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bernama.com.my", true }, { "bernar.do", true }, { "bernardcontainers.be", false }, - { "bernarddickens.com", true }, { "bernardez-photo.com", true }, { "bernardgo.com", true }, { "bernardo.fm", true }, @@ -12309,6 +12717,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "besole.ch", true }, { "bespaarenergie.click", true }, { "bespaarnu.click", true }, + { "bespoiled.nl", true }, { "bespokebathrooms.com.au", true }, { "bespokemortgages.co.uk", true }, { "bespokestraps.com", true }, @@ -12319,6 +12728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "best-beauty-schools.com", true }, { "best-book.gq", true }, { "best-business-colleges.com", true }, + { "best-buyessaysonline.com", true }, { "best-catholic-colleges.com", true }, { "best-community-colleges.com", true }, { "best-culinary-colleges.com", true }, @@ -12334,6 +12744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "best-nursing-colleges.com", true }, { "best-of-bounce.co.uk", true }, { "best-pharmacy-schools.com", true }, + { "best-photobooth.ro", true }, { "best-tickets.co.uk", true }, { "best-trucking-schools.com", true }, { "best-wedding-quotes.com", true }, @@ -12349,10 +12760,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestbonuses.co.uk", true }, { "bestboot.cf", true }, { "bestbrokerindia.com", true }, + { "bestbuyatvs.com", true }, { "bestbuyzone.com", true }, { "bestcarscyprus.com", true }, { "bestcellular.com", false }, { "bestcivilattorneys.com", true }, + { "bestcouponvouchercodes.com", true }, { "bestcrossbowguide.com", true }, { "bestdating.today", true }, { "bestdownloadscenter.com", true }, @@ -12369,20 +12782,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestfotostudio.com", true }, { "bestfriendsequality.org", true }, { "bestgiftever.ca", true }, + { "bestguessonline.com", true }, { "besthemes.tk", true }, + { "besthost.cz", true }, { "besthotsales.com", true }, { "besti.it", true }, { "bestiahosting.com", true }, { "bestinbarter.com", true }, { "bestinductioncooktop.us", true }, { "bestinshowing.com", true }, - { "bestinsider.net", true }, + { "bestinsider.net", false }, { "bestinver.es", false }, { "bestjumptrampolines.be", true }, { "bestkenmoredentists.com", true }, { "bestleftwild.com", true }, { "bestmattressforbackpain.online", true }, { "bestmedsmmj.com", true }, + { "bestmodels.ua", true }, { "bestmotherfucking.website", true }, { "bestofbooks.gq", true }, { "bestoffert.club", true }, @@ -12398,6 +12814,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bestproductsaudit.com", true }, { "bestremote.io", true }, { "bestschools.io", true }, + { "bestseo4u.co.uk", true }, { "bestseries.tv", true }, { "bestsgadgets.com", true }, { "bestshoesmix.com", true }, @@ -12416,7 +12833,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet03vip.com", true }, { "bet04vip.com", true }, { "bet05vip.com", true }, - { "bet062.com", true }, { "bet064.com", true }, { "bet06vip.com", true }, { "bet074.com", true }, @@ -12447,7 +12863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet168wy.com", true }, { "bet168wy.net", true }, { "bet261.com", true }, - { "bet290.com", true }, { "bet333111.com", true }, { "bet333123.com", true }, { "bet333222.com", true }, @@ -12488,7 +12903,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet365cn-game.com", true }, { "bet365cn-keno.com", true }, { "bet365cn-livecasino.com", true }, - { "bet365cn-poker.com", true }, { "bet365cn-sports.com", true }, { "bet365cn-vegas.com", true }, { "bet365cnq.com", true }, @@ -12513,14 +12927,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet365q9.com", true }, { "bet365r8.com", true }, { "bet365u.com", true }, - { "bet365vip1.com", true }, + { "bet365vip1.com", false }, { "bet365vip2.com", true }, - { "bet365vip3.com", true }, - { "bet365vip4.com", true }, - { "bet365vip5.com", true }, - { "bet365vip6.com", true }, + { "bet365vip3.com", false }, + { "bet365vip4.com", false }, + { "bet365vip5.com", false }, + { "bet365vip6.com", false }, { "bet365vip7.com", true }, - { "bet365vip9.com", true }, + { "bet365vip9.com", false }, { "bet365x0.com", true }, { "bet365x1.com", true }, { "bet365x2.com", true }, @@ -12530,7 +12944,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet365x9.com", true }, { "bet3app.com", true }, { "bet44401.com", true }, + { "bet44402.com", true }, + { "bet44403.com", true }, + { "bet44404.com", true }, + { "bet44405.com", true }, + { "bet44406.com", true }, { "bet44407.com", true }, + { "bet44409.com", true }, + { "bet44410.com", true }, { "bet444400.com", true }, { "bet444401.com", true }, { "bet444402.com", true }, @@ -12548,10 +12969,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet444424.com", true }, { "bet444425.com", true }, { "bet444426.com", true }, - { "bet444427.com", true }, - { "bet444428.com", true }, { "bet444429.com", true }, - { "bet444430.com", true }, + { "bet5119.com", true }, + { "bet5234.com", true }, + { "bet567111.com", true }, + { "bet567222.com", true }, + { "bet567333.com", true }, + { "bet567444.com", true }, + { "bet567555.com", true }, { "bet5678.cc", true }, { "bet5678.com", true }, { "bet5678a.com", true }, @@ -12560,12 +12985,47 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bet5678e.com", true }, { "bet5678f.com", true }, { "bet5678g.com", true }, + { "bet571.com", true }, + { "bet572.com", true }, + { "bet5757.com", true }, + { "bet5868.com", true }, { "bet599.com", true }, { "bet66669999.com", true }, { "bet666888.vip", true }, { "bet721.com", true }, + { "bet7234.com", true }, { "bet819.com", true }, { "bet820.com", true }, + { "bet86ah.com", true }, + { "bet86am.com", true }, + { "bet86bj.com", true }, + { "bet86cq.com", true }, + { "bet86fj.com", true }, + { "bet86gd.com", true }, + { "bet86gs.com", true }, + { "bet86gx.com", true }, + { "bet86gz.com", true }, + { "bet86hb.com", true }, + { "bet86hlj.com", true }, + { "bet86hn.com", true }, + { "bet86jl.com", true }, + { "bet86js.com", true }, + { "bet86jx.com", true }, + { "bet86ln.com", true }, + { "bet86nmg.com", true }, + { "bet86nx.com", true }, + { "bet86qh.com", true }, + { "bet86sc.com", true }, + { "bet86sd.com", true }, + { "bet86sh.com", true }, + { "bet86sx.com", true }, + { "bet86tj.com", true }, + { "bet86tw.com", true }, + { "bet86xg.com", true }, + { "bet86xj.com", true }, + { "bet86xz.com", true }, + { "bet86yn.com", true }, + { "bet86zj.com", true }, { "bet909.com", true }, { "bet916.com", true }, { "bet9bet9.net", true }, @@ -12584,11 +13044,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betaworx.eu", true }, { "betb33.com", true }, { "betb73.com", true }, - { "betcn-mart.com", true }, { "betecnet.de", true }, { "betformular.com", true }, { "betgo9.cc", true }, { "bethanyduke.com", true }, + { "bethanyhome.org", true }, { "bethanypeds.com", true }, { "betheredge.us", true }, { "bethpage.net", true }, @@ -12609,10 +13069,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betshoot.com", true }, { "betsonlinefree.com.au", true }, { "betsyshilling.com", true }, + { "bett1.at", true }, + { "bett1.ch", true }, { "bett1.de", true }, + { "bett1.fr", true }, + { "bett1.pl", true }, { "bettaline.com.au", true }, { "bettashoerepairs.com.au", true }, - { "better-bounce.co.uk", true }, { "better.com", true }, { "better.fyi", true }, { "betterbabyshop.com.au", true }, @@ -12627,9 +13090,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betterna.me", true }, { "betterscience.org", true }, { "bettersecurity.co", true }, - { "betterselfbetterworld.cz", true }, { "bettersocialmedia.co.uk", true }, - { "bettertechinterviews.com", true }, { "bettertest.it", true }, { "bettertime.de", true }, { "bettertime.jetzt", true }, @@ -12642,6 +13103,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bettmer.de", true }, { "bettolinokitchen.com", true }, { "bettrlifeapp.com", true }, + { "betty-baloo.com", true }, { "bettyweber.com", true }, { "betulashop.ch", true }, { "betwalker.com", true }, @@ -12649,6 +13111,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "betwin9.net", true }, { "betxx1.com", true }, { "betxx2.com", true }, + { "betza.online", true }, { "beulen.email", true }, { "beulen.link", true }, { "beulen.pro", true }, @@ -12678,7 +13141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bewerbungsfibel.de", true }, { "bewerbungsfoto-deinfoto.ch", true }, { "bewertet.de", true }, - { "bewished.co", false }, { "bewonderen.com", true }, { "bexit-hosting.nl", true }, { "bexit-security.eu", true }, @@ -12686,6 +13148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bexit.nl", true }, { "bexithosting.nl", true }, { "bexleycastles.co.uk", true }, + { "bexx-engineering.co.uk", true }, { "bey.io", true }, { "beybiz.com", true }, { "beyerautomation.com", true }, @@ -12694,6 +13157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beyond-infinity.org", false }, { "beyond-rational.com", true }, { "beyondalderaan.net", true }, + { "beyondauth.io", true }, { "beyondbounce.co.uk", true }, { "beyondboxgifts.com", true }, { "beyondordinarylife.com", true }, @@ -12703,7 +13167,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "beyours.be", true }, { "bez-energie.de", true }, { "bezahlbare-praemien.ch", true }, - { "bezemkast.nl", true }, { "bezlampowe.pl", true }, { "bezlepkovamatka.cz", true }, { "bezmlska.cz", false }, @@ -12715,7 +13178,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bf5.ru", true }, { "bfam.tv", true }, { "bfanis.ir", true }, - { "bfcgermania88.de", true }, { "bfdz.ink", true }, { "bfem.gov", true }, { "bfh.science", true }, @@ -12731,7 +13193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bgbaby.net", true }, { "bgbhsf.top", true }, { "bgemi.net", true }, - { "bgenlisted.com", true }, { "bgeo.io", true }, { "bgfashion.net", true }, { "bghope.com", true }, @@ -12753,6 +13214,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bhaweshkumar.com", true }, { "bhglamour.com", true }, { "bhi.consulting", true }, + { "bhimarmyofficial.com", true }, { "bhodisoft.com", true }, { "bhrenovations.com", true }, { "bhserralheria.com.br", true }, @@ -12767,6 +13229,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bi8cku.club", true }, { "bi8cku.tech", true }, { "bia.gov", false }, + { "bia2takhfif.com", true }, { "biaggeo-prod.herokuapp.com", true }, { "biaggeo.com", true }, { "biancapulizie.it", true }, @@ -12780,7 +13243,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bible-maroc.com", true }, { "biblesignposts.com", true }, { "bibleversesfordailyliving.com", true }, - { "biblia.name", true }, { "bibliaon.com", true }, { "bibliatodo.com", true }, { "biblio.wiki", true }, @@ -12801,11 +13263,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bicha.net", true }, { "bichonfrise.com.br", true }, { "bichonmaltes.com.br", true }, + { "bicicletassym.com", true }, { "bicifanaticos.com", true }, { "bicromoestudio.com", true }, { "bicycle-events.com", true }, { "bicycleframeiz.com", true }, { "bicycleuniverse.com", true }, + { "bidadari.my", true }, { "biddl.com", true }, { "biddle.co", true }, { "bidman.cz", true }, @@ -12815,7 +13279,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bie08.com", true }, { "bie35.com", true }, { "bie79.com", true }, - { "biec.moe", true }, { "biegal.ski", true }, { "biegner-technik.de", true }, { "biehlsoft.info", true }, @@ -12829,17 +13292,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biensenvue.com", true }, { "bienstar.tv", true }, { "bienvenidoamerica.com", true }, - { "bierbaumer.net", true }, { "biergaizi.info", true }, { "bierochs.org", true }, { "bierwebshop.be", true }, { "bieser.ch", true }, { "biester.pro", true }, + { "bietinidesign.be", true }, { "bifm.de", true }, { "bifrost.cz", true }, { "biftin.net", true }, { "big-andy.co.uk", true }, { "big-bounce.co.uk", true }, + { "big-office.lviv.ua", true }, { "big-tits-video.ru", true }, { "bigadcompany.com", true }, { "bigbank.ee", true }, @@ -12856,6 +13320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bigdinosaur.org", true }, { "bigdiscounts.tk", true }, { "bigfatbetty.com", true }, + { "bigfuckin.rocks", true }, { "biggerpicture.agency", true }, { "biggles.io", true }, { "bighouse-events.co.uk", true }, @@ -12864,6 +13329,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biglagoonrentals.com", true }, { "biglou.com", false }, { "biglu.eu.org", true }, + { "bigmoney.nu", true }, { "bigorbitgallery.org", true }, { "bigpicture-learning.com", true }, { "bigprintinglasvegas.com", true }, @@ -12875,7 +13341,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bigsisterchannel.com", true }, { "bigskylifestylerealestate.com", true }, { "bigskymontanalandforsale.com", true }, - { "bigthunder.ca", true }, { "bigudi.ee", true }, { "bihub.io", true }, { "biilo.com", true }, @@ -12908,7 +13373,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biletyplus.by", true }, { "biletyplus.com", true }, { "biletyplus.ua", true }, - { "bilgo.com", true }, { "bilibili.link", true }, { "bilibili.red", true }, { "bilibili.sh", true }, @@ -12926,6 +13390,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "billigerfinder.de", true }, { "billigpoker.dk", true }, { "billin.net", true }, + { "billingsmtpublicworks.gov", true }, { "billionaire365.com", true }, { "billionairemailinglist.com", true }, { "billionbooksbaby.org", true }, @@ -12970,6 +13435,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bimbo.com", false }, { "bimbo.com.ar", false }, { "bimbobakeriesusa.com", false }, + { "bimbole.it", true }, { "bimibroccoli.co.uk", true }, { "bimibroccoli.com", true }, { "bimibroccoli.dk", true }, @@ -12983,6 +13449,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bin92.com", true }, { "bin95.com", true }, { "bina.az", true }, + { "binairy.com", true }, + { "binairy.nl", true }, { "binam.center", false }, { "binans.co", true }, { "binans.com", true }, @@ -12994,7 +13462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binarization.net", true }, { "binary.house", true }, { "binaryabstraction.com", true }, - { "binaryapparatus.com", true }, { "binaryappdev.com", true }, { "binarycreations.scot", true }, { "binarydream.fi", true }, @@ -13006,9 +13473,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binding-problem.com", true }, { "bing.com", true }, { "bingcheung.com", true }, + { "bingle.nu", true }, { "bingo-wear.com", true }, { "bingo9.net", true }, { "bingobank.org", true }, + { "bingoela.com", true }, { "bingofriends.com", true }, { "binhex.net", true }, { "binhp.com", true }, @@ -13021,8 +13490,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "binsp.net", true }, { "bintach.com", true }, { "bintangsyurga.com", true }, - { "bintelligence.info", true }, - { "bintelligence.nl", true }, + { "bintelligence.info", false }, { "binti.com", true }, { "bintooshoots.com", true }, { "bio-disinfestazione.it", true }, @@ -13051,6 +13519,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bioexploratorium.pl", true }, { "biofattorietoscane.it", true }, { "biofrequenze.it", true }, + { "biogaspuxin.es", true }, { "biogecho.ch", false }, { "biogecho.swiss", false }, { "biogeist.de", true }, @@ -13079,7 +13548,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biomax-mep.com.br", true }, { "biomed-hospital.ch", true }, { "biomed.ch", true }, - { "biometrics.es", true }, { "biomin.co.uk", true }, { "biomodra.cz", true }, { "bionezis.com", true }, @@ -13101,9 +13569,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biospw.com", true }, { "biotanquesbts.com", true }, { "biotechware.com", true }, + { "biotecommunity.com", true }, + { "bioteebook.com", true }, { "biotera.cl", true }, { "biotin.ch", true }, - { "biou.me", true }, { "biovalue.eu", true }, { "biowtage.gq", true }, { "bip.gov.sa", false }, @@ -13125,6 +13594,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "birkenstab.de", true }, { "birkenwasser.de", true }, { "birminghamsunset.com", true }, + { "birosuli.hu", true }, + { "birsinghdhami.com.np", true }, + { "birthday-to-you.com", true }, { "birthdaytip.com", true }, { "birthright.host", true }, { "birthright.website", true }, @@ -13170,6 +13642,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitcalt.ga", true }, { "bitcert.com", false }, { "bitchigo.com", true }, + { "bitclusive.de", true }, { "bitcoin-class.com", true }, { "bitcoin-daijin.com", true }, { "bitcoin-fauset.cf", true }, @@ -13182,6 +13655,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitcoin.de", true }, { "bitcoin.im", true }, { "bitcoin.info", true }, + { "bitcoin.ninja", true }, { "bitcoin.org", true }, { "bitcoin.us", true }, { "bitcoinbitcoin.com", true }, @@ -13189,18 +13663,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitcoincasinos.pro", true }, { "bitcoincore.org", true }, { "bitcoinec.info", true }, + { "bitcoinemprendedor.com", true }, { "bitcoiner-or-shitcoiner.com", true }, { "bitcoinfees.net", true }, { "bitcoingambling.pro", true }, + { "bitcoinheaders.org", true }, { "bitcoinindia.com", true }, { "bitcoinjpn.com", true }, { "bitcoinrealestate.com.au", true }, { "bitcoinrush.tk", true }, + { "bitcoinseed.net", true }, { "bitcointhefts.com", true }, { "bitcoinwalletscript.tk", true }, { "bitcoinx.ro", true }, { "bitcork.io", true }, + { "bitcorner.de", true }, { "bitcqr.io", true }, + { "bitcrazy.org", true }, { "bitech-ec.com", true }, { "bitenose.com", true }, { "bitenose.net", true }, @@ -13240,7 +13719,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitmexin.com", true }, { "bitmidi.com", true }, { "bitminter.com", true }, - { "bitmoe.com", true }, { "bitplay.space", true }, { "bitpod.de", true }, { "bitpoll.de", true }, @@ -13248,10 +13726,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitpumpe.net", true }, { "bitref.com", true }, { "bitrefill.com", true }, + { "bitrefill.info", true }, { "bitrush.nl", true }, { "bits-hr.de", true }, { "bitsafe.com.my", true }, { "bitsalt.com", true }, + { "bitsellx.com", true }, { "bitski.com", true }, { "bitskins.co", true }, { "bitskrieg.net", true }, @@ -13267,6 +13747,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bitten.pw", true }, { "bittersweetcandybowl.com", true }, { "bittervault.xyz", true }, + { "bittextures.com", true }, { "bittylicious.com", true }, { "bitvest.io", true }, { "bitvps.com", true }, @@ -13288,6 +13769,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "biz-seecrets.gq", true }, { "biz4x.com", true }, { "bizcash.co.za", true }, + { "bizeasesupport.com", true }, { "bizeau.ch", true }, { "bizedge.co.nz", true }, { "bizgo.nl", true }, @@ -13309,8 +13791,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bizzdesign.cloud", true }, { "bizzdesign.com", true }, { "bizzi.tv", true }, - { "bizzit.se", true }, { "bjarnerest.de", true }, + { "bjfuli.com", true }, { "bjl5689.com", true }, { "bjl5689.net", true }, { "bjl688.cc", true }, @@ -13337,6 +13819,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bklaindia.com", true }, { "bkositspartytime.co.uk", true }, { "bkt.to", true }, + { "bktrust.it", true }, + { "bkulup.com", true }, { "bl00.se", true }, { "bl4ckb0x.biz", true }, { "bl4ckb0x.com", true }, @@ -13375,7 +13859,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "black-pool.net", true }, { "black-raven.fr", true }, { "black.dating", true }, - { "black.host", true }, { "black1ce.com", true }, { "blackandpony.de", true }, { "blackapron.com.br", true }, @@ -13391,7 +13874,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackcatinformatics.ca", true }, { "blackcatinformatics.com", true }, { "blackcicada.com", true }, - { "blackdiam.net", true }, { "blackdotbrewery.com", true }, { "blackdown.de", true }, { "blackdragoninc.org", true }, @@ -13424,7 +13906,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blackpi.dedyn.io", true }, { "blackroadphotography.de", true }, { "blackroot.eu", true }, - { "blackscreen.me", true }, { "blackscytheconsulting.com", true }, { "blackseals.net", true }, { "blacksheepsw.com", true }, @@ -13436,9 +13917,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blacktown.eu", true }, { "blacktownbuildingsupplies.com.au", true }, { "blacktubes.cf", true }, + { "blackyau.cc", true }, { "blackys-chamber.de", false }, { "blackzebra.audio", true }, { "blaindalefarms.com", true }, + { "blairmitchelmore.com", true }, { "blaise.io", true }, { "blakecoin.org", true }, { "blakekhan.com", true }, @@ -13446,6 +13929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blamefran.net", true }, { "blanboom.org", true }, { "blancodent.com", true }, + { "blankersfamily.com", true }, { "blanket.technology", true }, { "blantik.net", true }, { "blantr.com", true }, @@ -13464,8 +13948,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blaumedia.com", true }, { "blautiefe.de", true }, { "blauwwit.be", true }, - { "blayne.me", true }, - { "blayneallan.com", true }, + { "blayne.me", false }, + { "blayneallan.com", false }, { "blazeit.io", true }, { "blazing.cz", true }, { "blazor.nl", true }, @@ -13506,6 +13990,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blindpigandtheacorn.com", true }, { "blinds-unlimited.com", true }, { "blinds.media", true }, + { "blindsjoburg.com", true }, { "bling9.com", true }, { "bling999.cc", true }, { "bling999.com", true }, @@ -13520,12 +14005,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blinkspeed.eu", true }, { "blio.tk", true }, { "blip.website", true }, + { "bliss.id", true }, { "blissdrive.com", true }, { "blissjoe.com", true }, { "blissplan.com", true }, { "blitzvendor.com", true }, { "blivawesome.dk", true }, { "blivvektor.dk", true }, + { "blixtv.com", true }, { "blizhost.com", true }, { "blizhost.com.br", true }, { "blizora.com", true }, @@ -13548,7 +14035,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blockchainbulteni.com.tr", true }, { "blockchaindaigakko.jp", true }, { "blockchainmagazine.net", true }, - { "blockchainwhiz.com", true }, { "blockcheck.network", true }, { "blockclique.io", true }, { "blockedyourcar.com", true }, @@ -13558,14 +14044,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blockmetry.com", true }, { "blocknodes.live", true }, { "blockshopauto.com", true }, - { "blockstream.com", true }, + { "blocktab.io", true }, + { "blockwatch.cc", true }, { "blockxit.de", true }, { "bloemenbesteld.nl", true }, { "bloemendal.me", true }, { "blog-garage.com", true }, { "blog-grupom2.es", true }, { "blog-investimenti.it", true }, - { "blog.gov.uk", true }, { "blog.gparent.org", true }, { "blog.linode.com", false }, { "blog.lookout.com", false }, @@ -13577,7 +14063,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blogarts.net", true }, { "blogauto.cz", true }, { "blogbooker.com", true }, - { "blogcast.co", true }, { "blogcast.com", true }, { "blogconcours.net", true }, { "blogcosmeticsurgeon.ga", true }, @@ -13588,7 +14073,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blogdieconomia.it", true }, { "blogdimoda.com", true }, { "blogdimotori.it", true }, - { "blogexpert.ca", true }, + { "blogdolago.com.br", true }, { "bloggermumofthreeboys.com", true }, { "blogging-life.com", true }, { "bloggingtipsfornewblogger.com", true }, @@ -13606,14 +14091,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "blogredmachine.com", true }, { "blogreen.org", true }, { "blogsdna.com", true }, + { "blogsked.com", true }, { "blogthedayaway.com", true }, { "blogthetindung.com", true }, { "blogtroterzy.pl", true }, { "bloguser.ru", true }, { "blok56.nl", true }, { "blomberg.name", true }, - { "blonde.style", true }, { "blondesguide.com", true }, + { "bloobet.com", true }, { "blood4pets.tk", true }, { "bloodhunt.eu", true }, { "bloodhunt.pl", true }, @@ -13621,7 +14107,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bloodsports.org", true }, { "bloody.pw", true }, { "bloom-avenue.com", true }, - { "bloom.sh", true }, { "bloomscape.com", true }, { "bloondl.com", true }, { "blopezabogado.es", true }, @@ -13633,7 +14118,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bltc.org.uk", true }, { "bltdirect.com", true }, { "blubbablasen.de", true }, - { "blubberladen.de", true }, { "blubop.fr", true }, { "bludnykoren.ml", true }, { "blue-gmbh-erfahrungen.de", true }, @@ -13670,10 +14154,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluemoonroleplaying.com", true }, { "bluemosh.com", true }, { "bluemtnrentalmanagement.ca", true }, + { "bluenailsstudio.nl", true }, { "bluenote9.com", true }, { "blueoakart.com", true }, - { "bluepearl.tk", true }, { "blueperil.de", true }, + { "bluepoint.me", true }, { "bluepostbox.de", true }, { "blueprintrealtytn.com", true }, { "bluepromocode.com", true }, @@ -13685,6 +14170,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bluesoap.com.au", true }, { "bluestardiabetes.com", true }, { "bluestarroofing.com", true }, + { "bluestoneconstruction.com", true }, { "bluesuncamping.com", true }, { "bluesunhotels.com", true }, { "blueswandaily.com", true }, @@ -13732,7 +14218,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bmoattachments.org", true }, { "bmone.net", true }, { "bmriv.com", true }, - { "bmros.com.ar", true }, + { "bmros.com.ar", false }, { "bmw-motorradclub-seefeld.de", true }, { "bmwcolors.com", true }, { "bn4t.me", true }, @@ -13746,7 +14232,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bnjscastles.co.uk", true }, { "bnstree.com", true }, { "bnty.net", true }, - { "bnusd.cn", true }, { "bnzblowermotors.com", true }, { "bo1689.com", false }, { "bo1689.net", true }, @@ -13781,7 +14266,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bobep.ru", true }, { "bobigames.com", true }, { "bobiji.com", false }, - { "bobisec.cz", true }, + { "bobisec.cz", false }, { "bobkidbob.com", true }, { "bobkoetsier.nl", true }, { "bobnbounce.ie", true }, @@ -13797,10 +14282,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bockenauer.at", true }, { "bocloud.eu", true }, { "bocreation.fr", true }, + { "bodagratis.com", true }, { "bodas.com.mx", true }, - { "bodegasvirei.com", true }, + { "bodasgratis.com", true }, { "bodemplaten4x4.nl", true }, { "bodhi.fedoraproject.org", true }, + { "bodin.cz", true }, { "bodis.nl", true }, { "bodixite.com", true }, { "bodrumfarm.com", true }, @@ -13826,7 +14313,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bogena.com.ua", true }, { "bogner.sh", true }, { "bogosity.tv", true }, - { "bogurl.com", false }, + { "bogs-consulting.de", true }, + { "bogs.de", true }, + { "bogurl.com", true }, { "bohaishibei.com", true }, { "bohan.co", true }, { "bohramt.de", true }, @@ -13847,12 +14336,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bolamarela.com.br", true }, { "bolamarela.pt", true }, { "boldmediagroup.com", true }, - { "boldt-metallbau.de", true }, { "bolektro.de", true }, { "boleyn.su", true }, { "bolgarka.kz", true }, { "bolgarnyelv.hu", true }, + { "bolgarus.ru", true }, + { "bolico.de", true }, + { "bolivar80.com", true }, { "bolivarfm.com.ve", true }, + { "boliviasepusodemoda.com", true }, { "bologna-disinfestazioni.it", true }, { "bolovegna.it", true }, { "bolsashidrosolubles.com", true }, @@ -13866,7 +14358,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bombe-lacrymogene.fr", true }, { "bomberus.de", true }, { "bomboniere.roma.it", true }, - { "bombsquad.studio", true }, { "bomhard.de", true }, { "bomhard.net", true }, { "bomhard.org", true }, @@ -13928,8 +14419,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bonus.pl", true }, { "bonusov.tk", true }, { "bonussource.com", true }, - { "bonux.co", true }, - { "boobox.xyz", true }, { "boodmo.com", true }, { "boof.com", false }, { "book-in-hotel.com", true }, @@ -13948,7 +14437,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bookourdjs.com", true }, { "bookreport.ga", true }, { "books.co.ua", true }, - { "booksearch.jp", true }, { "bookshopofindia.com", true }, { "booksinthefridge.at", true }, { "bookslibrarybooks.gq", true }, @@ -13983,6 +14471,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boostgame.win", true }, { "booter.pw", true }, { "boothlabs.me", true }, + { "bootina.com", true }, { "bootjp.me", false }, { "bootsschule-weiss.de", true }, { "boozinyan.com", true }, @@ -14006,6 +14495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boreo.si", true }, { "boresmail.ru", true }, { "borgmestervangen.xyz", true }, + { "borgoaureo.com", true }, { "borgodigatteraia.it", true }, { "boris64.net", true }, { "borisenko.by", true }, @@ -14025,11 +14515,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bosattondskap.tk", true }, { "boschee.net", true }, { "boschsplit.co", true }, + { "boschveldtuin.nl", true }, { "boscoyacht.ch", false }, { "boscq.fr", true }, { "bosekarmelitky.cz", true }, { "boskeopolis-stories.com", true }, { "boss.az", true }, + { "bossbabe.com", true }, { "boston-sailing.com", true }, { "bostonadvisors.com", true }, { "bostonaoii.com", true }, @@ -14037,7 +14529,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bosun.io", true }, { "bot-manager.pl", true }, { "botcamp.org", true }, - { "botcore.ai", true }, + { "botcore.ai", false }, { "botealis.ch", true }, { "botezdepoveste.ro", true }, { "botguard.net", true }, @@ -14047,6 +14539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "botmastery.com", true }, { "botmedia.cf", true }, { "botnam.com", false }, + { "botox.bz", true }, { "bots.cat", true }, { "botserver.de", true }, { "botsiah.fail", true }, @@ -14058,7 +14551,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bottle.li", true }, { "bottledstories.de", true }, { "bou.cloud", true }, - { "bou.ke", true }, + { "bou.ke", false }, { "bouah.net", true }, { "bouchard-mathieux.com", true }, { "bouchonville-knifemaker.com", true }, @@ -14066,7 +14559,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boudah.pl", true }, { "bougeret.fr", true }, { "boughariosbros.com", true }, - { "bouk.co", true }, { "boukoubengo.com", true }, { "bouldercolorado.gov", true }, { "boulderlibrary.org", true }, @@ -14092,6 +14584,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bounceandwobble.co.uk", true }, { "bounceapp.com", true }, { "bouncearoundevents.co.uk", true }, + { "bouncearoundinflatable.com", true }, { "bouncearoundsheffield.co.uk", true }, { "bounceawaycastles.com", true }, { "bouncebackcastles.co.uk", true }, @@ -14105,6 +14598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bouncenortheast.co.uk", true }, { "bouncenpaint.co.uk", true }, { "bouncepartycastles.com", true }, + { "bounceroos-bouncycastles.co.uk", true }, { "bounceroosevents.co.uk", true }, { "bouncers-bouncycastlehire.co.uk", true }, { "bouncesouthwales.co.uk", true }, @@ -14173,9 +14667,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bouncywouncy.co.uk", true }, { "bound2bounce.co.uk", true }, { "boundarybrighton.com", true }, + { "boundaryford.com", true }, { "boundaryvets.co.uk", true }, { "bounouh.tk", true }, { "bountiful.gov", true }, + { "bounty.fund", true }, + { "bounty.software", true }, { "bountyfactory.io", true }, { "bourasse.fr", true }, { "bourgeoisdoorco.com", true }, @@ -14185,7 +14682,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bourse-puericulture.org", false }, { "bourseauxservices.com", true }, { "boutique-giovanni.fr", true }, - { "boutiquedecanetas.com.br", true }, { "boutiqueguenaelleverdin.com", true }, { "boutoncoupdepoing.fr", true }, { "bouw.live", true }, @@ -14200,13 +14696,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boweryandvine.com", true }, { "bowlcake.fr", true }, { "bowling.com", true }, - { "bownty.co.uk", true }, - { "bownty.de", true }, - { "bownty.dk", true }, - { "bownty.es", true }, - { "bownty.fr", true }, - { "bownty.it", true }, - { "bownty.nl", true }, { "bowntycdn.net", true }, { "bowtie.com.hk", true }, { "boxcritters.wiki", true }, @@ -14218,6 +14707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "boxpirates.to", true }, { "boxspringbett-160x200.de", true }, { "boxt.com.au", true }, + { "boxtub.com", true }, { "boxvergelijker.nl", true }, { "boxview.com", true }, { "boyerassoc.com", true }, @@ -14237,6 +14727,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bpaste.net", true }, { "bpastudies.org", true }, { "bphostels.com", true }, + { "bpisites.eu", true }, { "bpo.ovh", true }, { "bpol-forum.de", true }, { "bps.vc", true }, @@ -14280,6 +14771,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brainball.fr", false }, { "brainboxai.com", true }, { "braineet.com", true }, + { "brainhealth.gov", true }, { "brainhub.nl", true }, { "brainobeat.com", true }, { "brainserve.ch", false }, @@ -14300,7 +14792,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bralnik.com", true }, { "bramburek.net", true }, { "bramhallsamusements.com", true }, - { "brammingfys.dk", true }, + { "bramhopetails.uk", true }, + { "bramming-fysio.dk", true }, { "bramois.tk", true }, { "bramsikkens.be", true }, { "bramstaps.nl", true }, @@ -14309,6 +14802,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bran.land", true }, { "bran.soy", true }, { "branch-bookkeeper.com", true }, + { "branchenbuch-potsdam.com", true }, { "branchtrack.com", true }, { "brandand.co.uk", true }, { "brandbil.dk", true }, @@ -14354,6 +14848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brasserie-twins.com", true }, { "brasspipedreams.org", true }, { "bratteng.me", true }, + { "bratteng.solutions", true }, { "bratteng.xyz", true }, { "bratunaconline.tk", true }, { "bratvanov.com", true }, @@ -14370,8 +14865,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bravebooks.berlin", true }, { "bravehearts.org.au", true }, { "bravica.tk", true }, - { "braviskindenjeugd.nl", true }, - { "bravisziekenhuis.nl", false }, { "bravobet.et", true }, { "bravor.pe", true }, { "brazenfol.io", true }, @@ -14382,11 +14875,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brb.city", true }, { "brck.nl", true }, { "brd.ro", true }, + { "bread.fish", true }, { "bread.red", true }, { "breadandlife.org", true }, { "breadofgod.org", true }, { "breadpirates.chat", true }, { "breakcraft.tk", true }, + { "breakerlink.com", true }, { "breakingtech.fr", true }, { "breakingtech.it", true }, { "breakout.careers", true }, @@ -14403,11 +14898,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brecknell.name", true }, { "brecknell.net", true }, { "brecknell.org", true }, + { "breda.computer", true }, { "breechdepot.com", true }, { "breest.net", true }, { "breeyn.com", true }, { "brefy.com", true }, { "brege.org", true }, + { "bregnedal.dk", true }, { "bregnedalsystems.dk", true }, { "breitband.bz.it", true }, { "breizh.pm", true }, @@ -14438,6 +14935,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brewsouth.com", true }, { "brewspark.co", true }, { "brewvo.com", true }, + { "breyerslakeshoreresort.com", true }, + { "breyerslakesideresort.com", true }, + { "breyersresort.com", true }, { "breznet.com", true }, { "brfvh24.se", true }, { "brgins.com", true }, @@ -14463,6 +14963,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brianwalther.com", true }, { "brianwesaala.com", false }, { "brianwilson.tk", true }, + { "brianwylie.com", true }, { "briarproject.org", true }, { "brickadia.com", true }, { "brickftp.com", true }, @@ -14473,6 +14974,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brickweb.co.uk", true }, { "brickwerks.io", true }, { "bricolajeux.ch", false }, + { "bricomium.com", true }, { "brid.gy", false }, { "bridalfabrics.co.uk", true }, { "bridalfabrics.com", true }, @@ -14483,6 +14985,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bride-forever.com", true }, { "bridgedigest.tk", true }, { "bridgedirectoutreach.com", true }, + { "bridgeforcefinancial.com", true }, { "bridgeglobalmarketing.com", true }, { "bridgehomeloans.com", true }, { "bridgement.com", true }, @@ -14498,12 +15001,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "briefvorlagen-papierformat.de", true }, { "brier.me", true }, { "briffoud.fr", true }, + { "brigade-electronics.com", true }, { "briggsleroux.com", true }, { "brighouse-leisure.co.uk", true }, { "brightday.bz", true }, { "brightendofleasecleaning.com.au", true }, { "brightfuturemadebyme.com", true }, - { "brightonbank.com", true }, + { "brightonbank.com", false }, { "brightonbouncycastles.net", true }, { "brightonchilli.org.uk", true }, { "brightpool-markets.com", true }, @@ -14514,28 +15018,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brigitte.nyc", true }, { "brigittebutt.tk", true }, { "brigittefontaine.tk", true }, + { "brilalux.pe", true }, { "brilliantbouncyfun.co.uk", true }, { "brilliantproductions.co.nz", true }, + { "brillio.com", true }, { "brimspark.com", true }, { "brimspark.systems", true }, { "brindesgrafica.com.br", true }, + { "brindice.com.br", true }, { "brindisi.tk", true }, { "bring-heaven.com", true }, { "bringingbackthesweatervest.com", true }, + { "brinkbem.com", true }, { "brinkhu.is", true }, { "brinksurl.com", true }, { "brio-shop.ch", true }, { "brio-ukraine.store", true }, { "briograce.com.mx", true }, { "brioukraine.store", true }, + { "brisbaneflamenco.com.au", true }, { "brisbanelogistics.com.au", true }, { "brisignshop.com.au", true }, { "brisq.design", true }, { "bristebein.com", true }, { "bristolandwestonsuperbounce.com", true }, + { "brit-thoracic.org.uk", true }, { "britanniacateringyeovil.co.uk", true }, { "britanniapandi.com", true }, { "britelocate.com", true }, + { "britishacademy.us", true }, { "britishbeef.com", true }, { "britishbookmakers.co.uk", true }, { "britishchronicles.com", true }, @@ -14550,6 +15061,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brittanyferriesnewsroom.com", true }, { "britton-photography.com", true }, { "brizawen.com", true }, + { "brk.dk", true }, { "brk.st", true }, { "brmascots.com", true }, { "brmsalescommunity.com", true }, @@ -14576,7 +15088,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brokenhands.io", true }, { "brokernet.ie", false }, { "brokernotes.co", true }, - { "brokolit.com", true }, { "brols.eu", true }, { "bromo.cf", true }, { "brompton-cocktail.com", true }, @@ -14589,6 +15100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brooklyncosmetics.net", true }, { "brooklynentdoc.com", true }, { "brooklynrealestateblog.com", true }, + { "brooklyntheborough.com", true }, { "brookscountyga.gov", true }, { "brosay-legko.ml", true }, { "brossman.it", true }, @@ -14596,8 +15108,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brouillard.ch", false }, { "brouskat.be", true }, { "brouwerijdeblauweijsbeer.nl", true }, - { "brouwerijkoelit.nl", true }, { "brovelton.com", true }, + { "brownchair.org", true }, { "brownesgas.com", true }, { "brownfieldstsc.org", true }, { "brownforces.desi", true }, @@ -14611,7 +15123,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "browsedns.net", true }, { "browsemycity.com", true }, { "browserleaks.com", true }, - { "brrd.io", true }, { "brrr.fr", true }, { "bru6.de", true }, { "brubank.com", true }, @@ -14629,13 +15140,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brudkistan.se", true }, { "brugerklub.info", true }, { "bruijns.org", true }, + { "brujoincaperuano.com", true }, + { "brujonegroperuano.com", true }, { "bruna-cdn.nl", true }, { "brunchandmatch.be", true }, { "brunetderochebrune.com", false }, { "brunick.de", false }, { "brunn.email", true }, { "brunner.ninja", true }, + { "brunoamaral.eu", true }, { "brunohenc.from.hr", true }, + { "brunolt.nl", true }, { "brunoproduit.ch", false }, { "brunoramos.com", true }, { "brunoramos.org", true }, @@ -14647,7 +15162,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "brutecloud.com", true }, { "brutus2.ga", false }, { "bruun.co", true }, - { "bry.do", true }, + { "bry.do", false }, { "bryanarmijomd.com", true }, { "bryancastillo.site", true }, { "bryandesrosiers.com", true }, @@ -14692,12 +15207,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bsidesf.com", true }, { "bsidesf.org", true }, { "bsidessf.com", true }, - { "bsimerch.com", true }, { "bsimyanmar.com", true }, { "bsktweetup.info", true }, { "bslim-e-boutique.com", true }, { "bsmn.ga", true }, - { "bsmomo-api.com", true }, { "bso-buitengewoon.nl", true }, { "bsociabl.com", true }, { "bsp-southpool.com", true }, @@ -14724,12 +15237,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btcarmory.com", true }, { "btcbenthuizen.nl", true }, { "btcbolsa.com", true }, - { "btcfbi.com", true }, { "btcontract.com", true }, { "btcp.space", true }, { "btcpop.co", true }, { "bte365app.com", true }, { "bteapp.com", true }, + { "bthub.site", true }, + { "bthub.xyz", true }, { "btine.tk", true }, { "btio.pw", false }, { "btku.org", true }, @@ -14744,10 +15258,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btsoft.eu", true }, { "btsou.org", true }, { "btsow.com", false }, + { "btsybt.com", true }, { "btt-39.com", true }, { "btt-59.com", true }, { "btt0101.com", true }, - { "btt0303.com", true }, { "btt043g.com", true }, { "btt0505.com", true }, { "btt0606.com", true }, @@ -14762,27 +15276,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt138g.com", true }, { "btt1515.com", true }, { "btt175.com", true }, + { "btt185.com", true }, { "btt187.com", true }, { "btt192.com", true }, { "btt2020.com", true }, { "btt2121.com", true }, - { "btt213.com", true }, { "btt216.com", true }, { "btt217.com", true }, { "btt219.com", true }, - { "btt221.com", true }, { "btt222g.com", true }, { "btt225.com", true }, { "btt226.com", true }, { "btt229.com", true }, { "btt230.com", true }, { "btt2323a.com", true }, - { "btt236.com", true }, { "btt238.com", true }, { "btt2525.com", true }, { "btt256.com", true }, { "btt263.com", true }, - { "btt268.com", true }, { "btt269g.com", true }, { "btt273g.com", true }, { "btt285.com", true }, @@ -14791,27 +15302,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt301.com", true }, { "btt302.com", true }, { "btt303.com", true }, - { "btt305.com", true }, { "btt306.com", true }, { "btt307.com", true }, { "btt308.com", true }, { "btt309.com", true }, - { "btt312.com", true }, { "btt317.com", true }, { "btt319.com", true }, { "btt3311.com", true }, - { "btt332.com", true }, { "btt350.com", true }, { "btt351.com", true }, { "btt352.com", true }, { "btt353.com", true }, - { "btt3535.com", true }, { "btt355.com", true }, { "btt358.com", true }, { "btt359.com", true }, - { "btt361.com", true }, - { "btt362.com", true }, - { "btt368.com", true }, { "btt371.com", true }, { "btt372.com", true }, { "btt373.com", true }, @@ -14822,7 +15326,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt381.com", true }, { "btt381g.com", true }, { "btt494g.com", true }, - { "btt529g.com", true }, { "btt583g.com", true }, { "btt6262a.com", true }, { "btt6363a.com", true }, @@ -14833,7 +15336,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt7272a.com", true }, { "btt7676.com", true }, { "btt775.com", true }, - { "btt776.com", true }, { "btt7878.com", true }, { "btt789g.com", true }, { "btt8.me", true }, @@ -14851,24 +15353,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "btt8989a.com", true }, { "btt907.com", true }, { "btt9090.com", true }, - { "btt918.cn", true }, { "btt918958.com", true }, { "btt9292a.com", true }, { "btt932g.com", true }, { "btt945g.com", true }, { "btt9494.com", true }, + { "btt949g.com", true }, { "btt9595.com", true }, - { "btt9797.com", true }, { "btt9898.com", true }, { "btt99.net", true }, { "btt996.com", true }, { "btta13.com", true }, - { "btta15.com", true }, { "btta16.com", true }, { "btta18.com", true }, { "btta26.com", true }, - { "btta27.com", true }, - { "btta30.com", true }, { "bttc.co.uk", true }, { "btth.live", true }, { "btth.pl", true }, @@ -14877,7 +15375,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bttna.com", true }, { "bttorj45.com", true }, { "bttp7.com", true }, - { "bttt111.com", true }, { "bttt222.com", true }, { "bttt333.com", true }, { "bttt999.com", true }, @@ -14905,7 +15402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buckscountyobgyn.com", true }, { "buckypaper.com", true }, { "budaev-shop.ru", true }, - { "buddhaspa.ro", true }, { "buddhismedia.com", true }, { "buddhismus.net", true }, { "buddhistische-weisheiten.org", true }, @@ -14922,7 +15418,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buddyworks.net", true }, { "budeanu.com", true }, { "buderus-family.be", true }, - { "budger.nl", true }, { "budget.gov", true }, { "budgetalk.com", true }, { "budgetboats.net", true }, @@ -14934,7 +15429,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "budolangnau.ch", true }, { "budolfs.de", true }, { "budowle.pl", true }, - { "bueltge.de", true }, { "buena-vista.cz", true }, { "buena.me", true }, { "bueny.com", true }, @@ -14947,6 +15441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buettgens.net", true }, { "buffaloautomation.com", true }, { "buffaloturf.com.au", true }, + { "buffalowdown.com", true }, { "buffashe.com", false }, { "buffetbouc.com", true }, { "buffup.media", true }, @@ -14965,11 +15460,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bugzil.la", true }, { "bugzilla.mozilla.org", true }, { "buhayguro.com", true }, + { "buhayprincipal.com", true }, { "build.chromium.org", true }, { "buildbytes.com", true }, { "buildhoscaletraingi.com", true }, { "buildiffuse.com", false }, { "building-cost-estimators.com", true }, + { "buildingbitcoin.org", true }, { "buildingclouds.de", true }, { "buildingcostestimators.co.uk", true }, { "buildingpoint.pt", true }, @@ -14985,8 +15482,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buissonchardin.fr", true }, { "buitenposter.nl", true }, { "buka.jp", true }, - { "bukai.men", false }, + { "bukalapak.com", true }, { "bukiskola.hu", true }, + { "bukivallalkozasok.hu", true }, { "bukkenfan.jp", true }, { "bukpcszerviz.hu", true }, { "bul3seas.eu", true }, @@ -14997,7 +15495,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bulbgenie.com", true }, { "buldogueingles.com.br", true }, { "bulgarianwine.com", true }, - { "bulk-pagerank-checker.com", true }, { "bulkcandystore.com", true }, { "bulkowespacerkowo.nl", true }, { "bulktshirtsjohannesburg.co.za", true }, @@ -15009,20 +15506,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bulletpoint.cz", true }, { "bullettags.com", true }, { "bullpendaily.com", true }, + { "bullseyemetrics.com", true }, { "bullshitmail.nl", true }, { "bullterrier.nu", true }, { "bulmastife.com.br", true }, + { "bulutkey.com", true }, { "bulvar.tk", true }, { "bulwarkcrypto.com", true }, { "bulwarkhost.com", true }, { "bumble.com", true }, + { "bumilangkawi.com", true }, { "bunadarbankinn.is", true }, { "bunbun.be", false }, { "bund-von-theramore.de", true }, { "bundespolizei-forum.de", true }, + { "bundesverband-krisenintervention.de", true }, + { "bundesverbandkrisenintervention.de", true }, { "bundito.com", true }, { "bungabuket.com", true }, - { "bungaspa.com", true }, { "bungee.pw", true }, { "bunix.de", true }, { "bunkyo-life.com", true }, @@ -15034,17 +15535,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bunnyvishal.com", true }, { "bunq.love", true }, { "bunzy.ca", true }, + { "buongiornolatina.it", true }, { "buonventosbt.eu", true }, { "bupropion.com", true }, { "buqi.cc", true }, { "buradangonder.com", true }, - { "burakogun.com", true }, - { "burakogun.com.tr", true }, - { "burakogun.net", true }, - { "burakogun.net.tr", true }, - { "burakogun.org", true }, + { "burakogun.com", false }, + { "burakogun.com.tr", false }, + { "burakogun.net", false }, + { "burakogun.net.tr", false }, + { "burakogun.org", false }, { "burbankdental.com", true }, { "burcevo.info", true }, + { "burchfabrics.com", true }, + { "burdine-andersoninc.com", true }, { "bureaugoodwork.nl", true }, { "burg-hohnstein.com", true }, { "burgawnc.gov", true }, @@ -15058,6 +15562,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buriramradio.com", true }, { "burke.services", true }, { "burkhardt.at", true }, + { "burkow.ru", true }, { "burlapsac.ca", true }, { "burlingtonhs.com", true }, { "burncorp.org", true }, @@ -15090,6 +15595,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buserror.cn", true }, { "bushbaby.com", true }, { "bushcraftfriends.com", true }, + { "bushfirerecovery.gov.au", true }, { "busindre.com", true }, { "business-creators.ru", true }, { "business-garden.com", true }, @@ -15104,6 +15610,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "businessetmarketing.com", true }, { "businessfactors.de", true }, { "businessfurs.info", true }, + { "businessgram.eu", true }, { "businesshub.cz", false }, { "businessimmigration-eu.com", true }, { "businessimmigration-eu.ru", true }, @@ -15125,7 +15632,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "busybee360.com", true }, { "busyon.cloud", true }, { "butarque.es", true }, - { "buthowdoyoubuygroceries.com", true }, { "butikvip.ru", true }, { "butlercountyhistory.org", true }, { "butlerfm.dk", true }, @@ -15159,7 +15665,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buycarpet.shop", true }, { "buycbd.store", true }, { "buycccam.tv", true }, - { "buycoins.top", true }, { "buycook.shop", true }, { "buycurious.co.uk", true }, { "buydiflucan.ml", true }, @@ -15168,6 +15673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buyerdocs.com", true }, { "buyessay.org", true }, { "buyessays.net", true }, + { "buyguideonline.com", true }, { "buyharpoon.com", true }, { "buyhealth.shop", true }, { "buyinginvestmentproperty.com", true }, @@ -15176,7 +15682,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "buylasix.ml", true }, { "buylevaquin.tk", true }, { "buypapercheap.net", true }, - { "buyplaytix.com", true }, { "buyplore.com", true }, { "buyplussize.shop", true }, { "buyprofessional.shop", true }, @@ -15242,7 +15747,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bxdj88.com", true }, { "bxdj888.com", true }, { "bxdj9.com", true }, - { "bxegypt.com", true }, { "bxp40.at", true }, { "bxzx1.com", true }, { "bxzx2.com", true }, @@ -15253,8 +15757,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bxzx7.com", true }, { "bxzx9.com", true }, { "by-robyn.nl", true }, - { "by1899.com", true }, { "byange.pro", true }, + { "byanjushka.com", true }, { "byatte.com", true }, { "byaustere.com", true }, { "bycrates.com", true }, @@ -15265,6 +15769,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "byggonline.ga", true }, { "bygningsregistrering.dk", true }, { "byhe.me", true }, + { "byhenryvera.com", true }, { "byiu.info", false }, { "byjamesrush.com", true }, { "byji.com", true }, @@ -15282,10 +15787,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bypass.sh", true }, { "bypetula.cz", true }, { "byraje.com", true }, + { "byrest.com", true }, { "byrko.cz", true }, { "byrko.sk", true }, { "byrnesagency.com", true }, { "byronkg.us", true }, + { "byronwade.com", false }, { "byrtz.de", true }, { "bysb.net", true }, { "bysgo.com", true }, @@ -15293,7 +15800,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytanchan.com", true }, { "byte-time.com", true }, { "byte.nl", true }, - { "byte128.com", true }, + { "byte128.com", false }, { "bytearts.net", false }, { "bytebucket.org", true }, { "bytecode.no", true }, @@ -15307,12 +15814,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "bytema.re", true }, { "bytema.sk", true }, { "bytemix.cloud", true }, - { "bytenoc.nl", true }, { "bytepen.com", true }, { "bytes.co", true }, { "bytes.fyi", true }, { "bytesatwork.de", true }, - { "byteshark.org", true }, { "byteshift.ca", true }, { "bytesign.de", true }, { "bytesizedalex.com", true }, @@ -15351,20 +15856,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c2lab.net", true }, { "c2o2.xyz", true }, { "c3.pm", true }, + { "c30365.com", true }, { "c35.design", true }, { "c36533.com", true }, { "c36594.com", true }, + { "c3boc.com", true }, { "c3hv.cn", true }, { "c3kidspace.de", true }, + { "c3s.hu", true }, { "c3sign.de", false }, + { "c3soc.de", true }, { "c3softworks.com", true }, + { "c3speak.com", true }, + { "c3speak.de", true }, { "c3vo.de", true }, { "c3w.at", true }, { "c3wien.at", true }, { "c3woc.de", false }, { "c4539.com", true }, { "c4k3.net", true }, - { "c4wlabz.com", true }, { "c5197.co", true }, { "c5h8no4na.net", true }, { "c6729.co", true }, @@ -15377,18 +15887,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "c86255.com", true }, { "c886666.com", true }, { "c899365.com", true }, - { "c8ms113.com", true }, { "c9297.co", true }, - { "c9397.com", true }, - { "c9721.com", true }, { "c9728.co", true }, { "ca-key.de", true }, { "ca.gparent.org", true }, { "ca.search.yahoo.com", false }, { "ca5.de", true }, + { "caai.cc", true }, { "caaps.org.au", true }, { "caarecord.org", true }, { "caasd.org", true }, + { "cabaal.net", true }, { "cabalacoach.com", true }, { "cabaladada.org", true }, { "cabanactf.com", true }, @@ -15397,12 +15906,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cabelgrano.tk", true }, { "cabezadelcaballo.tk", true }, { "cabforum.org", true }, + { "cabina-photobooth.ro", true }, { "cabineritten.nl", true }, - { "cabinet-life.fr", true }, + { "cabinet-life.fr", false }, { "cabinetfurnituree.com", true }, { "cablehighspeed.net", true }, { "cablemod.com", true }, { "cablesandkits.com", true }, + { "cabooneconstruction.com", true }, { "cabotfinancial.co.uk", true }, { "cabuna.hr", true }, { "cacao-chocolate.com", true }, @@ -15410,6 +15921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cacaolalina.com", true }, { "caceis.bank", true }, { "cachacacha.com", true }, + { "cachchoi138bet.com", true }, { "cachedview.nl", true }, { "cachethome.com", true }, { "cachetur.no", true }, @@ -15418,6 +15930,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cacr.pw", true }, { "cacrm.com", true }, { "cactuspedia.ga", true }, + { "cactusyaktopus.com", true }, { "cad-noerdlingen.de", true }, { "cadafamilia.de", true }, { "cadams.io", true }, @@ -15432,6 +15945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cadmanlaw.ca", true }, { "cadmanlaw.com", true }, { "cadmax.pro", true }, + { "cadmechanic.com", true }, { "cadooz.com", true }, { "cadorama.fr", true }, { "cadoth.net", true }, @@ -15448,6 +15962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "caetanoformulagalicia.es", true }, { "caetanomotorsmalaga.es", true }, { "caetanoreicomsa.es", true }, + { "cafe-pauline.de", true }, { "cafe-service.ru", false }, { "cafechesscourt.com", true }, { "cafedelahalle.com", true }, @@ -15484,7 +15999,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cajalosandes.cl", true }, { "cajio.ru", true }, { "cajunuk.co.uk", true }, + { "cake-n-go.com", true }, { "cakearific.com", true }, + { "cakedesignsbyjaclyn.com", true }, { "cakeoffencesact.uk", true }, { "cakesbyzoey.com", true }, { "cakestart.net", true }, @@ -15536,12 +16053,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "caletka.cz", true }, { "calgoty.com", true }, { "calibra.com", true }, - { "calibreapp.com", false }, + { "calibreapp.com", true }, { "calibso.net", true }, { "calichines.com", true }, { "caliderumba.com", true }, { "calidoinvierno.com", true }, + { "californiamusicacademy.com", true }, { "californiawomensmedicalclinic.com", true }, + { "calim.com.ar", true }, { "calitateavietii-ardeal.ro", true }, { "calixte-concept.fr", true }, { "call-centervko.kz", true }, @@ -15549,6 +16068,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "callabs.net", true }, { "callanan.nl", true }, { "callanbryant.co.uk", false }, + { "callanjg.co.uk", true }, { "callantonia.com", true }, { "callawayracing.se", false }, { "callear.org", true }, @@ -15558,6 +16078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "callhub.io", true }, { "callidus-vulpes.de", true }, { "callmewhatever.com", true }, + { "callqa.center", true }, { "callsigns.ca", true }, { "calltoar.ms", true }, { "calltothepen.com", true }, @@ -15567,17 +16088,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "calminteractive.fr", true }, { "calmtech.com", true }, { "calomel.org", true }, - { "calonmahasiswa.com", true }, { "calories.org", true }, { "calotte-academy.com", true }, { "calposa.ml", true }, + { "calprut.com", true }, { "calrotaract.org", true }, { "calucon.de", true }, { "calverleyparish.church", true }, { "calvin.my", true }, { "calvinallen.net", false }, { "calypso-tour.net", true }, + { "calypsohost.net", true }, { "calyxengineers.com", true }, + { "calyxinstitute.org", true }, { "calzadonline1-latam.com", true }, { "calzadonline1.com", true }, { "camago.dk", true }, @@ -15592,6 +16115,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "camarillooutdoorlighting.com", true }, { "camashop.de", true }, { "camastowncar.com", true }, + { "camberford.com", true }, { "cambier.org", true }, { "cambiowatch.ch", false }, { "cambodiainfo.tk", true }, @@ -15604,6 +16128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cambridgesecuritygroup.org", true }, { "cambuslangharriers.org", true }, { "camcapital.com", true }, + { "camclips.pro", true }, { "camconn.cc", true }, { "camdesign.pl", true }, { "camel2243.com", true }, @@ -15611,7 +16136,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "camelservers.com", true }, { "cameo-membership.uk", true }, { "cameo.ee", true }, - { "camera-news.com", true }, { "cameramark.nl", true }, { "cameraslyphotography.tk", true }, { "camerweb.es", true }, @@ -15620,9 +16144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "camjackson.net", false }, { "camolist.com", true }, { "camp-pleinsoleil.ch", true }, - { "camp.co.uk", true }, { "campaign-ad.com", true }, - { "campaign.gov.uk", true }, { "campaignhelpdesk.org", true }, { "campaignlake.com", true }, { "campaignwiki.org", true }, @@ -15630,7 +16152,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campbellapplianceheatingandair.com", true }, { "campbellkennedy.co.uk", true }, { "campcambodia.org", true }, - { "campcanada.org", true }, { "campeonatoalemao.com.br", true }, { "camperdays.de", true }, { "camperlist.com", true }, @@ -15640,7 +16161,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campfiretails.org", true }, { "campgesher.com", true }, { "camping-aupigeonnier.fr", true }, - { "camping-landes.com", true }, { "camping-le-pasquier.com", true }, { "camping-seilershof.de", true }, { "campingcarlovers.com", true }, @@ -15651,11 +16171,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "campmackinaw.com", true }, { "campo-salado.com", true }, { "campsoulfestival.com", true }, + { "camptuk.org", true }, { "campula.cz", true }, { "campus-discounts.com", true }, { "campus-finance.com", true }, { "campusdrugprevention.gov", true }, - { "campusfit.co", true }, { "campuswire.com", true }, { "campvana.com", true }, { "campwabashi.org", true }, @@ -15714,6 +16234,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canhas.report", true }, { "canhazip.com", true }, { "canhq.tk", true }, + { "cani-compostelle.fr", true }, { "canihavesome.coffee", true }, { "canine-mobility.com", true }, { "caniuse.email", true }, @@ -15736,18 +16257,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "canopy.ninja", true }, { "canopycleaningmelbourne.com.au", true }, { "canopytax.com", true }, + { "canperclinicaveterinaria.com", true }, { "cansworld.com", true }, { "cant.at", true }, { "cantatio.ch", false }, { "canterbury.ws", true }, { "canterburybouncycastlehire.co.uk", true }, { "cantik.co", true }, + { "cantinhodosossegosaojose.com.br", true }, { "cantonroadjewelry.com", true }, { "cantosdisidentes.tk", true }, { "canttboardpachmarhi.org", true }, { "canva-dev.com", true }, { "canva.cn", true }, { "canva.com", true }, + { "canvas-gift.com", true }, { "canx.org", true }, { "canyons.media", false }, { "canyonshoa.com", true }, @@ -15756,6 +16280,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cao.la", true }, { "caodecristachines.com.br", true }, { "caodesantohumberto.com.br", true }, + { "caodo.cf", true }, { "caoliu.tech", true }, { "caoshan60.com", true }, { "capachitos.cl", true }, @@ -15775,11 +16300,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capital-match.com", true }, { "capitalcap.com", true }, { "capitalcollections.org.uk", true }, - { "capitalfps.com", true }, { "capitalibre.com", true }, { "capitalism.party", true }, { "capitalist.cf", true }, { "capitalmediaventures.co.uk", true }, + { "capitalmedicals.co.nz", true }, { "capitalonecardservice.com", true }, { "capitalp.jp", true }, { "capitalquadatv.org.nz", true }, @@ -15793,6 +16318,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "caprichosdevicky.com", true }, { "caps.is", true }, { "capsogusto.com", true }, + { "capssouthafrica.co.za", true }, { "capstansecurity.co.uk", true }, { "capstansecurity.com", true }, { "capstoneinsights.com", true }, @@ -15811,6 +16337,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "capuchinox.com", true }, { "caputo.com", true }, { "caputodesign.com", true }, + { "car-forums.com", true }, { "car-spaw-rac.fr", true }, { "car.info", true }, { "car24.de", true }, @@ -15842,9 +16369,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carck.co.uk", true }, { "carck.uk", true }, { "carcloud.ch", true }, + { "carcountking.com", true }, { "card-cashing.com", true }, { "cardano.eco", true }, { "cardanoinvestment.com", true }, + { "cardboard.cx", true }, { "cardcaptorsakura.jp", true }, { "carddreams.be", true }, { "carddreams.de", true }, @@ -15852,12 +16381,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carddreams.nl", true }, { "cardexchangesolutions.com", true }, { "cardiagnostics.tk", true }, + { "cardideas.xyz", true }, { "cardingforum.co", true }, + { "cardioagainstcancer.nl", true }, { "cardios.srv.br", true }, + { "cardjit.su", true }, { "cardloan-manual.net", true }, { "cardoni.net", true }, { "cardozovargas.com", true }, - { "cardozovargas.me", true }, { "cardranking.jp", true }, { "cardrecovery.fr", true }, { "cardse.net", false }, @@ -15880,14 +16411,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "careerdirectionsltd.com", true }, { "careeroptionscoach.com", true }, { "careerpower.co.in", true }, - { "careers.plus", true }, { "careertransformed.com", true }, - { "carefour.nl", true }, { "carefulcolor.com", true }, { "caregiverva.org", true }, { "caremad.io", true }, { "carepan.ga", true }, { "carepassport.com", true }, + { "carespan.clinic", true }, { "carespot.biz", true }, { "carespot.co", true }, { "carespot.mobi", true }, @@ -15926,6 +16456,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carinsurance.es", true }, { "carinthia.eu", true }, { "carisenda.com", true }, + { "caritascenter.org", true }, { "carium.com", true }, { "carkeysanantonio.com", true }, { "carlavitalesteticista.com", true }, @@ -15948,6 +16479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carlocksmithmesquite.com", true }, { "carlocksmithtucson.com", true }, { "carlosabarbamd.com", true }, + { "carlosbronze.com.br", true }, { "carlosfelic.io", true }, { "carloshmm.com", true }, { "carloshmm.stream", true }, @@ -15970,6 +16502,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carnaticalifornia.com", true }, { "carnet-du-voyageur.com", true }, { "carnildo.com", true }, + { "carnivorousplants.co.uk", true }, { "caroes.be", true }, { "caroffer.ch", true }, { "carol-lambert.com", true }, @@ -15994,6 +16527,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carousel.ga", true }, { "carpet---cleaning.com", true }, { "carpetandhardwoodflooringpros.com", true }, + { "carpetcleanerswilmington.com", true }, { "carpetcleaning-cypress.com", true }, { "carpetcleaningtomball.com", true }, { "carplus.es", true }, @@ -16001,6 +16535,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carpuya.ga", true }, { "carrabiners.tk", true }, { "carrando.com", true }, + { "carre-jardin.com", true }, { "carre-lutz.com", true }, { "carriedin.com", true }, { "carrierplatform.com", true }, @@ -16008,10 +16543,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "carroattrezzimilanodaluiso.it", true }, { "carroceriascarluis.com", true }, { "carrolcountyohioelections.gov", true }, + { "carrolltontx.gov", true }, { "carrouselcompany.fr", true }, { "cars4salecy.com", true }, { "carseatchecks.ca", true }, { "carshippingcarriers.com", true }, + { "carsinsuranceis.com", true }, { "carson-matthews.co.uk", true }, { "carsoug.com", true }, { "carspneu.cz", true }, @@ -16058,6 +16595,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casalribeiro.com", true }, { "casalunchbreak.de", true }, { "casamariposaspi.com", true }, + { "casamentos.com.br", true }, + { "casamiento.com.uy", true }, + { "casamientos.com.ar", true }, { "casasparaperross.com", true }, { "casasuara.com", true }, { "casasuleletrodomesticos.com.br", true }, @@ -16072,6 +16612,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casecoverkeygi.com", true }, { "casecurity.org", true }, { "caseificio.roma.it", true }, + { "caselemnbarat.ro", true }, { "caseof.fr", true }, { "caseplus-daem.de", true }, { "cases.lu", true }, @@ -16091,6 +16632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cashforcarremovalsipswich.com.au", true }, { "cashfortulsahouses.com", true }, { "cashlogic.ch", false }, + { "cashmanagerbg.com", true }, { "cashmaxtexas.com", true }, { "cashontime.com", true }, { "cashplk.com", true }, @@ -16114,6 +16656,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casinoguide.dk", true }, { "casinolegal.pt", true }, { "casinolistings.com", true }, + { "casinoluck.com", true }, { "casinomucho.com", true }, { "casinomucho.org", true }, { "casinomucho.se", true }, @@ -16123,7 +16666,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "casinorobots.com", true }, { "casinosblockchain.io", true }, { "casinotokelau.tk", true }, - { "casinovergleich.com", false }, { "casio-caisses-enregistreuses.fr", true }, { "casio.bg", true }, { "casirus.com", true }, @@ -16172,10 +16714,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catbold.space", true }, { "catbox.moe", true }, { "catbull.com", true }, - { "catburton.co.uk", true }, { "catchcrabs.com", true }, { "catchers.cc", true }, - { "catchersgear.com", true }, { "catchhimandkeephim.com", true }, { "catchief.com", true }, { "catchkol.com", true }, @@ -16184,6 +16724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catenacondos.com", true }, { "caterbing.com", true }, { "catering-xanadu.cz", true }, + { "cateringgoes.nl", true }, { "cateringvanhetland.nl", true }, { "catfooddispensersreviews.com", true }, { "catgirl.pics", true }, @@ -16191,8 +16732,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catharisme.eu", false }, { "catharisme.net", true }, { "catharisme.org", true }, + { "catharsist.com", true }, { "cathcartandwinn.com", true }, { "catherinejf.com", true }, + { "catherinejflee.com", true }, + { "catherinesarasin.com", true }, { "catherinesofpartick.co.uk", false }, { "catholic8964.org", true }, { "catholics.dating", true }, @@ -16200,8 +16744,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cathosa.nl", true }, { "cathosting.org", true }, { "cathouse.me", true }, + { "cathy.best", true }, { "cathy.guru", true }, + { "cathy.legal", true }, { "cathy.lgbt", true }, + { "cathy.link", true }, { "cathy.website", true }, { "cathyfitzpatrick.com", true }, { "cathyjf.ca", true }, @@ -16224,12 +16771,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "catveteran.com", true }, { "catvsmice.com", true }, { "caudo.net", true }, + { "caudohay.com", true }, { "caughtredhanded.co.nz", true }, { "caulfieldeastapartments.com.au", true }, { "caulfieldracecourseapartments.com.au", true }, { "caulong-ao.net", true }, + { "causebox.com", true }, { "cav.ac", true }, { "cavac.at", true }, + { "cavaleirocity.com.br", true }, { "cavalierkingcharlesspaniel.com.br", true }, { "cave-reynard.ch", true }, { "cave-vet-specialists.co.uk", true }, @@ -16239,6 +16789,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cavzodiaco.com.br", true }, { "caxalt.com", true }, { "caycehouse.com", true }, + { "caylee.de", true }, { "caylercapital.com", true }, { "cazaviajes.es", true }, { "cazes.info", true }, @@ -16248,6 +16799,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cbbank.com", true }, { "cbc-hire.co.uk", true }, { "cbcf.info", true }, + { "cbd-oil.shop", true }, { "cbd.casa", true }, { "cbd.supply", true }, { "cbdcontact.eu", true }, @@ -16268,6 +16820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cbsdeheidevlinder.nl", true }, { "cbt.tj", true }, { "cbw.sh", true }, + { "cbxp.in", true }, { "cc-customer.de", true }, { "cc00228.com", true }, { "cc5197.co", true }, @@ -16277,13 +16830,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cc8822.cc", true }, { "cc8833.cc", true }, { "cc9297.co", true }, - { "cc9397.com", true }, - { "cc9721.com", true }, { "cc9728.co", true }, { "cc98.eu.org", true }, { "ccac.gov", true }, { "ccattestprep.com", true }, - { "ccavenue.com", true }, { "ccayearbook.com", true }, { "ccblicense.com", true }, { "ccc-ch.ch", true }, @@ -16293,7 +16843,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ccelectricaldrafting.ca", true }, { "cceputnam360.com", true }, { "ccgn.co", true }, - { "ccgx.de", false }, + { "ccgx.de", true }, { "ccl-sti.ch", false }, { "cclasabana.com.co", true }, { "ccli.com", true }, @@ -16302,12 +16852,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ccprwebsite.org", true }, { "ccr.ovh", true }, { "ccriderlosangeles.com", true }, + { "ccsae.org", true }, { "ccsistema.com", true }, { "ccsource.org", true }, { "ccsys.com", true }, { "cctv-supraveghere.ro", true }, { "cctvcanada.net", true }, - { "cctvview.info", true }, + { "cctvsecurityjohannesburg.co.za", true }, + { "cctvview.info", false }, { "ccu.io", true }, { "ccu.plus", true }, { "ccuuu.com", true }, @@ -16352,6 +16904,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cdvl.org", true }, { "ce-agentur.de", false }, { "ce-pimkie.fr", true }, + { "ce-tuifrance.com", true }, { "ce-webdesign.de", true }, { "ceanimalhealth.com", true }, { "cebz.org", true }, @@ -16366,6 +16919,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cedricbonhomme.org", true }, { "cedriccassimo.ch", false }, { "cedriccassimo.com", false }, + { "cedricwalter.ch", true }, { "cee.io", true }, { "ceebee.com", true }, { "ceefaastresources.com", true }, @@ -16375,7 +16929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ceiba.com.co", true }, { "ceiling.cloud", true }, { "ceilingpac.org", true }, - { "ceiphr.com", true }, + { "ceiphr.com", false }, { "cejhon.cz", false }, { "celadas.tk", true }, { "celcelulares.com", true }, @@ -16385,8 +16939,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "celebphotos.blog", true }, { "celebrasianconference.com", true }, { "celebrityhealthcritic.com", true }, + { "celebrityphotos.blog", true }, + { "celebritypics.club", true }, + { "celebritypics.co", true }, { "celebrityscope.net", true }, { "celebritytopnews.tk", true }, + { "celebxx.com", true }, { "celec.gob.ec", false }, { "celectro-pro.com", true }, { "celestebonito.pt", true }, @@ -16413,12 +16971,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cenatorium.pl", true }, { "cencalvia.org", true }, { "cendata.co.uk", true }, + { "cendi.gov", true }, + { "cenfo.dk", true }, { "cennelley.com", true }, { "cennelly.com", true }, { "censurfridns.dk", true }, { "censurfridns.nu", true }, { "censys.io", true }, { "centaur.de", true }, + { "centella.tw", true }, { "centennialradon.com", true }, { "centennialrewards.com", true }, { "centennialseptic.com", true }, @@ -16432,7 +16993,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "centos.pub", true }, { "centos.tips", true }, { "central4.me", true }, - { "centralbank.ae", true }, { "centralconvergence.com", true }, { "centralebigmat.eu", true }, { "centralegedimat.eu", true }, @@ -16467,7 +17027,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "centrumhodinek.cz", true }, { "centrumpieknairelaksu.pl", true }, { "centruvechisv.ro", true }, + { "centsay.info", true }, + { "centsay.io", true }, + { "centsay.net", true }, + { "centsay.org", true }, { "centsi.io", true }, + { "centsiwallet.com", true }, { "centum.no", true }, { "centumail.com", true }, { "centura.de", true }, @@ -16483,6 +17048,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "centurykiaparts.com", true }, { "centurystonedental.com", true }, { "ceopedia.org", true }, + { "cepek4d.com", true }, { "ceramica.roma.it", true }, { "ceramiche.roma.it", true }, { "ceramixcoating.nl", true }, @@ -16492,6 +17058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cerberis.com", true }, { "cerberusinformatica.it", true }, { "cerebelo.info", true }, + { "cerebrosano.gov", true }, { "ceredowv.gov", true }, { "cerena-silver.ru", true }, { "ceres-corp.org", true }, @@ -16515,12 +17082,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "certificatespending.com", true }, { "certificatetools.com", false }, { "certificato-prevenzione-incendi.it", true }, + { "certificazione.it", true }, { "certificazioni-energetiche.it", true }, { "certifiedfieldassociate.com", true }, { "certifiednurses.org", true }, - { "certisoncologysolutions.com", true }, - { "certmonitor.com.au", true }, - { "certmonitor.net", true }, + { "certifix.eu", true }, { "certnazionale.it", true }, { "certspotter.com", true }, { "certspotter.org", true }, @@ -16531,6 +17097,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cesdb.com", true }, { "cesipagano.com", true }, { "cesium.ml", true }, + { "ceska-polygraficka.cz", true }, { "ceskaexpedice.org", true }, { "ceskepivnesety.sk", true }, { "ceskepivnisety.cz", true }, @@ -16578,6 +17145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cgeceia.cf", true }, { "cgelves.com", true }, { "cgf-charcuterie.com", true }, + { "cgknieuwpoort.nl", true }, { "cglib.xyz", true }, { "cgminc.net", true }, { "cgnparts.com", true }, @@ -16615,6 +17183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chaleur.com", true }, { "chalkfestival.org", false }, { "challengerinvestors.tk", true }, + { "challenges.gov", true }, { "challengeskins.com", true }, { "challstrom.com", true }, { "chalupalokovka.cz", true }, @@ -16638,10 +17207,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "championweb.sg", false }, { "champonthis.de", true }, { "chamsochoa.com", true }, + { "chanakyanewz.com", true }, { "chancekorte.com", true }, { "chancekorte.net", true }, { "chancekorte.org", true }, { "chanddriving.co.uk", true }, + { "chanderson.com.au", true }, { "chandr1000.ga", true }, { "change-coaching-gmbh.ch", true }, { "changeanalytics.io", true }, @@ -16650,24 +17221,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "changes.jp", true }, { "changesfor.life", true }, { "changethislater.com", true }, + { "changinglivestoday.org", true }, { "chanissue.com", false }, { "channellife.co.nz", true }, { "channellife.com.au", true }, { "channelsurf.tv", false }, { "channydraws.com", true }, { "chantalguggenbuhl.ch", false }, + { "chanuwah.com", true }, { "chanz.com", true }, { "chaos-games.org", true }, { "chaos.run", true }, { "chaoscastles.co.uk", true }, { "chaoschemnitz.de", true }, + { "chaoscommunication.camp", true }, { "chaosdorf.de", true }, { "chaosfield.at", true }, + { "chaosorchestra.com", true }, { "chaospott.de", true }, { "chaoswars.ddns.net", true }, { "chaoswebs.net", true }, { "chaotichive.com", true }, - { "chaouby.com", true }, + { "chaouby.com", false }, + { "chaoxi.in", true }, + { "chaoxi.org", true }, + { "chaoxi.tech", true }, { "chapek9.com", true }, { "chapelaria.tf", true }, { "chapelfordbouncers.co.uk", true }, @@ -16680,7 +17258,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "charbonnel.eu", true }, { "charcoal-se.org", true }, { "charcoalvenice.com", true }, - { "chardhamhotel.com", true }, { "charge.co", false }, { "chargejuice.com", true }, { "chargify.com", true }, @@ -16740,7 +17317,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chatbotclick.com", true }, { "chatbots.email", true }, { "chatbots.systems", true }, - { "chatear.social", true }, { "chateau-belvoir.com", true }, { "chateau-de-lisle.fr", true }, { "chateaudestrainchamps.com", false }, @@ -16762,6 +17338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chatucomputers.com", true }, { "chaturbate.com", true }, { "chaturbate.com.tw", true }, + { "chaturbate.global", true }, { "chaturbates.org", true }, { "chatxp.com", true }, { "chatzimanolis.com", true }, @@ -16805,7 +17382,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheapsharedhost.com", true }, { "cheapsharedhost.org", true }, { "cheapsmall.tk", true }, - { "cheapsslrenewal.com", true }, { "cheapsslsecurity.com.au", true }, { "cheapsslsecurity.com.ph", true }, { "cheapticket.in", true }, @@ -16823,6 +17399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "checkblau.de", true }, { "checkecert.nl", true }, { "checkmatewebsolutions.com", true }, + { "checkmedia.org", true }, { "checkmin.cf", true }, { "checkmyessay.com", true }, { "checkmyhttps.net", true }, @@ -16834,6 +17411,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "checkrent.ir", true }, { "checkrente.nl", true }, { "checkspf.net", true }, + { "checktech.group", true }, { "checktype.com", true }, { "checkui.com", true }, { "checkwebsiteonline.com", true }, @@ -16856,7 +17434,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chefcuisto.com", true }, { "chefkoch.de", true }, { "chefpablito.tk", true }, - { "chefz.co", true }, { "chehalemgroup.com", true }, { "cheladmin.ru", true }, { "chelema.xyz", true }, @@ -16868,15 +17445,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cheltik.ru", true }, { "chelyaba.tk", true }, { "chemco.mu", true }, + { "chemical-shark.de", true }, { "chemicalcrux.org", true }, { "chemicalguys-ruhrpott.de", true }, { "chemicalpharm.com", true }, { "chemiphys.com", false }, { "chemistry-schools.com", true }, + { "chemolak.pl", true }, { "chenapartment.com", true }, { "cheneypartners.com", true }, { "chengarda.com", true }, - { "chengbet.net", true }, { "chengfayun.com", true }, { "chenghao360.top", true }, { "chengl.com", true }, @@ -16942,6 +17520,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chic-leather.com", true }, { "chicagobreastaugdrs.com", true }, { "chicagoemergencyclosings.com", true }, + { "chicagofinancesupperclub.com", true }, { "chicagolug.org", false }, { "chicagostudentactivists.org", true }, { "chicback.com", true }, @@ -16963,11 +17542,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "childcare.gov", true }, { "childcounseling.org", true }, { "childcustodylegalaid.org", true }, + { "childhr.org.au", true }, { "childno.de", true }, { "childrenandmedia.org.au", true }, { "childrenfirstalways.org", true }, { "childreninadversity.gov", true }, { "childrens-room.com", true }, + { "childrenschoicepearland.com", true }, { "childrensentertainmentleicester.co.uk", true }, { "childrensfurniture.co.uk", true }, { "childstats.gov", true }, @@ -16976,6 +17557,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chilihosting.eu", true }, { "chilikin.pro", true }, { "chilimath.com", false }, + { "chilimathwords.com", true }, { "chilio.net", true }, { "chilipepperhomes.com", true }, { "chillebever.nl", true }, @@ -16984,15 +17566,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chima.us", true }, { "chimeratool.com", true }, { "chimerity.com", true }, - { "chimho.de", true }, + { "chimm.cc", true }, { "chimpanzee.net", true }, { "chimpmatic.com", true }, { "china-line.org", true }, { "china-online-news.tk", true }, { "chinacdn.org", true }, { "chinahighlights.ru", true }, + { "chinasa.net", true }, { "chinaspaceflight.com", true }, { "chinawhale.com", true }, + { "chinefrancophonie.fr", true }, + { "chinesemedicine.be", true }, { "chineserecipes.xyz", true }, { "ching.tv", true }, { "chinookdigital.ca", true }, @@ -17003,12 +17588,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chinwag.org", true }, { "chip.pl", true }, { "chipcore.com", false }, + { "chipdig.com", true }, { "chipollinko.com.ua", true }, { "chippy.ch", false }, { "chips-scheduler.de", true }, { "chipset.no", true }, { "chiralsoftware.com", true }, - { "chireiden.net", true }, { "chiro-neuchatel.ch", false }, { "chiropractic.gr", true }, { "chiropracticwpb.com", true }, @@ -17017,11 +17602,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chiropratique-neuchatel.ch", false }, { "chirosphere.ch", false }, { "chirpstory.com", true }, + { "chirr.space", true }, { "chiru.no", true }, { "chirurgoplastico.roma.it", true }, { "chisago-isantidfl.com", true }, { "chit.search.yahoo.com", false }, - { "chita.com.br", true }, + { "chizipoms.com", true }, { "chk-ccs.com", true }, { "chksite.com", true }, { "chl.la", true }, @@ -17039,7 +17625,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chmsoft.ru", true }, { "chmurakotori.ml", true }, { "choc-o-lush.co.uk", true }, - { "chocamekong.com", true }, { "chocgu.com", true }, { "chocolah.com.au", false }, { "chocolat-suisse.ch", false }, @@ -17057,6 +17642,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chomp.life", true }, { "chonghe.org", true }, { "chook.as", true }, + { "choootto.net", true }, { "choosemypc.net", true }, { "chopchat.com", true }, { "chopperdesign.com", true }, @@ -17081,6 +17667,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrisaitch.com", true }, { "chrisbryant.me.uk", true }, { "chrisburnell.com", true }, + { "chriscampdesigns.com", true }, { "chriscarey.com", true }, { "chriscutts.uk", true }, { "chrisdecairos.ca", true }, @@ -17088,7 +17675,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrisfinazzo.com", false }, { "chrisgieger.com", true }, { "chrisirwin.ca", true }, - { "chrisjean.com", true }, { "chrislane.com", true }, { "chrisluen.com", true }, { "chrismarker.org", true }, @@ -17101,31 +17687,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrisplankhomes.com", true }, { "chrispstreet.com", true }, { "chrisseoguy.com", true }, - { "chrisshort.net", true }, + { "chrisshort.net", false }, { "chrissmiley.co.uk", true }, { "chrisspencercreative.com", true }, { "chrisspencermusic.com", true }, { "chrissx.ga", true }, - { "christadelphiananswers.org", true }, { "christadelphians.eu", true }, { "christchurchbouncycastles.co.uk", true }, { "christec.net", true }, { "christensenplace.us", true }, + { "christerwaren.fi", true }, { "christiaanconover.com", true }, - { "christian-fischer.pictures", true }, { "christian-folini.ch", true }, { "christian-gredig.de", true }, { "christian-host.com", true }, { "christian-liebel.com", true }, + { "christian-oette.de", true }, { "christian-stadelmann.de", true }, { "christianadventurecamps.org", true }, { "christianblog.ml", true }, + { "christianbsl.com", true }, { "christiancleva.com", true }, { "christiancoleman.info", true }, { "christiandiscourse.net", true }, { "christianfaq.org", true }, { "christianforums.com", true }, { "christiangehring.org", true }, + { "christianhamacher.de", true }, { "christianillies.de", true }, { "christianjens.com", true }, { "christianliebel.com", true }, @@ -17133,7 +17721,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christianlis.uk", true }, { "christianmoore.me", true }, { "christianoliff.com", true }, - { "christianpilgrimage.com.au", true }, { "christianr.me", true }, { "christianrasch.de", true }, { "christians.dating", true }, @@ -17148,6 +17735,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "christmascard.be", true }, { "christmaspartyhire.co.uk", true }, { "christoph-conrads.name", true }, + { "christoph-gadow.de", true }, { "christophbartschat.com", true }, { "christophebarbezat.ch", true }, { "christopher-simon.de", true }, @@ -17180,8 +17768,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chrome.google.com", true }, { "chromebookchart.com", true }, { "chromebooksforwork.com", true }, - { "chromereporting-pa.googleapis.com", true }, - { "chromeworld.ru", true }, { "chromiumbugs.appspot.com", true }, { "chromiumcodereview.appspot.com", true }, { "chromopho.be", true }, @@ -17204,6 +17790,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "chtsi.uk", true }, { "chuchote-moi.fr", true }, { "chuck.ovh", false }, + { "chukwunyere-chambers.org", true }, { "chun.pro", true }, { "chunche.net", true }, { "chundelac.com", true }, @@ -17220,6 +17807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "churchwebcanada.ca", true }, { "churchwebsupport.com", true }, { "churningtracker.com", true }, + { "chus-plongee.fr", true }, { "chwilrank.pl", true }, { "chyen.cc", true }, { "chytraauta.cz", true }, @@ -17231,15 +17819,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cialde.it", true }, { "cialisonlinee.com", true }, { "ciancode.com", true }, - { "ciania.pl", true }, + { "ciania.pl", false }, { "cianmawhinney.me", true }, { "cianmawhinney.xyz", true }, { "ciansc.com", true }, - { "ciaracode.com", true }, { "ciat.no", false }, { "cibdol.com", true }, { "cibercactus.com", true }, { "cica.es", true }, + { "cichlid-world.com", true }, { "cichol.com", true }, { "ciclimattio.com", true }, { "ciclista.roma.it", true }, @@ -17261,21 +17849,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cigoteket.se", true }, { "cihar.com", true }, { "ciicutini.ro", true }, - { "ciiex.co", true }, { "cikeblog.com", true }, { "cilacapnews.ml", true }, { "ciliberto.org", true }, { "cilloc.be", true }, { "cima-idf.fr", true }, + { "cimaflash.co", true }, { "cimbalino.org", true }, { "cimballa.com", true }, { "cimfax.com", true }, + { "cimtools.net", true }, { "cinafilm.com", true }, { "cinay.pw", true }, { "cindey.io", true }, { "cindydudley.com", true }, { "cine-music.de", true }, - { "cinefilia.tk", true }, { "cinefilzonen.se", true }, { "cinefun.net", true }, { "cinema.paris", true }, @@ -17302,10 +17890,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cio.go.jp", false }, { "cio.gov", false }, { "cioscloud.com", true }, - { "cip.md", true }, { "cipartyhire.co.uk", true }, { "cipher.team", true }, { "cipherboy.com", true }, + { "cipherli.st", false }, { "ciphersuite.info", true }, { "ciphrex.com", true }, { "cipri.com", true }, @@ -17320,19 +17908,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "circara.com", true }, { "circle-people.com", true }, { "circlebox.rocks", true }, + { "circlepluscircle.me", true }, { "circu.ml", true }, { "circuitcityelectricaladelaide.com.au", true }, { "circulatedigital.com", true }, { "circule.cc", true }, { "circulosocial77.com", true }, + { "circumstances.ir", true }, + { "circus-maximus.de", true }, { "cirfi.com", true }, { "ciri.com.co", true }, - { "cirrus0.de", true }, { "cirruslab.ch", true }, { "cirujanooral.com", true }, { "cirvapp.com", true }, { "cisa.gov", true }, - { "ciscodude.net", true }, + { "ciscodude.net", false }, { "cisoaid.com", true }, { "cisofy.com", true }, { "cispeo.org", true }, @@ -17342,6 +17932,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cistitguru.ru", false }, { "cisum-cycling.com", true }, { "cisy.me", true }, + { "citace.com", true }, + { "citacepro.com", true }, { "citas-adultas.com", true }, { "citationgurus.com", true }, { "citationranker.com", true }, @@ -17356,6 +17948,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "citizensgbr.org", true }, { "citizenslasvegas.com", true }, { "citizensleague.org", true }, + { "citizenspact.eu", true }, { "citizing.org", true }, { "citrusui.me", true }, { "citsc.de", true }, @@ -17366,6 +17959,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "citycreek.studio", true }, { "citydance.ee", true }, { "cityfloorsupply.com", true }, + { "citykohviteek.ee", true }, { "citylift.com.ua", true }, { "citylights.eu", true }, { "citymoobel.ee", true }, @@ -17407,20 +18001,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cjenni.ch", true }, { "cjey.me", true }, { "cjhzp.net", true }, + { "cjpsrilanka.lk", true }, { "cjr.host", true }, { "cjs8866.cc", true }, { "cjsounds.com", true }, { "cjtkfan.club", true }, { "ck.cx", true }, { "ck1020.cc", true }, + { "ckenel.com", true }, + { "ckenell.com", true }, { "ckenelley.com", true }, { "ckenelly.com", true }, { "ckenely.com", true }, + { "ckennel.com", true }, { "ckenneley.com", true }, + { "ckennell.com", true }, { "ckennelley.com", true }, { "ckennelly.com", true }, { "ckennely.com", true }, - { "ckleemann.de", false }, + { "ckgr.me", true }, + { "ckleemann.de", true }, { "cklie.de", true }, { "ckliemann.com", true }, { "ckliemann.net", true }, @@ -17472,6 +18072,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clashersrepublic.com", true }, { "class.com.au", true }, { "classdojo.com", true }, + { "classic-yacht-charters.com", true }, { "classicalpilates.ca", true }, { "classiccutstupelo.com", true }, { "classicfg.com.au", true }, @@ -17482,6 +18083,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "classroomconductor.com", true }, { "classroomcountdown.co.nz", true }, { "classteaching.com.au", true }, + { "claster.it", true }, { "claude.me", true }, { "claude.photo", true }, { "claude.tech", true }, @@ -17512,15 +18114,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clean-mailbox.com", true }, { "cleanapproachnw.com", true }, { "cleanbrowsing.org", true }, - { "cleancode.club", true }, { "cleandetroit.org", true }, { "cleandogsnederland.nl", true }, { "cleanfiles.us", true }, { "cleango.pl", true }, { "cleanhouse2000.us", true }, { "cleaningservicejulai.com", true }, - { "cleaningsolutionn.com", true }, { "cleaningsquad.ca", false }, + { "cleankey.jp", true }, { "cleanplanet.co.jp", true }, { "cleansewellness.com", true }, { "clearance365.co.uk", true }, @@ -17528,7 +18129,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clearbooks.co.uk", true }, { "clearbookscdn.uk", true }, { "clearbreezesecuritydoors.com.au", true }, - { "clearchaos.net", true }, { "clearchatsandbox.com", true }, { "clearer.cloud", true }, { "clearip.com", true }, @@ -17569,25 +18169,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clicheshishalounge.co.uk", true }, { "click-licht.de", true }, { "click2order.co.uk", true }, + { "clickalphaville.com.br", true }, { "clickbasin.co.uk", true }, { "clickclickphish.com", true }, { "clickclock.cc", true }, { "clickempresarialgroup.com", true }, { "clickenergy.com.au", true }, { "clickingmad.com", true }, - { "clickphish.com", true }, + { "clien.net", true }, { "client.coach", false }, { "clientboss.com", true }, { "clientcms.co.uk", true }, + { "clientesal100.com", true }, + { "clientesendemanda.com", true }, { "clientportal.com", true }, { "clientsecure.me", true }, { "cliffbreak.de", true }, { "cliffburton.tk", true }, { "clifflu.net", true }, - { "cliffyb.com", true }, - { "cliksource.com", true }, { "climaencusco.com", true }, - { "climaprecio.es", true }, { "climateinteractive.org", true }, { "climatestew.com", true }, { "climatgate.tk", true }, @@ -17597,7 +18197,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "clingout.com", true }, { "clinicaarques.es", true }, { "clinicadentalados.com", true }, - { "clinicadentalvinateros.es", true }, + { "clinicadentalvinateros.es", false }, { "clinicainfinitydental.com", true }, { "clinicalrehabilitation.info", true }, { "clinicaltrialpodcast.com", true }, @@ -17650,7 +18250,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloud.bugatti", true }, { "cloud.fail", true }, { "cloud.google.com", true }, - { "cloud.gov", true }, + { "cloud.gov", false }, { "cloud10.io", true }, { "cloud255.com", true }, { "cloud42.ch", false }, @@ -17661,6 +18261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudapps.digital", true }, { "cloudberlin.goip.de", true }, { "cloudbleed.info", true }, + { "cloudboard.fr", true }, { "cloudbolin.es", true }, { "cloudbreaker.de", true }, { "cloudbrothers.info", true }, @@ -17671,6 +18272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudcloudcloud.cloud", true }, { "cloudclouds.com", true }, { "cloudcrux.net", true }, + { "clouddark.xyz", true }, { "clouddesk.co.uk", true }, { "clouddog.com.br", true }, { "cloudeezy.com", true }, @@ -17684,6 +18286,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudily.com", true }, { "cloudimproved.com", true }, { "cloudimprovedtest.com", true }, + { "cloudindex.io", true }, { "cloudix.cf", true }, { "cloudkeep.nl", true }, { "cloudlessdreams.com", false }, @@ -17706,6 +18309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudsecurityalliance.com", true }, { "cloudsecurityalliance.net", true }, { "cloudsecurityalliance.org", true }, + { "cloudsecurityalliancelabs.com", true }, { "cloudsecuritycongress.net", true }, { "cloudsecuritycongress.org", true }, { "cloudservice.io", true }, @@ -17715,15 +18319,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cloudspace-analytics.com", true }, { "cloudspeedy.net", true }, { "cloudspire.net", true }, - { "cloudsters.nl", true }, + { "cloudsters.nl", false }, { "cloudteam.de", true }, { "cloudtocloud.tk", true }, { "cloudtropia.de", true }, { "cloudtskr.com", true }, + { "cloudturing.chat", true }, { "cloudup.com", true }, { "cloudwarez.xyz", true }, { "cloudwellmarketing.com", true }, { "cloudwise.nl", true }, + { "cloudzentechnologies.com", true }, { "clouz.de", true }, { "cloveros.ga", true }, { "clovertwo.com", true }, @@ -17746,8 +18352,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "club-jose.com", true }, { "club-leondehuanuco.tk", true }, { "club-premiere.com", true }, + { "club-reduc.com", true }, { "club-slow.jp", true }, { "club-yy.com", true }, + { "club.zj.cn", true }, { "club103.ch", false }, { "club10x.com", true }, { "clubapk.com", true }, @@ -17763,11 +18371,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cluberiks.ga", true }, { "clubfamily.de", true }, { "clubgalaxy.futbol", false }, - { "clubiconkenosha.com", true }, { "clubmarina.store", true }, { "clubmate.rocks", true }, { "clubmini.jp", true }, { "clubnoetig-ink2g.de", true }, + { "clubon.com.tw", true }, { "clubon.space", true }, { "clubportside.nl", true }, { "clubtamarugal.tk", true }, @@ -17775,13 +18383,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cluj.help", true }, { "clush.pw", true }, { "cluster.biz.tr", true }, + { "cluster446.fr", true }, { "clusteranalyse.net", true }, { "clusterfuck.nz", true }, { "clustermaze.net", true }, { "clutch.ua", true }, { "clwrota.com", true }, { "clycat.ru", true }, + { "cm-agueda.pt", true }, { "cm-loures.pt", true }, + { "cm-pombal.pt", true }, + { "cm-portimao.pt", true }, + { "cm-vpaguiar.pt", true }, { "cmacacias.ch", true }, { "cmadeangelis.it", true }, { "cmavs.com", true }, @@ -17807,8 +18420,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cmplainpalais.ch", true }, { "cmpsc.uk", true }, { "cmrss.com", true }, + { "cms-service24.de", true }, { "cms-weble.jp", true }, - { "cmserviscz.cz", true }, { "cmshangu.com", true }, { "cmskakuyasu.info", true }, { "cmskeyholding.co.uk", true }, @@ -17850,7 +18463,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "co50.com", true }, { "coa.one", true }, { "coachapp-ipass.herokuapp.com", true }, - { "coachbakery.com", true }, { "coachezmoi.ch", false }, { "coachfederation.ro", true }, { "coaching-harmonique.fr", true }, @@ -17859,6 +18471,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coachsystem.ru", true }, { "coalitionministries.org", true }, { "coalpointcottage.com", true }, + { "coastalpowder.com.au", true }, { "coastalurgentcarebatonrouge.com", true }, { "coastalurgentcarebossier.com", true }, { "coastalurgentcaregonzales.com", true }, @@ -17877,6 +18490,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cobaltgp.com", true }, { "cobaltis.co.uk", true }, { "cobracastles.co.uk", true }, + { "cobraprotectionfl.com", true }, + { "coc.de", false }, { "cocaine-import.agency", true }, { "cocaine.ninja", true }, { "cocalc.com", true }, @@ -17886,6 +18501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coccinellaskitchen.de", true }, { "coccinellaskitchen.it", true }, { "coccolebenessere.it", true }, + { "cochem-zell-online.de", false }, { "cocinoyo.com", true }, { "cock.li", false }, { "cockedey.in", true }, @@ -17910,6 +18526,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coda.world", true }, { "codabix.com", true }, { "codabix.de", true }, + { "code-maze.com", true }, { "code-poets.co.uk", true }, { "code-vikings.de", true }, { "code-well.com", true }, @@ -17964,6 +18581,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codereview.appspot.com", true }, { "codereview.chromium.org", true }, { "coderhangout.com", true }, + { "coderjesus.com", true }, { "codersatlas.co", true }, { "codersatlas.com", true }, { "codersatlas.xyz", true }, @@ -17988,6 +18606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "codeversetech.com", true }, { "codewild.de", true }, { "codewiz.xyz", true }, + { "codexpert.my", true }, { "codexpo.net", true }, { "codeyellow.nl", true }, { "codific.com", true }, @@ -18009,7 +18628,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coens.me.uk", true }, { "coentropic.com", true }, { "coeus.cloud", true }, - { "coevostudio.com", false }, { "cofbev.com", true }, { "coffee-machine.reviews", true }, { "coffee-mamenoki.jp", true }, @@ -18022,7 +18640,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cogeneration-energy.com", true }, { "cogent.cc", true }, { "cogilog.com", true }, - { "cogitoltd.com", true }, { "cognicom-gaming.com", true }, { "cognitip.com", true }, { "cognitiveapplications.net", true }, @@ -18032,7 +18649,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cogumelosmagicos.org", true }, { "coiffeurschnittstelle.ch", true }, { "coiffeurty.com", true }, - { "coiffure-andrea.ch", true }, { "coigach-assynt.org", true }, { "coignieresentransition.fr", true }, { "coimmvest.com", true }, @@ -18064,7 +18680,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coins2001.ru", true }, { "coinsmat.com", true }, { "coinsuggest.com", true }, - { "coinsz.co", true }, { "cointosh.jp", true }, { "coinvex.org", true }, { "coinx.pro", true }, @@ -18073,19 +18688,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cojam.ru", true }, { "cojo.eu", true }, { "cokebar.info", true }, - { "cokeflix.tv", true }, { "coker.com.au", true }, { "cokomi.com", true }, { "col-head.com", true }, { "col.la", true }, { "cola-host.tk", true }, { "colaborativa.tv", true }, + { "colabug.com", true }, { "coladv.com", true }, { "colantonio.homelinux.net", true }, { "colarelli.ch", true }, { "colchonesmoon.com", true }, { "colchonminicuna.com", false }, { "colcomm.com", true }, + { "colcompany.com", true }, { "coldaddy.com", true }, { "coldawn.com", false }, { "coldcardwallet.com", true }, @@ -18134,6 +18750,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colleencornez.com", true }, { "collegegirlhd.com", true }, { "collegenavigator.gov", true }, + { "collegephysicsanswers.com", true }, { "collegeprospectsofcentralindiana.com", true }, { "collegereligionandphilosophy.com", true }, { "collegesecretary.cn", true }, @@ -18147,10 +18764,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "collins.kg", true }, { "colloquy.mobi", true }, { "colo-tech.com", true }, + { "colocation-rennes.com", true }, { "cololi.moe", true }, { "colombiajeans.co", true }, { "colombian.dating", true }, { "colombianas.webcam", true }, + { "colonialfurniturestripping.com", true }, { "colonize.africa", true }, { "coloppe.com", true }, { "color01.net", true }, @@ -18174,26 +18793,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "colotimes.com", true }, { "colourfulcastles.co.uk", true }, { "colourmanagementpro.com", true }, - { "colpacpackaging.com", true }, { "colpatriaws.azurewebsites.net", true }, { "colson-occasions.be", false }, { "coltellisurvival.com", true }, { "coltonrb.com", true }, { "columbiacountyor.gov", true }, + { "columbiascaffolding.com", true }, { "columbushydroxide.com", true }, { "columbushydroxide.net", true }, { "columbushydroxide.org", true }, { "columbusks.gov", true }, { "columbuswines.com", true }, - { "colyakoomusic.com", true }, - { "colyakootees.com", true }, { "com-in.de", true }, { "com-news.io", true }, { "com.cc", true }, { "comalia.com", true }, { "comandofilmes.club", true }, { "comarkinstruments.net", true }, - { "combatircelulitis.com", true }, { "combattrecellulite.com", true }, { "combigo.com", true }, { "combineconquer.com", true }, @@ -18201,10 +18817,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "combron.co.uk", true }, { "combron.com", true }, { "combron.nl", true }, + { "combustibilaspen.ro", true }, { "comcenter.com", true }, { "comchezmeme.com", true }, { "comcol.nl", true }, - { "comcov.com", true }, { "comdotgame.com", true }, { "comdurav.com", true }, { "come2cook.com", true }, @@ -18217,6 +18833,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comercialroxana.com", true }, { "comercialtpv.com", true }, { "comercialtrading.eu", true }, + { "comerciositio.com", true }, { "comerford.net", true }, { "comestoarra.com", true }, { "cometbot.cf", true }, @@ -18249,11 +18866,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "commania.co.kr", true }, { "commco.nl", true }, { "commechezvous.ch", false }, - { "commerce.gov", true }, { "commercesend.com", true }, { "commercezen.com", true }, { "commercia.srl", true }, { "commercial-academy.fr", true }, + { "commercial.lviv.ua", true }, + { "commercialcleaningbrisbane.com.au", true }, { "commeunamour.com", true }, { "commissaris-vraagbaak.nl", true }, { "commissionagenda.com", true }, @@ -18261,17 +18879,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "commlabindia.com", true }, { "common.io", true }, { "commoncode.com.au", true }, - { "commoncode.io", true }, + { "commoncode.io", false }, { "commoncore4kids.com", true }, { "commons-mayflower.tk", true }, { "commonsenseamericanpolitics.com", true }, + { "commonsensedivorce.ca", true }, { "communalconsulting.org", true }, { "communiques.info", true }, { "communiquons.org", true }, { "communist-party.tk", true }, + { "community-pro.de", true }, + { "community-pro.net", true }, { "communitychurchafrica.co.za", true }, { "communitycodeofconduct.com", true }, - { "communityflow.info", false }, { "communityhealthservices.co.uk", true }, { "communitymanagertorrejon.com", true }, { "communote.net", true }, @@ -18281,7 +18901,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comoculosdesol.pt", true }, { "comocurarlagastritis24.online", true }, { "comocurarlagastritistratamientonatural.com", true }, - { "comodesinflamarlashemorroides.org", true }, { "comodo.nl", true }, { "comodormirmasrapido.com", true }, { "comodosslstore.com", true }, @@ -18300,13 +18919,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comp2go.com.au", true }, { "compactchess.cc", true }, { "compagnia-buffo.de", false }, + { "compagniedesateliers.com", true }, { "compagniemartin.com", false }, + { "compalliance.com", true }, { "companion-web.net", true }, { "comparatif-moto.fr", true }, - { "comparecompensationclaims.com", true }, - { "compareinsurance.com.au", true }, + { "comparelegalforms.com", true }, { "comparemymobile.com", true }, { "comparesoft.com", true }, + { "comparetheproject.com", true }, { "comparewatch.com", true }, { "comparexcloudcenter.com", true }, { "compartirtrenmesaave.com", true }, @@ -18326,8 +18947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compibus.fr", true }, { "compilenix.org", true }, { "compitak.com", true }, - { "complete-it.co.uk", true }, - { "completefloorcoverings.com", true }, { "completesecurityessex.co.uk", true }, { "completesecurityessex.com", true }, { "completionist.me", true }, @@ -18344,11 +18963,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "compliantbusinessprocessing.com", true }, { "complt.xyz", true }, { "componentshop.co.uk", true }, + { "composersforum.org", true }, { "compositedevtec.tk", true }, { "compostatebien.com.ar", true }, { "compostelle-bouddha.fr", true }, { "compoundingrxusa.com", true }, { "compra-deuna.com", true }, + { "comprachida.com", true }, { "compraporinternet.online", true }, { "comprarcarteras.online", true }, { "comprarcl.com", true }, @@ -18367,16 +18988,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comptu.com", true }, { "compubench.com", true }, { "compucorner.mx", true }, + { "compufreaks.com", true }, + { "compufreaks.nl", true }, { "compunetwor.com", true }, { "compuplast.cz", true }, { "compusolve.nl", true }, { "computec.ch", true }, - { "computehealth.com", true }, { "computer-acquisti.com", true }, { "computer-menschen.de", true }, { "computer-science-schools.com", true }, { "computerassistance.co.uk", true }, - { "computerbas.nl", false }, + { "computerbas.nl", true }, { "computerbase.de", true }, { "computercamaccgi.com", true }, { "computercraft.net", true }, @@ -18391,7 +19013,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "comtily.com", true }, { "comumlab.org", true }, { "comunal.co", true }, + { "comunic.io", true }, + { "comunicat.global", true }, { "comunidadmontepinar.es", true }, + { "comuniondelucia.com", true }, { "comvos.de", true }, { "comw.cc", true }, { "con-con.nl", true }, @@ -18400,13 +19025,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conatus.ai", true }, { "concept-web.ch", false }, { "conceptatelier.de", true }, - { "conception.sk", true }, { "concertengine.com", true }, { "concerto.amsterdam", true }, + { "concerts-metal.ch", false }, { "concertsenboite.fr", true }, { "concertsto.com", true }, + { "concetrabajos.cl", true }, { "conciencia.fit", true }, - { "concierge.diet", true }, { "concilio.com", true }, { "conciliumnotaire.ca", true }, { "conclave.global", true }, @@ -18473,7 +19098,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "connecta.store", true }, { "connectavid.com", true }, { "connectedcare.md", true }, - { "connectfri.club", true }, { "connectfss.com", true }, { "connectingrentals.com", true }, { "connectingrentalsofbethel.com", true }, @@ -18486,6 +19110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "connectnet247.com", true }, { "connecto-data.com", true }, { "connectum.eu", true }, + { "connelink.fr", true }, { "conner.work", true }, { "connexas.eu", true }, { "connexfilter.com", true }, @@ -18494,6 +19119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "connext.de", true }, { "connictro.de", true }, { "conniesacademy.com", true }, + { "connorcordell.co.uk", true }, { "connorhatch.com", true }, { "connyduck.at", true }, { "conocchialidasole.it", true }, @@ -18511,6 +19137,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "conradcartagena.com", true }, { "conradkostecki.de", true }, { "conradsautotransmissionrepair.com", true }, + { "conrazon.me", true }, { "consagracionamariasantisima.org", true }, { "consciente.ch", true }, { "consciente.ngo", true }, @@ -18532,7 +19159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "console.rest", true }, { "consoleuniverse.tk", true }, { "consommateuraverti.com", true }, - { "consommation-locale.fr", true }, + { "consonare.de", true }, { "constant-rough.de", true }, { "consteval.org", true }, { "constexpr.org", true }, @@ -18549,6 +19176,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "construred.tk", true }, { "consul.io", true }, { "consulenza.pro", true }, + { "consulenzanobiliare.com", true }, { "consultation.biz.tr", true }, { "consultcelerity.com", true }, { "consultimator.com", true }, @@ -18562,20 +19190,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "consultoriosodontologicos.com.br", true }, { "consultpetkov.com", true }, { "consulvation.com", true }, + { "consumeraction.gov", true }, { "consumeractionlawgroup.com", true }, { "consumerfiles.com", true }, { "consumersentinel.gov", true }, { "consuwijzer.nl", true }, + { "contabilidadebhpampulha.com.br", true }, { "contabilidadebrooklin.com.br", true }, { "contact.inc", true }, { "contact.xyz", true }, { "contactaffix.com", true }, - { "containerspace.com.au", true }, + { "contaminatie.nl", true }, { "contaquanto.com.br", true }, { "contemplativeeducation.org", true }, { "content-api-dev.azurewebsites.net", false }, { "contentcoms.co.uk", true }, - { "contenthosting.com.br", true }, { "contentmarathon.com", true }, { "contentpass.net", true }, { "contentq.nl", true }, @@ -18591,6 +19220,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "contractwriters.com", true }, { "contrasentido.net", true }, { "contraspin.co.nz", true }, + { "contrastecolombia.com", true }, { "contratatupoliza.com", true }, { "contratti.it", true }, { "contributor.google.com", true }, @@ -18598,9 +19228,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "controlbooth.com", true }, { "controle.net", true }, { "controleer-maar-een-ander.nl", true }, + { "controlewiki.be", true }, { "controllertech.com", true }, { "controlvoltage.cc", true }, { "contunda.de", true }, + { "conungranodesal.com", true }, { "conv2pdf.com", true }, { "convergence.fi", true }, { "convergencela.com", true }, @@ -18614,15 +19246,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "convertimg.com", true }, { "convexset.org", true }, { "convocatoriafundacionpepsicomexico.org", false }, - { "conxcon.de", false }, + { "conxcon.de", true }, + { "coochiehacks.io", true }, { "cookcountyclerkil.gov", true }, { "cooker.fr", true }, { "cookescastles.co.uk", true }, { "cookicons.co", true }, { "cookie4.com", true }, { "cookieandkate.com", true }, + { "cookiecorner.com", true }, { "cookiecrook.com", true }, - { "cookiee.net", false }, { "cookiesoft.de", true }, { "cookiestudies.cf", true }, { "cooking-sun.com", true }, @@ -18641,6 +19274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coolattractions.co.uk", true }, { "coolbitx.com", true }, { "coolcamping.com", true }, + { "coolcomputers.info", true }, { "cooldan.com", true }, { "coole-fete.de", true }, { "coolerssr.space", true }, @@ -18659,7 +19293,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coonelnel.net", true }, { "coore.jp", true }, { "coorpacademy.com", true }, - { "coorpintr.com", true }, { "copan.com.br", true }, { "copdfoundation.org", true }, { "copenhagenoptimization.com", true }, @@ -18694,6 +19327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corbi.net.au", true }, { "cordejong.nl", true }, { "cordemar.info", true }, + { "cordemar.org", true }, { "corder.tech", true }, { "cordeydesign.ch", false }, { "cordis.io", true }, @@ -18709,7 +19343,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coreapm.org", true }, { "corecdn.org", true }, { "corecodec.com", true }, - { "corehealthberks.com", true }, + { "coredns.rocks", true }, { "coreless-stretchfilm.com", true }, { "corelia.net", true }, { "corepartners.com.ua", true }, @@ -18719,6 +19353,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coreup.de", true }, { "corevetconnect.co.uk", true }, { "coreyjmahler.com", true }, + { "corgei.com", true }, { "corgi.party", true }, { "coribi.com", true }, { "corinastefan.ro", true }, @@ -18730,8 +19365,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "corkerscrisps.co.uk", true }, { "corksoncolumbus.com", true }, { "corl3ss.com", true }, + { "corleoncatering.com", true }, { "corlija.com", true }, - { "corlinde.nl", true }, + { "cornelia-schiemann.de", true }, { "cornercircle.co.uk", true }, { "cornergarage.coop", true }, { "cornerstone.network", true }, @@ -18823,13 +19459,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "costablanca.villas", true }, { "costablancavoorjou.com", true }, { "costarellos.com", true }, + { "costco.co.jp", true }, + { "costco.co.kr", true }, { "costco.co.uk", true }, + { "costco.com.au", true }, + { "costco.com.mx", true }, + { "costco.com.tw", true }, + { "costco.is", true }, { "costcoinsider.com", true }, { "costellofc.co.uk", true }, { "costinstefan.eu", true }, { "costreportdata.com", false }, { "costruzioni.milano.it", true }, { "costulessdirect.com", true }, + { "coteax.com", true }, { "coteibem.com.br", true }, { "coteries.com", false }, { "cotoacc.com", true }, @@ -18837,6 +19480,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cotswoldflatroofing.com", true }, { "cotta.dk", true }, { "cotwe-ge.ch", false }, + { "cou.re", true }, { "cougar.dating", true }, { "coughlan.de", true }, { "coumoul.fr", true }, @@ -18850,7 +19494,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "countermats.net", true }, { "countersolutions.co.uk", true }, { "countetime.com", true }, - { "countingto.one", true }, { "country-creativ.de", true }, { "countrybrewer.com.au", true }, { "countryfrog.uk", true }, @@ -18858,6 +19501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "countrylife.cz", true }, { "countryoutlaws.ca", true }, { "countrysidemarquees.co.uk", true }, + { "countrysmile.org", true }, { "countybankdel.com", true }, { "countyjailinmatesearch.com", true }, { "coup-dun-soir.ch", true }, @@ -18876,16 +19520,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "coursera.org", true }, { "courses.nl", true }, { "courseworkbank.info", true }, - { "courvix.com", true }, { "couscous.recipes", true }, - { "coussinsky.net", true }, { "couvreur-hinault.fr", true }, { "covbounce.co.uk", true }, + { "coveragecareservices.co.uk", true }, { "coveredinspiders.com", true }, { "covermytrip.com.au", true }, { "covershousing.nl", true }, - { "covery.ai", false }, + { "covert.sh", true }, { "covoiturage.fr", true }, + { "covuro.com", true }, { "covve.com", false }, { "covybrat.cz", true }, { "cowbird.org", true }, @@ -18907,6 +19551,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cozyeggdesigns.com", true }, { "cp-st-martin.be", true }, { "cp015.com", true }, + { "cpaexamguy.com", true }, { "cpaneltips.com", true }, { "cpars.gov", true }, { "cpasperdu.com", true }, @@ -18923,18 +19568,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cperegistry.com", true }, { "cperegistry.net", true }, { "cperegistry.org", true }, - { "cpgarmor.com", true }, { "cphpvb.net", true }, { "cpilot.cz", true }, { "cplala.com", true }, { "cpls.me", true }, { "cplus.me", true }, { "cplusplus.se", true }, + { "cpoinnovation.com", true }, { "cppan.org", true }, { "cppaste.org", true }, { "cppressinc.com", true }, { "cpqcol.gov.co", true }, - { "cprnearme.com", true }, { "cpsa.co.uk", true }, { "cpsc.gov", true }, { "cpsecureapp.com", true }, @@ -18978,7 +19622,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "craftist.de", true }, { "craftmachinec.com", true }, { "craftngo.hu", true }, - { "craftsandsweets.com", true }, { "craftshiponline.tk", true }, { "craftsmandruggets.com", true }, { "craftsmany.net", true }, @@ -18989,7 +19632,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "craftyphotons.net", true }, { "crag.com.tw", true }, { "craig-mullins.com", true }, - { "craigary.net", true }, { "craigbates.co.uk", false }, { "craigdavis.ga", true }, { "craigfrancis.co.uk", true }, @@ -19001,12 +19643,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cranberry-tee.de", true }, { "crandall.io", true }, { "cranems.com.ua", true }, + { "cranenburgh.nl", true }, { "cranforddental.com", true }, + { "cranioo.nl", true }, { "cranshafengin.com", true }, { "crapmail.tk", true }, { "crapouill.es", true }, { "crashboy.ws", true }, - { "craterx.com", true }, { "cratss.co.uk", true }, { "crawcial.de", true }, { "crawford.cloud", true }, @@ -19047,6 +19690,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crea-that.fr", true }, { "crea.bg", true }, { "crea.me", true }, + { "creacioneslri.com", true }, { "creadstudy.com", true }, { "creafitchile.cl", true }, { "crealogix-online.com", true }, @@ -19066,7 +19710,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creatic.co", true }, { "creaticworld.net", true }, { "creatieven.com", true }, - { "creation-contemporaine.com", true }, { "creations-edita.com", true }, { "creationsgate.com", true }, { "creative-thinking.ro", true }, @@ -19074,7 +19717,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creativeangles.in", true }, { "creativebites.de", true }, { "creativecaptiv.es", true }, - { "creativecenter.pro", true }, { "creativecommons.gr", true }, { "creativecommons.org", true }, { "creativecommonscatpictures.com", true }, @@ -19106,11 +19748,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "credential.eu", true }, { "credex.bg", true }, { "credigo.se", true }, + { "credit-10.com", true }, { "credit-default-swaps.tk", true }, { "creditdigital.uk", true }, { "creditif.tk", true }, { "creditkarma.com", true }, - { "creditmonkey.pro", true }, { "credito360.pt", true }, { "creditor.tk", true }, { "creditorapido.pt", true }, @@ -19119,7 +19761,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "creditozen.mx", true }, { "creditproautos.com", false }, { "creditscoretalk.com", true }, - { "creditta.com", true }, { "credittoken.io", true }, { "creeks-coworking.com", true }, { "creep.im", true }, @@ -19134,13 +19775,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cremepassion.de", true }, { "crena.ch", true }, { "crepa.ch", false }, - { "crestasantos.com", false }, + { "crestasantos.com", true }, { "cretdupuy.com", false }, { "creteangle.com", true }, { "cretica.no", true }, { "creusalp.ch", false }, { "crew.moe", true }, { "crew505.org", true }, + { "crewplanner.eu", true }, { "crgalvin.com", true }, { "crgm.net", true }, { "cribcore.com", true }, @@ -19181,6 +19823,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cristianonascimento.ml", true }, { "cristianuibar.com", true }, { "critcola.com", true }, + { "critical.software", true }, { "critical.today", false }, { "criticalgenesis.tk", true }, { "criticalsurveys.co.uk", true }, @@ -19225,6 +19868,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crossfunctional.com", true }, { "crosslifenutrition.co.uk", false }, { "crossnet.io", true }, + { "crossorig.in", true }, { "crossoverit.com", true }, { "crosspeakoms.com", true }, { "crossroads-gmbh.ch", true }, @@ -19236,7 +19880,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crowdbox.net", true }, { "crowdcloud.be", true }, { "crowdliminal.com", true }, + { "crowds.ro", true }, { "crowdsim3d.com", true }, + { "crowdstack.com", true }, { "crowdsupply.com", true }, { "crowleymarine.com", true }, { "crownaffairs.ch", true }, @@ -19260,6 +19906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crt2014-2024review.gov", true }, { "crtalleres.com", true }, { "crucibleofworlds.com", true }, + { "cruelporn.com", true }, { "cruicky.uk", true }, { "cruisemoab.com", true }, { "crumbcontrol.com", true }, @@ -19268,35 +19915,38 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crustytoothpaste.net", true }, { "crute.me", true }, { "cruzadobalcazarabogados.com", true }, + { "cruzitoproducciones.gq", true }, { "crvegas.com", true }, { "crvv.me", true }, { "cry-sys.de", true }, { "cry.nu", false }, { "cryoblaster.com", true }, + { "cryoflesh.com", true }, { "cryogenix.net", true }, { "cryothanasia.com", true }, { "cryp.no", true }, { "crypkit.com", true }, { "crypt.is-by.us", true }, - { "cryptagio.com", true }, { "cryptearth.de", true }, + { "cryptecks.cf", true }, { "crypted.chat", true }, { "crypteianetworks.com", true }, { "cryptex.net", true }, { "cryptex.pw", true }, { "cryptizy.com", true }, { "crypto-clix.xyz", true }, - { "crypto.cat", false }, + { "crypto.cat", true }, { "crypto.graphics", true }, { "crypto.is", false }, { "cryptobin.co", true }, { "cryptocaseproject.com", true }, { "cryptoclix.website", true }, { "cryptocon.org", true }, - { "cryptodigitalgroup.com", true }, { "cryptofan.org", true }, + { "cryptofomo.capital", true }, + { "cryptofomocapital.com", true }, + { "cryptofox.nl", true }, { "cryptography.ch", true }, - { "cryptography.io", true }, { "cryptoguidemap.com", true }, { "cryptoholic.co", true }, { "cryptoisnotacrime.org", true }, @@ -19306,9 +19956,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cryptology.ch", true }, { "cryptomail.nl", true }, { "cryptomaniaks.com", true }, + { "cryptomkt.com", true }, { "cryptonom.org", true }, { "cryptonx.io", true }, { "cryptonym.com", true }, + { "cryptool.org", true }, { "cryptoparty.at", true }, { "cryptoparty.dk", true }, { "cryptoparty.tv", true }, @@ -19332,6 +19984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "crys.tv", true }, { "crystal-zone.com", true }, { "crystalapp.ca", true }, + { "crystalblockchain.com", true }, { "crystalchandelierservices.com", true }, { "crystalgrid.net", true }, { "crystaloscillat.com", true }, @@ -19369,10 +20022,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csfm.com", true }, { "csgf.fun", true }, { "csgf.ru", true }, - { "csgo.design", true }, { "csgo.help", true }, { "csgo.su", true }, { "csgo77.com", true }, + { "csgomtr.com", true }, { "csgoswap.com", true }, { "csgotwister.com", true }, { "csharpmarc.net", true }, @@ -19388,6 +20041,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cslaboralistas.pe", true }, { "cslbuild.com", true }, { "csmainframe.com", true }, + { "csodaorszagovoda.hu", true }, { "csokolade.hu", true }, { "csosa.gov", true }, { "csp.ch", false }, @@ -19395,6 +20049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cspvalidator.org", true }, { "csrichter.com", true }, { "csru.net", true }, + { "css-tricks.com", true }, { "css-tricks.tk", true }, { "css.direct", false }, { "css.net", true }, @@ -19409,6 +20064,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "csust.net", true }, { "csuw.net", true }, { "csvalpha.nl", true }, + { "csvplot.com", true }, { "cswarzone.com", true }, { "cswebi.net", true }, { "cswgmbh.de", true }, @@ -19417,6 +20073,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ctc-transportation.com", true }, { "ctcom-peru.com", true }, { "ctcue.com", true }, + { "ctemplar.com", true }, { "ctes.cz", true }, { "ctf-albstadt.de", true }, { "ctf.link", true }, @@ -19438,9 +20095,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ctoresms.com", true }, { "ctpe.net", true }, { "ctrl.blog", true }, + { "ctrl.gr", true }, { "ctrld.me", true }, { "cttso.gov", true }, { "cu247secure.ie", true }, + { "cuacamaungon.com", true }, { "cuanticasocialmedia.com", true }, { "cuatroymedia.com", true }, { "cub-bouncingcastles.co.uk", true }, @@ -19457,6 +20116,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cubecraftstore.net", true }, { "cubekrowd.net", true }, { "cubela.tech", true }, + { "cubeo.xyz", true }, { "cubeperformancecentre.com.au", true }, { "cubesugar.info", true }, { "cubetech.co.jp", true }, @@ -19468,13 +20128,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cubile.xyz", true }, { "cubing.net", true }, { "cublick.com", true }, - { "cubos.io", false }, + { "cubos.io", true }, { "cubsbestteaminbaseball.com", true }, { "cubua.com", true }, + { "cubyhome.com", true }, { "cuchichi.es", true }, + { "cuckmysock.com", true }, { "cuckoo.ee", true }, { "cuckoopalace.cn", true }, { "cuddlecat.io", true }, + { "cuddlecomfort.com", true }, { "cuddlingyaks.com", true }, { "cudoo.de", true }, { "cuegee.com", true }, @@ -19491,10 +20154,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cultivo.bio", true }, { "cultofd50.org", true }, { "cultofperf.org.uk", true }, + { "cultrix.co.uk", true }, { "cultura10.com", true }, { "culturabrasilia.tk", true }, { "culturalparadiso.tk", true }, { "culturedcode.com", true }, + { "culturelivresque.fr", true }, { "culturerain.com", true }, { "cultureroll.com", true }, { "cultureshift.co", true }, @@ -19518,7 +20183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cupcake.pt", true }, { "cupcao.gov", true }, { "cupclub.com", true }, - { "cupidosshop.com", true }, + { "cupdunarea.ro", true }, { "cupoane-reducere.net", true }, { "cupom.net", true }, { "cur.by", true }, @@ -19561,7 +20226,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "curtislinville.net", true }, { "curtissmith.me.uk", true }, { "curtissmith.uk", true }, - { "curva.co", true }, + { "curva.co", false }, + { "curvemedia.co", true }, { "curveprotect.com", true }, { "curveprotect.cz", true }, { "curveprotect.net", true }, @@ -19589,9 +20255,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "customwebsitesplus.com", true }, { "customwritings.com", true }, { "customwritten.com", true }, + { "custosd.com", true }, + { "custosd.io", true }, + { "custosd.net", true }, + { "custosd.org", true }, { "cutephil.com", true }, { "cuteselfie.com", true }, - { "cutimbo.com", true }, + { "cutieland.to", true }, + { "cutienautica.com", true }, { "cutimbo.ovh", true }, { "cutlinks.ml", true }, { "cutmylink.gq", true }, @@ -19618,6 +20289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cve-le-carrousel.ch", false }, { "cviip.ca", true }, { "cviip.com", true }, + { "cvj.me", true }, { "cvjd.me", false }, { "cvl.ch", false }, { "cvlibrary.co.uk", true }, @@ -19637,6 +20309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cwc.gov", true }, { "cwgaming.co.uk", true }, { "cwilson.ga", true }, + { "cwinfo.net", true }, { "cwmart.in", true }, { "cwningen.cymru", false }, { "cwr.gov", true }, @@ -19660,8 +20333,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyber-core.co.uk", true }, { "cyber-shield.de", false }, { "cyber-travel.com", true }, - { "cyber-wolfs.com", true }, { "cyber-yaroslavl.tk", true }, + { "cyber.gov", true }, { "cyber.je", true }, { "cyberatlantis.com", true }, { "cybercareers.gov", true }, @@ -19673,6 +20346,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybercrime.gov", true }, { "cybercustodian.com", true }, { "cyberdean.fr", true }, + { "cyberdev.cf", true }, { "cyberdiscoverycommunity.uk", true }, { "cyberdos.de", false }, { "cyberduck.io", true }, @@ -19684,14 +20358,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyberfrancais.ro", true }, { "cybergame-host.tk", true }, { "cybergroup.cf", true }, - { "cybergrx.com", true }, { "cyberguerrilla.info", true }, { "cyberguerrilla.org", true }, + { "cyberhazard.eu", true }, { "cyberhipsters.nl", true }, { "cyberianhusky.com", false }, { "cyberium-planet.cf", true }, { "cyberlab.kiev.ua", false }, - { "cyberlab.team", false }, { "cyberlegal.co", true }, { "cybermaniac.tk", true }, { "cyberme.sh", true }, @@ -19713,12 +20386,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cybersantri.com", true }, { "cyberscan.io", true }, { "cybersecurite-info.fr", true }, + { "cybersecurity.gov", true }, { "cybersecurity.gr", true }, { "cybersecurity.run", true }, { "cybersecuritychallenge.be", false }, { "cybersecurityketen.nl", true }, { "cyberseguranca.com.br", true }, { "cyberserver.org", true }, + { "cybershark.space", true }, { "cybersins.com", true }, { "cybersmart.co.uk", true }, { "cybersmartdefence.com", true }, @@ -19743,7 +20418,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cyclinggoodso.com", true }, { "cyclisjumper.gallery", true }, { "cyclonebikes.com.ua", true }, + { "cyclonedesign.ca", true }, { "cyclop-editorial.fr", true }, + { "cyclowiz.com", true }, { "cydetec.com", true }, { "cyelint.com", true }, { "cyfly.org", true }, @@ -19773,13 +20450,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "cypherpunk.ws", true }, { "cypressinheritancesaga.com", true }, { "cypresslegacy.com", true }, + { "cyprus-company-for.gr", true }, { "cyprus-company-service.com", true }, + { "cyrano-books.com", true }, { "cyraus.com", false }, { "cysec.biz", true }, { "cysmo.de", true }, { "cyson.tech", true }, { "cytat.tk", true }, - { "cytech.com.tr", true }, { "cytegic-update-packages.com", true }, { "cythereaxxx.com", true }, { "cyumus.com", true }, @@ -19793,11 +20471,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "czechcrystals.co.uk", true }, { "czechvirus.cz", true }, { "czerno.com", true }, + { "czh999.com", true }, { "czirnich.org", true }, { "czk.mk", true }, { "czlx.co", false }, { "czprothz.tk", true }, { "czwartybrat.pl", true }, + { "czzs.org", true }, { "d-20.fr", true }, { "d-consultant.ru", true }, { "d-designerin.de", true }, @@ -19809,6 +20489,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d-parts24.de", true }, { "d-toys.com.ua", true }, { "d-training.de", true }, + { "d-vision-create.com", true }, { "d-vision-web.com", true }, { "d.nr", true }, { "d00228.com", true }, @@ -19823,7 +20504,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d2.gg", true }, { "d2ph.com", true }, { "d2s.uk", true }, - { "d365.vip", true }, + { "d30365.com", true }, + { "d365.vip", false }, { "d36533.com", true }, { "d36594.com", true }, { "d3a.xyz", true }, @@ -19831,7 +20513,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d3lab.net", true }, { "d3x.pw", true }, { "d3xt3r01.tk", true }, - { "d3xx3r.de", true }, { "d42.no", true }, { "d4b.in.ua", true }, { "d4done.com", true }, @@ -19841,6 +20522,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d4x.de", true }, { "d5197.co", true }, { "d588.cc", true }, + { "d64.nl", true }, { "d66.ag", true }, { "d66.nl", true }, { "d6729.co", true }, @@ -19848,15 +20530,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d6957.co", true }, { "d6c5yfulmsbv6.cloudfront.net", true }, { "d7035.com", true }, - { "d7211.com", true }, { "d7215.com", true }, - { "d7216.com", true }, { "d8.ag", true }, { "d8.io", true }, { "d8118.com", true }, { "d81365.com", true }, { "d8181.com", true }, - { "d81818.com", true }, { "d8228.com", true }, { "d82365.com", true }, { "d868.app", true }, @@ -19890,7 +20569,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d88333.com", true }, { "d8834.com", true }, { "d883vip.com", true }, - { "d8841.com", true }, { "d8842.com", true }, { "d8843.com", true }, { "d8845.com", true }, @@ -19919,6 +20597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "d8861.net", true }, { "d886119.com", true }, { "d8862.com", true }, + { "d8862.net", true }, { "d8863.com", true }, { "d8863.net", true }, { "d8864.com", true }, @@ -20067,7 +20746,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dachdeckermeister-egon-weiss.de", true }, { "dachtechnik-windschuettl.de", true }, { "daciaforum.nl", true }, - { "daciamodellen.nl", true }, { "dadadani.xyz", true }, { "dadafterforty.be", true }, { "daddybio.com", true }, @@ -20078,6 +20756,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dadons-laserdiscs.com", true }, { "dadosch.de", true }, { "dadrian.io", true }, + { "dadstersgroup.com", true }, { "daduke.org", true }, { "dadycandoit.com", true }, { "daemen.org", true }, @@ -20091,6 +20770,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dafe2021.ee", true }, { "dafont.com", true }, { "dafricapress.com", true }, + { "daftarhajiumroh.com", true }, { "dafyddcrosby.com", true }, { "dag-hebergement.fr", true }, { "dag-konsult.com", true }, @@ -20102,19 +20782,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dahobo.tk", true }, { "dai.top", true }, { "dai94.com", true }, + { "daibetter.com", true }, { "daidr.me", true }, { "daie-inc.com", true }, { "daigakujuken-plus.com", true }, { "daikoz.com", true }, { "daily-exps.herokuapp.com", true }, { "dailybits.be", true }, + { "dailyblocks.com", true }, { "dailyblogged.com", true }, { "dailychristianpodcast.com", true }, + { "dailydote.com", true }, { "dailyemailinboxing.com", true }, { "dailyenglishchallenge.com", true }, { "dailyhealthguard.com", true }, { "dailykos.com", true }, { "dailynewsclubs.ga", true }, + { "dailyngn.com", true }, { "dailypop.ru", true }, { "dailyrenewblog.com", true }, { "dailyrover.com", true }, @@ -20122,13 +20806,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dailysuperheroes.com", true }, { "dailyxenang.com", true }, { "daimafengzi.com", true }, - { "dairikab.go.id", true }, { "dairyshrine.org", true }, { "daisakuikeda.org", true }, { "daisidaniels.co.uk", true }, { "daisuki.pw", true }, { "daisy-peanut.com", true }, { "daisypeanut.com", true }, + { "daiwan.cool", true }, { "daiweihu.com", true }, { "dajiadu.net", true }, { "dajiadu8.com", true }, @@ -20142,7 +20826,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dakotasjoint.com", true }, { "dakshm.in", true }, { "daktarisys.com", true }, - { "dal.net.sa", true }, { "daladubbeln.se", true }, { "dalaran.city", true }, { "dalb.in", true }, @@ -20157,10 +20840,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dallas.gov", true }, { "dallaslu.com", true }, { "dallasmenshealth.com", true }, - { "dalliard.ch", true }, + { "dalliard.ch", false }, { "dallinbryce.com", true }, { "dallmeier.net", true }, { "dalmatiersheusden.be", true }, + { "daltcore.com", true }, { "daltonedwards.me", true }, { "dam74.com.ar", true }, { "damaged.org", true }, @@ -20204,6 +20888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danceylove.net", true }, { "danchen.org", true }, { "dancingcubs.co.uk", true }, + { "danclassroom.com", true }, { "dandan101.com", true }, { "dandenongroadapartments.com.au", true }, { "dandia.ro", true }, @@ -20216,6 +20901,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dangr.zone", true }, { "danhalliday.com", true }, { "danholloway.online", true }, + { "danhotels.co.il", true }, + { "danhotels.com", true }, { "daniel-baumann.ch", true }, { "daniel-cholewa.de", true }, { "daniel-kulbe.de", true }, @@ -20225,7 +20912,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daniel-ruf.de", true }, { "daniel-stahl.net", true }, { "daniel-wildhaber.ch", true }, - { "daniel.domains", true }, { "daniel.sb", true }, { "danielalvarez.net", true }, { "danielas.boutique", true }, @@ -20240,6 +20926,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danielheal.net", false }, { "danielhinterlechner.eu", true }, { "danielhochleitner.de", true }, + { "danielhurley.com", true }, + { "danielhurley.eu", true }, + { "danielhurley.ie", true }, + { "danielhurley.info", true }, + { "danielhurley.org", true }, { "danieliancu.com", true }, { "danieljamesscott.org", true }, { "danieljball.co.uk", true }, @@ -20270,6 +20961,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danielthompson.info", true }, { "danieltollot.de", true }, { "danielvanassen.nl", true }, + { "danielve.ga", true }, { "danielverlaan.nl", true }, { "danielvoogsgerd.nl", true }, { "danielwildhaber.ch", true }, @@ -20277,6 +20969,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danifabi.eu", true }, { "daniilgeorge.com", true }, { "danilapisarev.com", true }, + { "danilov-abrosimov.org.ua", true }, { "danjesensky.com", true }, { "dank.ninja", true }, { "dankim.de", false }, @@ -20288,14 +20981,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danmassarano.com", true }, { "danminkevitch.com", false }, { "danna-salary.com", true }, - { "danndorf.com", true }, + { "danndorf.com", false }, { "dannhanks.com", true }, { "dannicholas.net", true }, { "danny-tittel.de", true }, { "dannycairns.com", true }, { "dannygaidateraelgar.com", true }, { "dannyjota.tk", true }, - { "dannyrohde.de", false }, + { "dannyrohde.de", true }, { "dannystevens.co.uk", true }, { "danonsecurity.com", true }, { "danotage.tv", true }, @@ -20309,6 +21002,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "danselibre.net", true }, { "danselibre.org", true }, { "danseressen.nl", true }, + { "dansk8bit.dk", true }, { "danskefilm.dk", true }, { "danskoferie.dk", true }, { "danskoya.com", true }, @@ -20319,6 +21013,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dantransports.fr", true }, { "danw.io", true }, { "danwin1210.me", true }, + { "danwise.online", true }, { "danwolff.se", true }, { "danyabanya.com", true }, { "danzac.com", true }, @@ -20328,11 +21023,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daoro.net", false }, { "daphne.informatik.uni-freiburg.de", true }, { "daphnes-restaurant.co.uk", true }, - { "dapianw.com", true }, + { "dapim.co.il", true }, { "daplie.com", true }, { "dapoxetinagenerico.cf", true }, { "dapperdom.net", true }, { "dapps.earth", true }, + { "dappui.com", true }, { "dappworld.com", true }, { "daracokorilo.com", true }, { "darani.ch", true }, @@ -20345,7 +21041,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daretogain.com", true }, { "dareyou.be", true }, { "darf.nl", true }, + { "darfurwall.org", true }, { "dariaburger.de", true }, + { "daridarkom.fr", true }, { "darinkotter.com", true }, { "darioackermann.ch", false }, { "darioclip.com", true }, @@ -20353,12 +21051,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dark-archive.com", true }, { "dark-crystal.tk", true }, { "dark-infection.de", true }, + { "dark-lake.com", true }, { "dark-nova.me", true }, { "dark-nova.tk", true }, { "dark-vision.cz", true }, { "dark.fail", true }, { "dark.ninja", true }, - { "darkag.ovh", true }, + { "darkcards.xyz", true }, { "darkcores.net", true }, { "darkdestiny.ch", true }, { "darkengine.io", true }, @@ -20367,6 +21066,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "darkerlystormy.com", false }, { "darkerstormy.com", false }, { "darkestproductions.net", true }, + { "darkeststar.org", true }, { "darkfire.ch", true }, { "darkhunter.eu", true }, { "darkishgreen.com", true }, @@ -20397,6 +21097,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dart-tanke.com", true }, { "dart-tanke.de", true }, { "dartcode.org", true }, + { "dartdriving.com", true }, { "dartetdemetiers.fr", true }, { "darth-sonic.de", true }, { "dartydiscount.fr", true }, @@ -20419,6 +21120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dashwebconsulting.com", true }, { "dasignsource.com", true }, { "dasinternetluegt.at", true }, + { "dasperspektivenwerk.de", true }, { "dassolutions.eu", true }, { "dasteichwerk.at", true }, { "dasug.de", true }, @@ -20447,9 +21149,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datacenternews.us", true }, { "datacentrenews.eu", true }, { "datacommissioner.gov.au", true }, - { "datacool.host", true }, { "datacool.tk", true }, { "datadit.hu", true }, + { "datadraugen.no", true }, { "datadyne.technology", true }, { "datafd.com", false }, { "datafd.net", false }, @@ -20461,11 +21163,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datahoarder.xyz", true }, { "datahove.no", false }, { "datajobs.ai", true }, + { "datakick.org", true }, { "datakl.com", true }, { "datalife.gr", true }, { "datalysis.ch", false }, { "dataman.ml", true }, { "datamatic.ru", true }, + { "dataprivacyandsecurityinsider.com", true }, { "dataprivacysolution.com", true }, { "datapun.ch", true }, { "datapure.net", true }, @@ -20474,7 +21178,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datasafeassurance.co.uk", true }, { "datascience.cafe", true }, { "datascience.ch", false }, - { "datasharesystem.com", true }, { "dataskydd.net", false }, { "dataspace.pl", true }, { "datastream.re", false }, @@ -20505,8 +21208,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datenkeks.de", true }, { "dateno1.com", true }, { "datenreiter.org", true }, + { "datensalat.info", true }, { "datenschutz-consult.de", true }, + { "datenschutz-gruenwald.de", true }, { "datenschutz-individuell.de", true }, + { "datenschutz-isny.de", true }, + { "datenschutz-leutkirch.de", true }, + { "datenschutz-oberschwaben.de", true }, + { "datenschutz-ravensburg.de", true }, + { "datenschutz-wangen.de", true }, + { "datenschutz-weingarten.de", true }, { "datenschutzgrundverordnung.de", true }, { "datenschutztag.org", true }, { "datenschutzzentrum.de", true }, @@ -20517,6 +21228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datingticino.ch", false }, { "datisstom.nl", true }, { "datmancrm.com", true }, + { "datometry.com", true }, { "dator-test.se", true }, { "datorb.com", true }, { "datorhjalp-stockholm.se", true }, @@ -20524,13 +21236,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "datorservice-stockholm.se", true }, { "datovyaudit.cz", true }, { "datumou-osusume.com", true }, + { "datumplus.co.uk", true }, { "datumstudio.jp", true }, { "daubecity.de", true }, { "daubehosting.de", true }, { "daunatotala.ro", true }, + { "dautuvang.net", true }, { "dave-pearce.com", true }, { "daveaglick.com", true }, { "davecardwell.com", true }, + { "davedevries.nl", true }, { "daveedave.de", true }, { "davelage.com", true }, { "davelynes.com", true }, @@ -20549,6 +21264,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davewardle.com", true }, { "davewood.com.au", true }, { "david-corry.com", true }, + { "david-edu.com", true }, { "david-hinschberger.me", true }, { "david-jeffery.co.uk", true }, { "david-merkel.de", true }, @@ -20564,10 +21280,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidbrookes.me", true }, { "davidbuckell.com", true }, { "daviddejori.com", true }, + { "davidelstob.com", true }, { "davidfetveit.com", true }, { "davidfindlay.org", true }, { "davidforward.net", true }, - { "davidfrancoeur.com", true }, + { "davidfrancoeur.com", false }, { "davidgouveia.net", true }, { "davidgow.net", true }, { "davidgreig.uk", true }, @@ -20580,15 +21297,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidking.xyz", true }, { "davidlamprea.com", true }, { "davidlamprea.eu", true }, - { "davidlane.io", true }, + { "davidlane.io", false }, { "davidlillo.com", true }, { "davidlindekilde.dk", true }, { "davidlyness.com", true }, { "davidmcevoy.org.uk", true }, { "davidmessenger.co.uk", true }, + { "davidmlujan.com", true }, { "davidmn.org", true }, { "davidnadaski.com", true }, - { "davidops.com", true }, { "davidpearce.com", true }, { "davidpearce.org", true }, { "davidpescarolo.it", true }, @@ -20602,11 +21319,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "davidstuff.net", true }, { "davidtiffany.com", true }, { "davidundetiwan.com", true }, + { "davidyounker.com", true }, { "davidzeegers.nl", true }, + { "davidzimmerman3.com", true }, { "davie3.com", true }, { "davimun.org", true }, { "davisdieselandautorepair.com", true }, - { "davisroi.com", true }, { "davo-usedcars.be", false }, { "davros.eu", true }, { "davros.ru", true }, @@ -20626,15 +21344,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "daxterfellowesservers.com", true }, { "daycontactlens.com", true }, { "daydream.team", true }, + { "daygametraining.com", true }, { "daylightpirates.org", true }, - { "dayman.net", true }, + { "dayman.net", false }, { "daymprove.life", true }, { "dayofdays.be", true }, { "dayofthegirl.gc.ca", true }, { "days.one", true }, + { "daysgolfclub.net", true }, { "daysinnaustin.com", true }, { "daysoftheyear.com", true }, { "dayswithnostabbings.ca", true }, + { "daytonahealthsolutions.com", true }, { "dayuse-hotels.it", true }, { "dayuse.co.uk", true }, { "dayuse.com", true }, @@ -20654,6 +21375,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "db-sanity.com", true }, { "db-works.nl", true }, { "db.ci", true }, + { "db.fyi", true }, { "dbapress.org", true }, { "dbaron.org", true }, { "dbas.cz", true }, @@ -20668,7 +21390,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dbmiller.org", true }, { "dbmteam.com", true }, { "dborcard.com", false }, - { "dbox.ga", true }, { "dbpkg.com", true }, { "dbplanview.com", true }, { "dbq.com", true }, @@ -20689,10 +21410,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dcain.me", true }, { "dcards.in.th", true }, { "dcareer.tk", true }, + { "dcarou.com", true }, { "dcave.net", true }, { "dcbouncycastles.co.uk", true }, + { "dcc.cat", true }, { "dccwiki.com", true }, { "dcdestetica.it", true }, + { "dcdn.lt", true }, { "dcepler.net", true }, { "dchatelain.ch", false }, { "dchest.org", true }, @@ -20737,7 +21461,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dd6729.co", true }, { "dd6729.com", true }, { "dd6957.co", true }, - { "dd7211.com", true }, { "dd77d.net", true }, { "dd9297.co", true }, { "dd9728.co", true }, @@ -20753,6 +21476,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ddfreedish.site", false }, { "ddhosted.com", true }, { "ddjlawtampa.com", true }, + { "ddkkitchens.com", true }, { "ddmeportal.com", true }, { "ddns-anbieter.de", true }, { "ddns-test.de", true }, @@ -20767,6 +21491,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dds.pe", true }, { "ddsmatchsouthwest.com", true }, { "ddy.tw", true }, + { "de-groot.it", true }, { "de-gucci.com", true }, { "de-kramers.nl", true }, { "de-mail.info", true }, @@ -20780,7 +21505,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "de8468.com", true }, { "dead-letter.email", true }, { "deadbeef.ninja", true }, - { "deadbyhost.com", true }, { "deadc0de.re", true }, { "deadmann.com", true }, { "deadmorose.ru", true }, @@ -20806,10 +21530,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dealbx.com", true }, { "dealcruiser.nl", true }, { "dealdump.nl", true }, + { "dealerbrindes.com.br", true }, { "dealerselectric.com", true }, { "dealerwriter.com", true }, { "dealinflatables.co.uk", true }, { "dealosa.com", true }, + { "dealproject.org.au", true }, { "dealspotr.com", true }, { "dealszone.net", true }, { "deamuseum.org", true }, @@ -20829,6 +21555,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "death.social", true }, { "deathberry.ddns.net", true }, { "deathofspring.com", false }, + { "deathorglory.cc", true }, { "deathsdomain.com", true }, { "deathy.ro", true }, { "deautomaat.nl", true }, @@ -20853,6 +21580,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "debraydesign.com.au", true }, { "debron-ot.nl", true }, { "debrusoft.ch", true }, + { "debt.com", true }, { "debtrecycling.com.au", true }, { "debuemon.com", true }, { "debuis.nl", true }, @@ -20871,6 +21599,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decipe.com", true }, { "decis.fr", true }, { "decisivetactics.com", true }, + { "deck.academy", true }, { "deckenplatten.org", true }, { "deckersheaven.com", true }, { "declarationlocationmeublee.com", true }, @@ -20884,6 +21613,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decologisticsgh.com", true }, { "decompiled.de", true }, { "deconsolas.tk", true }, + { "deconstructind.ro", true }, { "decoora.com", true }, { "decor-d.com", true }, { "decor-live.ru", true }, @@ -20894,7 +21624,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "decorativeflooring.com", true }, { "decoratore.roma.it", true }, { "decoratrix.com", true }, - { "decorauvent.ca", true }, { "decorincasa.com.br", true }, { "decormiernissanparts.com", true }, { "decorotti.com.tr", true }, @@ -20925,6 +21654,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deechtebakkers.nl", true }, { "deedyinc.com", true }, { "deegeeinflatables.co.uk", true }, + { "deejayladen.de", true }, { "deelmijnreis.nl", true }, { "deelodge.art", true }, { "deemlove.com", true }, @@ -20954,6 +21684,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deerwoodrvpark.com", true }, { "deezeno.com", true }, { "def-pos.ru", true }, + { "defamiliehagen.com", true }, { "defantasia.cl", true }, { "defcon.org", true }, { "defcongroups.org", true }, @@ -20979,6 +21710,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "define-atheist.com", true }, { "defineatheism.com", true }, { "defineatheist.com", true }, + { "definingterms.com", true }, { "definitely.cn", true }, { "definitions360.com", true }, { "defis-franciliens.fr", true }, @@ -20987,6 +21719,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deflumeriker.com", true }, { "defme.eu", true }, { "defont.nl", true }, + { "defreecefinancial.com", true }, { "defreitas.no", true }, { "deftek.com", true }, { "defterikebir.tk", true }, @@ -20995,11 +21728,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "defunct-engineers.ml", true }, { "defuse.ca", true }, { "defxing.net", true }, - { "degata.com", true }, { "degeberg.com", true }, { "degeberg.dk", true }, { "degeeks.xyz", true }, { "degen-elektrotechnik.de", true }, + { "degeneracy.xyz", true }, { "degestamptepot.nl", true }, { "degit.de", true }, { "degoeiewebsite.cf", true }, @@ -21022,11 +21755,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deinelakaien.tk", true }, { "deinfoto.ch", true }, { "deinsparen24.de", true }, + { "deitec-global.com", true }, { "deitti.net", true }, { "dejandayoff.com", true }, { "dejongonline.eu", true }, { "dejting-sidor.com", true }, { "dejure.org", false }, + { "dejvsoft.pl", true }, { "dejw.cz", true }, { "dekasegi-kansai.com", true }, { "dekasegi-supportcenter.com", true }, @@ -21034,7 +21769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dekel.co.il", true }, { "dekeurslagers.nl", true }, { "dekko.io", true }, - { "dekoh-shouyu.com", true }, { "dekonix.ru", true }, { "dekruifschalkwijk.nl", true }, { "dekulk.nl", true }, @@ -21048,6 +21782,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deleenheir.be", true }, { "delegao.moe", true }, { "deleidscheflesch.nl", true }, + { "delfi.lt", true }, { "delfic.org", true }, { "delhionlinegifts.com", true }, { "deliacreates.com", true }, @@ -21057,10 +21792,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deliciousmedia.co.uk", true }, { "deliciousmedia.net", true }, { "delicioustable.com", true }, + { "delicon.jp", true }, { "delid.cz", true }, + { "delijan24.ir", true }, { "delio.tk", true }, + { "delirecetas.com", true }, { "delitto.top", true }, - { "delivery.co.at", true }, + { "deliverability.guru", true }, { "delkniga42.ru", true }, { "dellacasapizzasemassas.com.br", true }, { "dellipaoli.com", true }, @@ -21089,7 +21827,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deltaservers.blog.br", true }, { "deltaservers.com.br", true }, { "deltasigmachi.org", true }, - { "deltatutoriais.com.br", true }, { "deltav.ml", false }, { "deltava.org", true }, { "deltawolf.tk", true }, @@ -21134,18 +21871,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "demuzere.eu", true }, { "demuzere.net", true }, { "demuzere.org", true }, + { "den-ka.jp", true }, { "denabot.pw", true }, { "denaehula.com", true }, + { "denahrumah.co", true }, { "denali.net", false }, { "denardbrewing.com", true }, { "denariu.net", true }, { "denatured.tk", true }, { "denbkh.ru", false }, + { "dencel.lv", true }, { "dendelft.nl", true }, { "denegmnogo.tk", true }, { "denejki.tk", true }, { "dengivdom.tk", true }, { "dengode.eu", true }, + { "denhotels.com", true }, { "denimtoday.com", true }, { "denince.net", true }, { "denis-martinez.photos", true }, @@ -21176,7 +21917,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dental-cloud.eu", true }, { "dental-colleges.com", true }, { "dentallaborgeraeteservice.de", true }, + { "dentaloptimizer.com", true }, + { "dentaltalent.nl", true }, + { "dentalturism.com", true }, { "dentechnica.co.uk", true }, + { "dentistalagoasanta.com.br", true }, { "dentistesdarveauetrioux.com", true }, { "dentistglasgow.com", true }, { "dentistryateastpiedmont.com", true }, @@ -21184,6 +21929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dentrassi.de", true }, { "dentystabirmingham.co.uk", true }, { "denuevestore.com", true }, + { "denverbph.com", true }, { "denvergospelhall.org", true }, { "denvernews.ml", true }, { "denwauranailab.com", true }, @@ -21202,6 +21948,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "depedclub.net", true }, { "depedclub.ph", true }, { "depedncr.com", true }, + { "depedresources.ph", true }, { "depedsurigaodelnorte.com", true }, { "depedtalks.com", true }, { "depedtambayan.net", true }, @@ -21243,6 +21990,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "derbuntering.de", true }, { "derbybouncycastles.com", true }, { "derbyshire-language-scheme.co.uk", true }, + { "derbyware.com", true }, { "derchris.me", true }, { "derco.com.co", true }, { "derdewereldrommelmarkt.nl", true }, @@ -21255,6 +22003,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "derekseaman.com", false }, { "derekseaman.studio", false }, { "derenderkeks.me", true }, + { "derf.fr", true }, { "derf.red", true }, { "derf.us", true }, { "dergeilstestammderwelt.de", true }, @@ -21277,6 +22026,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "deroo.org", true }, { "derp.army", true }, { "derp.chat", true }, + { "derpibooru.org", true }, { "derpy.pp.ua", true }, { "derre.fr", true }, { "derreichesack.com", true }, @@ -21287,6 +22037,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "desafiomovilidadsustentable.com", true }, { "desagaz.com", true }, { "desanta.top", true }, + { "desarrollando.web.ve", true }, { "descargar-apk.org", true }, { "descargarwhatsappplusgratis.net", true }, { "desec.io", true }, @@ -21311,8 +22062,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "designer-drug.com", true }, { "designera.se", true }, { "designerchad.com", true }, + { "designgears.com", true }, { "designgraphic.fr", true }, { "designhuddle.com", true }, + { "designovus.com", true }, { "designrhome.com", true }, { "designs.codes", true }, { "designsbyjanith.com", true }, @@ -21334,6 +22087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "desormiers.com", true }, { "despachomariscal.com", true }, { "despachomartinyasociados.com", true }, + { "desperate.solutions", true }, { "despertadoronline.com.es", true }, { "despinavandi.gr", true }, { "desplats.com.ar", true }, @@ -21370,14 +22124,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dethemium.com", true }, { "deti-online.com", true }, { "deti-vse.ml", true }, + { "detiklife.com", true }, { "detiks.cf", true }, { "detki.cf", true }, + { "detki24.ru", true }, { "detodojuegos.com", true }, { "detoxetmoi.com", true }, { "detoxic.vn", true }, { "detrapdoor.com", true }, { "detreannamaria.tk", true }, { "detroit-english.de", true }, + { "detroitjockcity.com", true }, { "detroitzoo.org", true }, { "detski.center", true }, { "detskysad.com", true }, @@ -21436,17 +22193,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "developerdan.com", true }, { "developermail.io", false }, { "developers.facebook.com", false }, + { "developingtheworkforce.co.uk", true }, { "developmentaid.org", true }, { "developmentsites.melbourne", true }, { "develops.co.il", true }, { "developyourelement.com", false }, - { "develux.com", true }, { "develux.net", true }, { "devh.de", false }, { "devh.net", true }, { "deviajesturismo.com", true }, { "deviant.email", true }, { "devicom.mx", true }, + { "devignstudios.co.uk", true }, { "devildog.tk", true }, { "devillers-occasions.be", false }, { "devils-co.tk", true }, @@ -21468,10 +22226,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "devolution.ws", true }, { "devonsawatzky.ca", true }, { "devopers.com.br", true }, - { "devops-survey.com", true }, { "devops.moe", true }, { "devops.pf", true }, - { "devopsish.com", true }, + { "devopsish.com", false }, { "devpp.com.br", true }, { "devpsy.info", true }, { "devragu.com", true }, @@ -21502,6 +22259,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dexonrest.azurewebsites.net", true }, { "dexonservicedeskws.azurewebsites.net", true }, { "dexonsoftware.com", true }, + { "deyanadeco.com", true }, { "deyute.com", true }, { "dez-online.de", true }, { "dezeregio.nl", true }, @@ -21529,6 +22287,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "df5ee.com", true }, { "df63.cc", true }, { "dfafacts.gov", true }, + { "dfagent.com", true }, { "dfc.gov", true }, { "dfc52.com", true }, { "dfctaiwan.org", true }, @@ -21544,12 +22303,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dgbouncycastlehire.com", true }, { "dgeex.eu", true }, { "dgitup.com", true }, + { "dgl-24.de", true }, { "dgportals.co.uk", true }, { "dgpot.com", true }, { "dgt-portal.de", true }, { "dgtakano.co.jp", true }, { "dgx.io", true }, { "dh6729.com", true }, + { "dh7337.com", true }, { "dh9397.com", true }, { "dh9721.com", true }, { "dhakawebhost.com", true }, @@ -21559,7 +22320,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dhauwer.nl", true }, { "dhaynes.xyz", true }, { "dhconcept.ch", false }, - { "dhde.de", true }, { "dheart.net", true }, { "dhedegaard.dk", true }, { "dhelixnet.de", true }, @@ -21574,7 +22334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dhome.at", true }, { "dhtr.pw", true }, { "dhub.xyz", true }, - { "dhuy.net", false }, + { "dhuy.net", true }, { "dhxxls.com", true }, { "dia-de.com", true }, { "dia.com.br", true }, @@ -21597,13 +22357,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dialect-agency.eu.org", true }, { "dialectic-og.com", true }, { "dialoegue.com", true }, + { "diamant.family", true }, + { "diamant.nyc", true }, { "diamante.ro", true }, { "diamantovaburza.cz", true }, { "diamgroup.pl", true }, { "diamond-hairstyle.dk", true }, - { "diamondgrid.ga", true }, { "diamondpkg.org", true }, + { "diamondrose.co.za", false }, { "diamondsleepsolutions.com", true }, + { "diamondyacca.co.uk", true }, { "diamondyze.nl", true }, { "diamorphine.com", true }, { "diamsmedia.ch", true }, @@ -21617,16 +22380,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diariodearaxa.com.br", true }, { "diarionoticia.pe", true }, { "diariorealidad.com", true }, - { "diariorp.com.br", true }, { "diariosurnoticias.com", true }, { "diaroma.it", true }, { "diarynote.jp", true }, { "diasdasemana.com", true }, - { "diasp.org", true }, { "diasporadialogues.com", true }, { "diatrofi-ygeia.gr", true }, { "diavo.de", true }, { "diba.org.cn", true }, + { "dibai.tv", true }, + { "dibal.ua", true }, { "dibiphp.com", true }, { "diccionarioabierto.com", true }, { "diccionariodedudas.com", true }, @@ -21693,12 +22456,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diegogelin.com", false }, { "diegogonzalez.com.co", true }, { "diegorbaquero.com", true }, + { "diehildebrands.de", true }, { "diehl.io", true }, { "diekperaiwseis.gr", true }, { "diem-project.org", true }, { "diemattels.at", true }, { "dienchaninstitute.com", true }, { "diendorfer.space", true }, + { "dienmayplus.vn", true }, { "dienstplan.cc", true }, { "dienstplan.one", true }, { "dierabenmutti.de", true }, @@ -21708,8 +22473,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dieselanimals.lt", true }, { "dieselgalleri.com", true }, { "dieser.me", true }, + { "diesicheremail.de", true }, { "diesteppenreiter.de", true }, - { "dietacelulitis.com", true }, { "dietbrand.eu", true }, { "dieterglas.de", true }, { "dietergreven.de", false }, @@ -21717,6 +22482,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diethood.com", true }, { "dieti-natura.com", true }, { "dieti.net", true }, + { "dietlein.tech", true }, { "dietlin.com", true }, { "dietrich.cx", true }, { "dieumfrage.com", true }, @@ -21725,7 +22491,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "differenta.ro", true }, { "differentgirleveryday.ml", true }, { "diffnow.com", true }, + { "diffuzehr.com.au", true }, { "difoosion.com", true }, + { "digchip.com", true }, + { "digchip.info", true }, + { "digchip.net", true }, + { "digchip.org", true }, + { "digchips.com", true }, { "digcit.org", true }, { "digdata.de", true }, { "dighans.com", true }, @@ -21737,6 +22509,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digicode.hu", true }, { "digicy.cloud", true }, { "digideli.ee", true }, + { "digidroom.be", true }, { "digihoc.com", true }, { "digikol.net", true }, { "digilicious.com", true }, @@ -21744,6 +22517,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digimagical.com", true }, { "digimedia.cd", false }, { "digioccumss.ddns.net", true }, + { "digipl.com", true }, + { "digipolis.gent", true }, { "digipost.no", true }, { "digirechnung.de", true }, { "digired.ro", true }, @@ -21771,6 +22546,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalbitbox.com", true }, { "digitalblood.eu", true }, { "digitalbox.jp", false }, + { "digitalcanvas.com.br", true }, { "digitalcash.cf", true }, { "digitalch.ng", true }, { "digitalchurch.ng", true }, @@ -21779,7 +22555,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalcloud.ovh", true }, { "digitalcoffeepodcast.com", true }, { "digitalcraftmarketing.co.uk", true }, - { "digitalcreationclass.com", true }, { "digitalcronies.com", true }, { "digitaldashboard.gov", true }, { "digitaldatacenter.net", true }, @@ -21799,19 +22574,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitalframe.nl", true }, { "digitalfury.co.uk", true }, { "digitalfuturenow.com", true }, + { "digitalgeckos.com", true }, { "digitalgov.gov", true }, { "digitalhabit.at", true }, { "digitalhabitat.io", true }, + { "digitalhealth.gov.au", true }, { "digitalhurricane.io", false }, { "digitalid-sandbox.com", true }, { "digitalid.com", true }, { "digitalid.com.au", true }, { "digitalliteracy.gov", true }, + { "digitallive24.ir", true }, { "digitalmaniac.co.uk", true }, { "digitalmarketingindallas.com", true }, - { "digitalpiloten.org", false }, + { "digitalpiloten.org", true }, { "digitalposition.com", true }, { "digitalprimate.my", true }, + { "digitalproj.com", true }, + { "digitalpuppy.co.uk", true }, + { "digitalradio.ie", true }, { "digitalredshirts.com", true }, { "digitalrights.center", true }, { "digitalrights.fund", true }, @@ -21823,6 +22604,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "digitaltrust.ae", true }, { "digitec.ch", true }, { "digitecgalaxus.ch", true }, + { "digitium.fr", true }, { "digitkon.com", true }, { "digitreads.com", true }, { "digixcellence.com", true }, @@ -21832,11 +22614,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dihesan.com", true }, { "dijitaller.com", true }, { "dijkmanmuziek.nl", false }, - { "dijkmanvandoorn.nl", false }, { "dijks.com", true }, + { "dikiaap.id", true }, { "dilberkebab.co.uk", true }, { "dildoexperten.se", true }, - { "dildosconsoladores.cl", true }, + { "diletec.com.br", true }, { "dilibel.be", true }, { "dilichen.fr", true }, { "diligo.ch", false }, @@ -21876,7 +22658,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dimosoftware.fr", true }, { "dimseklubben.dk", true }, { "din-hkd.jp", true }, - { "dinamobet2.com", true }, { "dinepont.fr", true }, { "dinerroboticurology.com", true }, { "dingcc.me", true }, @@ -21936,7 +22717,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "direwolfsoftware.ca", true }, { "diriya.lk", true }, { "dirk-dogs.tk", true }, - { "dirk-scheele.de", true }, { "dirk-weise.de", true }, { "dirkdoering.de", true }, { "dirkjonker.nl", true }, @@ -21950,13 +22730,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dirtyincest.com", true }, { "dirtyprettyartwear.com", true }, { "dirtytiles.xyz", true }, + { "disa.uk", true }, { "disability.gov", true }, { "disabilitydischarge.com", true }, { "disabled-world.com", true }, { "disabled.dating", true }, + { "disabledporn.com", true }, { "disabuse.cf", true }, { "disadattamentolavorativo.it", true }, { "disanteimpianti.com", false }, + { "disboard.org", true }, { "disc.uz", true }, { "discarica.bari.it", true }, { "discarica.bologna.it", true }, @@ -21990,6 +22773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "discountpokale.de", true }, { "discover-mercure.com", true }, { "discover-shaken.com", true }, + { "discoverelement.com", true }, { "discoverhealthage.com", false }, { "discoveringdocker.com", true }, { "discoverthreejs.com", true }, @@ -22007,16 +22791,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "disinfestatore.roma.it", true }, { "disinfestatori.com", true }, { "disinfestazione.brescia.it", true }, + { "disinfestazione.napoli.it", true }, { "disinfestazione.torino.it", true }, { "disinfestazione.venezia.it", true }, { "disinfestazione.verona.it", true }, { "disinfestazione24.it", true }, { "disinfestazioneblatte.it", true }, + { "disinfestazionecimici.napoli.it", true }, { "disinfestazionecimici.roma.it", true }, + { "disinfestazioni-sardegna.org", true }, { "disinfestazioni-umbria.it", true }, { "disinfestazioni.bari.it", true }, { "disinfestazioni.bergamo.it", true }, { "disinfestazioni.cagliari.it", true }, + { "disinfestazioni.caserta.it", true }, { "disinfestazioni.catania.it", true }, { "disinfestazioni.co", true }, { "disinfestazioni.firenze.it", true }, @@ -22042,6 +22830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diskbit.com", true }, { "diskbit.nl", true }, { "disking.co.uk", true }, + { "diskussionsbereich.de", true }, { "dismail.de", true }, { "displayenergycertificate.co.uk", true }, { "displaysfas.com", true }, @@ -22073,27 +22862,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "distributednya.com", true }, { "distributore.it", true }, { "distributori.roma.it", true }, - { "district.sg", true }, { "districtcapital.com", true }, { "distrilogservices.com", true }, - { "distrivalle.ec", true }, { "distro.fr", true }, { "distro.re", false }, { "ditch.ch", true }, { "ditec.sk", true }, { "diti.me", true }, { "dities.tk", true }, + { "div.im", true }, { "diva.nl", true }, { "divari.nl", true }, { "divcoder.com", true }, { "dive-japan.com", true }, - { "divedowntown.com", true }, { "divegearexpress.com", true }, { "divegearexpress.net", true }, { "diveidc.com", true }, + { "divelement.ro", true }, { "diveplan.org", true }, { "diver-equipment.eu", true }, - { "divergenz.org", true }, { "diversifiedproduct.com", true }, { "diversityflags.com", true }, { "diversityflags.com.au", true }, @@ -22124,7 +22911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "diygeek.com", true }, { "diyibo.com", true }, { "diymediahome.org", true }, - { "diyosun.com", true }, + { "diyosun.com", false }, { "diysec.tk", true }, { "diytechguides.com", true }, { "diyvideoeditor.com", true }, @@ -22153,9 +22940,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "djdavid98.art", true }, { "djdeepstate.com", true }, { "djfafafa.com", true }, + { "djfantum.com", true }, { "djfrenchy.com", true }, { "dji-ars.pl", true }, - { "djiconsulting.com", true }, { "djipanov.com", true }, { "djitsolutions.com", true }, { "djl188.cc", true }, @@ -22165,6 +22952,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "djlinux.cz", true }, { "djlnetworks.co.uk", true }, { "djlove.tk", true }, + { "djmarian.com", true }, { "djmox.in", true }, { "djroynomden.nl", true }, { "djsanonimo.com", true }, @@ -22187,7 +22975,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dko-steiermark.ml", true }, { "dkravchenko.su", false }, { "dkstage.com", true }, - { "dktq2hj81vknv.cloudfront.net", true }, { "dkwedding.gr", true }, { "dl.google.com", true }, { "dlaspania.pl", true }, @@ -22195,6 +22982,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlcwilson.com", true }, { "dlde.ru", true }, { "dldl.fr", true }, + { "dleet.com", true }, { "dleger.space", true }, { "dlfsymposium.nl", true }, { "dlitz.net", true }, @@ -22203,6 +22991,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dlld.com", true }, { "dlld.org", true }, { "dlld.us", true }, + { "dlmit.be", true }, { "dlouwrink.nl", true }, { "dlrsp.org", true }, { "dlscomputers.com.au", true }, @@ -22225,14 +23014,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dmcw.de", true }, { "dmd.lv", true }, { "dmdd.org.uk", true }, - { "dmerkel.de", true }, { "dmess.ru", true }, { "dmfd.net", true }, { "dmfj.io", true }, { "dmhtwebordering.com", true }, { "dmi.es", true }, + { "dmilb.org", true }, + { "dmitriid.com", true }, { "dmitry.sh", true }, { "dmlogic.com", true }, + { "dmmedya.com", true }, { "dmmkenya.co.ke", false }, { "dmmultionderhoud.nl", true }, { "dmn.sh", true }, @@ -22258,7 +23049,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dnns.no", true }, { "dnoid.to", true }, { "dnplegal.com", true }, + { "dns-check.nl", true }, { "dns-control.eu", true }, + { "dns-swiss.ch", true }, { "dns.google.com", true }, { "dns.sb", true }, { "dns8.online", true }, @@ -22271,7 +23064,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dnscurve.io", true }, { "dnsge.org", true }, { "dnshallinta.fi", true }, - { "dnsinfo.ml", true }, + { "dnsipv6.srv.br", true }, { "dnskeep.com", true }, { "dnskeeper.com", true }, { "dnslog.com", true }, @@ -22281,6 +23074,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dnsql.io", true }, { "dnsrate.com", true }, { "dnssecandipv6.se", true }, + { "dnstats.io", true }, { "dnstwister.report", true }, { "do-pro.net", true }, { "do-prod.com", false }, @@ -22289,7 +23083,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "do13.net", true }, { "do67.de", true }, { "do67.net", true }, - { "doanhnhankhanhhoa.vn", true }, { "dobbshvac.com", true }, { "dobraprace.cz", false }, { "dobre-programy.xyz", true }, @@ -22297,7 +23090,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dobreprogramy.pro", true }, { "dobrev.family", true }, { "dobrisan.ro", true }, - { "dobryautoskup.pl", true }, { "doc-baza.ru", true }, { "doc.ai", true }, { "doc.python.org", true }, @@ -22310,6 +23102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "docemeldoces.com", true }, { "doceo.com", true }, { "dochimera.com", true }, + { "dochub.com", true }, { "dockerbook.com", false }, { "dockerm.com", true }, { "dockerup.net", true }, @@ -22325,10 +23118,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "docs.google.com", true }, { "docs.python.org", true }, { "docs.tw", true }, - { "docskiff.com", true }, { "doctabaila.com", true }, { "doctafit.com", true }, - { "docteurcardin.com", true }, + { "docteurcardin.com", false }, { "doctor-locks.co.uk", true }, { "doctor.dating", true }, { "doctor360.com.au", true }, @@ -22351,12 +23143,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doda.space", true }, { "dodds.cc", true }, { "dodikod.tk", true }, - { "dodomu.ddns.net", true }, { "dodopri.com", true }, { "doenjoylife.com", false }, { "doeren.com", true }, { "doerz.com", true }, - { "does.one", true }, { "doesburg-comp.nl", true }, { "doesinfotech.com", true }, { "doesmycodehavebugs.today", true }, @@ -22366,6 +23156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dogadayiz.net", true }, { "dogan.ch", false }, { "dogandoganay.com", true }, + { "dogcat.vn", true }, { "dogcontrol.ca", true }, { "dogcratereview.info", true }, { "doge.town", true }, @@ -22377,34 +23168,42 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doggo.cloud", true }, { "doggo.dance", true }, { "doggo.email", true }, - { "doggroomingcourse.com", true }, + { "doggroomingcourse.com", false }, + { "dogma.it", true }, { "dogmap.jp", true }, { "dogodki.today", true }, { "dogoo.com", true }, { "dogpawstudio.com", true }, { "dogprograms.net", true }, { "dogrescuegreece.nl", true }, + { "dogsdailylife.com", true }, + { "dogurai.com", true }, + { "dogwalkeru.com", true }, { "dohanews.co", true }, { "doi.org", true }, { "doihavetoputonpants.com", true }, + { "doinaruscior.eu", true }, { "doitauto.de", true }, { "doitexperience.com", true }, { "dojifish.space", true }, { "dojin.nagoya", true }, - { "dojozendebourges.fr", true }, { "dokee.cn", true }, { "dokelio-idf.fr", true }, { "dokhuyenmaigiatot.com", true }, { "doki.space", false }, { "dokipy.no", true }, + { "doko.pl", true }, { "dokspot.cf", true }, { "dokspot.ga", true }, { "doku-gilde.de", true }, { "dokuboard.com", true }, { "dokuraum.de", true }, { "dolarcanadense.com.br", true }, + { "dolarenmexico.com", true }, { "dolcesalatoweb.it", true }, + { "dolcett.pw", true }, { "dolci-delizie.de", true }, + { "dolciariasimonini.com", true }, { "dolciterapie.com", true }, { "doli.se", true }, { "dolice.net", true }, @@ -22420,7 +23219,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dolphin-cloud.com", true }, { "dolphin-hosting.com", true }, { "dolphin-it.de", true }, + { "dolphinaris.com.br", true }, + { "dom.blog", true }, { "doma.in", true }, + { "domacikavarna.cz", true }, { "domadillo.com", true }, { "domain-ermittlung.de", true }, { "domain-skachat.cf", true }, @@ -22472,6 +23274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dominik.st", true }, { "dominikaner-vechta.de", true }, { "dominioanimal.com.br", true }, + { "dominionedge.com", true }, { "dominionregistries.domains", true }, { "dominique-haas.fr", false }, { "dominoknihy.cz", true }, @@ -22521,6 +23324,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donateabox.org", true }, { "donateaday.net", true }, { "donation.ph", true }, + { "donatus.nl", true }, { "donboscogroep.nl", true }, { "dondiabolo.com", true }, { "donfelino.tk", false }, @@ -22528,6 +23332,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donghochinhhang.store", true }, { "dongjingre.net", true }, { "dongxuwang.com", true }, + { "donia-almla3b.com", true }, { "donjusto.nl", true }, { "donkennedyandsons.com", true }, { "donkeytrekkingkefalonia.com", true }, @@ -22539,7 +23344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donner-reuschel.de", true }, { "donnons.org", false }, { "donnoval.ru", false }, - { "donotcall.gov", true }, { "donotcallgov.com", true }, { "donotlink.it", true }, { "donotspellitgav.in", false }, @@ -22559,7 +23363,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "donutcompany.co.jp", true }, { "dooby.fr", true }, { "dooleylabs.com", true }, - { "dooleytackaberry.com", true }, { "doolz.co.nz", true }, { "doomoo.com", true }, { "doomsworld.com", true }, @@ -22588,8 +23391,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doradocomputer.com", true }, { "doradoscampeon.tk", true }, { "doramamusic.gq", true }, - { "dorco.be", true }, { "dorde.eu", true }, + { "dordtpas.nl", true }, { "dorfbaeck.at", true }, { "dorfbrunnen.eu", false }, { "dorfpark-falkenburg.de", true }, @@ -22599,7 +23402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dorianmuthig.com", true }, { "doridian.com", true }, { "doridian.de", true }, - { "doridian.net", true }, { "doridian.org", true }, { "dormirmucho.com", true }, { "dormitengernyikaland.hu", true }, @@ -22642,6 +23444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dotbigbang.com", true }, { "dotbox.org", true }, { "dotcircle.co", true }, + { "dotcomtest02-single.azurewebsites.net", true }, { "dotesports.com", true }, { "dotgov.gov", true }, { "dothebangthingsalon.com", true }, @@ -22666,6 +23469,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dotsiam.com", true }, { "dotsiam.in.th", true }, { "dottore.roma.it", true }, + { "dottormarc.it", true }, { "douai.me", true }, { "doubleaste.com", true }, { "doubleavineyards.com", true }, @@ -22674,6 +23478,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doubleglazingmelbourne.com", true }, { "doublestat.me", true }, { "doubleup.com.au", true }, + { "doubtaboutwill.org", true }, + { "douceurcarlet.com", true }, { "doucheba.gs", false }, { "doughseeker.com", true }, { "douglas-ma.gov", true }, @@ -22687,6 +23493,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "doujinspot.com", true }, { "dounats.com", true }, { "douzer.de", true }, + { "douzer.earth", true }, { "douzer.industries", true }, { "dovenzorgmalawi.nl", true }, { "dovermotion.com", true }, @@ -22711,13 +23518,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "downtimerobot.nl", true }, { "downtownautospecialists.com", true }, { "downtownsuiteliving.com", true }, - { "downtownvernon.com", true }, { "dox-box.eu", true }, { "doxal.ro", true }, { "doxcelerate.com", true }, { "doxepin1.gq", true }, { "doxycyclineprices.cf", true }, { "doyleshamrock.com", true }, + { "doyo.tech", true }, { "doyoucheck.com", false }, { "doyouedc.com", true }, { "doyoulyft.com", true }, @@ -22751,8 +23558,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dpucarriersma.gov", true }, { "dpwsweeps.co.uk", true }, { "dr-becarelli-philippe.chirurgiens-dentistes.fr", true }, - { "dr-bodendorf.de", true }, - { "dr-klotz.info", true }, { "dr-knirr.de", true }, { "dr-marlen-nystroem.de", true }, { "dr-moldovan.de", true }, @@ -22795,6 +23600,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragon-aspect.com", true }, { "dragon-chem.eu", true }, { "dragon-hearts.co.uk", true }, + { "dragon-hearts.com", true }, + { "dragon-hearts.net", true }, { "dragon.nu", true }, { "dragon00.com", true }, { "dragon05.com", true }, @@ -22833,10 +23640,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragoncave.me", true }, { "dragoncityhack.tips", true }, { "dragonclean.gr", true }, - { "dragonfly.co.uk", true }, { "dragonheartsrpg.com", true }, { "dragonkin.net", true }, { "dragonprogrammer.com", true }, + { "dragonreal.estate", true }, { "dragonschool.org", true }, { "dragonsunited.at", true }, { "dragonsunited.ch", true }, @@ -22851,6 +23658,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dragowebdesign.com", true }, { "drahcro.uk", true }, { "draintechnorthwest.net", true }, + { "drainwllc.com", true }, { "drake.partners", true }, { "drakecommercial.com", true }, { "drakeluce.com", true }, @@ -22867,6 +23675,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dranous.com", true }, { "drapeauxdespays.fr", true }, { "dras.hu", true }, + { "drastik.cz", true }, { "dratini0.hu", true }, { "draugr.de", true }, { "draw.uy", true }, @@ -22892,6 +23701,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreadd.org", true }, { "dream-pools.cf", true }, { "dreamaholic.club", true }, + { "dreambolivia.com", true }, { "dreamboxpro.com", true }, { "dreamcrack.tk", true }, { "dreamcraft.su", true }, @@ -22900,9 +23710,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreamdestine.com", true }, { "dreamdivers.com", true }, { "dreamersgiftshopec.com", true }, + { "dreamhack.com", true }, { "dreamhostremixer.com", true }, { "dreamhouses.com", true }, { "dreaming.solutions", true }, + { "dreamingwolf.sk", true }, { "dreamlandmagic.com", true }, { "dreamlordpress.it", true }, { "dreamlux.cz", true }, @@ -22912,6 +23724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dreamof.net", false }, { "dreamrae.net", true }, { "dreamsforabetterworld.com.au", true }, + { "dreamsinbits.com", true }, { "dreamstream.nl", true }, { "dreamstream.tv", true }, { "dreamstream.video", true }, @@ -22954,6 +23767,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drewlearns.com", true }, { "drewsilcock.co.uk", true }, { "drewzar.com", true }, + { "drexelwood.com", true }, { "dreyfussplasticsurgery.com", true }, { "drezzy.it", true }, { "drfrey.ch", true }, @@ -22977,6 +23791,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "driftdude.nl", true }, { "driftingruby.com", true }, { "drighes.com", true }, + { "drikuansvarligt.dk", true }, { "drillingsupply.info", true }, { "drillingsupplystore.com", true }, { "drillion.net", true }, @@ -22986,18 +23801,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drinkgas-jihlava.cz", true }, { "drinkgo.vn", true }, { "drinkplanet.eu", true }, + { "drinkrebellious.com", true }, { "drino.org", false }, + { "driteksolutions.com", true }, { "driv.io", true }, { "drive.google.com", true }, { "drive.xyz", true }, + { "drivecrestwood.com", true }, + { "drivedannyherman.com", true }, + { "drivedavis.com", true }, + { "drivedmbowman.com", true }, { "driveexport.com", true }, - { "driven2shine.eu", true }, + { "driveforadtransport.com", true }, + { "drivemorganvanlines.com", true }, { "drivenes.net", true }, + { "driveoakleytransport.com", true }, + { "drivepaultransportation.com", true }, { "driver.ru", true }, { "drivercopilot.com", true }, { "driverless.id", true }, { "driverprofiler.co.uk", true }, { "driverscollection.com", true }, + { "drivestarfreight.com", true }, { "drivetonortheast.com", true }, { "driving-lessons.co.uk", true }, { "drivinghorror.com", true }, @@ -23010,7 +23835,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drjacquesmalan.com", true }, { "drjoe.ca", true }, { "drjosebarrera.com", true }, - { "drjuanitacollier.com", false }, { "drjulianneil.com", true }, { "drkhsh.at", false }, { "drkmtrx.xyz", true }, @@ -23028,20 +23852,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "droidandy.com", true }, { "droidapp.nl", true }, { "droidchart.com", true }, + { "droidee.com", true }, { "droidgyan.com", true }, { "droidhere.com", true }, { "droidwiki.de", true }, + { "dromax.hu", true }, { "dromotique.com", true }, { "drone-it.net", false }, { "dronebl.org", true }, { "droneland.nl", true }, { "dronepilotgeorgia.com", true }, { "dronepit.dk", true }, - { "dronesz.co", true }, { "droni.cz", true }, { "dronografia.es", true }, { "dronova-art.ru", true }, - { "droobedu.com", true }, { "droomhuis-in-zuid-holland-kopen.nl", true }, { "drop.com", true }, { "dropbox.com", true }, @@ -23077,9 +23901,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drsheri.com", true }, { "drsturgeonfreitas.com", true }, { "drsubbio.com", true }, + { "drszucs.hu", true }, { "drthalhammer.at", true }, { "drtimmarch.com", true }, { "drtimothybradley.com", true }, + { "drtimothysteel.com.au", true }, + { "drtimothysteeljournal.com", true }, + { "drtimothysteelnetwork.com", true }, + { "drtimothysteelresults.com", true }, + { "drtimothysteelscholarship.com.au", true }, + { "drtimothysteelvideos.com", true }, { "drtristanberry.com", true }, { "drtti.io", true }, { "druckerei-huesgen.de", true }, @@ -23091,18 +23922,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "drunkscifi.com", true }, { "drupal-expert.it", true }, { "drupal.org", true }, - { "drupalspb.org", true }, + { "drupalspb.org", false }, { "drusantia.net", true }, { "drusillas.co.uk", true }, { "druwe.net", false }, { "druznek.rocks", true }, { "druznek.xyz", true }, { "druzya.store", true }, + { "drvaidyas.com", true }, { "drvr.xyz", true }, { "drwang.group", true }, - { "drweinrach.com", true }, { "drweissbrot.net", true }, - { "drwxr.org", true }, { "drybjed.net", true }, { "drycleancoalition.org", true }, { "drycreekphoto.com", true }, @@ -23120,6 +23950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ds67.de", true }, { "ds915.com", true }, { "dsa.cy", true }, + { "dsaengineering.com", true }, { "dsancomics.com", true }, { "dsanraffleshangbai.xyz", true }, { "dsayce.com", true }, @@ -23128,14 +23959,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsbutler.de", true }, { "dscharrer.com", true }, { "dschwarzachtaler.de", true }, - { "dsdesign.lt", true }, { "dsds-ltd.com", false }, { "dsebastien.net", true }, { "dsektionen.se", false }, { "dsgarms.com", true }, { "dsgholsters.com", true }, { "dsgnet.hu", true }, - { "dsgvo-addon.eu", true }, { "dsgvo-analyse.de", true }, { "dsgvo.name", true }, { "dsh.io", true }, @@ -23144,6 +23973,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsimons.tk", true }, { "dsm5.com", true }, { "dsmjs.com", true }, + { "dsmnet.org", true }, { "dso-izlake.si", true }, { "dsol.hu", true }, { "dsouzamusic.com", true }, @@ -23152,12 +23982,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dsreal.de", true }, { "dstamou.de", true }, { "dsteiner.at", true }, - { "dstvinstallalberton.co.za", true }, - { "dstvinstallfourways.co.za", false }, - { "dstvinstallglenvista.co.za", true }, - { "dstvinstalljohannesburg.co.za", true }, { "dstvinstallkemptonpark.co.za", true }, - { "dstvinstallrandburg.co.za", true }, { "dstvsandton.co.za", true }, { "dstvsouthafrica.com", true }, { "dsuinnovation.com", true }, @@ -23183,6 +24008,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dtmbx.net", true }, { "dtmbx.nl", true }, { "dtmbx.org", true }, + { "dtmf.io", true }, { "dtmlnp.com", true }, { "dtngny.com", true }, { "dtnx.email", true }, @@ -23196,12 +24022,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dtune.me", true }, { "dtx.sk", true }, { "du-alex.ru", true }, + { "dualascent.com", true }, { "dualias.xyz", false }, { "duama.top", true }, { "duan.li", false }, { "duarteeleiteconsultoria.com.br", true }, - { "dub.cz", true }, { "dubai-company.ae", true }, + { "dubaire.com", true }, { "dubaizone.cf", true }, { "dubaosheng.com", true }, { "dubbingkursus.dk", true }, @@ -23211,6 +24038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duboisinternational.com", true }, { "duboisinvestissements.com", true }, { "dubrava.tk", true }, + { "dubridgeweb.be", true }, { "dubrovskiy.net", true }, { "dubrovskiy.pro", true }, { "dubstep.fr", true }, @@ -23230,6 +24058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duckeight.win", false }, { "duckfam.us", true }, { "duckinc.net", true }, + { "ducksify.com", true }, { "ducksoft.fi", true }, { "duckyubuntu.tk", true }, { "duct.me", true }, @@ -23260,12 +24089,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dukeandduchessdrivingschool.co.uk", true }, { "dukegat.de", false }, { "dukers-baelemans.nl", true }, - { "dukesatqueens.com", true }, { "dukun.de", true }, { "dulcinela.es", true }, { "dulei.si", true }, { "dullapp.com", true }, { "dum.moe", true }, + { "dumaurier.be", true }, { "dumax.xyz", true }, { "dumb-laws.net.ru", true }, { "dumbeartech.com", true }, @@ -23279,7 +24108,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duncanwinfrey.com", true }, { "duncm.com", true }, { "dundalkdonnie.com", true }, + { "dundeerecycling.ca", true }, { "dunesadventure.net", true }, + { "dungbui.net", true }, { "dungdev.net", true }, { "dungeon-bbs.de", true }, { "dungeoncity.com", true }, @@ -23290,6 +24121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "duo.com", true }, { "duobus.nl", true }, { "duoluodeyu.com", true }, + { "duonganhtuan.com", true }, { "duoquadragintien.fr", true }, { "duoyin.com", true }, { "dupisces.com.tw", true }, @@ -23318,19 +24150,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dushu.cat", true }, { "dusmomente.com", true }, { "dusnan.com", true }, + { "dust.bio", true }, { "dustandsand.com", false }, { "dustpla.net", true }, { "dustplanet.de", true }, { "dustri.org", true }, + { "dusty.gr", true }, { "dustycloth.com", true }, { "dustygroove.com", true }, { "dustyro.se", true }, { "dustyspokesbnb.ca", true }, { "dustywilson.com", true }, - { "dutabisniz.com", true }, + { "dutabisnis.com", true }, + { "dutabisniz.com", false }, { "dutch.desi", true }, { "dutch1.nl", true }, - { "dutchessuganda.com", true }, + { "dutchassistancedogs.nl", true }, { "dutchfoodie.nl", true }, { "dutchforkrunners.com", true }, { "dutchrank.nl", true }, @@ -23361,17 +24196,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dvorupotocnych.sk", true }, { "dvwc.org", true }, { "dvx.cloud", true }, - { "dw-loewe.de", true }, + { "dw-loewe.de", false }, { "dwarf.com.tw", true }, { "dwgf.xyz", true }, { "dwhd.org", true }, + { "dwhightmolina.com", true }, { "dwi-sued.de", true }, { "dwnld.me", true }, { "dwood.store", true }, { "dworzak.ch", true }, { "dwscdv3.com", true }, { "dwtm.ch", true }, - { "dwword.com", true }, { "dwworld.co.uk", true }, { "dwz-solutions.com", true }, { "dx-revision.com", true }, @@ -23394,7 +24229,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dyeager.org", true }, { "dyktig.as", true }, { "dyktig.no", true }, - { "dylancl.cf", true }, { "dylangattey.com", true }, { "dylankatz.com", true }, { "dylanknoll.ca", true }, @@ -23409,6 +24243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dym2013.com", true }, { "dym2014.com", true }, { "dym2017.com", true }, + { "dymdajce.ovh", true }, { "dymersion.com", true }, { "dymfbbs.com", true }, { "dymmovie.com", true }, @@ -23454,7 +24289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dyrenesverden.no", true }, { "dyrkar.com", true }, { "dyrstad.net", true }, - { "dyrvigs.de", true }, + { "dys-coaching.com", true }, { "dyscalculia-blog.com", true }, { "dysthymia.com", true }, { "dyxe.me", true }, @@ -23463,6 +24298,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dyz.pw", true }, { "dz6729.com", true }, { "dz6957.com", true }, + { "dz7337.com", true }, { "dzar.nsupdate.info", true }, { "dzeina.ch", false }, { "dzet.de", true }, @@ -23490,16 +24326,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "dzyabchenko.com", true }, { "dzyszla.pl", true }, { "dzytdl.com", true }, + { "e-account.by", true }, + { "e-bap.net", true }, { "e-baraxolka.ru", true }, { "e-beyond.de", true }, { "e-bikesdirect.co.uk", true }, { "e-biografias.net", true }, { "e-boekhouden.nl", true }, + { "e-bookshelf.de", true }, { "e-borneoshop.com", true }, { "e-briancon.com", true }, - { "e-businessexpert.com", true }, { "e-coexist.com", true }, - { "e-cogni.com.br", true }, + { "e-cogni.com.br", false }, { "e-colle.info", true }, { "e-diabolo.tk", true }, { "e-emploi.be", true }, @@ -23507,15 +24345,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-gemeinde.at", true }, { "e-id.ee", true }, { "e-klempir.cz", true }, - { "e-labo.works", true }, { "e-lambre.com", true }, { "e-learningbs.com", true }, { "e-lifetechnology.com", true }, + { "e-m1.com", true }, { "e-mak.eu", true }, { "e-mandataires.fr", true }, { "e-michiganinsurance.com", true }, { "e-migration.ch", true }, + { "e-motionagency.com", true }, { "e-nanum.kr", true }, + { "e-node.net", true }, { "e-privat.info", true }, { "e-ptn.com", true }, { "e-referendum.cz", true }, @@ -23523,6 +24363,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-standardstore.org", true }, { "e-surety.net", true }, { "e-sushi.net", true }, + { "e-sw.co.jp", true }, { "e-teachers.me", true }, { "e-tech-solution.com", true }, { "e-tech-solution.net", true }, @@ -23536,7 +24377,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e-typ.eu", true }, { "e-vau.de", false }, { "e-verify.gov", true }, - { "e-webos.com", true }, + { "e-webos.com", false }, { "e-wishlist.net", true }, { "e-worksmedia.com", false }, { "e.mail.ru", true }, @@ -23546,10 +24387,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e15r.co", true }, { "e2feed.com", true }, { "e30.ee", true }, + { "e30365.com", true }, { "e365.vip", true }, { "e36533.com", true }, { "e36594.com", true }, { "e3q.de", true }, + { "e4.chat", true }, { "e5197.co", true }, { "e52888.com", true }, { "e52888.net", true }, @@ -23563,24 +24406,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "e6e.io", true }, { "e7035.com", true }, { "e7180.com", true }, - { "e7d.io", true }, + { "e7d.io", false }, { "e7fun.net", true }, { "e81365.com", true }, - { "e81818.com", true }, { "e82365.com", true }, { "e899365.com", true }, { "e901.com", true }, { "e9297.co", true }, + { "e9582.com", true }, { "e965.ru", true }, + { "e9721.com", false }, { "e9728.co", true }, { "ea-lateleassistance.com", true }, { "ea2drocks.com", true }, - { "eac.gov", true }, { "eacero.com", true }, { "ead-italia.it", true }, { "eagar.com.au", true }, { "eagle-yard.de", true }, - { "eagle.net", true }, { "eagleindustriesltd.com", true }, { "eaglemessaging.com", true }, { "eaglemoe.com", true }, @@ -23593,7 +24435,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eaimty.com", true }, { "ealadel.com", true }, { "ealev.de", true }, - { "eallion.com", true }, + { "eallion.com", false }, { "eames-clayton.us", true }, { "eapestudioweb.com", true }, { "earfolds.com", true }, @@ -23609,12 +24451,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "earningthatis.tk", true }, { "earth-people.org", true }, { "earthava.com", true }, + { "earthcharter.nl", true }, { "earthcorporation.cf", true }, + { "earthdevelopers.co.in", true }, { "earthsolidarity.org", true }, { "earthspundesigns.com", true }, { "earthsystemprediction.gov", true }, { "earticleblog.com", true }, - { "easelforart.com", true }, { "easew.com", true }, { "easez.net", true }, { "eashwar.com", true }, @@ -23624,9 +24467,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eastbaycontractor.com", true }, { "eastblue.org", true }, { "eastcoastbubbleandbounce.co.uk", true }, - { "easterncapebirding.co.za", true }, { "eastlothianbouncycastles.co.uk", true }, - { "eastmaintech.com", true }, { "eastmanbusinessinstitute.com", true }, { "eastmidlandsstargazers.org.uk", true }, { "eastnorschool.co.uk", true }, @@ -23651,7 +24492,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easycredit.se", true }, { "easydumpsterrental.com", true }, { "easyeditcms.com", true }, - { "easyeigo.com", true }, { "easyenrollment.net", true }, { "easyfiles.ch", true }, { "easyfiles.gq", true }, @@ -23660,11 +24500,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "easymotionskin-japan.jp", true }, { "easymun.com", true }, { "easynm.cn", true }, + { "easyocm.hu", true }, { "easypay.bg", true }, { "easypaymentnow.com", true }, { "easypayments.pro", true }, - { "easypets.fr", true }, - { "easyproperty.com", true }, + { "easypets.fr", false }, { "easypv.ch", true }, { "easyqr.codes", true }, { "easyreal.ru", true }, @@ -23714,6 +24554,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ebertlang.com", true }, { "eberwe.in", true }, { "ebest.co.jp", true }, + { "ebill.pl", true }, { "ebiografia.com", true }, { "ebiografias.com.br", true }, { "ebisi.be", true }, @@ -23760,7 +24601,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echarlascartas.es", true }, { "echi.pw", true }, { "echidna-rocktools.eu", true }, + { "echinus.solutions", true }, { "echo-in.info", true }, + { "echo-n.nz", true }, { "echo-security.co", true }, { "echo.cc", true }, { "echo.co.uk", true }, @@ -23778,11 +24621,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "echosixmonkey.com", true }, { "echosnature.fr", true }, { "echosystem.fr", true }, + { "echotango.fr", true }, { "echoworld.ch", false }, { "echternach-immobilien.de", true }, { "echtes-hutzelbrot.de", true }, - { "echtgeld-casino.com", false }, - { "echtgeld-casinos.de", true }, + { "echtgeld-casino.com", true }, { "ecigfind.com", true }, { "ecir.pro", true }, { "ecir.ru", true }, @@ -23818,6 +24661,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecodigital.social", true }, { "ecofabrica.com.br", true }, { "ecofac-bs.com", true }, + { "ecoformeurope.com", true }, { "ecogen.com.au", true }, { "ecogen.net.au", true }, { "ecoheatcool.co.uk", true }, @@ -23827,10 +24671,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecole-iaf.fr", true }, { "ecoledusabbat.org", false }, { "ecolemathurincordier.com", false }, + { "ecologica.it", true }, { "ecologikashop.com", true }, { "ecology-21.ru", false }, { "ecombustibil.ro", true }, { "ecomia.dk", true }, + { "ecomonline.ru", true }, { "ecompen.co.za", true }, { "ecomycie.com", true }, { "econativa.pt", true }, @@ -23856,7 +24702,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecostruxureit.com", true }, { "ecosystem.atlassian.net", true }, { "ecosystemmanager-uat1.azurewebsites.net", true }, - { "ecoterramedia.com", true }, { "ecotransfer.bio", true }, { "ecotur.org", true }, { "ecovision.com.br", true }, @@ -23872,17 +24717,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ecsupplyinc.com", true }, { "ectora.com", true }, { "ecuadorbienesraices.com", true }, + { "ecuadorextremo.com", true }, { "ecuatask.com", true }, { "ecuteam.com", true }, { "ecxforum.com", true }, { "ed-studios.tk", true }, { "ed.gs", true }, + { "edailystar.com", true }, { "edanni.io", true }, { "edapt.org.uk", true }, { "edas.info", false }, { "edcaptain.com", true }, { "edd-miles.com", true }, { "eddesign.ch", true }, + { "eddie.website", true }, { "eddmil.es", true }, { "eddokloosterman.com", true }, { "eddy-vh.com", true }, @@ -23901,10 +24749,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eden.co.uk", true }, { "edenmal.net", true }, { "edenming.info", true }, - { "edenvalerubbleremovals.co.za", false }, + { "edenvalerubbleremovals.co.za", true }, { "edesseglabor.hu", true }, { "edfinancial.com", true }, { "edgarz.tk", true }, + { "edge-cloud.net", false }, { "edgecustomersportal.com", true }, { "edgedynasty.com", true }, { "edgefantasy.com", true }, @@ -23917,7 +24766,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edi-gate.de", true }, { "edibarcode.com", true }, { "edicct.com", true }, - { "edify.space", true }, + { "edify.space", false }, { "edilane.com", true }, { "edilane.de", true }, { "edilservizi.it", true }, @@ -23939,6 +24788,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edition-sonblom.de", true }, { "editionsnoiretrouge.com", true }, { "editoraacademiacrista.com.br", true }, + { "editorakanope.com.br", true }, { "edlinger.at", true }, { "edlinger.mobi", true }, { "edlinus.cn", true }, @@ -23983,13 +24833,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "edugundavetiyesi.com", true }, { "eduif.nl", false }, { "edukador.com", true }, - { "edumundo.nl", true }, + { "edumaster.pro", true }, { "edunet.gq", true }, { "edupool.in", true }, { "eduroam.no", true }, { "eduroam.uy", true }, { "edusanjal.com", true }, - { "eduschedule.org", true }, { "edusercontent.com", true }, { "eduvpn.no", true }, { "edv-kohls.de", true }, @@ -24038,6 +24887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ee973.com", true }, { "eeb98.com", true }, { "eebt.hu", true }, + { "eeeeeeeeee.de", true }, { "eeetrust.org", true }, { "eelcapone.nl", true }, { "eellak.gr", true }, @@ -24061,6 +24911,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "efaas.nl", true }, { "efag.com", true }, { "efcross.com", true }, + { "eff-bee-eye.de", true }, { "eff.org", true }, { "effdocs.com", true }, { "effe.ch", false }, @@ -24089,6 +24940,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eflorashop.us", true }, { "efmcredentialing.org", true }, { "efoood.org", true }, + { "efp.nl", true }, { "efreet.xyz", true }, { "eft.boutique", true }, { "eftcorp.biz", false }, @@ -24103,6 +24955,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eges.eu", true }, { "egg-ortho.ch", true }, { "eggblast.com", true }, + { "eggendorfer.at", true }, + { "eggendorfer.be", true }, + { "eggendorfer.biz", true }, + { "eggendorfer.ch", true }, + { "eggendorfer.co.uk", true }, + { "eggendorfer.de", true }, + { "eggendorfer.info", true }, + { "eggendorfer.it", true }, + { "eggendorfer.li", true }, + { "eggendorfer.name", true }, + { "eggendorfer.net", true }, + { "eggendorfer.online", true }, + { "eggendorfer.org", true }, + { "eggendorfer.pro", true }, + { "eggendorfer.rocks", true }, + { "eggendorfer.tv", true }, + { "eggendorfer.uk", true }, + { "eggendorfer.us", true }, + { "eggendorfer.wine", true }, { "eggert.org", false }, { "egglestonyouthcenter.org", true }, { "eggplant.today", true }, @@ -24121,6 +24992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "egretail.no", false }, { "egrojsoft.info", true }, { "egrp365.ru", true }, + { "egsl.pro", true }, { "egw-ceramica.de", true }, { "egweb.tv", true }, { "ehaccp.it", true }, @@ -24128,6 +25000,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ehb-sec-ward.be", true }, { "ehbsecuritydavy.be", true }, { "ehbssl.com", true }, + { "ehealth.gov.au", true }, { "eheliche-disziplin.schule", true }, { "ehertz.uk", true }, { "ehipaa.com", true }, @@ -24145,8 +25018,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ehub.pl", true }, { "ehub.sk", true }, { "ehuber.info", true }, + { "ei-bo.org", true }, { "eiao.me", true }, { "eichel.eu", true }, + { "eichinger-stelzl.com", true }, { "eichinger-stelzl.de", true }, { "eichler.work", true }, { "eichornenterprises.com", true }, @@ -24187,7 +25062,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "einsteincapital.ca", true }, { "einsurancetraining.com", true }, { "eintageinzug.de", true }, - { "eintragsservice24.de", true }, { "eion.io", true }, { "eioperator.com", false }, { "eipione.com", true }, @@ -24204,6 +25078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eiti.online", true }, { "eiyoushi-shigoto.com", true }, { "ej.uz", true }, + { "ejderrapgott.de", true }, { "ejdv-anmeldung.de", true }, { "ejelectrical-qld.com.au", true }, { "ejkhosting.nl", true }, @@ -24228,6 +25103,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eklitzke.org", true }, { "ekobudisantoso.net", true }, { "ekocleaningllc.com", true }, + { "ekogroszekpieklo.pl", true }, { "ekokontakt.cz", true }, { "ekole.shop", true }, { "ekonbenefits.com", true }, @@ -24253,10 +25129,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eladlak-ingatlan.com", true }, { "eladvardi.co.il", true }, { "elagplus.com", true }, + { "elaheze.com", false }, { "elainerock.com", true }, { "elainesearer.com", true }, { "elaon.de", true }, + { "elarmariodelucia.com", true }, { "elars.de", true }, + { "elartedelapaz.org", true }, { "elarvee.xyz", true }, { "elasticshift.com", true }, { "elaxy-online.de", true }, @@ -24276,6 +25155,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elderjustice.gov", true }, { "eldertons.co.uk", true }, { "eldevo.com", true }, + { "eldietista.es", true }, { "eldisagjapi.de", true }, { "eldoradocylinders.com", true }, { "eldrid.ge", true }, @@ -24336,10 +25216,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electricgatemotorsroodepoort.co.za", true }, { "electricgatemotorsumhlanga.co.za", true }, { "electrichiddenhills.com", true }, - { "electrichome.fr", true }, + { "electrichome.fr", false }, { "electrician-umhlangaridge.co.za", true }, { "electricianagoura.com", true }, { "electricianagourahills.com", true }, + { "electricianbedfordview.co.za", true }, { "electriciancalabasas.com", true }, { "electriciancamarillo.com", true }, { "electricianconejovalley.com", true }, @@ -24366,7 +25247,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electricsimivalley.com", true }, { "electricthousandoaks.com", true }, { "electricwestlakevillage.com", true }, - { "electro-pak.com.pk", true }, { "electrocardiographe.net", true }, { "electrocomplect.com.ua", true }, { "electroforum.tk", true }, @@ -24378,6 +25258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "electronicfasteners.com", false }, { "electronicssrit.tk", true }, { "electroniko.cf", true }, + { "electrosoftcloud.com", true }, { "electrostatics.com", true }, { "electrotainment.com", true }, { "electroworld.cz", true }, @@ -24390,6 +25271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eleicoes2016.com.br", true }, { "eleicoes2018.com", true }, { "elejordemarketingconsultancy.com", true }, + { "eleken.jp", true }, { "elekharris.com", true }, { "elektrische-zahnbuerste24.de", true }, { "elektro-adam.de", true }, @@ -24435,9 +25317,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elenatranslations.nl", true }, { "elenorsmadness.org", true }, { "elenta.lt", true }, + { "eleonorengland.com", true }, { "elephantia.cf", true }, { "elephants.net", true }, - { "elephpant.cz", true }, { "elepover.com", true }, { "eletesstilus.hu", true }, { "eletminosegert.ro", true }, @@ -24446,8 +25328,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eletrochape.com.br", true }, { "elettricista-roma.it", true }, { "elettricista-roma.org", true }, + { "elettricista.roma.it", true }, { "elettricisti.roma.it", true }, { "elettrodomestici.roma.it", true }, + { "elettrolinkimpianti.it", true }, { "eleusis-zur-verschwiegenheit.de", true }, { "elevateandprosper.com", true }, { "elevationcreative.net", true }, @@ -24461,6 +25345,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elfnon.com", true }, { "elforno.gr", true }, { "elfring.eu", true }, + { "elfuerteclamor.org", true }, { "elfussports.com", true }, { "elgalponazo.com.ar", true }, { "elgenero.com", true }, @@ -24474,8 +25359,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elherraderoloscabos.com", true }, { "elhorizontal.com", true }, { "elhossari.com", true }, - { "elia.cloud", true }, - { "elian-art.de", true }, { "eliaskordelakos.com", true }, { "eliasong.com", true }, { "eliav.tk", true }, @@ -24513,10 +25396,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elite12.de", true }, { "elitebasementsohio.com", true }, { "elitebike.com.co", true }, - { "elitebouncingfun.com", true }, { "elitedns.info", true }, { "elitegameservers.net", true }, { "elitel.nl", true }, + { "elitelatinas.com", true }, { "elitepainmanagement.com", true }, { "elitsa.gr", true }, { "elixi.re", true }, @@ -24533,19 +25416,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ella-kwikmed.com", false }, { "ellak.gr", true }, { "ellatotal.com", true }, + { "ellbusiness.com", true }, { "elldus.de", true }, { "elle-weine.de", true }, { "ellegaard.dk", true }, { "ellemental.me", true }, { "ellencorddry.com", true }, { "ellevit.ch", false }, + { "ellhofen-peccioli.de", true }, { "elliot.cat", true }, { "elliquiy.com", true }, { "ellisamusements.co.uk", true }, { "ellisleisure.co.uk", true }, { "ellsinger.me", true }, + { "elmahost.net", true }, { "elmarchive.ir", true }, { "elmermx.ch", true }, + { "elmot24.pl", true }, { "elmresan.ir", true }, { "elnan.do", true }, { "elo-forum.org", true }, @@ -24569,12 +25456,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elpoderdelespiritu.org", true }, { "elprint.com", true }, { "elradix.be", true }, + { "elradix.eu", true }, { "elranchofeliz.org", true }, { "elri.blog", true }, { "elriacdn.com", true }, { "elrinconderovica.com", true }, { "elsagradocoran.org", true }, - { "elsanoguera.com", true }, + { "elsentech.com", true }, { "elshou.com", true }, { "elsignificadodesonar.com", true }, { "elskling.no", true }, @@ -24600,8 +25488,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "elvispresley.net", true }, { "elvn.tokyo", false }, { "elwave.org", true }, - { "elwebkala.com", true }, { "elwix.com", true }, + { "ely.moe", true }, { "elyasweb.com", true }, { "elycoin.io", true }, { "elysiandigital.co", true }, @@ -24613,6 +25501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emaging-productions.fr", true }, { "emaging.fr", true }, { "email-pipeline.xyz", true }, + { "email.repair", true }, { "emailalaperformance.fr", true }, { "emailconfiguration.com", true }, { "emailhunter.co", true }, @@ -24622,6 +25511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emailtemporal.org", true }, { "emailtools.io", true }, { "emaily.eu", true }, + { "emalm.com", true }, { "emalm.ml", true }, { "emanol.co.uk", true }, { "emanuel.photography", true }, @@ -24632,11 +25522,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emasex.es", true }, { "emavok.eu", true }, { "embassycargo.eu", true }, + { "embebelo.com", true }, { "embellir-aroma.com", true }, { "embellir-kyujin.com", true }, { "emberlife.com", true }, { "embodiaacademy.com", true }, { "embodiaapp.com", true }, + { "embonus.dk", true }, { "embox.net", true }, { "embracecontext.com", true }, { "embraceni.org", true }, @@ -24644,6 +25536,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "embroideryexpress.co.uk", true }, { "embsaypreschool.co.uk", true }, { "emby.cloud", true }, + { "emby.live", true }, { "emcentrix-com-site-mvc.azurewebsites.net", true }, { "emcspotlight.com", true }, { "emdrupholm.dk", true }, @@ -24656,8 +25549,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emeraldcoasturgentcare.com", true }, { "emeraldislerealty.com", true }, { "emergency-federal-register.gov", true }, + { "emergencycommand.us", true }, { "emergencyshutoff.com", true }, { "emergesydney.com.au", true }, + { "emero.de", true }, { "emersoncanada.ca", true }, { "emex.ro", true }, { "emi.im", true }, @@ -24671,7 +25566,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emilecourriel.com", true }, { "emiliendevos.be", true }, { "emilio.media", true }, - { "emiliobonelli.de", true }, { "emiliops.com", true }, { "emilong.com", true }, { "emilreimann.de", true }, @@ -24697,6 +25591,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emmagarland.com", true }, { "emmagraystore.com", true }, { "emmaliddell.com", true }, + { "emmamillernovels.com", true }, { "emmanuelle-et-julien.ch", true }, { "emmastree.com", true }, { "emme3abbigliamento.it", true }, @@ -24724,7 +25619,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emperor.blog", true }, { "empese.com", true }, { "empherino.net", true }, - { "empicargo.com", true }, { "empire-univ.com", true }, { "empire24.co", true }, { "empireauto-2000.com", true }, @@ -24734,15 +25628,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "employer.gov", true }, { "employer.guru", true }, { "employer411.com", true }, + { "employerlawresource.com", true }, { "employment-applicant.com", true }, { "emporikonathenshotel.com", true }, { "emporioviverbem.com.br", false }, { "empower.net", true }, + { "empoweraces.com", true }, { "empowerdb.com", true }, - { "empoweren.com", true }, + { "empoweren.com", false }, + { "empowersimcoe.ca", true }, { "emprechtinger.com", true }, { "emprego.pt", true }, { "empregosrj.com", true }, + { "empreinte.ca", true }, { "emprendeconchrisfx.com", true }, { "emprendeperuano.com", true }, { "empresasguia.es", true }, @@ -24755,6 +25653,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "emrullahsahin.com", true }, { "ems.gov", true }, { "emsa-casm.ca", true }, + { "emsliespharmacy.com.au", true }, { "emtradingacademy.com", true }, { "emulator.ml", true }, { "emulovers.com", true }, @@ -24781,11 +25680,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encd.life", true }, { "encfs.win", true }, { "encircleapp.com", true }, - { "encnet.de", true }, { "encode.host", true }, { "encodecloud.net", true }, { "encoderx.uk", true }, { "encontra-me.org", true }, + { "encontroespiritadeinverno.com.br", true }, { "encore.io", false }, { "encoro.org", true }, { "encountercss.com", true }, @@ -24794,7 +25693,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encredible.org", false }, { "encretplomb.ch", false }, { "encrypt.org.uk", true }, - { "encryptallthethings.net", true }, { "encrypted.google.com", true }, { "encryptedaudience.com", true }, { "encryptmy.site", true }, @@ -24802,7 +25700,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "encryptmysite.net", true }, { "encuentraprecios.es", true }, { "encycarpedia.com", true }, - { "encyclopedia-titanica.org", true }, { "endangeredwatch.com", true }, { "endbox.email", true }, { "ende-x.com", true }, @@ -24839,9 +25736,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "energy-drink-magazin.de", true }, { "energy-healings.com", true }, { "energy-in-balance.eu", true }, - { "energy-infra.nl", true }, { "energy-initiative.com", true }, { "energy-robotics.com", true }, + { "energy.gov", true }, { "energyatlas.com", true }, { "energyaupair.se", true }, { "energybank.com.br", true }, @@ -24872,23 +25769,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engaugetools.com", true }, { "engelke-optik.de", false }, { "engelmann.com", false }, + { "engelsholm.dk", true }, { "engelundlicht.ch", true }, { "engelwerbung.com", true }, { "engg.ca", true }, + { "engi.fyi", true }, { "engie-laadpalen.nl", true }, { "engiedev.net", true }, { "engima.nl", true }, + { "engineeringbigdata.com", true }, { "enginepit.com", true }, { "enginsight.com", true }, { "enginx.cn", true }, { "enginx.net", true }, + { "engione.com", true }, { "engl-server.de", true }, { "engl-systems.de", true }, + { "englandbeach.com", true }, { "englandschool.tk", true }, { "englishbulgaria.net", true }, { "englishcast.com.br", true }, { "englishdirectory.de", true }, - { "englishforums.com", true }, + { "englishliterature.net", true }, { "englishlol.com", true }, { "englishphonopass.com", true }, { "englishstudio.com", true }, @@ -24899,9 +25801,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "engweld.co.uk", true }, { "engym.com.tw", true }, { "enigma.swiss", false }, + { "enigmadark.com", true }, { "enigmadjradio.com", true }, { "enijew.com", true }, { "enitso.de", true }, + { "enity.tk", true }, { "enixgaming.com", true }, { "eniziolab.com", true }, { "enjin.io", true }, @@ -24966,15 +25870,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "entersynapse.com", true }, { "entertainmentblog.tk", true }, { "entertainmentformitzvahs.com", true }, + { "enthasso.gr", true }, { "entheogens.com", true }, { "entheorie.net", true }, { "enthusiaformazione.com", true }, + { "entorangecounty.com", true }, { "entradaweb.cl", true }, { "entrainr.com", true }, { "entrecieletpierres.com", false }, { "entrezdansladanse.fr", true }, { "entropia.de", false }, { "entropy.su", true }, + { "entrup.io", true }, { "entrusted.io", true }, { "entryboss.cc", true }, { "entrypoint.sh", true }, @@ -25020,6 +25927,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eosol.net", true }, { "eosol.services", true }, { "eosolutions.co", true }, + { "eoy.cz", true }, { "ep-cortex.com", true }, { "ep-plus.jp", true }, { "epa.com.es", true }, @@ -25033,6 +25941,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epaygateway.net", true }, { "epcreport.net", true }, { "epdeveloperchallenge.com", true }, + { "eperniagaan.com", true }, { "ephesusbreeze.com", true }, { "epi-lichtblick.de", true }, { "epi.one", false }, @@ -25112,7 +26021,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "epreskripce.cz", true }, { "eprezto.com", true }, { "eprojectfreetv.com", true }, - { "epsilon.dk", true }, + { "epsi.io", true }, + { "epsilon.photography", true }, { "epsmil.it", true }, { "epspolymer.com", true }, { "epublibre.org", true }, @@ -25121,7 +26031,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eq-serve.com", true }, { "eqassociates.com", true }, { "eqibank.com", true }, - { "eqiware.com", true }, { "eqorg.com", true }, { "equabanking.cz", true }, { "equalcloud.com", true }, @@ -25164,12 +26073,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erevan-news.tk", true }, { "erf-neuilly.com", true }, { "erfolgsmaschine.ch", true }, + { "ergaomnes.cz", true }, { "ergo-open.de", true }, { "ergobyte.eu", true }, { "ergobyte.gr", true }, { "ergodark.com", true }, { "ergonova.fr", true }, { "ergoterapeutas.lt", true }, + { "ergowish.com", true }, { "eriador.io", true }, { "ericabrahamsen.net", true }, { "ericairwin.com", true }, @@ -25187,6 +26098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erics.site", true }, { "ericsilva.org", true }, { "ericspeidel.de", true }, + { "erictgilmour.ca", true }, { "ericvaughn-flam.com", true }, { "eridanus.uk", true }, { "eridas.ml", true }, @@ -25226,7 +26138,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eromon.net", true }, { "eron.info", true }, { "eropics.org", true }, - { "eroticdinners.com", true }, { "eroticlist.com", true }, { "erp-band.ru", true }, { "erp.band", true }, @@ -25234,7 +26145,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erpband.ru", true }, { "erpcargo.com", false }, { "erpelstolz.at", true }, - { "erperium.com", true }, { "erperium.nl", true }, { "erpiv.com", true }, { "errietta.me", true }, @@ -25253,7 +26163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ert.ovh", true }, { "erty.stream", true }, { "eru.im", false }, - { "eru.me", true }, + { "eru.me", false }, { "eru.moe", true }, { "erudicia.com", true }, { "erudicia.de", true }, @@ -25264,14 +26174,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "erudicia.se", true }, { "erudicia.uk", true }, { "erudikum.cz", true }, - { "eruga.es", true }, + { "eruga.es", false }, { "ervaarjapan.nl", true }, { "ervinthagod.xyz", true }, { "erwanlepape.com", true }, { "erwin.saarland", true }, { "erwinpaal.nl", true }, { "erwinschmaeh.ch", true }, - { "erwinvanlonden.net", true }, { "erwinwensveen.nl", true }, { "erythroxylum-coca.com", true }, { "es-geenen.de", true }, @@ -25361,7 +26270,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esba11.cc", true }, { "esba11.com", true }, { "esba11.net", true }, - { "esba11.us", true }, { "esball-in.com", true }, { "esball-in.net", true }, { "esball.bz", true }, @@ -25395,10 +26303,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esc.gov", true }, { "escael.org", true }, { "escalesensorielle.com", true }, - { "escandille.com", true }, - { "escapeforyou.com", true }, + { "escandille.com", false }, { "escapeplaza.de", true }, - { "escaperoomdoctor.com", true }, { "escaperoompsl.com", true }, { "escaperoomsolutions.com", true }, { "escapetalk.nl", true }, @@ -25425,7 +26331,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "escortsforu.com", true }, { "escortslittleblackbook.com", true }, { "escovator-records.tk", true }, - { "escritamusical.com.br", true }, { "escritoriodearte.com", false }, { "escuelabiblica.com", true }, { "escueladego.tk", true }, @@ -25433,12 +26338,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esdacademy.eu", false }, { "esdenera.com", true }, { "esdiscuss.org", true }, - { "esdvfootloose.nl", true }, { "eseances.ch", true }, { "esehospitalsabanagrande.com", true }, { "eservices-greece.com", true }, { "eseth.de", true }, - { "esfahanahan.com", true }, { "esfiledecrypter.com", true }, { "esg-abi2001.de", true }, { "esgen.org", true }, @@ -25456,10 +26359,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "esite.ch", true }, { "eskapi.fr", true }, { "eskdale.net", true }, + { "eskiegaming.com", true }, { "eskriett.com", false }, { "eslint.org", false }, { "esmart.ru", true }, { "esmejor.tk", true }, + { "esmibot.com", true }, { "esmincg2t1.com", true }, { "esmoney.cc", true }, { "esmoney.me", true }, @@ -25494,9 +26399,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "espigol.org", true }, { "espiragen.com", true }, { "espiritugay.com", true }, + { "espirituracer.com", true }, { "esport-agency.fr", true }, - { "esport-battlefield.com", true }, - { "esports-network.de", true }, { "espower.com.sg", true }, { "espritrait.com", false }, { "espyder.net", true }, @@ -25522,13 +26426,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "essayscam.org", false }, { "essayshark.com", true }, { "essaytalk.com", true }, - { "essaywriting.biz", true }, { "essenalablog.de", true }, { "essencespresso.es", true }, { "essenerbaeder.de", true }, { "essential12.com", true }, { "essentialoilsimports.com", true }, { "essentiel-physique.com", true }, + { "essentta.com", true }, { "esseriumani.com", true }, { "essex.cc", true }, { "essexcosmeticdentists.co.uk", false }, @@ -25540,6 +26444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "essteebee.ch", false }, { "est-it.de", true }, { "est-keyman.de", true }, + { "est8.ai", true }, { "establo.pro", true }, { "estada.ch", true }, { "estadoreclamos.com", true }, @@ -25548,6 +26453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estahl.dk", true }, { "estaleiro.org", true }, { "estalinas.com", true }, + { "estallidodigital.cl", true }, { "estan.cn", true }, { "estate360.co.tz", true }, { "estateczech-eu.ru", true }, @@ -25564,6 +26470,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estetista.net", true }, { "esthe-zukan.com", true }, { "estherlew.is", true }, + { "esthernariyoshi.com", true }, { "estimulantesbrasil.com", true }, { "estintori.roma.it", true }, { "estoic.net", true }, @@ -25573,11 +26480,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "estoqueinformatica.com.br", true }, { "estraks.com", true }, { "estrietoit.com", false }, + { "estrogenfor.me", true }, { "estudiaenrusia.com", true }, { "estudiarparaser.com", true }, { "estudiaryaprenderingles.com", true }, { "estudio21pattern.com", false }, + { "estudioaguiar.com.br", true }, { "estudiogarcia-rada.com", true }, + { "estudosnacionais.com", true }, { "estufitas.com", true }, { "esu.moe", true }, { "esu.wiki", true }, @@ -25603,6 +26513,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etath.com", true }, { "etax.com.au", true }, { "etaxigraz.com", true }, + { "etaxintuit.com", true }, { "etccooperative.org", true }, { "etch.co", true }, { "etda.or.th", true }, @@ -25622,11 +26533,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eternalparking.org", true }, { "eternalsymbols.com", true }, { "eternit.roma.it", true }, + { "etf.nu", true }, { "etfacta.com", true }, - { "eth0.nl", true }, + { "eth-services.de", true }, + { "eth0.nl", false }, { "eth1.fi", true }, { "etha.nz", true }, - { "ethack.org", true }, { "ethaligan.fr", true }, { "ethan.pm", true }, { "ethanchin.com", false }, @@ -25640,8 +26552,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etherderbies.com", true }, { "etherium.org", true }, { "etherpad.nl", true }, + { "ethers.news", true }, { "ethicalconsumer.org", true }, { "ethicaldata.co.uk", true }, + { "ethicalescorts.com", true }, { "ethicallogistics.com", true }, { "ethicalpolitics.org", true }, { "ethicaltek.com", true }, @@ -25659,6 +26573,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "etincelle.ml", true }, { "etiquetaunica.com.br", true }, { "etkaddict.com", true }, + { "etkarle.de", true }, { "etna.com.br", true }, { "etni-cidade.net", true }, { "etnis.id", true }, @@ -25691,8 +26606,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "euc.world", true }, { "euchre.us", true }, { "eucollegetours.com", true }, + { "eudore.org", true }, { "euexia.fr", true }, - { "eugenekay.com", true }, { "eugenetech.org", true }, { "eugeniocorso.com", true }, { "eujuicers.bg", true }, @@ -25726,6 +26641,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eureka.archi", true }, { "eurekaarchi.com", true }, { "eurekaarchitecture.com", true }, + { "eurmarketing.com", true }, { "euro-construction.co.uk", true }, { "euro-servers.de", true }, { "euroalter.com", true }, @@ -25743,6 +26659,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eurogarden-parts.de", true }, { "eurogarden.be", true }, { "eurogarden.nl", true }, + { "euroherp.com", true }, { "eurolocarno.es", true }, { "euroman.ga", true }, { "euronic.fi", true }, @@ -25763,6 +26680,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "europeanpreppers.com", true }, { "europeanstudies-chemnitz.de", true }, { "europeantimberconnectors.ca", true }, + { "europeantransportmanagement.com", true }, { "europeanwineresource.com", true }, { "europeos.es", true }, { "europetravelservice.co.uk", true }, @@ -25780,6 +26698,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eurousa.us", true }, { "eurovision.ie", true }, { "eurowaage.de", true }, + { "eurseo.com", true }, { "eusarse.tk", true }, { "eusolar.cloud", true }, { "euterpiaradio.ch", true }, @@ -25788,11 +26707,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "euvo.tk", false }, { "euwid-energie.de", true }, { "euwid.de", true }, + { "ev-menden-meindorf.de", true }, { "ev-menden.de", true }, { "ev-zertifikate.de", true }, { "eva-briegel-fanpage.tk", true }, { "eva-select.com", true }, { "eva.cz", true }, + { "eva42.com", true }, { "evaalordiah.tk", true }, { "evadental.institute", true }, { "evafojtova.cz", true }, @@ -25804,6 +26725,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evamathil.de", true }, { "evamira.com", true }, { "evanfiddes.com", true }, + { "evange.co.jp", true }, { "evangelicalmagazine.com", true }, { "evangelosm.com", true }, { "evanreev.es", true }, @@ -25856,6 +26778,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "everberg.tk", true }, { "everettsautorepair.com", true }, { "everfine.com.tw", true }, + { "evergarden.cn", true }, { "evergladesrestoration.gov", true }, { "everglow.co.jp", true }, { "everglowtrading.com", true }, @@ -25878,11 +26801,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "everydaygary.com", true }, { "everydaylatestnews.com", true }, { "everydayrituals.ca", true }, + { "everydaytherich.com", true }, { "everydaywot.com", true }, { "everyex.com", true }, { "everyfad.com", true }, { "everykidoutdoors.gov", true }, { "everymove.org", true }, + { "everysync.co.jp", true }, { "everything-everywhere.com", true }, { "everythingaccess.com", true }, { "everythingstech.com", true }, @@ -25913,20 +26838,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evlann.com", false }, { "evlear.com", true }, { "evlorin.com", true }, - { "evlqa1sp1tzb05zo-reoo0vhj9a1t5pousfudnkg.com", true }, + { "evlqa1sp1tzb05zo-reoo0vhj9a1t5pousfudnkg.com", false }, { "evnt.team", true }, { "evntage.com", true }, + { "evobox.store", true }, { "evoco.vc", true }, { "evodation.com", true }, { "evodation.org", true }, - { "evodia-spirits.de", true }, { "evohomecare.com", true }, { "evok.com.co", false }, { "evokepk.com", true }, + { "evokewonder.com", true }, + { "evoludis.net", true }, { "evolutionbiote.com", true }, { "evolutioninflatables.co.uk", true }, { "evolutionlending.co.uk", true }, { "evolutionpets.com", true }, + { "evolvedevlabs.de", true }, { "evolvetechnologies.co.uk", true }, { "evolvicity.org", true }, { "evolvingsouls.com", true }, @@ -25938,7 +26866,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evote-ch.ch", true }, { "evotec.pl", true }, { "evotec.xyz", true }, - { "evoting-test.ch", false }, + { "evoting-test.ch", true }, { "evoting.ch", true }, { "evowrap.co.uk", true }, { "evpro.lt", true }, @@ -25953,6 +26881,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "evthing.se", true }, { "evtripping.com", true }, { "evtscan.io", true }, + { "evxp.it", true }, { "evyn.eu", true }, { "ewa-hayward.co.uk", true }, { "ewaf.club", true }, @@ -25960,10 +26889,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ewanm89.co.uk", true }, { "ewanm89.com", true }, { "ewanm89.uk", true }, + { "ewanto.de", true }, { "ewar.lt", false }, { "ewc.co.jp", true }, { "ewcd.co.jp", true }, { "ewe2.ninja", true }, + { "ewesparky.com", true }, { "ewhitehat.com", true }, { "ewie.name", true }, { "ewinstore.com", true }, @@ -25984,7 +26915,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exagoni.com.my", true }, { "exaktus.pt", true }, { "examedge.com", true }, - { "examenpilotos.com", false }, { "examika.ru", true }, { "example.eu.org", true }, { "exampleessays.com", true }, @@ -26012,7 +26942,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exceltobarcode.com", true }, { "excentos.com", true }, { "exceptionalbits.com", true }, - { "exceptionalservers.com", true }, { "exceptionalservices.us", true }, { "excerp.tech", true }, { "excess-baggage.com", true }, @@ -26020,7 +26949,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "excesssecurity.com", false }, { "exchangers.top", true }, { "exchaser.com", true }, - { "exciters.tk", true }, { "excitoninteractive.com", true }, { "exclusivebeautystudio.com.au", true }, { "exclusivebouncycastles.co.uk", true }, @@ -26031,8 +26959,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "execbar.com", true }, { "exechip.com", true }, { "execution.biz.tr", true }, - { "executiveresolutions.co.uk", true }, { "exegese.ch", true }, + { "exegol.co.uk", true }, { "exehack.net", true }, { "exeintel.com", true }, { "exekutori.com", true }, @@ -26041,10 +26969,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exerforge.net", true }, { "exeria.de", true }, { "exexcarriers.com", true }, + { "exeypanteleev.com", true }, { "exgaywatch.com", true }, { "exgen.io", true }, - { "exhibityour.com", true }, { "exiahost.com", true }, + { "exiled.land", true }, + { "exiled.world", true }, { "existest.com", true }, { "exit9wineandliquor.com", true }, { "exitooutdoor.com", true }, @@ -26066,6 +26996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exozwiki.com", false }, { "exp.de", true }, { "expancio.com", false }, + { "expanda.org", false }, { "expanddigital.media", true }, { "expandeco.com", true }, { "expansion-lidl.es", true }, @@ -26086,10 +27017,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "expert.cz", true }, { "experteasy.com.au", true }, { "expertisematrix.com", true }, + { "expertnews.info", true }, { "expertofficefitouts.com.au", true }, { "expertpaintersvt.com", true }, { "expertpanel.gc.ca", true }, { "expertplumbingandsolarservicesbathurst.com.au", true }, + { "expertsluzby.cz", true }, { "expertsverts.com", true }, { "expertvagabond.com", true }, { "expertviolinteacher.com", true }, @@ -26099,7 +27032,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "explicate.org", true }, { "explodie.org", true }, { "explodingcamera.com", true }, - { "exploflex.com.br", true }, { "exploit-db.com", true }, { "exploit.cz", true }, { "exploit.party", true }, @@ -26108,17 +27040,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exploithe.net", true }, { "exploitit.com.au", true }, { "exploodo.rocks", true }, - { "exploradora.hu", true }, { "exploravacations.in", true }, + { "explorea1a.com", true }, { "explorebigideas.com", true }, { "exploredouglascountyga.com", true }, { "exploremonero.com", true }, { "exploretsp.gov", true }, { "exploringmorocco.tours", true }, { "explosionstereo.tk", true }, - { "expo-america.ru", true }, - { "expo-asia.ru", true }, - { "expo-europe.ru", true }, { "expo-larionov.org", true }, { "exponentialnews.net", true }, { "expoort.co.uk", true }, @@ -26142,7 +27071,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "expressioncoffins.com.au", true }, { "expressmarket.ru", true }, { "expresstinte.de", true }, - { "expressvpn.com", true }, { "expresswins.co.uk", true }, { "expromo.eu", true }, { "expxkcd.com", true }, @@ -26175,6 +27103,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "exteriorlightingsimivalley.com", true }, { "exteriorlightingthousandoaks.com", true }, { "exteriorlightingwestlakevillage.com", true }, + { "exteriorroofwindowguttercleaning.com", true }, { "exteriorservices.io", true }, { "extinctionrebellion.de", true }, { "extintormadrid.com", true }, @@ -26192,10 +27121,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "extreme-players.de", true }, { "extreme-stock.com", true }, { "extreme.co.th", true }, + { "extremebros.com", true }, { "extrememanual.net", true }, { "extremeservicesandrestoration.com", true }, { "extremfrank.tk", true }, { "exvs.org", true }, + { "exxelmedia.de", true }, + { "exxoncannabis.com", true }, { "exxpozed-image.de", true }, { "exxpozed.ch", true }, { "exxpozed.co.uk", true }, @@ -26217,9 +27149,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eyenote.gov", true }, { "eyeonid.com", true }, { "eyep.me", true }, - { "eyes-berg.ch", false }, { "eyes-berg.com", false }, { "eyesandearsrescue.org", true }, + { "eyespecialistsofla.com", true }, { "eyetooth.ga", true }, { "eynio.com", true }, { "eyona.com", true }, @@ -26228,6 +27160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eyrid.com", true }, { "eythorsson.com", true }, { "eytosh.net", true }, + { "eyy.co", true }, { "eyyit.com", false }, { "eyyubyilmaz.com", true }, { "ez3d.eu", true }, @@ -26245,6 +27178,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "eznfe.com", true }, { "ezorgportaal.nl", true }, { "ezpzdelivery.com", true }, + { "ezrohi.ru", true }, { "eztvtorrent.com", true }, { "ezwritingservice.com", true }, { "ezzhole.net", true }, @@ -26267,7 +27201,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f1minute.com", true }, { "f1nal-lap.be", true }, { "f2h.io", true }, - { "f365.vip", true }, + { "f30365.com", true }, + { "f365.vip", false }, { "f36533.com", true }, { "f36594.com", true }, { "f3nws.com", true }, @@ -26276,7 +27211,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f51365.com", true }, { "f5197.co", true }, { "f5la.com", true }, - { "f5movies.top", true }, { "f5nu.com", true }, { "f6729.co", true }, { "f6729.com", true }, @@ -26286,7 +27220,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "f8007.com", true }, { "f8036.com", true }, { "f81365.com", true }, - { "f81818.com", true }, { "f82365.com", true }, { "f88-line.com", true }, { "f88-line.net", true }, @@ -26358,6 +27291,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fa158k.com", true }, { "fabbro-roma.org", true }, { "fabbro.roma.it", true }, + { "fabdiz.com", true }, { "faber.org.ru", true }, { "fabian-fingerle.de", true }, { "fabian-klose.com", true }, @@ -26369,8 +27303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabianbeiner.com", true }, { "fabianbeiner.de", false }, { "fabianegli.ch", true }, - { "fabianfranke.de", true }, - { "fabiankaindl.de", true }, + { "fabiankaindl.de", false }, { "fabiankoeppen.com", true }, { "fabien-hebuterne.fr", true }, { "fabienbaker.com", true }, @@ -26387,7 +27320,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabriziocavaliere.it", true }, { "fabriziorocca.com", true }, { "fabriziorocca.it", true }, - { "fabrykowski.com", true }, { "fabrysociety.org", true }, { "fabse.net", true }, { "fabservicos.com.br", true }, @@ -26395,6 +27327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fabulosa.com.br", true }, { "fabulouslyyouthfulskin.com", true }, { "fabulouslyyouthfulskineyeserum.com", true }, + { "fac.fi", true }, { "faca.gov", true }, { "facadeforum.com", true }, { "facai666.cc", true }, @@ -26405,6 +27338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facciadastile.it", true }, { "face-fashion.de", true }, { "face-mania.com", true }, + { "face2faith-vechta.de", true }, { "facealacrise.fr", true }, { "facebook-atom.appspot.com", true }, { "facebook.ax", true }, @@ -26417,6 +27351,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facemd.net", true }, { "facepainting.gr", true }, { "facepalmsecurity.com", true }, + { "facepolo.com", true }, { "facepunch.org", true }, { "facerepo.com", true }, { "faceresources.org", true }, @@ -26449,7 +27384,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "factoriotools.net", true }, { "factoriotools.org", true }, { "factorit.fr", true }, - { "factory-f.net", true }, { "factorypartsdirect.com", true }, { "factslider.tk", true }, { "facturama.pt", true }, @@ -26463,7 +27397,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "facucosta.com.ar", true }, { "fadednet.com", false }, { "faderweb.de", true }, - { "fadilus.com", true }, { "fads-center.online", true }, { "fady.vn", true }, { "faehler.de", true }, @@ -26477,6 +27410,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fafarishoptrading.com", true }, { "fafatiger.com", true }, { "fafro.eu", true }, + { "fafscloud.com", false }, { "fag.wtf", true }, { "faggut.gg", true }, { "fahnamporn.com", true }, @@ -26484,7 +27418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fahrenwalde.de", false }, { "fahrschule-laux.de", true }, { "fahrwerk.io", true }, - { "fai.gov", false }, + { "fai.gov", true }, { "faidanoi.it", true }, { "faidatefacile.it", true }, { "fail4free.de", true }, @@ -26509,6 +27443,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fairydust.space", true }, { "fairyth.tk", true }, { "faithcentercogop.net", true }, + { "faithfuladvisor.com", true }, { "faithgrowth.com", true }, { "faithindemocracy.eu", true }, { "faithleaks.org", true }, @@ -26517,8 +27452,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faizan.net", true }, { "faizan.xyz", true }, { "faizanullah.com", true }, + { "fajode.net", true }, { "fake-show.ga", true }, { "fakeapple.nl", true }, + { "faked.org", true }, { "fakeduckpond.com", true }, { "fakeemergency.com", true }, { "fakerli.com", true }, @@ -26535,6 +27472,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "falce.in", true }, { "falcema.com", true }, { "falcibiosystems.org", true }, + { "falcom.co.jp", true }, { "falcona.io", true }, { "falconfrag.com", true }, { "falconvintners.com", true }, @@ -26556,6 +27494,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fallin.space", true }, { "falling.se", true }, { "fallofthecitadel.com", true }, + { "fallout-craft.ru", true }, { "false.in.net", true }, { "falsterhus.de", true }, { "falsterhus.dk", true }, @@ -26579,6 +27518,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "familie-leu.ch", true }, { "familie-mischak.de", true }, { "familie-monka.de", true }, + { "familie-mueller.com.de", true }, { "familie-poeppinghaus.de", true }, { "familie-remke.de", true }, { "familie-sprink.de", false }, @@ -26588,7 +27528,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "familiekiekjes.nl", true }, { "familienportal.de", true }, { "familiereimann.com", true }, - { "familjenfrodlund.se", true }, { "familjenm.se", true }, { "familledessaint.fr", true }, { "familleseux.net", true }, @@ -26607,6 +27546,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "famvsomeren.nl", true }, { "fan.gov", true }, { "fan4all.de", true }, + { "fan8hd.com", true }, { "fanactu.com", true }, { "fanatical.com", true }, { "fanatik.io", true }, @@ -26645,7 +27585,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fantasycdn.com", true }, { "fantasydrop.com", true }, { "fantasyescortsbirmingham.co.uk", true }, - { "fantasyfoot.tk", true }, { "fantasymina.de", true }, { "fantasypartyhire.com.au", true }, { "fantasyprojections.com", true }, @@ -26674,6 +27613,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "faradome.ws", true }, { "faradrive.ir", true }, { "farallonesrentacar.com", true }, + { "faramashin.com", true }, { "faraonplay5.com", true }, { "faraonplay7.com", true }, { "faraonplay8.com", true }, @@ -26689,13 +27629,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "farhadexchange.com", true }, { "farhood.org", true }, { "farid.is", true }, + { "farizhan.com", true }, { "farizizhan.com", false }, { "farleybrass.com.au", true }, { "farleysworlds.com", true }, { "farm-vacations.com", true }, { "farm24.co.uk", true }, { "farmacia-lloret.com", true }, - { "farmaciacomunalelacchiarella.it", true }, { "farmaciacorvi.it", true }, { "farmaciadejaime.es", true }, { "farmaspeed.it", true }, @@ -26752,13 +27692,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fashionusa.gq", true }, { "fashionweekweb.com", true }, { "fashionxmas.gq", true }, - { "fashtic.nl", true }, { "faspirits.co.uk", true }, { "faspirits.com", true }, { "fassaden-selleng.de", true }, { "fassadenverkleidung24.de", true }, { "fassi-sport.it", true }, { "fast-cargo.ml", true }, + { "fast-events.eu", true }, { "fast-pro.co.jp", true }, { "fastaim.de", true }, { "fastbackmbg.be", true }, @@ -26783,6 +27723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fastpeoplesearch.com", true }, { "fastpresence.com", true }, { "fastserv.pl", true }, + { "faststage.ch", true }, { "fasturl.ml", true }, { "fastvistorias.com.br", true }, { "fastworx.com", true }, @@ -26794,6 +27735,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fatherhood.gov", true }, { "fathers4equalrights.org", true }, { "fatidique.com", true }, + { "fatiguesyndrome.com", true }, { "fatihingemisi.com", true }, { "fatmixx.com", true }, { "fator25.com.br", true }, @@ -26805,20 +27747,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fau8.ml", true }, { "faucetbox.com", false }, { "faultlines.org", true }, - { "faulty.equipment", true }, { "faunahotel.cl", true }, { "fauvettes.be", true }, + { "fauwater.com", true }, + { "fauxcams.com", true }, { "favalart.com", true }, + { "favedog.com", true }, { "favorai.com", true }, { "fawong.com", true }, { "faxreader.net", true }, { "faxvorlagen-druckvorlagen.de", true }, { "faydali.org", true }, + { "fayettecountyoh.gov", true }, { "fayntic.com", true }, { "fazzfinancial.com", true }, { "fb-feed.net", true }, + { "fb-lab.de", true }, { "fb.gg", true }, { "fb.me", true }, + { "fbaun.dk", true }, { "fbcdn.net", true }, { "fbcfairburn.com", true }, { "fbcopy.com", true }, @@ -26850,6 +27797,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fccarbon.com", false }, { "fcdn.nl", true }, { "fcforum.net", true }, + { "fcgmd.gov", true }, { "fcic.gov", true }, { "fcingolstadt.de", true }, { "fcitasc.com", true }, @@ -26891,6 +27839,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fed51.com", true }, { "fedbizopps.gov", true }, { "fedcenter.gov", true }, + { "fedemo.top", true }, { "federalinvestments.gov", true }, { "federaljobs.gov", true }, { "federalreserve.gov", true }, @@ -26916,14 +27865,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "feedough.com", true }, { "feedstringer.com", true }, { "feedthefuture.gov", false }, + { "feedtube.com", true }, { "feeeei.com", true }, { "feeg-wage.gc.ca", true }, { "feegg.com.br", true }, { "feel-events.com", true }, { "feel.aero", true }, { "feelgood-workouts.de", true }, + { "feelgood.com.tw", true }, + { "feelgoodwatches.com", true }, { "feelingmassage.nl", true }, { "feelmom.com", true }, + { "feelnet.top", true }, { "feeltennis.net", true }, { "feen.us", true }, { "feepod.com", true }, @@ -26967,8 +27920,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "felix-hirner.de", true }, { "felixaufreisen.de", true }, { "felixbarta.de", true }, + { "felixbrand.de", true }, { "felixcrux.com", true }, - { "felixduart.com", true }, { "felixkaaman.com", true }, { "felixkauer.de", true }, { "felixklenner.de", true }, @@ -27029,6 +27982,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ferlc.org", true }, { "ferm-rotterdam.nl", true }, { "fermanacuratampaparts.com", true }, + { "fermanaghomagh.com", true }, { "fern.health", true }, { "fernandes.org", true }, { "fernandob.com", true }, @@ -27065,8 +28019,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fetchease.com", true }, { "fetclips.se", true }, { "fetishbazar.cz", true }, + { "fetishblend.com", true }, + { "fetishzone.org", true }, { "fetlife.com", true }, - { "fettlaus.de", true }, { "feudalisten.de", true }, { "feudaltactics.com", true }, { "feuerfestival.org", true }, @@ -27116,18 +28071,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ff976.com", true }, { "ffb.gov", true }, { "ffbans.org", true }, + { "ffbsee.de", true }, { "ffbsee.net", true }, { "ffdhw.com", true }, { "fff-du.de", true }, { "fffinfo.de", true }, { "ffg.berlin", true }, - { "ffh.me", true }, { "ffiec.gov", true }, - { "ffis.me", true }, + { "ffis.me", false }, { "ffkoenigsberg.de", true }, { "fflone.com", true }, { "ffmradio.de", true }, { "ffmv.de", true }, + { "ffp-survey.com", true }, { "ffprofile.com", true }, { "ffrev.de", true }, { "ffsbgateway.com", true }, @@ -27139,6 +28095,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fgsv-heureka.de", true }, { "fgsv-kongress.de", true }, { "fh-x.de", true }, + { "fh14.com", true }, { "fh169.cc", true }, { "fh70.com", true }, { "fh999.com", true }, @@ -27151,6 +28108,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fheuschen.de", true }, { "fhfaoig.gov", true }, { "fhinds.co.uk", true }, + { "fhm.duckdns.org", true }, { "fhmkh.cn", true }, { "fhservices.com.au", true }, { "fhsseniormens.club", true }, @@ -27164,6 +28122,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiasgo.com", true }, { "fiasgo.dk", true }, { "fiasgo.i.ng", true }, + { "fiasonline.ru", true }, { "fibercoverage.com", true }, { "fibo-forex.org", true }, { "fibra.click", true }, @@ -27184,10 +28143,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fidias.com.br", true }, { "fidoniagara.ca", true }, { "fidoo.com", true }, - { "fiduciaire-azur.com", true }, + { "fiduciaire-azur.com", false }, { "fiduciaire-ratio.ch", false }, + { "fidz.com.sg", true }, { "fieggen.eu", true }, { "fieggen.net", true }, + { "fieldelite.com", true }, { "fieldexpert.eu", true }, { "fieldwork-paysage.com", false }, { "fierlafijn.net", true }, @@ -27198,6 +28159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiery.me", true }, { "fierykitchen.pl", true }, { "fiestagenial.com", true }, + { "fietsenbijauke.nl", true }, { "fietsvierdaagsen.nl", true }, { "fifacup.ga", true }, { "fifautstore.com", true }, @@ -27211,9 +28173,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "figan.cz", true }, { "fight215.com", true }, { "fight215.org", true }, + { "fightinggobbler.com", true }, { "figinstitute.org", true }, { "figliasons.com", true }, { "figshare.com", true }, + { "figura.cz", true }, { "figurasdelinguagem.com.br", true }, { "figure.nz", true }, { "figuurzagers.nl", false }, @@ -27221,7 +28185,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fiix.io", true }, { "fijnefeestdageneneengelukkignieuwjaar.nl", true }, { "fijnewoensdag.nl", true }, - { "fiken.no", true }, { "fikriwildannugraha.com", true }, { "fikst.com", true }, { "fil-tec-rixen.com", true }, @@ -27230,7 +28193,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filaretihairlove.gr", true }, { "file-cloud.eu", true }, { "file-pdf.it", true }, - { "filebox.one", true }, { "filebox.space", true }, { "filecloud.fun", true }, { "filecopa.com", true }, @@ -27240,6 +28202,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filehippo.com", true }, { "fileio.io", true }, { "filejet.io", true }, + { "filely.io", true }, { "files.com", true }, { "files.from-me.org", true }, { "filesense.com", true }, @@ -27260,6 +28223,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filippo.io", true }, { "filipsebesta.com", true }, { "filleritemsindia.com", true }, + { "filli-it.ch", true }, + { "fillmysuitca.se", true }, { "fillo.sk", true }, { "film-colleges.com", true }, { "film-op-tv.nl", true }, @@ -27268,6 +28233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "filmarchiv-sachsen.de", true }, { "filmatiporno.xxx", true }, { "filmcrewdb.com", true }, + { "filmdirectingtips.com", true }, { "filme-onlines.com", true }, { "filmers.net", true }, { "filmitis.com", true }, @@ -27299,6 +28265,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "financialfreedomaus.com", true }, { "financniexperti.sk", true }, { "finansa.no", true }, + { "finanskredirehberi.com", true }, { "finanstilsynet.dk", true }, { "finanziero.de", true }, { "finch.am", true }, @@ -27336,8 +28303,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "finefriends.nl", true }, { "finefriends.social", true }, { "finefriendsapp.com", true }, - { "finehealth.ru", true }, - { "finelovedolls.com", true }, + { "finehealth.ru", false }, { "finenet.com.tw", true }, { "finesoft.ir", true }, { "finesoon.net", true }, @@ -27346,6 +28312,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "finestrina.net", true }, { "finethin.com.br", true }, { "finewineonline.com", true }, + { "finexo.ch", true }, { "finext.cz", true }, { "finflix.net", true }, { "finform.ch", true }, @@ -27364,6 +28331,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "finneas.net", true }, { "finnwea.com", true }, { "finotax.com", true }, + { "finprison.net", true }, { "finpt.com", false }, { "fins.money", true }, { "finsecurity.eu", true }, @@ -27371,7 +28339,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "finstererlebnis.de", true }, { "fintandunleavy.com", false }, { "fintechnics.com", false }, + { "fintexaddis.com", true }, { "fintry.ca", true }, + { "finturelife.com", true }, { "finvantage.com", true }, { "finwe.info", true }, { "finzy.com", true }, @@ -27388,7 +28358,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firebirdrangecookers.com", true }, { "firebounty.com", true }, { "fireboxfood.com", true }, + { "firebrandchurch.com", true }, { "firecareandsecurity.co.uk", true }, + { "firecask.com", true }, { "firechip.cc", true }, { "firecore.com", true }, { "firecry.org", true }, @@ -27426,7 +28398,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firmapi.com", true }, { "firmen-assekuranz.de", true }, { "firmenwerbung-vermarktung.de", true }, - { "firmware.science", true }, { "first-aid-kit.net", false }, { "first-house.no", true }, { "first-time-offender.com", true }, @@ -27444,7 +28415,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firstdorsal.eu", true }, { "firstdry.com.br", true }, { "firstfinca.de", true }, - { "firstinnovationltd.com", true }, { "firstmall.de", true }, { "firstnet.gov", true }, { "firstnetworksouth.com", true }, @@ -27453,6 +28423,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "firstversionist.com", true }, { "firstwebring.tk", true }, { "firtreetechnology.co.uk", true }, + { "fischer-immoteam.de", true }, { "fischer-its.com", false }, { "fischer-kundendienst.de", true }, { "fischers.cc", true }, @@ -27460,8 +28431,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fischers.srv.br", true }, { "fiscoeconti.it", true }, { "fish-hook.ru", true }, + { "fish-n-chips.uk", true }, { "fish2.me", true }, - { "fish4dogs.com", true }, { "fishbattle.io", true }, { "fishbattle.net", true }, { "fishermailbox.net", true }, @@ -27470,6 +28441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fishermansbendtownhouses.com.au", true }, { "fishexport.eu", true }, { "fishgen.no", true }, + { "fishingplaces.net", true }, { "fishlanestudios.com", true }, { "fishme.in", true }, { "fishoilsafety.com", true }, @@ -27486,22 +28458,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fit-4u.ch", false }, { "fit-mit-nina.com", true }, { "fit365.jp", false }, + { "fitbase.fitness", true }, { "fitchconnect.com", true }, { "fite.family", true }, { "fitequilibrio.com.br", true }, - { "fitinclass.com", true }, { "fitkram.cz", true }, { "fitness-challenge.co.uk", true }, { "fitness.gov", true }, { "fitnesskarate.club", true }, { "fitnessunder50.com", true }, { "fito.tk", true }, + { "fitrecepty.info", true }, { "fittelo.cz", true }, { "fittingperfetto.it", true }, { "fitzsim.org", true }, { "fiuxy.me", true }, { "fiuxy.org", true }, { "fiveboosts.xyz", true }, + { "fivebyfive.com.au", true }, { "fiveslice.pizza", true }, { "fivestartrader.com", true }, { "fivethirtyeight.com", true }, @@ -27510,9 +28484,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fix-the-timeline.org", true }, { "fix.mk", true }, { "fixatom.com", true }, + { "fixdiabetesnaturally.com", true }, { "fixed.supply", true }, + { "fixed.tech", true }, + { "fixedtoday.com.au", true }, { "fixedtodayplumbing.com.au", true }, - { "fixel.express", true }, { "fixfm.tk", true }, { "fixforce.nl", true }, { "fixingscrews.co.uk", true }, @@ -27530,18 +28506,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fizzgi.gs", true }, { "fj.je", true }, { "fj.search.yahoo.com", false }, - { "fj.simple.com", false }, + { "fjchamber.org", true }, { "fjco.alsace", true }, { "fjdekermadec.com", true }, { "fjharcu.com", true }, { "fjordboge.dk", true }, + { "fjsb.com", true }, { "fjugstad.com", true }, { "fjzone.org", true }, { "fkcdn.de", true }, { "fkfev.de", true }, { "fkosquad.moe", true }, { "fkraiem.org", true }, - { "fktpm.ru", false }, + { "fktpm.ru", true }, { "flacandmp3.ml", true }, { "flaemig42.de", false }, { "flagburningworld.com", true }, @@ -27630,7 +28607,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fleursdujour.ph", true }, { "fleuryfleury.com", true }, { "flexapplications.se", true }, - { "flexbuildingsystems.com", true }, { "flexdrukker.nl", true }, { "flexfunding.com", true }, { "fleximaal.com", true }, @@ -27641,6 +28617,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flexstart.me", true }, { "flextribly.xyz", true }, { "flexve.com", true }, + { "flfl.de", true }, { "fliacuello.com.ar", true }, { "flibusta.appspot.com", true }, { "flickcritter.com", true }, @@ -27666,6 +28643,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flipmusic.tk", true }, { "flipneus.net", true }, { "flipphotography.ga", true }, + { "flipsidevr.com", true }, { "fliptable.org", true }, { "flirt-norden.de", true }, { "flirtee.net", true }, @@ -27677,6 +28655,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flmortgagebank.com", true }, { "floaternet.com", true }, { "floating-holidays.co.uk", true }, + { "floating-journey-64892.herokuapp.com", true }, { "flockbox.club", true }, { "flocktofedora.org", true }, { "floersheimer-openair.de", true }, @@ -27685,6 +28664,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "floj.tech", true }, { "flokinet.is", true }, { "flokkr.com", true }, + { "flomedia.pl", true }, { "flomeyer.de", true }, { "flonharmonymassage.space", true }, { "floobits.com", true }, @@ -27693,7 +28673,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "floorballphilippines.tk", true }, { "flooringnightmares.com", true }, { "flooringsourcetx.com", true }, - { "floors4lessbay.com", true }, { "floort.net", false }, { "flopix.net", false }, { "floqast.com", true }, @@ -27709,6 +28688,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "florent-tatard.fr", true }, { "florentynadawn.co.uk", true }, { "florian-bachelet.fr", true }, + { "florian-knorn.com", true }, { "florian-lefevre.fr", true }, { "florian-thie.de", true }, { "florian2833z.de", true }, @@ -27722,7 +28702,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "florida-prep.org", true }, { "floridaagriculture.gov", true }, { "floridaconsumerhelp.gov", true }, - { "floridaengineering.org", true }, { "floridafabrication.net", true }, { "floridafieros.org", true }, { "floridahomesinvest.com", true }, @@ -27760,6 +28739,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fluglektuere.com", true }, { "flugplatz-edvc.de", true }, { "flugrecht.de", true }, + { "flugschule-usa.de", true }, { "fluidmeterusa.com", true }, { "fluidpicturesinc.com", true }, { "fluids.ac.uk", true }, @@ -27799,6 +28779,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "flyp.me", true }, { "flypenge.dk", true }, { "flyserver.co.il", false }, + { "flysnax.com", true }, { "flyss.net", true }, { "flyssh.net", true }, { "flyswoop.com", true }, @@ -27813,6 +28794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fmcs.gov", true }, { "fmdance.cl", true }, { "fmeventcentre.com", true }, + { "fmi.gov", true }, { "fminsight.net", true }, { "fmm-creative.com", true }, { "fmodoux.biz", false }, @@ -27824,7 +28806,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fndout.com", true }, { "fneon.eu", true }, { "fnh-expert.net", true }, - { "fnkr.net", true }, { "fnof.ch", true }, { "fnordserver.eu", true }, { "fnpro.eu", true }, @@ -27837,6 +28818,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "focusmark.jp", false }, { "focusministries1.org", true }, { "focuspointtechnologies.com", true }, + { "fodemp.herokuapp.com", true }, { "foej-aktiv.de", true }, { "foej.net", true }, { "foerster.gmbh", true }, @@ -27869,7 +28851,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "followthedog.co.uk", true }, { "foluomeng.net", true }, { "folv.es", true }, - { "folwark.krakow.pl", true }, + { "fomo.af", true }, + { "fomo.exposed", true }, + { "fomo.trading", true }, { "fomopop.com", true }, { "fonamperu.org.pe", true }, { "fondationwiggli.ch", true }, @@ -27880,10 +28864,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fonline.tk", true }, { "fono.jp", true }, { "fonolo.com", true }, - { "fonseguin.ca", true }, { "font-converter.net", true }, { "fonte-trading.com", true }, { "fontein.de", true }, + { "fontela.es", true }, { "fontlibrary.org", true }, { "fonts2u.com", true }, { "fonts4free.net", true }, @@ -27903,6 +28887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foodsafety.gov", true }, { "foodsafetyjobs.gov", true }, { "foodsoul.pro", true }, + { "foodtable.at", false }, { "foodwise.marketing", true }, { "fooishbar.org", false }, { "foolip.org", true }, @@ -27950,12 +28935,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forensic-system.com", false }, { "forensicsoftware.biz", true }, { "forento.be", true }, + { "foresdon.jp", true }, + { "foresightbusinessservices.co.uk", true }, { "forestraven.net", true }, { "forevergreens.us", true }, { "foreverssl.com", true }, { "foreversummertime.com", true }, { "foreverydream.com", true }, { "forewordreviews.com", true }, + { "forex-giants.com", true }, { "forex.ee", true }, { "forex7.co", true }, { "forexarby.com", true }, @@ -27964,7 +28952,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forexee.com", true }, { "forexsignals7.com", true }, { "forextickler.com", true }, - { "forextraders.com", true }, { "forfeit.ga", true }, { "forfeiture.gov", true }, { "forfunssake.co.uk", true }, @@ -27978,6 +28965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forman.store", true }, { "formapi.io", true }, { "format-paysage.ch", false }, + { "formatex.com.mx", true }, { "formation-assureur.com", true }, { "formation-mac.ch", false }, { "formationseeker.com", true }, @@ -27987,6 +28975,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "formini.dz", true }, { "formio.nl", true }, { "formkiq.com", true }, + { "forms.gov", true }, { "formsbyair.com", true }, { "formsmarts.com", true }, { "formula-ot.ru", true }, @@ -28007,7 +28996,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "forsakringsarkivet.se", true }, { "forsaleinedmonton.ca", true }, { "forschbach-janssen.de", true }, - { "forsec.nl", true }, { "forself.me", true }, { "forsi.xyz", true }, { "forstbetrieb-hennecke.de", true }, @@ -28023,9 +29011,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fortnine.ca", true }, { "fortnitemagic.ga", true }, { "fortoglethorpega.gov", true }, - { "fortran.io", true }, { "fortress.no", true }, { "fortress.sk", true }, + { "fortresslinux.com", true }, + { "fortresslinux.nl", true }, + { "fortresslinux.org", true }, { "fortuna-apotheke-lahnstein.de", true }, { "fortuna-loessnitz.de", true }, { "fortuna-s.com", true }, @@ -28035,6 +29025,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fortygordy.com", true }, { "fortytwo.cloud", true }, { "forum-4.com", true }, + { "forum-batteries.com", true }, { "forum-bonn.de", true }, { "forum-egypte.tk", true }, { "forum-heg.ch", true }, @@ -28058,6 +29049,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foselectro.ru", true }, { "fosgreece.com", true }, { "foshanshequ.com", false }, + { "fossboxen.com", true }, + { "fossboxen.net", true }, + { "fossboxen.org", true }, { "fossdaily.xyz", true }, { "fossewayflowers.co.uk", true }, { "fossewayflowers.com", true }, @@ -28076,6 +29070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foto.by", true }, { "fotoallerlei.com", true }, { "fotoblog.nrw", true }, + { "fotobodyart.nl", true }, { "fotoboxvysocina.cz", true }, { "fotocopiatrici.roma.it", true }, { "fotofaerie.net", true }, @@ -28126,6 +29121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foxeffect.com", true }, { "foxes.no", true }, { "foxesare.sexy", true }, + { "foxghoul.com", true }, { "foxhillshotel.com", true }, { "foxing.club", true }, { "foxmay.co.uk", true }, @@ -28134,10 +29130,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "foxphotography.ch", false }, { "foxquill.com", false }, { "foxroy.com", true }, + { "foxscribbler.com", true }, { "foxstreetcomms.co.za", false }, { "foxterrier.com.br", true }, { "foxtrotfm.tk", true }, { "foxvisor.com", true }, + { "foxycredit.com", true }, { "foxyslut.com", true }, { "foyale.io", true }, { "fozzie.co.uk", true }, @@ -28146,6 +29144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fpasca.com", true }, { "fpc.gov", false }, { "fpersona.com", true }, + { "fpgamania.com", true }, { "fpki.sh", true }, { "fps73.ru", true }, { "fpsclasico.de", true }, @@ -28155,8 +29154,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fr33tux.org", true }, { "frack.nl", false }, { "fracreazioni.it", true }, + { "fracturedperspective.com", true }, { "fraesentest.de", true }, { "frag.works", true }, + { "fragdenstaat.de", true }, { "fragmentspuren.de", true }, { "fragstore.net", true }, { "fraho.eu", true }, @@ -28167,7 +29168,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "framer.com", true }, { "framezdakkapellen.nl", true }, { "fran.cr", true }, - { "fran.id", true }, { "france-hotellerie-restauration.com", true }, { "france-news.cf", true }, { "francepandi.fr", true }, @@ -28203,7 +29203,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frankieburkeactor.tk", true }, { "frankieistanbul.com", true }, { "frankierfachmann.de", true }, - { "frankierprofi.de", true }, { "frankierstar.de", true }, { "frankieruiz.tk", true }, { "frankinteriordesign.co.uk", true }, @@ -28213,10 +29212,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "franklinhua.com", true }, { "franklinmagic.com", true }, { "frankopol-sklep.pl", true }, - { "franksiler.com", true }, { "frankslaughterinsurance.com", true }, { "frankyan.com", true }, - { "franqois.id", true }, + { "franqois.id", false }, { "frantic1048.com", true }, { "frantorregrosa.me", true }, { "franz-vatter.de", true }, @@ -28238,6 +29236,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frasestop.com.br", true }, { "frasesytarjetas.com", true }, { "frasys.net", true }, + { "fratelliscarrone.com", true }, { "frattaroli.org", true }, { "frau-inge.de", true }, { "frau-pusteblu.me", true }, @@ -28256,7 +29255,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frccsgo.tk", true }, { "frdl.ch", false }, { "freaksites.dk", true }, - { "freaksports.com.au", true }, { "freakyawesome.agency", true }, { "freakyawesome.art", true }, { "freakyawesome.band", true }, @@ -28298,12 +29296,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fredvoyage.fr", true }, { "free-bitco.ml", true }, { "free-generate.tk", true }, + { "free-sex-sites.com", true }, { "free-ss.site", true }, { "free-traff.cf", true }, { "free-your-pc.com", true }, { "free.ac.cn", true }, { "free.com.tw", true }, { "free8.xyz", true }, + { "free8hd.com", true }, { "freeaf.gq", true }, { "freebarrettbrown.org", true }, { "freebcard.com", true }, @@ -28320,11 +29320,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freebus.org", true }, { "freecam2cam.site", true }, { "freecloud.at", true }, + { "freecodezilla.com", true }, { "freecookies.nl", true }, { "freedev.cz", true }, { "freedom.nl", false }, { "freedom.press", true }, { "freedom35.org", true }, + { "freedomdujour.com", true }, { "freedomfinance.se", true }, { "freedomflotilla.org", true }, { "freedomfrontier.tk", true }, @@ -28337,7 +29339,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freedomrahoitus.fi", true }, { "freedomtoolkit.com", true }, { "freedomvote.nl", true }, - { "freedygist.org.ng", true }, { "freeenglishhelp.com", true }, { "freeexampapers.com", true }, { "freefilesync.org", true }, @@ -28354,6 +29355,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freekdevries.nl", true }, { "freeks.com.br", true }, { "freela.ch", false }, + { "freelance-webdesign.co.uk", true }, { "freelance-webdesigner.jp", true }, { "freelance.boutique", true }, { "freelance.guide", true }, @@ -28398,12 +29400,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freesolitaire.win", true }, { "freesourcestl.org", true }, { "freespace.info", true }, - { "freespot.mobi", true }, { "freesquare.net", true }, { "freessl.tech", true }, { "freesslcertificate.me", true }, { "freestylesolutions.com", true }, { "freetaxusa.com", true }, + { "freetext.org", true }, { "freethetv.ie", true }, { "freetrung.tk", true }, { "freetsa.org", true }, @@ -28412,6 +29414,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freewarez.org", true }, { "freeweibo.com", true }, { "freewerkt.nl", true }, + { "freewillfilm.com", true }, { "freewoodfactory.com", true }, { "freexmovie.com", true }, { "freeyourmusic.com", true }, @@ -28420,10 +29423,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frei.social", true }, { "freiboth.ddns.net", true }, { "freie-software.net", true }, + { "freiengrunder-hof.de", true }, { "freiewaehler-verden.de", true }, { "freifahrt.de", true }, { "freifall.tk", true }, - { "freifamily.ch", true }, { "freifunk-burgaltendorf.de", true }, { "freifunk-essen.de", true }, { "freifunk-in-solingen.de", true }, @@ -28441,13 +29444,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "freizeitplaza.de", true }, { "frejasdal.dk", true }, { "frenchcreekcog.org", true }, - { "frenchguy.ch", true }, { "frenchmac.com", true }, { "frenchmusic.fr", true }, { "frenzel.dk", true }, { "frequencebanane.ch", false }, { "frequentflyerapp.com", true }, - { "fresh-components.com", true }, { "fresh-hotel.org", true }, { "fresh-networks.net", true }, { "fresh.co.il", true }, @@ -28498,6 +29499,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "friends24.cz", true }, { "friendship-quotes.co.uk", true }, { "friendshipismagicsquad.com", true }, + { "friendsinfilm.com", true }, { "friendsofgfwpc.org", true }, { "friendsofparks.org", true }, { "friet.org", true }, @@ -28513,13 +29515,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frinkiac.com", true }, { "frino.de", true }, { "friplay.host", true }, - { "frippz.se", true }, { "friseur-foerder.de", true }, { "friss.com", true }, { "fritz-koehne-schule.de", true }, { "fritzrepair.com", true }, { "frizo.com", true }, - { "frizzless.com", true }, { "fro.se", true }, { "frob.nl", true }, { "frode.win", true }, @@ -28528,6 +29528,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frogatto.com", true }, { "frogeye.fr", true }, { "froggitt.com", true }, + { "frogical.nl", true }, { "frogsonamission.de", true }, { "froh.co.jp", true }, { "frokenblomma.se", true }, @@ -28550,7 +29551,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frontiers.nl", true }, { "frontline.cloud", true }, { "frontlinemessenger.com", true }, - { "frontmin.com", true }, { "froogo.co.uk", true }, { "fropky.com", true }, { "frosoku.com", true }, @@ -28592,6 +29592,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "frusky.de", true }, { "frusky.net", true }, { "frutasyvejetales.com", true }, + { "fruxnux.net", true }, { "fruxprivatebank.net", true }, { "frydrychit.cz", true }, { "fryergroup.com", true }, @@ -28611,6 +29612,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fsck.jp", false }, { "fsckd.com", true }, { "fscott.de", true }, + { "fsd.gov", true }, { "fsdress.com", true }, { "fsfi.is", true }, { "fsfxpackages.com", true }, @@ -28642,7 +29644,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ftng.se", true }, { "ftnpower.com", true }, { "ftptest.net", true }, - { "ftrsecure.com", true }, + { "ftrac.com.br", true }, + { "ftrucks.com.au", true }, { "ftv.re", true }, { "ftworthhousekeeper.com", true }, { "ftx.com", true }, @@ -28669,11 +29672,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fuckyoupaypal.me", true }, { "fuckz.net", true }, { "fudie.net", true }, + { "fudubank.vn", true }, { "fuechschen.org", true }, { "fuego.tech", true }, { "fuelfirebrand.com", true }, { "fuelingyourdreams.com", false }, { "fuerstenfelder-immobilien.de", true }, + { "fugioninc.com", true }, { "fugle.de", true }, { "fuglede.dk", true }, { "fuite.ch", false }, @@ -28683,7 +29688,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fujieb.com", true }, { "fujiwaraqol.com", true }, { "fujiwarashinzo.com", true }, - { "fukakukeiba.com", true }, + { "fujiyakimono.com", true }, { "fukata.org", true }, { "fukikaeru.com", true }, { "fukt.ca", true }, @@ -28700,6 +29705,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fuliwang.us", true }, { "full-race.com", true }, { "full-stack.ninja", true }, + { "fullbajamode.com", true }, { "fullbundle.com", true }, { "fullcirclestudio.nl", true }, { "fullerlife.org.uk", true }, @@ -28712,6 +29718,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fumblers.ca", true }, { "fumerolles.ch", false }, { "fun-bounce.co.uk", true }, + { "fun-club-35.com", true }, { "fun-fan.biz", true }, { "fun-tasia.co.uk", true }, { "fun4kidzbouncycastles.co.uk", true }, @@ -28726,11 +29733,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funadvisorfrance.com", true }, { "funandbounce.com", true }, { "funatic.nl", true }, + { "funbuynet.com.br", true }, { "funcabinrentals.com", true }, { "funchestra.at", false }, { "functional.cc", true }, { "functions-online.com", true }, { "fundacionfranciscofiasco.org", true }, + { "fundamentalsofaccounting.org", true }, { "fundamentt.com", true }, { "fundavi.jp", true }, { "fundayltd.com", true }, @@ -28796,12 +29805,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funidelia.ro", true }, { "funidelia.rs", true }, { "funidelia.ru", true }, + { "funidelia.se", true }, { "funidelia.sg", true }, { "funidelia.si", true }, { "funidelia.sk", true }, { "funinbeds.org.uk", true }, { "funkazoid-radio.com", true }, { "funken-networks.de", true }, + { "funkfamily.org", true }, { "funkfernbedienung-industrie.de", true }, { "funkner.ru", true }, { "funknotaus.de", true }, @@ -28820,6 +29831,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funprode.org", true }, { "funsochi.ru", true }, { "funspins.com", true }, + { "funtastic-basketball.de", true }, { "funtastic.ie", true }, { "funtime-inflatables.co.uk", true }, { "funtime.com.ua", true }, @@ -28828,12 +29840,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "funtimesbouncycastles.co.uk", true }, { "funyirotraktor.hu", true }, { "fur.red", true }, + { "furca.ca", true }, { "furcdn.net", true }, { "furcity.me", true }, { "furgetmeknot.org", true }, { "furgo.love", true }, { "furi.ga", true }, { "furigana.info", true }, + { "furisode-yamaguchiya.com", true }, { "furkancaliskan.com", true }, { "furkot.com", true }, { "furkot.de", true }, @@ -28852,30 +29866,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "furry.cat", true }, { "furry.cool", true }, { "furry.dk", true }, - { "furryrex.top", true }, { "furrytech.network", true }, { "fursuitbutts.com", true }, + { "furukogarasusha.com", true }, { "fusa-miyamoto.jp", true }, { "fusechange.org", true }, { "fuselight.nl", true }, { "fuseos.net", true }, { "fuseyahoken.com", true }, { "fushee.com", true }, + { "fusionapps.com", true }, + { "fusionapps.net", true }, + { "fusionetics.plus", true }, { "fusiongaming.de", true }, { "fussball-xxl.de", true }, + { "fussballpiraten.com", true }, { "fussell.io", true }, { "fuszara.eu", true }, { "fuszara.pl", true }, { "futa.agency", true }, - { "futa.moe", false }, { "futaba-works.com", true }, + { "futb0l.com", true }, { "futbol-tv.tk", true }, { "futbolvivo.tv", true }, { "futbomb.com", true }, { "futo.biz", true }, { "futos.de", true }, { "futrou.com", true }, - { "future-moves.com", true }, { "futureaudiographics.com", true }, { "futurefastforward.com", true }, { "futurefire.de", true }, @@ -28889,6 +29906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "futurenda.com", true }, { "futuresonline.com", true }, { "futuressm.com", true }, + { "futurestyletiling.com.au", true }, { "futuretimes.io", true }, { "futurezone.at", true }, { "futuristacademy.io", true }, @@ -28916,6 +29934,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fxislamic.com", true }, { "fxmarketing.com.au", true }, { "fxmarketing.net.au", true }, + { "fxmotion.ir", true }, { "fxopen.co.uk", true }, { "fxopen.com", true }, { "fxopen.com.au", true }, @@ -28938,11 +29957,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "fydjbsd.cn", true }, { "fyfywka.com", true }, { "fyksen.me", true }, + { "fyllehack.se", true }, { "fyn.nl", true }, { "fyner.lt", true }, { "fyol.pw", true }, { "fyol.xyz", false }, - { "fyreek.me", true }, { "fyretrine.com", true }, { "fysesbjerg.dk", true }, { "fysio-ict.nl", true }, @@ -28970,6 +29989,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "g.co", false }, { "g00228.com", true }, { "g01.in.ua", true }, + { "g0158.com", true }, { "g0881.com", true }, { "g0man.com", true }, { "g1.ie", true }, @@ -28983,15 +30003,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "g2ship.com", true }, { "g2soft.net", true }, { "g30365.com", true }, - { "g365.vip", true }, + { "g365.vip", false }, { "g36533.com", true }, { "g36594.com", true }, { "g3circuit.com", true }, { "g3d.ro", true }, { "g3dev.ch", false }, { "g3homefoods.com", true }, - { "g3rv4.com", true }, { "g47.web.id", true }, + { "g4v.in", true }, { "g4w.co", true }, { "g51365.com", true }, { "g5197.co", true }, @@ -29001,7 +30021,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "g7035.com", true }, { "g7yy.com", true }, { "g81365.com", true }, - { "g81818.com", true }, { "g818city.com", true }, { "g82365.com", true }, { "g8energysolutions.co.uk", true }, @@ -29038,6 +30057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gadabit.pl", true }, { "gaddini.it", true }, { "gadgetadvisor.com", true }, + { "gadgetanda.com", true }, { "gadgetflip.com", true }, { "gadgethacks.com", true }, { "gadgets-cars.com.es", true }, @@ -29046,7 +30066,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gae123.com", true }, { "gaelico.tk", true }, { "gaengler.com", true }, - { "gaest.com", true }, { "gaestehaus-leipzig.de", true }, { "gaestehaus-monika.com", true }, { "gaetanosonline.com", true }, @@ -29085,7 +30104,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gakki.photos", true }, { "gaku-architect.com", true }, { "gala.kiev.ua", false }, - { "galabau-maurmann.de", true }, { "galacg.me", true }, { "galak.ch", false }, { "galaktika-znakomstv.tk", true }, @@ -29122,6 +30140,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "galinos.gr", true }, { "galj.info", true }, { "galle.cz", true }, + { "galleoncloud.net", true }, { "galleonwaymedical.com.au", true }, { "gallerify.eu", true }, { "galletasgabi.com.mx", false }, @@ -29133,7 +30152,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gallun-shop.com", true }, { "galoserver.org", true }, { "galvingao.com", true }, - { "gam3rs.de", true }, + { "gamanlu.com", true }, { "gamberorosso.menu", true }, { "gamberorotto.com", true }, { "gambetti.fr", true }, @@ -29206,6 +30225,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gameres.com", true }, { "gamerezo.com", true }, { "gamerspost.ga", true }, + { "gamerwelfare.com", true }, { "gamerzdot.com", true }, { "games2kids.net", true }, { "games4theworld.org", true }, @@ -29219,7 +30239,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gamesme.cn", true }, { "gamesplanet.com", true }, { "gamesputnik.ru", true }, - { "gamestats.gg", true }, { "gameswitchers.uk", true }, { "gametilt.com", true }, { "gametium.com", true }, @@ -29233,16 +30252,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gamingmedley.com", true }, { "gamingmonitortest.com", true }, { "gamingroomaccessories.com", true }, + { "gamingterritory.com", true }, { "gamingtilltheend.cf", true }, { "gamingwithcromulent.com", true }, { "gamingx.tk", true }, { "gamingzoneservers.com", true }, - { "gamisalya.com", true }, { "gamishijabsyari.com", true }, { "gamishou.fr", true }, - { "gamismu.com", true }, { "gamivo.com", true }, { "gammaphibeta.tk", true }, + { "gampa.be", true }, { "gamster.tv", true }, { "gan.wtf", true }, { "ganado.org", true }, @@ -29259,10 +30278,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gangnam-club.com", true }, { "gangnamcool.com", true }, { "ganodermatiendaonline.com", true }, - { "ganpris.online", true }, { "gansleit.com", false }, { "gantt-chart.com", true }, - { "ganyouxuan.com", true }, { "ganzgraph.de", true }, { "ganztagplus.de", true }, { "gao.ci", true }, @@ -29298,6 +30315,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "garda-see.mobi", true }, { "gardedenfantspourtous.fr", true }, { "garden-life.org", true }, + { "garden4less.co.uk", true }, { "gardengameshireuk.com", true }, { "gardeningdirect.co.uk", true }, { "gardensandgifts.com", true }, @@ -29320,6 +30338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "garten-diy.de", true }, { "gartenbaur.de", true }, { "gartenplanung-brendes.de", true }, + { "garwoh.de", true }, { "garycarmell.com", true }, { "garycwaite.com", true }, { "garyjones.co.uk", true }, @@ -29353,7 +30372,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gathu.co.ke", true }, { "gatilagata.com.br", true }, { "gatomix.net", true }, - { "gatos.plus", false }, { "gauche.com", true }, { "gaudeamus-folklor.cz", true }, { "gaudere.co.jp", true }, @@ -29361,6 +30379,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaussianwaves.com", true }, { "gauthier.dk", true }, { "gavin.sh", true }, + { "gavingreer.com", true }, { "gavins.stream", true }, { "gavlix.se", true }, { "gavr.me", true }, @@ -29369,10 +30388,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gaw.sh", true }, { "gay-jays.com", true }, { "gay-personal-ads.com", true }, - { "gay-sissies.com", true }, { "gay.systems", true }, { "gaya-sa.org", true }, { "gayauthors.org", true }, + { "gaycafe.lt", true }, { "gaycc.cc", true }, { "gayforgenji.com", true }, { "gaygeeks.de", true }, @@ -29416,7 +30435,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gcodetools.com", true }, { "gcs-ventures.com", true }, { "gcsepod.com", true }, + { "gcsgr.eu", true }, { "gd88.cc", true }, + { "gda.fr", true }, { "gdax.com", true }, { "gdb-tutorial.net", true }, { "gdesemena.ru", true }, @@ -29448,6 +30469,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geass.xyz", true }, { "geba-online.de", true }, { "gebaeudebilanzierung.de", true }, + { "geblitzt.de", true }, { "gebn.co.uk", true }, { "gebn.uk", true }, { "geboortestoeltje.com", true }, @@ -29469,11 +30491,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geekariom.com", true }, { "geekbundle.org", true }, { "geekclubbooks.com", true }, - { "geekeffect.co.uk", true }, + { "geekdama.com.br", true }, + { "geekeries.org", true }, { "geeklair.net", true }, { "geeklan.co.uk", true }, { "geekles.net", true }, + { "geekmagazine.com.br", true }, { "geeknik.com", true }, + { "geekobyte.com", true }, { "geekpad.com", true }, { "geeks.berlin", true }, { "geeks.lgbt", true }, @@ -29499,7 +30524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gefolge.org", true }, { "gegeco.ch", false }, { "geh.li", true }, - { "gehaowu.com", true }, { "gehas-wein-shop.de", false }, { "gehatrans.de", true }, { "gehirn.co.jp", true }, @@ -29510,6 +30534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gehrke.in", true }, { "gehrke.nrw", true }, { "gehsicht.de", true }, + { "geico.com", true }, { "geigenbauer.in", false }, { "geigr.de", true }, { "geiser-family.ch", true }, @@ -29523,6 +30548,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geldimblick.de", true }, { "geldteveel.eu", true }, { "geleenbeekdal.nl", true }, + { "geli-graphics.com", true }, { "gelis.ch", true }, { "gellis12.com", true }, { "gelog-software.de", false }, @@ -29534,15 +30560,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geluk.io", true }, { "gelukkigehonden.nl", true }, { "geluleminceur.fr", true }, - { "gem-info.fr", true }, { "gemails.eu", true }, { "gemeentestein.nl", true }, + { "gemeinderatswahl2020.de", true }, { "gemeinsam-ideen-verwirklichen.de", true }, + { "gemelen.net", true }, { "gemgroups.in", true }, { "gemonite.com", true }, { "gemquery.com", true }, { "gemstn.com", true }, { "gemstonz.org", true }, + { "genbars.jp", true }, { "genbright.com", true }, { "genchev.io", true }, { "gencmedya.com", true }, @@ -29590,16 +30618,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geneve.guide", true }, { "genevoise-entretien.ch", true }, { "genfaerd.dk", true }, + { "genia-life.de", true }, + { "geniedesjouets.fr", true }, { "geniofinanciero.org", true }, { "genioideal.com", true }, { "geniush.ovh", true }, + { "geniushost.in", true }, { "geniusteacher.in", true }, { "geniuszone.biz", true }, { "gennerator.com", true }, { "genocidediary.org", true }, { "genodeftest.de", true }, + { "genome.gov", false }, { "genomedia.jp", true }, { "genomequestlive.com", true }, + { "genometrik.de", true }, { "genoog.com", true }, { "genosse-einhorn.de", true }, { "genossen.ru", true }, @@ -29633,7 +30666,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "genunlimited.ga", true }, { "genunlimited.tk", true }, { "genusbag.com", true }, - { "genusshotel-riegersburg.at", true }, + { "genwarp.com", true }, { "genxnotes.com", true }, { "geocar.com", true }, { "geocommunicator.gov", true }, @@ -29651,7 +30684,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geomac.gov", true }, { "geometra.roma.it", true }, { "geometra24.it", true }, - { "geomex.be", true }, { "geomonkeys.com", true }, { "geonice.ga", true }, { "geoponika.gr", true }, @@ -29683,7 +30715,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "georgmayer.eu", true }, { "geoscan.aero", true }, { "geoscope.ch", false }, - { "geotab.com", true }, { "gepgroup.gr", true }, { "gepps.de", true }, { "geraintwhite.co.uk", true }, @@ -29710,6 +30741,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "germanytravelguide.ml", true }, { "germfr.ee", true }, { "germistonplumber24-7.co.za", true }, + { "germistonrubbleremovals.co.za", true }, { "gernert-server.de", true }, { "gero.io", true }, { "geroiplavska.tk", true }, @@ -29724,13 +30756,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "geschichtscheck.de", true }, { "geschmacksache.online", true }, { "geschwinder.net", true }, - { "gesditel.es", true }, + { "gesditel.es", false }, { "geseduc.cl", true }, { "gesevi.com", true }, { "gesica.cloud", true }, { "gesmav-trier.de", true }, { "gesnex.com", true }, { "gessettirotti.it", true }, + { "gestionadministrativevirtuelle.ca", true }, + { "gestionadministrativevirtuelle.ch", true }, + { "gestionadministrativevirtuelle.com", true }, { "gestionrocamar.es", true }, { "gestlifes.com", true }, { "gestorehotel.com", true }, @@ -29755,11 +30790,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getalitools.ru", true }, { "getbookked.com", true }, { "getbooks.co.il", true }, + { "getbootstrap.com", true }, { "getboubou.com", true }, { "getbox.me", true }, { "getbreadcrumbs.com", true }, { "getbrowink.com", true }, { "getbutterfly.com", true }, + { "getcalc.com", true }, { "getcard.cc", true }, { "getcertified.pro", true }, { "getcheapinsurancenow.info", true }, @@ -29768,11 +30805,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getcreditscore.com.au", true }, { "getdash.io", true }, { "getdeveloper.de", true }, + { "getdownon.it", true }, { "geteduroam.no", true }, { "geterp.ru", true }, { "geteventbox.com", true }, { "getfedora.org", true }, - { "getfilterlive.org", true }, { "getfirstalert.com", true }, { "getflorence.co.uk", true }, { "getgeek.dk", true }, @@ -29836,6 +30873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "getupandbounce.co.uk", true }, { "getvdownloader.com", true }, { "getwemap.com", true }, + { "getwhelp.com", true }, { "getwisdom.io", true }, { "getwork.tk", true }, { "getyeflask.com", true }, @@ -29902,23 +30940,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ggx.us", true }, { "gh-sandanski.com", true }, { "gh16.com.ar", true }, + { "gha.st", true }, { "ghaglund.se", true }, + { "ghcpl.in", true }, { "gheestore.in", true }, { "ghettonetflix.de", true }, { "ghfip.com.au", true }, { "ghini.com", true }, { "ghislainphu.fr", true }, - { "ghkim.net", true }, { "ghostblog.info", false }, { "ghostcir.com", true }, { "ghostpin.ga", true }, + { "ghostwritershigh.com", true }, { "ghou.me", true }, { "ghowell.io", true }, { "ghull.email", true }, { "ghuntley.com", false }, { "giac.net", true }, { "giac.org", true }, + { "giacchettaauto.it", true }, { "giacomopelagatti.it", true }, + { "giaithich.net", true }, { "giakki.eu", false }, { "giancarlomarino.com", true }, { "giannademartini.com", true }, @@ -29972,9 +31014,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giga.nl", true }, { "gigabitz.pw", true }, { "gigacog.com", true }, + { "gigantar.com", true }, { "gigantism.com", true }, { "gigasoft.tk", true }, { "gigawa.lt", true }, + { "gigawattz.com", true }, { "giggletotz.co.uk", true }, { "gigin.eu", true }, { "gigin.me", true }, @@ -29987,7 +31031,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gigtroll.eu", true }, { "gijsbertus.com", true }, { "gijswesterman.nl", true }, - { "gilangcp.com", true }, { "gileadpac.com", true }, { "gilescountytn.gov", true }, { "giliamor.com", true }, @@ -30009,6 +31052,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gingersutton.com", true }, { "ginionusedcars.be", false }, { "ginja.co.th", true }, + { "ginnasterling.com", true }, { "ginnegappen.nl", true }, { "ginniemae.gov", true }, { "gino-gelati.de", true }, @@ -30030,12 +31074,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "giraffenland.de", true }, { "giraffes.org", true }, { "giri.co", true }, + { "girl.click", true }, { "girl.science", true }, { "girlan.net", true }, { "girlinthetiara.com", true }, { "girlsforum.com", true }, { "girlsgenerationgoods.com", true }, - { "girlsgonesporty.com", true }, { "girlsnet.work", true }, { "girlz.jp", true }, { "girsa.org", true }, @@ -30063,11 +31107,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "githubber.com", true }, { "githubber.tv", true }, { "gitla.in", true }, + { "gitns.com", true }, + { "gitns.dev", true }, + { "gitns.io", true }, + { "gitns.net", true }, + { "gitns.nl", true }, + { "gitns.org", true }, { "gitstuff.tk", true }, { "gittigidiyor.com", true }, { "gittr.ch", true }, { "gitube.cn", true }, { "giuem.com", true }, + { "giulianomanzoni.com", true }, { "giunchi.net", true }, { "giuseppemacario.men", true }, { "givastar.com", true }, @@ -30136,8 +31187,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glasner.photo", true }, { "glaspe.com", true }, { "glass.google.com", true }, + { "glasschmuck-millefiori.de", true }, { "glassemployees.com", true }, { "glassexpertswa.com", true }, + { "glassochchoklad.se", true }, { "glassofgrape.com", true }, { "glassrainbowtrust.org.je", true }, { "glassrom.pw", true }, @@ -30159,11 +31212,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "glenshere.com", true }, { "glevolution.com", true }, { "glexia.com", true }, + { "gliagrumi.it", true }, + { "glidestep.com", true }, { "glidingshop.cz", true }, { "glidingshop.de", true }, { "glidingshop.eu", true }, { "gliihc.net", true }, { "glimhome.com", true }, + { "glit.sh", true }, { "glitzafricafashionweek.com", true }, { "glitzerstuecke.de", true }, { "glixee.com", true }, @@ -30184,6 +31240,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "globalchokepoints.org", true }, { "globalcomix.com", true }, { "globaleaks.org", true }, + { "globalepsilon.com", true }, { "globalesm.com", true }, { "globalfuture.eu", true }, { "globalgivingtime.com", true }, @@ -30199,6 +31256,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "globalisierung-fakten.de", true }, { "globalitac.com", true }, { "globalityinvestment.com", true }, + { "globalizationpedia.com", true }, { "globalmoneyapp.com", true }, { "globalnewsdaily.cf", true }, { "globalno.me", true }, @@ -30209,6 +31267,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "globalresistancecorporation.com", true }, { "globalshippinglimited.ga", true }, { "globaltennis.ca", true }, + { "globaltiendat.com", true }, { "globalventil.com", false }, { "globalvisions-events.ch", true }, { "globalvisions-events.com", true }, @@ -30229,15 +31288,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gloning.name", true }, { "glont.net", true }, { "gloomyspark.com", true }, - { "gloomyvancouver.com", true }, { "gloryholefucking.com", true }, + { "glosiko.cn", true }, { "glosiko.com", true }, + { "glosiko.com.cn", true }, + { "glosiko.net", true }, + { "glosiko.org", true }, { "glosons.com", true }, { "glossopnorthendafc.co.uk", true }, { "glotech.co.uk", true }, { "glotechkitchens.co.uk", true }, { "glotechrepairs.co.uk", true }, { "gloucestershiregospelpartnership.org.uk", true }, + { "glovementor.com", true }, + { "glpepper.com", true }, { "glu3cifer.rocks", true }, { "glueck-im-norden.de", true }, { "gluecksgriff-taschen.de", true }, @@ -30245,6 +31309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gluedtomusic.com", true }, { "gluhov-ss.ru", true }, { "gluit.de", true }, + { "glutenfreeandtasty.com", true }, { "glutenfreehomemaker.com", true }, { "glutenfreelife.co.nz", true }, { "glutenfreevr.com", true }, @@ -30262,6 +31327,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gmao.com", true }, { "gmbh-kiekin.de", true }, { "gmc.uy", true }, + { "gmcbm.net", true }, { "gmccar.it", true }, { "gmcd.co", true }, { "gmdu.net", true }, @@ -30269,10 +31335,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gmeet.at", true }, { "gmeet.io", true }, { "gmenhq.com", true }, + { "gmgard.com", true }, { "gmind.ovh", true }, { "gmod.de", true }, { "gmpark.dk", true }, { "gmpartsdb.com", true }, + { "gmplab.com", true }, { "gmslparking.co.uk", true }, { "gmta.nl", true }, { "gmtplus.co.za", true }, @@ -30308,6 +31376,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "go-datasecurity.de", true }, { "go-dutch.eu", true }, { "go-embedded.de", true }, + { "go-girlonly.shop", true }, { "go-indochine.com", true }, { "go-kuwait.tk", true }, { "go-life.com.tw", true }, @@ -30324,8 +31393,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "go6.si", true }, { "go6lab.si", true }, { "go889w.com", true }, - { "go9968.com", true }, - { "goa8.xyz", true }, { "goalbookapp.com", true }, { "goalongtravels.com", true }, { "goanalyse.co.uk", true }, @@ -30335,6 +31402,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goatcloud.com", true }, { "goaudits.com", true }, { "gobarrelroll.com", true }, + { "gobiernousa.gov", true }, { "goblackcat.com", true }, { "goblinsatwork.com", true }, { "goblintears.com", true }, @@ -30343,6 +31411,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gobytedesign.co.uk", true }, { "goc4wraps.com", true }, { "gocardless.com", true }, + { "gocdn.com.br", true }, { "gocher.me", true }, { "gochu.se", true }, { "gocleanerslondon.co.uk", true }, @@ -30356,16 +31425,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "godbo9.com", false }, { "godbo9.net", true }, { "godclan.hu", true }, + { "goddard.id.au", true }, { "goddg.com", true }, { "godesb.com", true }, { "godesigner.ru", true }, + { "godofredo.ninja", true }, { "godrealms.com", true }, { "godrive.ga", true }, { "godruoyi.com", true }, { "godsofhell.com", true }, { "godsofhell.de", true }, { "goeb.eu", true }, - { "goeb.org", true }, + { "goeb.org", false }, { "goededoelkerstkaarten.nl", true }, { "goedkoopstecartridges.nl", true }, { "goedkopecartridgeskopen.nl", true }, @@ -30398,6 +31469,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gohon.org", true }, { "goingreen.com.au", true }, { "goiymua.com", true }, + { "gokhana.com", true }, { "gokhankesici.com", true }, { "gokmenguresci.com", true }, { "golang.org", true }, @@ -30411,20 +31483,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goldcoastphotographycourses.com", true }, { "goldcoaststumpbusters.com", true }, { "golden-kamuy.com", true }, + { "golden-squad.com", true }, { "goldenage.tk", true }, { "goldenbadger.de", true }, { "goldendawnapersonalaffair.com", true }, { "goldeneggs.club", true }, { "goldenhillsoftware.com", true }, { "goldenhost.ca", true }, - { "goldenhostmyanmar.com", false }, { "goldenplate.com.sg", true }, + { "goldenqueenbee.com", true }, { "goldenruleemail.com", true }, + { "goldenyacca.co.uk", true }, { "goldfelt.com", true }, { "goldfmromania.ro", true }, { "goldlevelmarketing.com", true }, { "goldlevelprint.com", true }, { "goldmark.com.au", false }, + { "goldpetergood.top", true }, { "goldpreisfinder.at", true }, { "goldsecurity.com", true }, { "goldships.com", true }, @@ -30451,28 +31526,36 @@ static const nsSTSPreload kSTSPreloadList[] = { { "golsportsoccer.com", true }, { "golvlyftarna.se", true }, { "gomasy.jp", true }, + { "gomasy.net", true }, { "gomedium.com", true }, { "gomega.vn", true }, { "gomel.chat", true }, { "gomel.city", true }, + { "gomelagromashplus.by", true }, { "gomelchat.com", true }, { "gomelphoto.com", true }, + { "gometa.link", true }, + { "gomiblog.com", true }, { "gommista.roma.it", true }, + { "gomods.link", true }, + { "gomu.ca", true }, + { "gon45.com", true }, { "gondawa.com", true }, { "gondelvaartdwarsgracht.nl", true }, { "gondola-parkinson.com", true }, { "gongjianwei.com", true }, { "gongjuhao.com", true }, { "gonkar.com", true }, + { "gonumbers.ru", true }, { "gonx.dk", false }, { "gonzalesca.gov", true }, { "goo.gl", true }, { "gooch.io", true }, - { "good588.com", true }, { "gooday.life", true }, { "gooddomainna.me", true }, { "goodfeels.net", true }, { "goodfor.us", true }, + { "goodgame.lt", true }, { "goodhealthtv.com", true }, { "goodiesoft.hu", true }, { "goodmood.co.uk", true }, @@ -30491,8 +31574,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "google-analytics.com", true }, { "google.ax", true }, { "googleandroid.cz", true }, - { "googlehosts.org", true }, + { "googleapis.com", true }, + { "googlehits.com", true }, { "googlemail.com", false }, + { "googlepinyin.com", true }, { "googleplex.com", true }, { "googlerecetas.com", true }, { "googleshortcuts.org", true }, @@ -30502,6 +31587,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goonersworld.co.uk", true }, { "goonfleet.com", true }, { "goontopia.com", false }, + { "goontu.be", true }, { "goooo.info", true }, { "gooseberries.ch", true }, { "gootax.pro", false }, @@ -30511,6 +31597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goparity.com", true }, { "gopher.tk", false }, { "gophoto.it", true }, + { "gopkg.link", true }, { "gopnikman.cf", true }, { "gopostore.com", true }, { "goproallaccess.com", true }, @@ -30520,6 +31607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "goquiqstatus.com", true }, { "goranrango.ch", true }, { "gordeijnsbouw.nl", true }, + { "gordon-reid.com", true }, { "gordonchevy.com", true }, { "gordonscouts.com.au", true }, { "gordy.fr", true }, @@ -30531,6 +31619,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gorgeconnect.com", true }, { "gorgias.me", true }, { "gorky.media", true }, + { "gorlani.com", true }, + { "gorlani.net", true }, { "gorn.ch", true }, { "gornergrat-kulm.ch", true }, { "gorod74.ru", false }, @@ -30540,7 +31630,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gorschenin.com", true }, { "gosaavd.tk", true }, { "gosccs.com", true }, - { "gosforthdentalsurgery.co.uk", true }, { "goshawkdb.io", true }, { "goshin-group.co.jp", true }, { "goshow.tv", true }, @@ -30552,12 +31641,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gosportweather.co.uk", true }, { "gosq.co", true }, { "gosq.com", true }, + { "gossiplolly.com", true }, { "gostaffer.com", true }, { "gostargazing.co.uk", true }, { "gosti-dom.ga", true }, { "gostudy.net", true }, { "gosu.pro", true }, - { "gosuland.org", true }, { "goswak.com", true }, { "goszakupki.tk", true }, { "got-tty.de", true }, @@ -30576,9 +31665,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gotrail.fr", true }, { "gotravel.us", true }, { "gotrek.com.au", true }, + { "gotscrapcar.com", true }, { "gottcar.com", true }, { "gottfridsberg.org", true }, { "goudenharynck.be", true }, + { "goudenlaantje.nl", true }, + { "goudt.nl", true }, { "gouforit.com", true }, { "goug0.com", true }, { "goug1.com", true }, @@ -30616,6 +31708,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "govisitcostarica.co.cr", true }, { "govisitcostarica.com", true }, { "govloans.gov", true }, + { "govotecolorado.gov", true }, { "govtjobs.blog", true }, { "govtrack.us", true }, { "govype.com", true }, @@ -30628,8 +31721,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gowin9.com", true }, { "gowin9.net", true }, { "gowithflo.de", true }, - { "gozaars.com", true }, - { "gozenhost.com", true }, + { "gozadera.es", true }, { "gpalabs.com", true }, { "gpccp.cc", true }, { "gpcp.org", true }, @@ -30646,6 +31738,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gplvilla.com", true }, { "gpm.ltd", true }, { "gpna.org", true }, + { "gpolanco.com", true }, { "gprs.uk.com", true }, { "gps-fleettracking.ga", true }, { "gps.com.br", true }, @@ -30656,8 +31749,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gpsvideocanada.com", true }, { "gpswebsoft.ml", true }, { "gpu.nu", false }, - { "gpureport.cz", true }, { "gpz500s.tk", true }, + { "gqjx.fun", true }, { "gqyyingshi.com", true }, { "gqyys.com", true }, { "gqyyy.cc", true }, @@ -30713,11 +31806,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "graingert.co.uk", true }, { "graliv.net", false }, { "gramati.com.br", true }, - { "gramiaperu.com", true }, { "grammysgrid.com", true }, { "grancellconsulting.com", true }, { "grand-city38.ru", true }, { "grand-sity.ru", true }, + { "grandcafeatpark.nl", true }, { "grandcafecineac.nl", true }, { "grandcafetwist.nl", true }, { "grandcapital.cn", true }, @@ -30743,6 +31836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grannys-stats.com", true }, { "grannyshouse.de", true }, { "grantcooper.com", true }, + { "grantdb.ca", true }, { "granth.io", true }, { "grantmorrison.net", true }, { "grantpark.org", true }, @@ -30758,6 +31852,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grapheneos.org", true }, { "graphic-schools.com", true }, { "graphic-shot.com", true }, + { "graphicbuffet.co.th", true }, { "graphire.io", true }, { "graphite.org.uk", true }, { "graphobyte.com", true }, @@ -30791,6 +31886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gravilink.com", true }, { "graviola.es", true }, { "gravitascreative.net", true }, + { "gravito.nl", false }, { "gravity-dev.de", false }, { "gravity-inc.net", true }, { "gravityformspdfextended.com", true }, @@ -30799,9 +31895,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grayclub.co.il", true }, { "grayhatter.com", true }, { "grayiron.io", true }, - { "graymalk.in", true }, { "grayowlworks.com", true }, - { "grayscale.co", true }, + { "grayrectangle.com", true }, + { "grayscale.co", false }, { "grayson.sh", true }, { "graysonsmith.co.uk", true }, { "graz2020.com", true }, @@ -30818,6 +31914,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greatislandarts.ca", true }, { "greatlakeside.de", true }, { "greatlifeinsurancegroup.com", true }, + { "greatnetsolutions.com", true }, { "greatscott.media", true }, { "greatskillchecks.com", true }, { "greatwebdesign.uk", true }, @@ -30830,6 +31927,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greeks.tk", true }, { "green-anarchy.tk", true }, { "green-attitude.be", true }, + { "green-aura.ru", true }, { "green-care.nl", true }, { "green-light.cf", true }, { "green-light.co.nz", true }, @@ -30845,6 +31943,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greenconn.ca", true }, { "greendrive.tk", true }, { "greendvorik.com.ua", true }, + { "greenecountytn.gov", true }, { "greener.pl", true }, { "greenews.ga", true }, { "greengates.co.uk", true }, @@ -30877,6 +31976,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greenteamtwente.nl", true }, { "greenwaylog.net", true }, { "greenwithdecor.com", true }, + { "greenytimes.com", true }, { "greer.ru", true }, { "greg.red", true }, { "gregbrimble.com", true }, @@ -30884,6 +31984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "greggsfoundation.org.uk", true }, { "gregmartyn.com", true }, { "gregmarziomedia-dev.com", true }, + { "gregmarziomedia.co.za", true }, { "gregmarziomedia.com", true }, { "gregmc.ru", true }, { "gregmilton.com", true }, @@ -30968,7 +32069,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grizz.gdn", true }, { "grizzlys.com", true }, { "groben-itsolutions.de", true }, - { "grocock.me.uk", true }, { "groenaquasolutions.nl", true }, { "groentebesteld.nl", true }, { "groenteclub.nl", false }, @@ -30976,7 +32076,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groentefruitzeep.nl", true }, { "groepjam-usedcars.be", false }, { "grog.pw", true }, - { "grokandtonic.com", true }, { "grokker.com", true }, { "groklearning.com", true }, { "grolimur.ch", true }, @@ -30991,8 +32090,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "groovygoldfish.org", true }, { "gropp.org", true }, { "gross.business", true }, - { "grossberger-ge.org", true }, + { "grossberger-ge.org", false }, { "grossell.ru", true }, + { "grosser.io", true }, { "grossiste-en-ligne.com", true }, { "grossmisconduct.news", true }, { "groszek.pl", true }, @@ -31002,13 +32102,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grottenthaler.eu", true }, { "grouchysysadmin.com", true }, { "grouindev.net", true }, + { "groundengenharia.com", true }, { "groundmc.net", true }, { "groundsdirect.com", true }, + { "groundspan.com", true }, { "groundthumpingmotors.com", true }, { "groundthumpingmotors.net", true }, { "groundthumpinmotors.com", true }, { "groundthumpinmotors.net", true }, { "group4layers.net", true }, + { "groupe-erige.com", true }, { "groupe-neurologique-nord.lu", true }, { "groupeatrium.net", true }, { "groupem6.fr", true }, @@ -31065,9 +32168,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "grupomedlegal.com", true }, { "grupoparco.com", true }, { "grupoproabienesraices.com.mx", true }, - { "gruposertaoveredas.com.br", true }, { "gruselgrotte.com", true }, - { "grusenmeyer.be", true }, { "gruslic.org.mx", true }, { "gruver.de", true }, { "gruwa.net", true }, @@ -31082,7 +32183,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gse.space", true }, { "gsgs.se", true }, { "gsimagebank.co.uk", true }, - { "gslaw.edu.gh", true }, { "gslink.me", true }, { "gsmbrick.com", true }, { "gsmkungen.com", true }, @@ -31098,6 +32198,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gta-arabs.com", true }, { "gtacty.co", true }, { "gtaforum.nl", true }, + { "gtagames.nl", true }, { "gtapg.net", true }, { "gtcprojects.com", true }, { "gtd.cloud", true }, @@ -31112,6 +32213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gtour.info", false }, { "gtravers-basketmaker.co.uk", true }, { "gtts.space", true }, + { "gtupgrade.eu", true }, { "gtxbbs.com", true }, { "gtxmail.de", true }, { "guadagnare.info", true }, @@ -31139,6 +32241,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guerard.info", true }, { "guercioarchitecture.com", true }, { "guernseycounty.gov", true }, + { "guerra24.net", true }, { "guerrilla.technology", true }, { "guesthouse-namaste.com", true }, { "guevener.de", true }, @@ -31174,7 +32277,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guidesorbetiere.com", true }, { "guidethailande.tk", true }, { "guidetoiceland.is", false }, - { "guilde-dissection.com", true }, { "guildgearscore.cf", false }, { "guildofmusicsupervisors.co.uk", true }, { "guillaume-briand.fr", true }, @@ -31186,13 +32288,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "guim.co.uk", true }, { "guineapigmustach.es", true }, { "guitarangel.tk", true }, - { "guitarvolume.com", true }, { "gujun-sky.com", true }, { "gulchuk.com", true }, { "gulcinulutuna.com", true }, { "gulenbase.no", true }, { "gulfstream.ru", true }, { "gulleyperformancecenter.com", true }, + { "gullones.es", true }, { "gulshankumar.net", true }, { "gumeyamall.jp", true }, { "gumi.ca", true }, @@ -31204,7 +32306,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gunerds.com.br", true }, { "gunhunter.com", true }, { "gunlukburc.net", true }, - { "gunn.ee", true }, + { "gunnarhafdal.com", true }, { "gunshyassassin.com", false }, { "gunstatus.net", true }, { "gununsesi.info", true }, @@ -31214,6 +32316,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gunz.net", true }, { "guochang.xyz", true }, { "guodong.net", true }, + { "guogetv.com", true }, { "guohuageng.com", true }, { "guoke.com", true }, { "guolaw.ca", true }, @@ -31232,6 +32335,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gururi.com", true }, { "gus.host", true }, { "gus.moe", true }, + { "gusli.net", true }, + { "gusmiller.org", true }, { "gustaff.de", true }, { "gustiaux.com", false }, { "gustom.io", false }, @@ -31285,6 +32390,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gwo24.pl", true }, { "gwrtech.com", true }, { "gwsec.co.uk", true }, + { "gwthub.com", true }, + { "gwy15.com", true }, { "gwynfryncottages.com", true }, { "gxgx.org", true }, { "gxlrx.net", true }, @@ -31292,6 +32399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gxpconsultora.com", true }, { "gyaou-ek1njb79xkfsyxemzmauhkvxszyua7v2t.com", true }, { "gyas.nl", true }, + { "gycis.me", true }, { "gymagine.ch", true }, { "gymbunny.de", true }, { "gymhero.me", true }, @@ -31307,7 +32415,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gympass.com", true }, { "gynaecology.co", true }, { "gynem.de", true }, - { "gynoguide.com", true }, { "gyoza.beer", true }, { "gypsyreel.com", true }, { "gyre.ch", false }, @@ -31323,7 +32430,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "gzitech.net", true }, { "gzitech.org", true }, { "gzom.ru", true }, - { "gzriedstadt.de", true }, { "h-ealthy.net", true }, { "h-jo.net", true }, { "h-server.myfirewall.org", true }, @@ -31338,12 +32444,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h24.org", true }, { "h2b.me", true }, { "h2cdn.cloud", true }, + { "h2office.jp", true }, { "h2rul.eu", true }, { "h2s-design.de", true }, { "h2ssafety.com", true }, { "h2u.tv", true }, { "h30365.com", true }, - { "h365.vip", true }, + { "h365.vip", false }, { "h36533.com", true }, { "h36594.com", true }, { "h3artbl33d.nl", true }, @@ -31364,7 +32471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "h6913.com", true }, { "h6957.co", true }, { "h81365.com", true }, - { "h81818.com", true }, { "h82365.com", true }, { "h9297.co", true }, { "h9386.com", true }, @@ -31373,9 +32479,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ha.com", true }, { "ha3.eu", true }, { "ha6.ru", true }, + { "haakonbecker.de", true }, { "haaldesignpro.com", true }, { "haancommunity.cf", true }, - { "haarentfernung-elektroepilation.de", true }, { "haarigerrattenarsch.com", true }, { "haarlemsesaxofoonschool.nl", true }, { "haarstudiok99.nl", true }, @@ -31437,12 +32543,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hackerone.net", true }, { "hackerone.org", true }, { "hackerschat.net", true }, + { "hackerspace.rocks", true }, { "hackerstxt.org", true }, { "hackettrecipes.com", true }, { "hackgins.com", true }, { "hackhouse.sh", true }, { "hackingand.coffee", false }, - { "hackingarise.com", true }, { "hackingdh.com", true }, { "hackingsafe.com", true }, { "hackingvision.com", true }, @@ -31484,6 +32590,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haggeluring.su", true }, { "hagiati.gr", true }, { "hagier.pl", true }, + { "hagoyvivo.com", true }, { "hagskold.se", true }, { "hagueaustralia.com.au", true }, { "haha-raku.com", true }, @@ -31499,7 +32606,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haineshilton.com", true }, { "hainoni.com", true }, { "hair-guide.net", true }, - { "hair-reborn.be", true }, { "haircode.gr", true }, { "haircrazy.com", true }, { "haircutideas.gq", true }, @@ -31507,9 +32613,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hairpins.tk", true }, { "hairplaybychenellekay.com", false }, { "hairraisingphotobooths.co.uk", true }, - { "hairtonic-lab.com", true }, { "haitaka.cc", true }, { "haitou.tk", true }, + { "haiwaiyingyuan.net", true }, { "haixihui.cn", true }, { "haizum.pro", true }, { "hajekdavid.cz", true }, @@ -31526,6 +32632,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hakkariradyo.tk", true }, { "hakkasan.com", true }, { "hakkasannightclub.com", true }, + { "haklappar.nu", true }, { "hakugin.me", true }, { "hal-9th.space", true }, { "halacs.hu", true }, @@ -31536,6 +32643,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "halfco.de", true }, { "halfhosting.de", true }, { "halfwaythere.eu", true }, + { "halihali.me", true }, { "halilweb.tk", true }, { "halilyagcioglu.tk", true }, { "halkirkbouncycastles.co.uk", true }, @@ -31549,15 +32657,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "halligladen.de", true }, { "hallmarkestates.ca", true }, { "hallme.com", true }, + { "hallocsi.ga", true }, { "hallopstyling.com", true }, { "halls.hu", true }, + { "hallspumpandwellservice.net", true }, { "hallucinogen.com", true }, { "hallucinogens.org", true }, { "halo.fr", true }, { "halocredit.pl", true }, { "halongbaybackpackertour.com", true }, { "haloobaloo.com", true }, - { "haloria.com", true }, + { "halovanic.org", true }, { "haltegame.com", true }, { "halyul.com", true }, { "hamacho-kyudo.com", true }, @@ -31584,12 +32694,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hampshiretechservices.co.uk", true }, { "hamsystems.eu", true }, { "hamu.blue", true }, + { "hamyarpet.com", true }, { "hana-groupsac.com", true }, { "hana.ondemand.com", true }, { "hanakaraku.com", true }, - { "hanami-web.tokyo.jp", true }, { "hanazono.tokyo", true }, { "hanbing.it", true }, + { "hancockcountyohioelections.gov", true }, { "hancocklawfl.com", true }, { "handbrake.fr", true }, { "handcraft.eu.org", true }, @@ -31601,6 +32712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "handmadehechoamano.com", true }, { "handmadetutorials.ro", true }, { "handwerk-digital-steinfurt.de", true }, + { "handwerkwebseiten.de", true }, { "handy-reparatur-berlin.com", true }, { "handyglas.com", true }, { "handymanbypolli.com", true }, @@ -31614,6 +32726,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hang333.moe", true }, { "hang333.pw", true }, { "hangar.hosting", true }, + { "hangarbox.de", true }, { "hangcapnach.com", true }, { "hangerphant.com", true }, { "hangout", true }, @@ -31663,6 +32776,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hao-zhang.com", true }, { "hao6.ag", true }, { "hao8.ag", true }, + { "haocq3.com", true }, { "haogoodair.ca", true }, { "haorenka.org", true }, { "haozhang.org", true }, @@ -31679,6 +32793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "happy-life-food.de", true }, { "happyagain.de", true }, { "happyagain.se", true }, + { "happyandrelaxeddogs.com", true }, { "happyandrelaxeddogs.eu", true }, { "happybeerdaytome.com", true }, { "happybirthdaywisher.com", true }, @@ -31691,6 +32806,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "happydietplan.com", true }, { "happydoq.ch", false }, { "happygadget.me", true }, + { "happyglacons.com", true }, + { "happyheartsabode.com", true }, { "happykidscastles.co.uk", true }, { "happylearning.com", true }, { "happylifestyle.com", true }, @@ -31704,7 +32821,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haptemic.com", true }, { "hapvm.com", true }, { "harabar.ml", true }, - { "haraj.com.sa", true }, { "harald-d.dyndns.org", true }, { "harald-pfeiffer.de", true }, { "haramainbd.com", true }, @@ -31727,6 +32843,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hardrock.tk", true }, { "hardtfrieden.de", true }, { "hardtime.ru", true }, + { "hardwarelog.in", true }, + { "hardwarelogin.com", true }, + { "hardwarelogin.rocks", true }, { "hardwareschotte.de", true }, { "harelmallac.com", true }, { "harelmallacglobal.com", true }, @@ -31742,7 +32861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "harley-davidson-live.com", true }, { "harleyclassifieds.com", true }, { "harlor.de", true }, - { "harmfarm.nl", true }, { "harmoney.co.nz", true }, { "harmoney.com", true }, { "harmoney.com.au", true }, @@ -31770,6 +32888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "harrysmallbones.co.uk", true }, { "harrysqnc.co.uk", true }, { "harschnitz.nl", false }, + { "harshee.ml", true }, { "hartfordct.gov", true }, { "hartie95.de", true }, { "hartkampforkids.nl", true }, @@ -31805,11 +32924,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hashcat.net", true }, { "hashemian.com", true }, { "hashi.dk", true }, + { "hashiconf.com", false }, { "hashicorp.com", false }, { "hashidays.com", false }, { "hashimah.ca", true }, { "hashimoto-jimusho.com", true }, - { "hashinteractive.com", true }, + { "hashinteractive.com", false }, { "hashish.net", true }, { "hashiura.jp", true }, { "hashplex.com", true }, @@ -31825,6 +32945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hasseplatslageri.se", true }, { "hassra.org.uk", true }, { "hastaneurunleri.com.tr", true }, + { "hastyllc.com", true }, { "hatachan.site", true }, { "hatarisecurity.co.ke", true }, { "hatcher.cloud", true }, @@ -31845,9 +32966,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haushaltsaufloesunghannover.de", true }, { "haushenne.de", true }, { "hausjugo.de", true }, + { "hauspie.fr", true }, { "haustechnik-breu.de", true }, { "hausundhof.com", true }, { "hausverbrauch.de", true }, + { "hausverwaltung-motsch.de", true }, { "hautaka.com", true }, { "hautarztzentrum.ch", true }, { "hauteslatitudes.com", false }, @@ -31873,6 +32996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "havetherelationshipyouwant.com", true }, { "hawaar.com", true }, { "hawaiianchoice.com", true }, + { "hawaiiforbernie.com", true }, { "hawaiioceanproject.com", true }, { "hawaiiwho.com", true }, { "hawawa.kr", true }, @@ -31891,12 +33015,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "haxx.hu", true }, { "hayai.space", true }, { "hayashi-rin.net", true }, + { "hayden.ru", true }, + { "haydenbleasel.com", true }, { "haydenjames.io", true }, { "hayfordoleary.com", true }, { "hayl.me.uk", true }, { "hayobethlehem.nl", true }, { "hayonik.com", true }, - { "haystack-staging.com", true }, { "haystackrenovation.com.au", true }, { "hayvid.com", true }, { "haz.cat", true }, @@ -31917,6 +33042,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hbbet.com", true }, { "hbcm70.fr", true }, { "hbcu-colleges.com", true }, + { "hbelectricsolutions.com", true }, { "hbgshop.cf", true }, { "hbkonsult.com", true }, { "hboeck.de", true }, @@ -31926,16 +33052,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hbweb.io", true }, { "hcbj.io", true }, { "hcie.pl", false }, - { "hcs-company.com", true }, { "hcscrusaders.com", true }, + { "hd-6132.com", true }, { "hd-gaming.com", true }, { "hd-iptv.co", true }, { "hd-offensive.at", false }, { "hd-only.org", true }, { "hd-outillage.com", true }, + { "hd2132.com", true }, + { "hd5132.com", true }, { "hd5197.com", false }, + { "hd5414.com", true }, + { "hd5424.com", true }, + { "hd5454.com", true }, + { "hd6132.com", true }, { "hd6729.com", true }, { "hd6957.com", true }, + { "hd7337.com", true }, { "hd9397.com", true }, { "hd9721.com", true }, { "hdbits.org", true }, @@ -31955,6 +33088,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hds-lan.de", true }, { "hdtwinks.com", true }, { "hdv.paris", true }, + { "hdview.co.uk", true }, { "hdwalldownloads.com", false }, { "hdwallpapers.net", true }, { "hdy.nz", true }, @@ -31964,6 +33098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "head.ru", true }, { "headforcloud.com", true }, { "headjapan.com", true }, + { "headlinenews.co", true }, { "headlinepublishing.be", true }, { "healike.hk", true }, { "healingourskin.com", true }, @@ -31986,7 +33121,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "healthfinder.gov", true }, { "healthfitapp.com", true }, { "healthfoam.com", true }, - { "healthgames.co.uk", true }, { "healthiergenerations.co.uk", true }, { "healthit.gov", true }, { "healthmatchapp.com", true }, @@ -32007,7 +33141,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "healthyteame.com", true }, { "heapkeeper.org", true }, { "heardcountyathletics.com", true }, + { "hearfool.cc", true }, { "hearingshofar.com", true }, + { "hearkener.com", true }, { "hearmeraw.uk", true }, { "heartbeat24.de", true }, { "heartbound.wiki", true }, @@ -32022,6 +33158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hearttruth.gov", true }, { "heartwoodart.com", true }, { "hearty.blog", true }, + { "hearty.edu.pl", true }, { "hearty.eu.org", true }, { "hearty.ga", true }, { "hearty.gq", true }, @@ -32051,13 +33188,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hebamme-cranio.ch", true }, { "hebamme-ebersberg.de", true }, { "hebbet.de", true }, + { "hebel-intern.de", true }, { "heberut.gov", true }, { "hebikhiv.nl", true }, { "hebingying.cn", true }, { "hec-espace-entreprise.ch", false }, { "hec.global", true }, + { "hechizosymagianegra.es", true }, { "heckelektro.de", true }, { "heckerundknopp.de", true }, + { "heddoun.com", true }, { "hedge.fi", true }, { "hedgeschool.ie", true }, { "hedonism.org", true }, @@ -32093,6 +33233,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heijmans.cloud", true }, { "heijmans.email", true }, { "heijmans.io", true }, + { "heijmans.network", true }, + { "heijmans.one", true }, { "heijmans.pm", true }, { "heijmans.xyz", true }, { "heikegastmann.com", true }, @@ -32106,6 +33248,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heimonen.eu", true }, { "heimprofis.de", true }, { "heinemeier.dk", true }, + { "heinenhopman.ro", true }, { "heino-peters.de", true }, { "heinpost.nl", false }, { "heinrich-kleyer-schule.de", true }, @@ -32120,6 +33263,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heiwa-valve.co.jp", false }, { "hejsupport.se", true }, { "heka.ai", true }, + { "hekat.sk", true }, { "hekeki.com", true }, { "hektenkairez.com", true }, { "helber-it-services.de", true }, @@ -32130,6 +33274,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heldtech.services", true }, { "heldundsexgott.de", true }, { "heleendebruyne.be", true }, + { "helenabienesraices.com.mx", true }, { "helenaknowledge.com", true }, { "helenekurtz.com", true }, { "helenelefauconnier.com", true }, @@ -32137,7 +33282,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "helensmithpr.co.uk", true }, { "helfordriversc.co.uk", true }, { "helgaschultz.de", true }, - { "helicaldash.com", true }, { "helichat.de", true }, { "helifreak.club", true }, { "helijobs.net", true }, @@ -32158,15 +33302,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hellersgas.com", true }, { "helloacm.com", true }, { "helloafrica.ga", true }, + { "hellobee.com", true }, { "hellobrian.me", true }, { "hellocyber.co.uk", true }, { "hellofilters.com", true }, - { "hellofrom.com", true }, + { "hellolocalmedia.com.au", true }, + { "hellolove.sg", true }, { "hellomedian.com", true }, { "hellomookie.com", true }, { "hellomouse.cf", true }, { "hellomouse.net", true }, - { "hellomouse.tk", true }, { "hellosalmon.com", true }, { "hellotandem.com", true }, { "hellothought.net", true }, @@ -32203,17 +33348,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hemdal.se", true }, { "hemkoll.nu", true }, { "hemnet.se", true }, - { "hemp.je", true }, + { "hemp.je", false }, { "hems.si", true }, { "hemtest.com", true }, { "hen.ne.ke", true }, - { "henchman.io", true }, { "hendersonvalleyautomotive.co.nz", true }, - { "hendranicholas.com", true }, + { "hendersonvilletutor.com", true }, { "hendric.us", false }, { "hendrickx.be", true }, { "hendrik.li", true }, { "hendrinortier.nl", true }, + { "heng555.com", true }, { "hengelsportdeal.com", true }, { "hengroenet.de", true }, { "hengstumone.com", true }, @@ -32244,6 +33389,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "henrilammers.nl", true }, { "henrock.net", true }, { "henry.gg", true }, + { "henrycountyohio.gov", true }, { "henryocallaghan.com", true }, { "henryphan.com", false }, { "henrysautodetail.com", true }, @@ -32271,6 +33417,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "herbertjanvandinther.nl", true }, { "herbhuang.com", true }, { "herbolarigranvida.com", true }, + { "herbsupplements.co.uk", true }, { "herbweb.net", true }, { "herbweb.org", true }, { "herculex.fi", true }, @@ -32285,12 +33432,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heritagebaptistchurch.com.ph", true }, { "heritagecoffee.co.uk", true }, { "herkam.pl", true }, + { "herkel.email", true }, + { "herkelmedia.com", true }, + { "herkelmedia.de", true }, + { "herlynlingerie.com", true }, { "hermanbrouwer.nl", true }, { "hermann.in", true }, { "hermes-net.de", true }, { "hermes-servizi.it", true }, { "hermes.cat", true }, { "herminghaus24.de", true }, + { "hermitant.fr", true }, { "hermiu.com", true }, { "herni-kupony.cz", true }, { "hernn.com", true }, @@ -32349,6 +33501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "heutger.net", true }, { "hevertonfreitas.com.br", true }, { "hex.nl", true }, + { "hexa.network", true }, { "hexacon.io", true }, { "hexadecimal.tech", true }, { "hexagon-e.com", true }, @@ -32356,9 +33509,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexclock.io", true }, { "hexcode.in", true }, { "hexed.it", true }, - { "hexhu.net", true }, + { "hexhu.com", true }, { "hexiaohu.cn", true }, - { "hexicurity.com", true }, { "hexid.me", false }, { "hexieshe.com", true }, { "hexo.io", false }, @@ -32370,12 +33522,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hexstream.xyz", true }, { "hexstreamsoft.com", true }, { "hexxagon.com", true }, - { "heyapakabar.com", true }, { "heyboldface.com", true }, { "heycms.com", false }, { "heyfringe.com", true }, { "heyjournal.com", true }, { "heywood.cloud", true }, + { "hf51.nl", true }, { "hflsdev.org", false }, { "hfox.org", true }, { "hfsctx.gov", true }, @@ -32445,15 +33597,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiddenimage.ml", true }, { "hiddenmalta.net", true }, { "hiddenpalms.tk", true }, + { "hiddenrefuge.eu.org", true }, { "hiddout.com", true }, { "hide.me", true }, { "hideallip.com", true }, { "hidedd.com", true }, - { "hideo54.com", true }, { "hideouswebsite.com", true }, { "hidupnomad.com", false }, { "hieisuki.ga", true }, { "hielscher.com", true }, + { "hierer.com", true }, { "hieu.com.au", true }, { "hif88.com", true }, { "hifala.de", true }, @@ -32467,6 +33620,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "highdesertroboticsurgery.com", true }, { "highenergy.ro", true }, { "higherpress.org", true }, + { "highinthemid80s.com", true }, { "highkick.jp", true }, { "highland-webcams.com", true }, { "highlandparkcog.org", true }, @@ -32479,11 +33633,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "highriskpay.com", true }, { "highspeed-arnsberg.de", true }, { "highspeedinternet.my", true }, + { "highstreethomes.com.au", true }, { "hightechbasementsystems.com", true }, { "hightechgadgets.net", true }, { "hightechreviews.ga", true }, { "hightimes.com", true }, { "highwaytohoell.de", true }, + { "highwayzen.org", true }, { "higilopocht.li", true }, { "hiimodel.com", true }, { "hik-cloud.com", true }, @@ -32510,6 +33666,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hillcrestswimclub.com", true }, { "hillebrand.io", true }, { "hillier-swift.co.uk", true }, + { "hillingshaeuser.com", true }, { "hillsandsaunders.co.uk", true }, { "hillsandsaunders.com", true }, { "hillsboroccpa.org", true }, @@ -32523,7 +33680,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hiltonsydney.com.au", true }, { "himalaya-cross.com", true }, { "himalaya-masala.at", true }, - { "himalaya.video", true }, { "himalayanyogashram.com", true }, { "himcy.ga", true }, { "himecorazon.com", true }, @@ -32533,23 +33689,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hin10.com", true }, { "hinaryazan.com", true }, { "hinata-hidetoshi.com", true }, + { "hinderlider.de", true }, { "hindibaba.tk", true }, { "hindimoviedownload.net", true }, { "hindimovieonline.net", true }, { "hindu-temple.tk", true }, - { "hinepaving.com", true }, + { "hinepaving.com", false }, { "hingle.me", true }, - { "hingston.org", true }, + { "hinota.com", true }, { "hintergrundbewegung.de", true }, { "hinterhofbu.de", true }, { "hinterposemuckel.de", true }, { "hintss.pw", false }, - { "hinyari.net", true }, { "hiparish.org", true }, { "hipeople.com.br", true }, { "hipercultura.com", true }, { "hiperusera.es", true }, { "hiphop.ren", true }, + { "hiphop2gif.com", true }, { "hipnos.net", true }, { "hippiekiller.net", true }, { "hippies.com.br", true }, @@ -32564,7 +33721,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hirakatakoyou.org", true }, { "hirake55.com", true }, { "hiratake.xyz", true }, - { "hire-a-coder.de", true }, { "hireabouncycastle.net", true }, { "hirel.gq", true }, { "hireprofs.com", true }, @@ -32575,25 +33731,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hirezzportal.com", true }, { "hiromuogawa.com", true }, { "hirotaka.org", true }, + { "hirte-digital.de", false }, { "hisbrucker.net", true }, { "hisgifts.com.au", true }, { "hisingensck.se", true }, { "hisnet.de", true }, { "hispadent.com.do", true }, + { "hispania-valencia.com", true }, { "hispanic.dating", true }, { "hisregistries.com", true }, { "hisregistries.net", true }, { "hisregistries.org", true }, { "histkult.tk", true }, { "histoire-cite.ch", false }, - { "histoiresdecontenu.com", true }, + { "histoiresdecontenu.com", false }, { "histoiresdemotos.fr", true }, { "historia-arte.com", true }, { "historiasdepueblo.es", true }, + { "historischhout.nl", true }, { "history-schools.com", true }, { "history.google.com", true }, { "history.gov", true }, { "history.pe", true }, + { "historymuseumsb.org", true }, { "hitandhealth.nl", true }, { "hitchpin.com", true }, { "hitchunion.org", true }, @@ -32610,7 +33770,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hititgunesi-tr.com", true }, { "hitmanstat.us", true }, { "hitn.at", true }, - { "hitoapi.cc", false }, { "hitokoto-mania.com", true }, { "hitokoto.cn", false }, { "hitomecha.com", true }, @@ -32654,14 +33813,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hj99199.com", false }, { "hj99333.com", false }, { "hj99vip.com", false }, + { "hjallboscoutkar.se", true }, { "hjartasmarta.se", true }, + { "hjdiaz.com", true }, { "hjelpemiddeldatabasen.no", true }, { "hjertingfysioterapi.dk", true }, { "hjes.com.ve", true }, { "hjkbm.cn", true }, { "hjort.land", true }, { "hjortland.org", true }, + { "hjosh.com", true }, { "hjphoto.co.uk", true }, + { "hjstudio.co", true }, { "hjtky.cn", true }, { "hjyl.xn--fiqs8s", false }, { "hjyl1888.com", false }, @@ -32700,6 +33863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hlfh.space", true }, { "hlg66.cc", true }, { "hlg88.cc", true }, + { "hlidani-tornado.cz", true }, { "hlinformatics.nl", true }, { "hloe0xff.ru", true }, { "hlpublicidad.com", true }, @@ -32708,12 +33872,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hlx66.cc", true }, { "hlx86.cc", true }, { "hly0928.com", true }, + { "hlz.mn", true }, { "hm1ch.com", true }, { "hm1ch.ovh", true }, { "hm773.org", true }, { "hmcdj.cn", true }, - { "hmeonot.org.il", true }, - { "hmhotelec.com", false }, { "hmnd.io", true }, { "hmoegirl.com", true }, { "hmri.org.au", true }, @@ -32725,6 +33888,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hnfertilizermachine.com", true }, { "hnn.net.br", true }, { "hnonline.sk", true }, + { "hnsseed.com", true }, { "hnyp.hu", true }, { "ho18.net", true }, { "ho188.net", true }, @@ -32739,7 +33903,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoathienthao.vn", true }, { "hobby-drechselei.de", true }, { "hobby-freizeit.de", true }, - { "hobbyspeed.com", true }, { "hoberg.ch", true }, { "hochhaus.us", true }, { "hochoukikikiraku.com", true }, @@ -32747,9 +33910,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hochzeit-dana-laurens.de", true }, { "hochzeitsfotograf-deinfoto.ch", true }, { "hochzeitsplanerin-hamburg.de", true }, + { "hochzeitstypen.de", true }, { "hockey.academy", true }, { "hockeyapp.ch", true }, { "hockeymotion.ch", true }, + { "hockeyworldwide.com", true }, + { "hod-ok.com", true }, { "hodgephotography.com", true }, { "hodler.shop", true }, { "hoe.re", true }, @@ -32765,8 +33931,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hofapp.de", true }, { "hofauer.de", true }, { "hoffmancorporation.com", true }, + { "hoffmann-fliesen-design.de", true }, { "hoffnungberlin.de", true }, { "hoffnungdeutschland.de", true }, + { "hofiprojekt.cz", true }, { "hoflerlawfirm.com", true }, { "hofstaetter.io", true }, { "hogarthdavieslloyd.com", true }, @@ -32776,6 +33944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hogrebe.de", true }, { "hogwarts.io", true }, { "hohenleimbach.de", true }, + { "hohenpoelz.de", true }, { "hohm.in", true }, { "hohnet.com", false }, { "hoiquanadida.com", true }, @@ -32802,7 +33971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "holistichealer.in", true }, { "holisticon.de", true }, { "holland-sailing.de", true }, - { "hollandsdiep.nl", true }, { "hollermann.eu", true }, { "hollowpoint.xyz", true }, { "hollowrap.com", true }, @@ -32853,7 +34021,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hombresconestilo.com", true }, { "home-cloud.online", true }, { "home-insurance-quotes.tk", true }, - { "home-sud-renovation.com", true }, + { "home-sud-renovation.com", false }, { "home-v.ind.in", true }, { "homeable.io", true }, { "homeadore.com", true }, @@ -32861,7 +34029,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeautomated.com", true }, { "homebank.kg", true }, { "homebasedsalons.com.au", true }, - { "homebodyalberta.com", true }, { "homebrewshop.be", true }, { "homecareassociatespa.com", true }, { "homecareinterio.com", true }, @@ -32869,6 +34036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homecheck.gr", true }, { "homecoming.city", true }, { "homecompost.in", true }, + { "homedentist.cl", true }, { "homeehome.com", true }, { "homefacialpro.com", false }, { "homegardeningforum.com", true }, @@ -32878,14 +34046,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeimagician.com.au", true }, { "homelab.farm", true }, { "homelabalert.com", true }, - { "homelabquotes.com", true }, - { "homeland.ie", true }, + { "homelandsecurity.gov", true }, { "homem-viril.com", true }, + { "homemakerschallenge.com", true }, { "homemdeferro.net", true }, { "homeodynamics.com", true }, { "homeoesp.org", true }, { "homeofjones.net", true }, { "homeogenium.com", false }, + { "homeopata.tv", true }, { "homeownersinsurancenevada.com", true }, { "homeownersinsurancenv.com", true }, { "homepage.shiga.jp", true }, @@ -32896,10 +34065,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "homeseller.com", true }, { "homeserver-kp.de", true }, { "homeshowoff.com", true }, + { "homestead-honey.com", true }, { "homesteadandprepper.com", true }, { "homesteadfarm.org", true }, { "homewatt.co.uk", true }, { "homeworkacers.com", true }, + { "homey-app.online", true }, { "homeyou.com", true }, { "hommeatoutfaire.be", false }, { "homoglyph.net", true }, @@ -32918,11 +34089,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "honey.is", true }, { "honeybadger.io", false }, { "honeybrooklibrary.org", true }, + { "honeycomb.com.vn", true }, + { "honeycome-recruit.com", true }, { "honeycome.net", true }, { "honeycreeper.com", true }, { "honeyhaw.com", true }, { "honeymaze.com", true }, { "honeypot.net", true }, + { "honeyspot.de", true }, { "honeytracks.com", true }, { "hong.io", true }, { "hongbomiao.com", true }, @@ -32943,10 +34117,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hoodoo.tech", true }, { "hoodtrader.com", true }, { "hoofdredacteuren.nl", true }, + { "hoogelandzorg.nl", true }, { "hoogeveen.nl", false }, - { "hookany.com", true }, + { "hooghiemstrazelf.nl", true }, { "hookbin.com", true }, { "hookshotdesign.com", true }, + { "hookupndate.com", true }, { "hookxlab.org", false }, { "hoon.tk", true }, { "hoooc.com", true }, @@ -32956,6 +34132,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hooplessinseattle.com", true }, { "hoopshabit.com", true }, { "hooray.beer", true }, + { "hoorig.de", true }, { "hoorr.com", true }, { "hoosa.de", true }, { "hootworld.net", false }, @@ -32979,6 +34156,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hopzone.net", true }, { "hor.website", true }, { "horaceli.com", true }, + { "horaciolopez.pro", true }, { "horackova.info", true }, { "horairetrain.be", true }, { "horairetrain.ch", true }, @@ -33014,6 +34192,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "horsehunter.co.uk", true }, { "horsky.me", true }, { "horstmanshof.eu", true }, + { "horti-it.com", true }, { "horton-brasses.com", true }, { "horvathd.eu", true }, { "horvatnyelvkonyv.hu", true }, @@ -33037,6 +34216,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostcoz.com", true }, { "hosteasy.nl", false }, { "hostedcomments.com", true }, + { "hostedghost.eu", true }, + { "hostedghost.net", true }, + { "hostedghost.nl", true }, + { "hostedghost.org", true }, { "hostedtalkgadget.google.com", true }, { "hosteleriauno.es", true }, { "hosteons.com", true }, @@ -33053,29 +34236,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hostinginnederland.nl", true }, { "hostinglogin.net", true }, { "hostingphp.ch", true }, - { "hostingpunt.be", true }, { "hostingsolutions.cz", true }, { "hostix.de", true }, { "hostma.ma", true }, { "hostmijnpagina.nl", true }, { "hostmodern.com.au", true }, { "hostmywebsite.online", true }, + { "hostpoint.ch", true }, + { "hostwinds.com", true }, { "hosuronline.com", true }, { "hot-spa.ch", false }, { "hotartup.com", true }, { "hotcandlestick.com", true }, { "hotchillibox.com", true }, { "hotcoin.io", true }, + { "hotdates18.com.au", true }, + { "hotdates18.dk", true }, + { "hotdates18.fi", true }, { "hotdoc.com.au", true }, { "hotel-alan.hr", true }, { "hotel-kontorhaus-stralsund.de", true }, { "hotel-kontorhaus.de", true }, { "hotel-kronjuwel.de", true }, { "hotel-le-vaisseau.ch", true }, - { "hotel-pension-sonnalp.eu", true }, { "hotel-rosner.at", true }, { "hotel-schiller.de", true }, - { "hotel1926.com.mt", true }, { "hotelamgarnmarkt.at", false }, { "hotelbonacabol.com", true }, { "hotelbretagne.dk", true }, @@ -33092,7 +34277,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotelident.de", true }, { "hotelindraprasth.biz", true }, { "hotelkaj.hr", true }, - { "hotellerssolutions.com", true }, { "hotellilas.in", true }, { "hotello.io", true }, { "hotelmadhuwanvihar.com", true }, @@ -33119,25 +34303,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hotesb.com", true }, { "hotesb.net", true }, { "hothbricks.com", false }, + { "hothub.net", true }, { "hotjuice.com", true }, + { "hotlistproducts.com", true }, { "hotlog.tk", true }, { "hotmann.de", true }, { "hotnewhiphop.com", true }, { "hoton.in", true }, { "hotornot.com", true }, { "hotplate.co.nz", true }, - { "hotplug.gr", true }, + { "hotrowordpress.com", true }, { "hottaro.com", true }, { "hottestwebcamgirls.org", true }, { "hottheme.net", true }, { "hotting.nl", true }, - { "hottubhirenewcastle.co.uk", true }, { "hottubspasnewcastle.co.uk", true }, { "hotwifer.com", true }, { "houby-studio.eu", true }, { "houdremont-la-courneuve.info", true }, { "houhuayuan.com", true }, { "houraiteahouse.net", true }, + { "house-scape.com", true }, { "house-sparrow.com", true }, { "houseandgarden.co.uk", true }, { "houseboydesigns.com", true }, @@ -33158,7 +34344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "houstonendodontics.com", true }, { "houstongaragedoorsrepair.com", true }, { "houstonlockout.com", true }, - { "houstontxlocksmiths.com", true }, { "houtinee.com", true }, { "hoverboardbarato.com", true }, { "how-old.info", true }, @@ -33168,7 +34353,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howa-n.net", true }, { "howardscholars.org", false }, { "howbehealthy.com", true }, - { "howbigismybuilding.com", true }, { "howellaccounts.co.uk", true }, { "howgoodwasmysex.com", true }, { "howieisawesome.com", true }, @@ -33176,6 +34360,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howmanymilesfrom.com", true }, { "howmanypeoplearethereinthe.world", true }, { "howmanypeoplearethereintheworld.com", true }, + { "howonce.cn", true }, + { "howonce.com", true }, + { "howonce.com.cn", true }, + { "howonce.net", true }, + { "howonce.org", true }, { "howsecureismypassword.net", true }, { "howsmyssl.com", true }, { "howsmytls.com", true }, @@ -33185,6 +34374,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howtogosolar.org", true }, { "howtolaser.com", true }, { "howtomovetheneedle.com", true }, + { "howtorunfasterandlonger.com", true }, { "howtoteachviolin.com", true }, { "howtotech.de", true }, { "howtutu.click", true }, @@ -33195,10 +34385,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "howtutu.link", true }, { "howtutu.net", true }, { "howtutu.org", true }, + { "howunadeydoam.ng", true }, { "hoxo.fr", true }, { "hozana.si", false }, { "hozinga.de", true }, { "hp-67.com", true }, + { "hp-lexicon.org", true }, { "hp-work.net", true }, { "hp42.de", true }, { "hpac-portal.com", true }, @@ -33216,6 +34408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hq77.ru", true }, { "hqon.com.br", true }, { "hqq.tv", true }, + { "hqsmartpanel.com", true }, { "hquest.pro.br", true }, { "hqwebhosting.tk", false }, { "hqy.moe", true }, @@ -33238,6 +34431,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "href.one", true }, { "hreflang.info", true }, { "hrjfeedstock.org", true }, + { "hrkenterprise.com", true }, { "hrltech.com.br", true }, { "hrmg.agency", true }, { "hrna.moe", true }, @@ -33247,7 +34441,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hroling.nl", true }, { "hroschyk.cz", true }, { "hrpregnancy.com", true }, - { "hrsa.gov", true }, { "hrstapps-dev.com", true }, { "hrtech.shop", true }, { "hrumka.net", true }, @@ -33260,6 +34453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hschen.top", false }, { "hscorp.de", true }, { "hsg-kreuzberg.de", true }, + { "hsimrall.com", true }, { "hsivonen.com", true }, { "hsivonen.fi", true }, { "hsivonen.iki.fi", true }, @@ -33275,13 +34469,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hsts.me", true }, { "hsts.ovh", true }, { "hstsfail.appspot.com", true }, - { "hstspreload.appspot.com", true }, { "hstspreload.com", true }, { "hstspreload.de", true }, { "hstspreload.me", true }, - { "hstspreload.org", true }, + { "hstudio.tk", true }, { "hsturan.com", true }, - { "hsuan.pw", true }, { "hsulei.com", true }, { "hszemi.de", true }, { "ht.mk", true }, @@ -33309,6 +34501,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "http-2.com", true }, { "http2.eu", true }, { "http2.pro", true }, + { "http3.ch", true }, { "http3.pro", true }, { "https-rulesets.org", true }, { "https.dk", true }, @@ -33331,7 +34524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "httpswatch.eu", true }, { "httpswatch.nl", true }, { "httptest.net", true }, - { "htxlaunch.sg", true }, { "hu-a-u.com", true }, { "hu.search.yahoo.com", false }, { "hua-chuan.com.tw", true }, @@ -33345,6 +34537,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huabianwa.com", true }, { "huagati.com", true }, { "huahinpropertylisting.com", true }, + { "huai123.org", true }, { "hualao.co", true }, { "huang-haitao.com", true }, { "huang.nu", true }, @@ -33389,6 +34582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hubspot.fr", true }, { "hubspot.jp", true }, { "huchet.me", true }, + { "hucklebucks.com", true }, { "hudebnibazarmixer.cz", true }, { "hudhaifahgoga.co.za", true }, { "hudobniny.net", true }, @@ -33403,6 +34597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huffduffer.com", true }, { "huffsinsurance.com", true }, { "hugh-dancy.com", true }, + { "hughfitzgerald.com", true }, { "hughtodd.ink", true }, { "hugi.is", true }, { "huglen.info", true }, @@ -33424,7 +34619,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hui-in.com", true }, { "hui-in.net", true }, { "huihui.moe", true }, - { "huimiquan.com", true }, { "huininga.com", true }, { "huininga.nl", true }, { "huininga.org", true }, @@ -33458,7 +34652,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humanity.com", true }, { "humaniza.com.mx", true }, { "humanlocation.net", true }, - { "humans.io", true }, + { "humannaturelandscapes.com.au", true }, + { "humans.io", false }, + { "humansense.nl", true }, { "humanzee.com", true }, { "humass.nl", true }, { "humblebee.at", true }, @@ -33493,6 +34689,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "humeur.de", true }, { "humexe.com", true }, { "humio.com", true }, + { "humitat-stop.com", true }, { "hummingbird.services", true }, { "hummy.tv", true }, { "humpchies.com", true }, @@ -33523,6 +34720,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "huntsmansecurity.com", true }, { "huntsvillealtransit.gov", true }, { "huntsvillecottage.ca", true }, + { "huntyourshitaround.com", true }, { "huoduan.com", true }, { "huonit.com.au", true }, { "huoqibaike.club", true }, @@ -33533,7 +34731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hurbascooter.com", true }, { "hurd.is", true }, { "hurleyhomestead.com", true }, - { "huroji.com", true }, + { "huroji.com", false }, { "hurricanelabs.com", true }, { "hurtigtinternet.dk", true }, { "husakbau.at", true }, @@ -33546,6 +34744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hussam.eu.org", true }, { "hustlehope.com", true }, { "huto.ml", true }, + { "huuduc.xyz", true }, { "huurwoordenaar.nl", true }, { "huutonauru.net", true }, { "huwcbjones.co.uk", true }, @@ -33604,8 +34803,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyckenberg.com", true }, { "hyderabadonlinegifts.com", true }, { "hydra-clothing.com", true }, - { "hydracommunity.net", true }, { "hydrante.ch", false }, + { "hydrazin.pw", true }, { "hydro17.com", true }, { "hydroagro.pl", true }, { "hydrocloud.net", true }, @@ -33639,7 +34838,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyper-text.org", true }, { "hyper.ai", true }, { "hyper.lol", true }, - { "hyperactive.am", true }, { "hyperalgesia.com", true }, { "hyperautomotive.com.au", true }, { "hyperbolic-mayonnaise-interceptor.ovh", true }, @@ -33651,6 +34849,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hyperstack.org", true }, { "hyperthymia.com", true }, { "hyperv.fr", true }, + { "hypevents.net", true }, { "hyphen.co.za", true }, { "hyphenpda.co.za", true }, { "hypnose-hennigsdorf.de", true }, @@ -33664,7 +34863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hypothes.is", true }, { "hypothesis.link", true }, { "hypothyroidmom.com", true }, - { "hyr.mn", true }, + { "hyr.mn", false }, { "hysemmarket.com", true }, { "hysh.jp", true }, { "hysolate.com", true }, @@ -33673,6 +34872,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "hytzongxuan.com", true }, { "hytzongxuan.top", true }, { "hyundai.no", true }, + { "hyundaisrilanka.lk", true }, { "hyvanilmankampaamo.fi", true }, { "hyvinvointineuvoja.fi", true }, { "hyyen.com", true }, @@ -33680,6 +34880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i--b.com", true }, { "i-0v0.in", true }, { "i-aloks.ru", true }, + { "i-connect.ie", true }, { "i-fastnet.net", true }, { "i-geld.de", true }, { "i-house.gq", true }, @@ -33699,6 +34900,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i-voting.pl", true }, { "i00.eu", true }, { "i00228.com", true }, + { "i0day.com", true }, { "i1314.gdn", true }, { "i2b.ro", true }, { "i2gether.org.uk", true }, @@ -33706,7 +34908,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i30365.com", true }, { "i36533.com", true }, { "i365365.com", true }, - { "i36588.com", true }, + { "i36588.com", false }, { "i36594.com", true }, { "i4m1k0su.com", true }, { "i51365.com", true }, @@ -33716,9 +34918,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "i6729.co", true }, { "i6729.com", true }, { "i6957.co", true }, + { "i7.io", true }, { "i7sas.tk", true }, { "i81365.com", true }, - { "i81818.com", true }, { "i82365.com", true }, { "i879.com", true }, { "i8cp.com", true }, @@ -33751,10 +34953,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iamhealthystore.com", true }, { "iaminashittymood.today", true }, { "iamjoshellis.com", true }, - { "iamlbk.com", true }, { "iamlife.com", true }, { "iamlizu.com", true }, - { "iamsoareyou.se", true }, { "iamtheib.me", true }, { "iamtonyarthur.com", true }, { "iamusingtheinter.net", false }, @@ -33775,7 +34975,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ianmoriarty.com.au", true }, { "iansyst.co.uk", true }, { "ianwalsh.org", false }, - { "iap.network", true }, + { "iap.network", false }, { "iapws.com", true }, { "ias-gruppe.net", true }, { "ias.ua", true }, @@ -33796,7 +34996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibcmed.com", true }, { "ibcmed.net", true }, { "ibcmed.org", true }, - { "ibe.de", true }, + { "ibe.de", false }, { "ibeep.com", true }, { "iberiaversicherungen.com", true }, { "ibericaderedes.es", true }, @@ -33813,11 +35013,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibericarreicomsa.es", true }, { "ibericartechnik.es", true }, { "iberion.pl", true }, - { "iberiserver.es", true }, { "ibestproduct.com", true }, { "ibestreview.com", true }, + { "ibex-lb.com", true }, { "ibexcore.com", true }, - { "ibexrepair.co.uk", true }, { "ibhgospel.com", true }, { "ibi.mt", true }, { "ibidyoupeace.com", true }, @@ -33827,6 +35026,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibiz.mk", true }, { "iblackfriday.ro", true }, { "ibloggospel.com", true }, + { "iblowdry.com", true }, { "ibna.online", true }, { "ibodyiq.com", true }, { "ibpegasus.tk", true }, @@ -33836,12 +35036,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ibraphotography.com", true }, { "ibrom.eu", true }, { "ibron.co", false }, - { "ibsafrica.co.za", true }, { "ibsglobal.co.za", true }, { "ibstyle.tk", true }, { "ibugone.com", true }, { "ibuki.run", true }, { "ibwc.gov", true }, + { "ibykos.com", true }, { "ic-lighting.com.au", true }, { "ic3.gov", true }, { "icafecash.com", true }, @@ -33862,15 +35062,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icebat.dyndns.org", true }, { "iceberg.academy", false }, { "icebook.co.uk", true }, + { "icebound.cc", true }, { "icebound.win", true }, { "icecars.net", true }, { "icecodenew.tk", true }, { "icecontrol.ro", true }, { "icecutethings.com", true }, - { "icedream.tech", true }, { "icelandic.cf", true }, { "icelandicasian.com", true }, { "iceloch.com", true }, + { "icepharmaceuticals.com", true }, { "icetiger.eu", true }, { "icetravellers.com", true }, { "icetwister.com", true }, @@ -33882,13 +35083,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ichbinein.org", true }, { "ichbinkeinreh.de", true }, { "ichglaubesbackt.de", true }, + { "ichinghero.com", true }, { "ichitaso.com", true }, { "ickerseashop.com", true }, { "iclinic.ua", true }, { "icloud.st", true }, { "icmhd.ch", false }, { "icmp2018.org", true }, - { "icnc.ga", false }, + { "icnc.ga", true }, { "icnsoft.org", true }, { "icobench.com", true }, { "icodeconnect.com", true }, @@ -33902,7 +35104,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "icsfinomornasco.gov.it", true }, { "ict-concept.nl", true }, { "ict-crew.nl", true }, - { "ict-helpteam.nl", true }, { "ict-radar.com", true }, { "ict-radar.nl", true }, { "ictbaneninnederland.nl", true }, @@ -33913,11 +35114,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ictoniolopisa.it", true }, { "ictradar.com", true }, { "ictussistemas.com.br", true }, + { "ictvanafmorgen.nl", true }, { "icusignature.com", true }, { "icy.aq", true }, { "icyapril.com", true }, - { "icymint.me", true }, { "icynet.eu", true }, + { "icyrock.com", true }, { "iczc.cz", true }, { "id-blog.ch", false }, { "id.atlassian.com", false }, @@ -33951,6 +35153,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idealtruss.com", true }, { "idealtruss.com.tw", true }, { "idealwhite.space", true }, + { "ideamiapublicidad.com", true }, { "ideashop.com", true }, { "ideatarmac.com", true }, { "ideaweb.de", true }, @@ -33960,6 +35163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idee-lq.com", true }, { "idee-lq.de", true }, { "idee-lq.net", true }, + { "ideefactory.de", true }, { "ideiasefinancas.com.br", true }, { "idemo.in", true }, { "idenamaislami.com", true }, @@ -33970,7 +35174,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "identigraf.center", true }, { "identity-hash.online", true }, { "identity-inspector.com", false }, - { "identity.plus", true }, { "identityexperts.co.uk", true }, { "identitysandbox.gov", true }, { "identitytheft.gov", true }, @@ -33998,13 +35201,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "idmanagement.gov", true }, { "idmobile.co.uk", true }, { "idn.gov.pt", false }, - { "idndx.com", true }, { "idoc24.com", true }, { "idodiandina.com", true }, { "idol-bikes.ru", true }, { "idolf.dk", true }, { "idolish7.fun", false }, { "idolknow.com", true }, + { "idontexist.me", false }, { "idontplaydarts.com", true }, { "idoparadoxon.hu", true }, { "idouying.com", true }, @@ -34037,21 +35240,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ieji.de", true }, { "iemb.cf", true }, { "iemb.tk", true }, + { "iemsamex.com", true }, { "ienakanote.com", false }, { "ient.me", true }, { "ies-italia.it", true }, { "ies911.com", true }, { "iesonline.co.in", true }, { "ieval.ro", true }, + { "ievgenialehner.com", true }, { "iewar.com", true }, { "iexpert99.com", true }, + { "if-fashion.gr", true }, { "if0.ru", true }, { "ifacservice.be", true }, + { "ifamily.top", true }, { "ifan.ch", true }, { "ifan.ws", true }, { "ifangpei.cn", true }, { "ifangpei.com.cn", true }, { "ifasec.de", false }, + { "ifashionable.info", true }, { "ifbagro.in", true }, { "ifcfg.jp", true }, { "ifcfg.me", true }, @@ -34063,6 +35271,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ifightsurveillance.com", true }, { "ifightsurveillance.net", true }, { "ifightsurveillance.org", true }, + { "ifisher.xyz", true }, { "ifiveglobal.com", true }, { "ifly.pw", true }, { "iflyi.me", true }, @@ -34088,6 +35297,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ig.com", true }, { "ig.me", true }, { "iga-semi.jp", true }, + { "iganesh.com", true }, { "igap.pt", true }, { "igarage.nl", true }, { "igdn.de", true }, @@ -34115,6 +35325,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ignat-mag.com", true }, { "ignat.by", true }, { "ignatij.tk", true }, + { "ignation.me", true }, { "ignatovich.by", true }, { "ignatovich.me", true }, { "ignet.gov", true }, @@ -34153,7 +35364,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ihoey.com", true }, { "ihollaback.org", true }, { "ihongzu.com", true }, - { "ihopeit.works", true }, { "ihorizon.jp", true }, { "ihostup.net", true }, { "ihotel.io", true }, @@ -34174,8 +35384,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iiax.org", true }, { "iic.kharkov.ua", true }, { "iideaz.org", true }, + { "iiet.pl", true }, { "iiit.pl", true }, { "iimarckus.org", true }, + { "iin.fm", true }, { "iinf.in", true }, { "iinfin.org", true }, { "iinix.com", true }, @@ -34186,6 +35398,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ijazjewelers.com", true }, { "ijinus.com", true }, { "ijm.io", true }, + { "ijnokmpl.cf", true }, { "ijohan.nl", true }, { "ijsbaanwitten.nl", true }, { "ijsblokjesvormen.nl", true }, @@ -34203,10 +35416,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikebuku.ro", true }, { "ikebukuro-shame.com", true }, { "ikedaquotes.org", true }, + { "ikemedia.xyz", true }, { "ikenmeyer.com", true }, { "ikenmeyer.eu", true }, { "ikespta.com", true }, { "ikeyless.com", true }, + { "ikfloreer.nu", true }, + { "ikhwanto.com", true }, { "ikigaiweb.com", true }, { "ikiler.com", true }, { "ikinokori-marketing.com", true }, @@ -34222,6 +35438,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikools.com", true }, { "ikparis.com", true }, { "ikraenglish.com", false }, + { "iksi.cc", true }, { "ikudo.top", true }, { "ikulist.me", true }, { "ikumi.us", true }, @@ -34230,6 +35447,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ikx.me", true }, { "ikzoekeengoedkopeauto.nl", true }, { "ila.fi", true }, + { "ilab.health", true }, { "ilacrehberi.com", true }, { "ilamparas.at", true }, { "ilamparas.co.uk", true }, @@ -34238,7 +35456,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilamparas.com.ve", true }, { "ilamparas.mx", true }, { "ilard.fr", true }, + { "ilawgix.com", true }, { "ilazycat.com", true }, + { "ilbiscottificiodipamparato.it", true }, { "ilbuongiorno.it", false }, { "ilc510.com", true }, { "ilc518.com", true }, @@ -34254,6 +35474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilc66.com", true }, { "ilc666.com", true }, { "ilc999.com", true }, + { "ilctucson.com", true }, { "ildomani.it", true }, { "ile-kalorii.pl", true }, { "ile-sapporo.jp", true }, @@ -34261,7 +35482,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ileci.de", true }, { "ilektronika-farmakeia-online.gr", true }, { "ilemonrain.com", true }, + { "iletisimmakinesi.com", true }, { "ilformichiere.com", true }, + { "ilfumoshop.ru", true }, { "ilg.ink", true }, { "ilgiornaledelticino.ch", true }, { "ilhan.name", true }, @@ -34280,6 +35503,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "illambias.ch", false }, { "illange.info", true }, { "illative.net", true }, + { "illavobuempliz.ch", true }, { "illegalpornography.com", true }, { "illegalpornography.me", true }, { "illerzell.de", true }, @@ -34293,6 +35517,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "illumed.net", true }, { "illuminatiofficial.vip", true }, { "illuminationis.com", true }, + { "illuminatisocietyworldwide.org", true }, { "illuminatisofficial.org", true }, { "illusionephemere.com", false }, { "illusionunlimited.com", true }, @@ -34312,9 +35537,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ilove618.com", true }, { "ilove918.com", true }, { "iloveherb.ru", true }, + { "ilovehoney.com.au", true }, { "ilovelwy.com", true }, { "ilovemychi.com", true }, - { "ilovequiz.ru", true }, { "ilovesamara.tk", true }, { "ilovestickers.gr", true }, { "ilovethiscampsite.com", true }, @@ -34340,6 +35565,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imadalin.ro", true }, { "image-cdn.co.uk", true }, { "image-drive.de", true }, + { "image.hosting", true }, { "image.tf", false }, { "imagebin.ca", true }, { "imagecurl.com", true }, @@ -34383,7 +35609,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imed.pt", true }, { "imedes.de", true }, { "imedi.it", true }, - { "imedia.com.sg", false }, + { "imedia.com.sg", true }, { "imediafly.com", true }, { "imediasingapore.com", true }, { "imedikament.de", true }, @@ -34416,21 +35642,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imjad.cn", true }, { "imjo.in", true }, { "imjustcreative.com", true }, - { "imkerei-contento.de", true }, + { "imkerei-contento.de", false }, { "imkerei-freilinger.de", false }, - { "imkereicontento.de", true }, + { "imkereicontento.de", false }, { "imkerverein-moenchswald.de", true }, { "imkerverenigingzaanstreek.nl", true }, { "imkindofabigdeal.com", true }, { "imlec.net", true }, + { "imlhx.com", true }, { "imlinan.cn", true }, { "imlinan.com", true }, { "imlinan.info", true }, { "imlinan.net", true }, + { "immanuellutheranmedia.org", true }, { "immarypoppinsyall.tk", true }, { "immaterium.de", true }, { "immatix.xyz", true }, { "immedia.net", true }, + { "immedicohospitalario.es", true }, + { "immense.ly", true }, { "immersa.co.uk", true }, { "immersion-pictures.com", true }, { "immersionwealth.com", true }, @@ -34441,6 +35671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "immo-passion.net", false }, { "immobilien-badlippspringe.de", true }, { "immobilien-in-istanbul.de", true }, + { "immobilien-marschner-stiftung.de", true }, { "immobilien-wallat.de", true }, { "immobilien-zirm.de", true }, { "immobiliengutachter-holland.de", true }, @@ -34451,7 +35682,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "immortal.run", true }, { "immortec.com", true }, { "immovit.be", true }, + { "imoasis.cn", true }, { "imobile3.com", true }, + { "imoe.ac.cn", false }, { "imoe.xyz", true }, { "imokuri123.com", true }, { "imolights.com", true }, @@ -34467,6 +35700,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "impactcalifornia.com", true }, { "impacter.eu", true }, { "impactingsports.com", true }, + { "impactparcels.co.uk", true }, + { "impactparcels.com", true }, { "impactpub.ch", false }, { "impakho.com", true }, { "impas.se", true }, @@ -34477,6 +35712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imperdintechnologies.com", true }, { "imperial-legrand.com", true }, { "imperialmiami.com", true }, + { "imperiodigital.online", true }, { "imperioth.com", true }, { "imperiumglass.com.au", true }, { "imperiumnova.info", true }, @@ -34484,7 +35720,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imphotep.net", true }, { "impiantistica.org", true }, { "implantica.com", true }, - { "implantologie-dr-loeck.de", true }, { "impns.org", true }, { "imponet.com.ar", true }, { "import-shopping.de", true }, @@ -34514,7 +35749,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "impresapuliziebergamo.it", true }, { "imprezzor.com", true }, { "imprimante-3d-store.fr", true }, - { "imprintia.eu", true }, { "improfestival.ee", true }, { "improklinikken.dk", true }, { "improv.ee", true }, @@ -34535,7 +35769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imstocker.com", true }, { "imtikai.ml", true }, { "imtikaib.ml", true }, - { "imwalking.de", true }, { "imwjc.xyz", true }, { "imy.rs", true }, { "imydl.com", true }, @@ -34543,7 +35776,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "imyjy.cn", true }, { "imyrs.cn", true }, { "imyunya.com", true }, - { "imyvm.com", true }, { "imyz.tw", true }, { "in-depthgame.reviews", true }, { "in-depthoutdoors.com", true }, @@ -34552,6 +35784,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "in.xero.com", false }, { "in1000worten.de", true }, { "in10tion.com", false }, + { "in2-comms.com", true }, { "inabox.ro", true }, { "inait.ai", true }, { "inalvittile.cf", true }, @@ -34569,7 +35802,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inc.wf", true }, { "incarceratedwombats.com", true }, { "incarna.co", true }, - { "inceptionradionetwork.com", true }, { "incert.cn", true }, { "incertint.com", true }, { "inchcape-fleet-autobid.co.uk", true }, @@ -34584,10 +35816,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inclusiv.nl", true }, { "incoherent.ch", true }, { "income.wiki", true }, - { "incomeproshoutr.com", true }, + { "incomingfire.com", true }, { "incommon.io", true }, { "incompliance.de", true }, { "inconcerts.de", true }, + { "incontactmetjezelf.nl", true }, { "incore.nl", true }, { "incosi.com", true }, { "incowrimo.org", true }, @@ -34595,7 +35828,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "increasetestosteronelevels.org", true }, { "incrementation.net", true }, { "incrom.com", true }, - { "incubos.org", true }, { "incy.io", true }, { "ind.ie", true }, { "indasun.com", true }, @@ -34606,10 +35838,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "index-games.com", true }, { "index-mp3.com", true }, { "indexcesmad.cz", true }, + { "indexer.net", true }, { "indexmarket.ml", true }, + { "indexsalaire.be", true }, { "indexyz.me", true }, { "indiaflowermall.com", true }, { "indiafm.tk", true }, + { "indialocaltours.com", true }, { "indian-elephant.com", true }, { "indianaberry.com", true }, { "indianaffairs.gov", false }, @@ -34619,6 +35854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indianareflux.com", true }, { "indianawaterdamagerepairpros.com", true }, { "indianerschmuck24.de", true }, + { "indianhelpline.in", true }, { "indiansmartpanel.com", true }, { "indianvisa.online", true }, { "indiapur.com", true }, @@ -34637,6 +35873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indigoinflatables.com", true }, { "indigojewelers.com", true }, { "indigolawnscape.net", true }, + { "indigopaints.be", true }, { "indigosakura.com", true }, { "indigostudios.com", true }, { "indigotreeservice.com", true }, @@ -34648,9 +35885,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indochina.io", true }, { "indogermanstartup.com", true }, { "indogermantrade.de", true }, + { "indoittraining.com", true }, { "indonesian-news.tk", true }, { "indoor-kletterwald.de", true }, - { "indoorcomfortteam.com", true }, { "indoorpaintball.co.uk", true }, { "indospot.tk", true }, { "indota.hu", true }, @@ -34660,18 +35897,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "indusfastremit-ca.com", true }, { "indusfastremit-us.com", true }, { "indusfastremit.com", true }, - { "indust.me", true }, { "industreiler.com", true }, { "industreiler.com.br", true }, { "industriafranchini.com", true }, { "industrial-remote-control.com", true }, - { "industrialstarter.com", true }, - { "industriasrenova.com", true }, + { "industrialpaintservices.com", true }, { "industriemeister.io", true }, + { "industryperspectives.com", true }, { "indybay.org", true }, { "ineardisplay.com", false }, { "inebula.it", true }, { "ineed.coffee", false }, + { "ineffect.net", true }, { "inefin.tk", true }, { "inegol.mobi", true }, { "inertianetworks.com", true }, @@ -34723,7 +35960,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inflatiecalculator.nl", true }, { "inflationstation.net", true }, { "inflexsys.com", true }, - { "influencerchampions.com", true }, { "influo.com", true }, { "influxus.com", false }, { "infmed.com", true }, @@ -34734,6 +35970,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "info-screen-usercontent.me", true }, { "info-screen.me", true }, { "info-screw.com", true }, + { "info.gov", true }, { "infoamin.com", true }, { "infobae.com", true }, { "infobot.email", true }, @@ -34750,29 +35987,33 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infodesk.at", true }, { "infodiscus.com", true }, { "infoduv.fr", true }, + { "infofamouspeople.com", true }, { "infogram.com", true }, + { "infographicsmania.com", true }, { "infogym.com", true }, { "infohub.com.ua", true }, + { "infojeunes.fr", true }, { "infoland.ml", true }, - { "infolearn.ir", true }, { "infomasx.com", true }, + { "infomax.gr", true }, { "infomegastore.com", true }, + { "infomir.eu", true }, { "infomisto.com", true }, { "infomundord.com", true }, { "infopico.com", true }, { "infopier.sg", true }, { "infoprofuse.com", true }, + { "infopronetwork.com", true }, + { "infopronetwork.net", true }, + { "infoprosnetwork.co", true }, { "infoprosnetwork.com", true }, { "infor-allaitement.be", true }, - { "inforaga.com", false }, { "informace-zbozi.cz", true }, { "informaciondeciclismo.com", true }, { "informat.ga", true }, { "informaticapremium.com", false }, - { "informatiebeveiliging.nl", true }, { "informatiger.net", true }, { "informatik-handwerk.de", true }, - { "informatik.zone", true }, { "informationrx.org", true }, { "informations-echafaudages.com", true }, { "informhealth.com", true }, @@ -34789,14 +36030,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infosective.org", true }, { "infosenior.ch", true }, { "infosexual.com", true }, + { "infosoph.org", true }, { "infosubasta.es", true }, { "infotainworld.com", true }, + { "infotekno.co.id", true }, { "infotelecharge.com", true }, + { "infotics.es", false }, { "infotune.nl", true }, { "infovb.org", true }, { "infovision-france.com", true }, { "infoworm.org", true }, { "infra-se.com", true }, + { "infra.beer", true }, { "infra.land", true }, { "infra.press", true }, { "infraball.com", true }, @@ -34821,6 +36066,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infraflux.com", true }, { "infrafuse.com", true }, { "infrafusion.com", true }, + { "infraget.com", true }, { "infralira.com", true }, { "infralist.com", true }, { "infraloon.com", true }, @@ -34847,6 +36093,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "infraplot.com", true }, { "infrarank.com", true }, { "infrarank.net", true }, + { "infrareader.com", true }, { "infraredradiant.com", true }, { "infrarot-thermometer.info", true }, { "infraspin.com", true }, @@ -34880,7 +36127,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ingermany.ml", true }, { "ingestion.life", true }, { "ingfreelancer.com", true }, - { "ingi.ga", true }, { "ingjobs.ch", true }, { "inglebycakes.co.uk", true }, { "inglesencanada.cf", true }, @@ -34890,32 +36136,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ingoschlueter.de", true }, { "ingressfs.pl", true }, { "ingridbai.me", true }, + { "ingridvandamme.nl", true }, { "ingwaz.org", true }, - { "inh.gob.ve", true }, { "inhaltsangabe.de", true }, - { "inheritestate.com", true }, { "inhouseents.co.uk", true }, { "iniby.com", true }, { "iniiter.com", true }, { "inima.org", true }, { "inin.gq", true }, - { "iningrui.com", true }, { "inishbofin.ie", true }, { "init.blog", true }, { "initialization.tech", true }, + { "initiative-digitalisierung-kmu.de", true }, { "initq.net", true }, { "initramfs.io", true }, { "initrd.net", true }, - { "injapan.nl", true }, { "injigo.com", false }, { "injurylawyer.com", true }, { "injust.me", true }, { "ink.horse", true }, { "inkable.com.au", true }, { "inkbunny.net", true }, + { "inkdrop.co.za", true }, { "inkeliz.com", true }, { "inkerotic.com", true }, { "inkhor.se", true }, + { "inkomensafhankelijkehuurverhoging.nl", true }, { "inkopers.org", true }, { "inksay.com", true }, { "inkspire.co.uk", true }, @@ -34946,7 +36192,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "innico.cf", true }, { "inno.ch", false }, { "innocenceseekers.net", true }, - { "innoflex.pl", true }, { "innogen.fr", true }, { "innohb.com", true }, { "innolabfribourg.ch", true }, @@ -34967,6 +36212,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "innovation-photography.co.uk", true }, { "innovation-workshop.ro", true }, { "innovation.gov", true }, + { "innovationacademy.uk", true }, { "innovationgarage.it", true }, { "innovativebuildingsolutions.co.za", true }, { "innovativeideaz.org", true }, @@ -34987,6 +36233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inovatec.com", true }, { "inovatecapi.com", true }, { "inovatecsystems.com", true }, + { "inovigo.ro", true }, { "inovitec.eu", false }, { "inoxandco.com", true }, { "inoxdesign.fr", true }, @@ -35016,7 +36263,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "insecret.trade", true }, { "insecure.org.je", true }, { "insegne.roma.it", true }, + { "inseo.it", true }, { "insertcoins.net", true }, + { "insertwh.at", true }, { "inserzioniticino.ch", true }, { "insgesamt.net", true }, { "inshop.hu", true }, @@ -35046,8 +36295,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inspiredlife.fun", true }, { "inspiredrealtyinc.com", true }, { "inspiresurgery.com", true }, + { "inspirez-vous-sophro.com", true }, { "insside.net", true }, { "insta-drive.com", true }, + { "instachina.ru", true }, { "instafind.nl", true }, { "instafuckfriend.com", true }, { "instagc.com", true }, @@ -35070,8 +36321,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "instantluxe.co.uk", true }, { "instantluxe.com", true }, { "instantluxe.de", true }, - { "instantphotocamera.com", true }, - { "instantphotoprinter.com", true }, + { "instantmoron.com", true }, { "instaquiz.ru", true }, { "instasex.ch", true }, { "instava.cz", true }, @@ -35090,13 +36340,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "institutointersistemico.com.br", true }, { "institutolancaster.com", true }, { "institutomaritimocolombiano.com", true }, - { "institutulcultural.ro", true }, { "instrumart.ru", false }, { "insult.es", true }, { "insurance", true }, { "insurance321.com", true }, { "insuranceonlinenow.com", true }, { "insurediy.com.sg", true }, + { "insuremyworkcomp.com", true }, { "insureon.com", true }, { "int-ext-design.fr", true }, { "int64software.com", true }, @@ -35156,8 +36406,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "interabbit.co", true }, { "interaffairs.com", true }, { "interaktiva.fi", true }, + { "interallied.org", true }, { "interasistmen.se", true }, { "interchanges.io", true }, + { "interconlarp.org", true }, { "intercrosse.tk", true }, { "interessengemeinschaft-pregelstrasse.tk", true }, { "interessiert-uns.net", true }, @@ -35181,10 +36433,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intermedinet.nl", true }, { "intermezzo-emmerich.de", true }, { "interminsk.tk", true }, + { "intern-base.com", true }, { "intern.tax", true }, { "internalkmc.com", true }, + { "international-arbitration-attorney.com", true }, { "international-friends.net", true }, - { "international-nash-day.com", true }, { "internationalfashionjobs.com", true }, { "internationalschool.it", true }, { "internationalschoolnewyork.com", true }, @@ -35192,12 +36445,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "internationaltalento.it", true }, { "internect.co.za", true }, { "internet-aukcion.info", true }, + { "internet-meesters.nl", true }, { "internet-pornografie.de", false }, { "internet-software.eu", true }, { "internet-tv4u.tk", true }, { "internet42.tk", true }, { "internetaanbieders.eu", true }, - { "internetanbieter-experte.de", true }, { "internetbank.swedbank.se", true }, { "internetbugbounty.com", true }, { "internetbusiness-howto.com", true }, @@ -35220,8 +36473,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "internetpro.me", true }, { "internetstaff.com", true }, { "internetstiftelsen.se", true }, + { "internettradie.com.au", true }, { "internetzentrale.net", true }, { "internetzonei.com", true }, + { "internewscast.com", true }, { "internex.at", true }, { "interparcel.com", true }, { "interphoto.by", true }, @@ -35246,15 +36501,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "intl-webs.com", true }, { "intmissioncenter.org", false }, { "into-the-mountain.com", true }, - { "into.technology", true }, { "intocities.de", false }, { "inton.biz", true }, { "intoparking.com", true }, { "intoparking.fi", true }, { "intpforum.com", true }, { "intr0.cf", true }, - { "intr0.com", true }, { "intr0.tk", true }, + { "intracdf.net", true }, { "intrack.net.au", true }, { "intradayseasonals.com", true }, { "intranet.dvag", true }, @@ -35270,6 +36524,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "introes.com", true }, { "intropickup.ru", true }, { "introspectivemarketresearch.com", true }, + { "introverted.ninja", true }, { "intrp.net", true }, { "intune.life", true }, { "intux.be", false }, @@ -35338,6 +36593,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "invkao.com", true }, { "invoiced.com", true }, { "involic.com", true }, + { "invsky.com", true }, { "invuite.com.au", true }, { "inwao.com", true }, { "inwebo.com", true }, @@ -35350,6 +36606,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "inzelabs.com", true }, { "inzernettechnologies.com", true }, { "inzestfreunde.de", true }, + { "inzichtmeditatie.nl", true }, { "ioactive.com", true }, { "iobint.com", true }, { "iocheck.com", true }, @@ -35373,6 +36630,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ionlabs.kr", true }, { "ionplesalexandru.com", true }, { "ionspin.com", true }, + { "ionutnechita.ro", true }, + { "ionutnica.ro", true }, { "ionx.co.uk", true }, { "ioover.net", true }, { "iop.intuit.com", false }, @@ -35383,14 +36642,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iosjailbreakiphone.com", true }, { "ioslo.net", true }, { "iosnoops.com", true }, - { "iosprivacy.com", true }, { "iossifovlab.com", true }, { "iostream.by", true }, { "iotac.xyz", true }, - { "iotekha.tv", true }, { "iotfen.com", true }, { "iotorq.com", true }, { "iotsms.io", true }, + { "iotsys.in", true }, { "iowaent.com", true }, { "iowaschoolofbeauty.com", true }, { "iowen.cn", true }, @@ -35436,15 +36694,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iplog.info", false }, { "ipmonitoring.hu", true }, { "ipmotion.ca", true }, + { "ipmscoutek.com", true }, { "ipnetworking.net", true }, { "ipo-times.jp", true }, - { "ipoisk.com.ua", true }, { "ipokabu.net", true }, { "ipomue.com", false }, - { "ipop.gr", true }, { "iposm.net", true }, { "ippawards.com", false }, { "ipplans.com", true }, + { "ippo-juku.com", true }, { "iprcenter.gov", true }, { "ipresent.com", true }, { "iprice.co.id", true }, @@ -35482,15 +36740,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ipv4.rip", true }, { "ipv6-adresse.dk", true }, { "ipv6-handbuch.de", true }, - { "ipv6.jetzt", true }, - { "ipv6alizer.se", true }, + { "ipv6.jetzt", false }, { "ipv6vpn.net", true }, { "ipv6wallofshame.com", true }, { "ipvbook.com", true }, { "iqboxy.com", true }, + { "iqos.ru", true }, + { "iqratunisie.com", true }, { "iqsecurity.eu", true }, { "iqskinclinics.com", true }, { "iqsmn.org", true }, + { "iqtechportal.com", true }, { "irajsingh.tk", true }, { "iramellor.com", true }, { "irandex.ga", true }, @@ -35505,6 +36765,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "irasandi.com", true }, { "irayo.net", true }, { "irc-results.com", true }, + { "ircica.org", true }, { "ircmett.de", true }, { "ird.nz", true }, { "irdvb.com", true }, @@ -35512,10 +36773,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iready.ro", true }, { "ireef.tv", true }, { "ireland.gq", true }, + { "irelandondemand.ie", true }, { "iren.ch", true }, { "irenekauer.com", true }, { "irenkuhn.ch", true }, { "irequi.re", true }, + { "ireta.net", true }, { "ireviewi.com", true }, { "irf2.pl", true }, { "irfan.id", true }, @@ -35543,7 +36806,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "irmgard-woelfle.de", true }, { "irmgardkoch.com", true }, { "irmtrudjurke.de", true }, - { "iro-iro.xyz", true }, { "irodorinet.com", true }, { "iroise.ch", true }, { "ironbelly.pro", true }, @@ -35554,6 +36816,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ironmountainsolutions.com", true }, { "ironpeak.be", true }, { "ironraven.ml", true }, + { "ironycats.net", true }, { "irose.am", true }, { "irrewilse.se", true }, { "irrigadorbucal.com", true }, @@ -35566,7 +36829,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iryodatumoguide.com", true }, { "iryogakkai.jp", true }, { "is-a-furry.org", true }, - { "is-going-to-rickroll.me", true }, { "is-in-hyper.space", true }, { "is-rocket.science", true }, { "is-socket.tk", true }, @@ -35585,11 +36847,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isaacpartnership.co.uk", true }, { "isaacphysics.org", true }, { "isaaczais.com", true }, + { "isab.top", true }, { "isabelaflores.com", true }, { "isabellavandijk.nl", true }, { "isabelle-delpech.com", true }, { "isabellehogarth.co.uk", true }, - { "isabelmurillo-ordonez.com", true }, { "isakssons.com", true }, { "isamay.es", true }, { "isamiok.com", true }, @@ -35624,7 +36886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ishland.com", true }, { "ishome.org", true }, { "ishotagency.com", true }, - { "ishtarfreya.com", true }, + { "isidore.uk", true }, { "isif-ostewg.org", true }, { "isigmaonline.org", true }, { "isil.fi", true }, @@ -35642,16 +36904,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "iskanderbroere.nl", true }, { "iskaron.de", true }, { "iskaz.rs", true }, + { "iskconnews.org", true }, { "iskkk.com", true }, { "iskkk.net", true }, { "iskogen.nu", true }, { "iskultur.com.tr", true }, { "islam.si", true }, { "islamabadcourt.tk", true }, + { "islamicarchitecturalheritage.com", true }, { "islamicmarkets.com", true }, { "islamicnews.tk", true }, { "islamnewss.tk", true }, - { "islamonline.net", true }, + { "islamqa.info", true }, + { "island.studio", true }, { "islandhosting.com", true }, { "islandinthenet.com", true }, { "islandlakeil.gov", true }, @@ -35697,9 +36962,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "israelnewswire.tk", true }, { "israelportalk.ml", true }, { "israkurort.com", true }, - { "isreedyinthe.uk", true }, - { "isreedyinthe.us", true }, - { "isreedyintheuk.com", true }, { "issa.org.pl", false }, { "issasfrissa.se", true }, { "isscouncil.com", true }, @@ -35740,6 +37002,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "isv.online", true }, { "isvbscriptdead.com", true }, { "isvsecwatch.org", true }, + { "iswapgh.com", true }, { "isync2.me", true }, { "isyu.xyz", true }, { "isz.no", true }, @@ -35770,7 +37033,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "it-supportistockholm.se", true }, { "it-supportnu.se", true }, { "it-swarm.net", true }, - { "it-sysoft.com", true }, { "it-tekniker.nu", true }, { "it-ti.me", true }, { "it-uws.com", false }, @@ -35788,6 +37050,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "italia-store.com", true }, { "italiachegioca.com", true }, { "italian.dating", true }, + { "italianisiert.de", true }, { "italianshoemanufacturers.com", true }, { "italiansrent.com", true }, { "italiataxi.ru", true }, @@ -35810,8 +37073,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itchybrainscentral.com", true }, { "itconsulting-wolfinger.de", true }, { "itcs.services", true }, + { "itdaan.com", true }, { "itdashboard.gov", true }, - { "itdata.ro", false }, + { "itdata.ro", true }, { "itdoneproperly.com", true }, { "itds-consulting.com", true }, { "itds-consulting.cz", true }, @@ -35848,6 +37112,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ithink.cf", true }, { "ithink.ml", true }, { "ithjalpforetag.se", true }, + { "itidying.com", true }, { "itikon.com", true }, { "itilo.de", true }, { "itinthebubble.com", false }, @@ -35863,6 +37128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itmax.ua", true }, { "itmedicinai.lt", true }, { "itmindscape.com", true }, + { "itmix.cz", true }, { "itmustbee.com", true }, { "itmx.cc", true }, { "itn.co.uk", true }, @@ -35878,6 +37144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itraffic.tk", true }, { "itraveille.fr", true }, { "itreallyaddsup.com", true }, + { "itrendyworld.com", true }, { "itring.pl", false }, { "itruss.com.tw", true }, { "itruth.tk", true }, @@ -35915,7 +37182,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itsok.link", true }, { "itspartytimeonline.co.uk", true }, { "itspartytimesweetinflations.com", true }, - { "itspecialista.eu", true }, + { "itspecialista.eu", false }, { "itspersonaltraining.nl", true }, { "itsquiet.org", true }, { "itsryan.com", true }, @@ -35935,10 +37202,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "itzer.de", true }, { "itzkavin.tk", true }, { "iubuniversity.tk", true }, - { "iurisnow.com", true }, + { "iurisnow.com", false }, { "iuyos.com", true }, { "ivahbbiz.tk", true }, { "ivais.mx", true }, + { "ivan1874.dynu.net", true }, { "ivanaleksandrov.com", true }, { "ivanbenito.com", true }, { "ivanboi.com", true }, @@ -35948,6 +37216,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ivanmeade.com", true }, { "ivanovolive.ru", true }, { "ivanpolchenko.com", true }, + { "ivanteevka.org", true }, { "ivaoru.org", true }, { "ivendi.com", true }, { "ivetazivot.cz", true }, @@ -35977,6 +37246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ivvl.ru", true }, { "ivxv.ee", true }, { "ivy-league-colleges.com", true }, + { "ivy.show", true }, { "ivystech.com", false }, { "iwader.co.uk", true }, { "iwalton.com", true }, @@ -36010,14 +37280,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ixquick.fr", true }, { "ixquick.info", true }, { "ixquick.nl", true }, + { "ixuexi.tech", true }, { "iyassu.com", true }, { "iyc.web.tr", true }, - { "iycharter.com", true }, + { "iycharter.com", false }, { "iyinolaashafa.com", true }, + { "iyn.me", true }, { "iyouewo.com", true }, { "iyoumu.top", true }, { "iz8mbw.net", true }, { "izamulhakeem.tk", true }, + { "izavel.com", true }, { "izevg.ru", true }, { "izhaojie.com", true }, { "izmirescort.tk", true }, @@ -36030,11 +37303,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "izuba.info", false }, { "izumi-ryokan.com", true }, { "izumi.tv", true }, + { "izuna.info", true }, { "izxxs.com", true }, { "izxxs.net", true }, { "izxzw.net", true }, { "izzys.casa", true }, - { "j-elliott.co.uk", true }, { "j-k-fischer-verlag.de", true }, { "j-l.pw", true }, { "j-navi.com", true }, @@ -36056,7 +37329,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j2h.de", true }, { "j30365.com", true }, { "j32662.com", true }, - { "j32663.com", true }, + { "j32663.com", false }, { "j32664.com", true }, { "j32665.com", true }, { "j32771.com", true }, @@ -36068,7 +37341,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j36533.com", true }, { "j36594.com", true }, { "j3e.de", true }, - { "j51365.com", false }, + { "j51365.com", true }, { "j5197.co", true }, { "j5563.com", true }, { "j5573.com", true }, @@ -36080,6 +37353,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j6729.com", true }, { "j6957.co", true }, { "j70101.com", true }, + { "j70102.com", true }, { "j70103.com", true }, { "j70104.com", true }, { "j70105.com", true }, @@ -36087,13 +37361,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j70222.com", false }, { "j70333.com", false }, { "j70444.com", false }, + { "j70501.com", true }, + { "j70502.com", true }, + { "j70503.com", true }, + { "j70504.com", true }, + { "j70505.com", true }, { "j7051.com", true }, { "j7052.com", true }, { "j70555.com", false }, { "j81365.com", true }, - { "j81818.com", true }, { "j82365.com", true }, { "j8846.com", true }, + { "j8hs.com", true }, { "j9297.co", true }, { "j9504.com", true }, { "j9507.com", true }, @@ -36112,7 +37391,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "j95ee.com", true }, { "j95ios.com", true }, { "j95ss.com", true }, - { "j95xx.com", true }, { "j95zz.com", true }, { "j9728.co", true }, { "j9943.com", true }, @@ -36139,7 +37417,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jabberzac.org", true }, { "jaberg-rutschi.ch", true }, { "jabergrutschi.ch", true }, - { "jability.ovh", true }, { "jabjab.de", true }, { "jacarandafinance.com.au", true }, { "jaccblog.com", true }, @@ -36147,6 +37424,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jacik.cz", true }, { "jack-p2.tech", true }, { "jack2celebrities.com", true }, + { "jackal-cogito.tk", true }, { "jackassofalltrades.org", true }, { "jackdawphoto.co.uk", true }, { "jackf.me", true }, @@ -36165,7 +37443,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jackson-quon.com", true }, { "jackson.jp", true }, { "jacksonhu.com", true }, - { "jacksonvillestation.com", true }, { "jacksorrell.com", true }, { "jackspub.net", true }, { "jacksutton.info", true }, @@ -36173,7 +37450,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jackyliao.me", true }, { "jackyliao123.tk", true }, { "jackyyf.com", false }, - { "jaco.by", true }, + { "jaco.by", false }, { "jacobamunch.com", true }, { "jacobi-server.de", true }, { "jacobian.org", true }, @@ -36188,8 +37465,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jadchaar.me", true }, { "jadehotel.nl", true }, { "jadesong.net", true }, + { "jadidgroup.com", true }, { "jadopado.com", true }, { "jaduniv.cf", true }, + { "jaeger.link", true }, { "jaegerlacke.de", true }, { "jaepinformatica.com", true }, { "jaetech.org", true }, @@ -36229,14 +37508,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jakereynolds.co", true }, { "jakerullman.com", true }, { "jakeslab.tech", true }, - { "jaketremper.com", true }, { "jakewales.com", true }, - { "jakewalker.xyz", false }, { "jakewestrip.com", true }, { "jakincode.army", true }, { "jakob-server.tk", true }, { "jakobejitblokaci.cz", true }, { "jakobkrigovsky.com", true }, + { "jakobs.systems", true }, { "jakobssystems.net", true }, { "jakpremyslet.cz", true }, { "jakse.fr", true }, @@ -36256,6 +37534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamacha.org", true }, { "jamalfi.bio", true }, { "jamberry.com.mx", true }, + { "jamcyberinc.com", true }, { "james-bell.co.uk", true }, { "james-loewen.com", true }, { "james.guru", true }, @@ -36279,13 +37558,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamesmilazzo.com", true }, { "jamesrains.com", true }, { "jamesrobertson.io", true }, - { "jamesrobertson.net", true }, { "jamesrobertson.sh", true }, { "jamesross.name", true }, { "jamessmith.me.uk", true }, { "jamestmart.in", true }, { "jamestmartin.me", true }, - { "jamestown.de", true }, + { "jamestown.de", false }, { "jamesturnerstickley.com", true }, { "jameswarp.com", true }, { "jamesxu.com", true }, @@ -36305,8 +37583,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jamon.ca", true }, { "jamonsilva.com", true }, { "jamstatic.fr", true }, + { "jamyeprice.com", false }, { "jan-and-maaret.de", true }, + { "jan-becker.com", true }, { "jan-bucher.ch", true }, + { "jan-daniels.de", true }, { "jan-gerd.com", true }, { "jan-hill.com", true }, { "jan-reiss.de", true }, @@ -36317,6 +37598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janada.cz", true }, { "janata.net", true }, { "janaundgeorgsagenja.eu", true }, + { "janbilek.cz", true }, { "janbrodda.de", true }, { "jandev.de", true }, { "janduchene.ch", true }, @@ -36325,6 +37607,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janelauhomes.com", true }, { "janelle-jamer.tk", true }, { "janellequintana.tk", true }, + { "janeweeber.com", true }, + { "janey.cf", true }, { "janeymac.com", true }, { "jangl.com", true }, { "janheidler.dynv6.net", true }, @@ -36339,7 +37623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "janker.me", true }, { "jann.is", true }, { "jannekekaasjager.nl", true }, - { "jannisfink.de", true }, + { "jannesmeyer.com", true }, { "jannyrijneveld.nl", true }, { "janokacer.sk", true }, { "janome.club", true }, @@ -36357,9 +37641,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jaot.info", true }, { "japanese-cuisine.com", true }, { "japanesemotorsports.net", true }, + { "japanesque.ru", true }, + { "japanesque.su", true }, { "japangids.nl", true }, { "japaniac.de", false }, { "japanphilosophy.com", false }, + { "japanrail.nl", true }, { "japansm.com", true }, { "japantravel.tk", true }, { "japanwatches.xyz", true }, @@ -36370,6 +37657,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jardineriaon.com", true }, { "jaredfernandez.com", true }, { "jaredfraser.com", true }, + { "jarett-lee.com", true }, { "jarl.ninja", true }, { "jarmala.lt", true }, { "jarmandental.com", true }, @@ -36382,6 +37670,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jarrah-alsilawi.com", true }, { "jarrettgraham.com", true }, { "jarroba.com", true }, + { "jarrods.tech", true }, { "jas-team.net", true }, { "jashvaidya.com", true }, { "jasl.works", true }, @@ -36404,6 +37693,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jasperhuttenmedia.com", true }, { "jasperpatterson.me", true }, { "jaspersreef.com", true }, + { "jaspven.net", true }, { "jastrow.me", true }, { "jaszbereny-vechta.eu", true }, { "jateng.press", true }, @@ -36412,13 +37702,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "javanguiano.mx", true }, { "javascriptlab.fr", true }, { "javaweb.site", true }, + { "javaxxz.com", true }, { "javelin.cc", true }, { "javfree.me", true }, { "javhdmovies.com", true }, + { "javierbalvin.com", true }, { "javierburgos.net", true }, + { "javierflorescastillero.es", true }, { "javierlorente.es", true }, { "javiermascherano.tk", true }, - { "javik.net", true }, { "javiscoffee.com", true }, { "jawn.ca", true }, { "jawo2008.pl", true }, @@ -36452,6 +37744,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jazzy.id.au", true }, { "jazzy.pro", true }, { "jazzysumi.com", true }, + { "jb0.de", true }, { "jb138.cc", true }, { "jbbd.fr", true }, { "jbc88.cc", true }, @@ -36460,6 +37753,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jbfp.dk", true }, { "jbholdings.co.uk", true }, { "jblackweb.com", true }, + { "jblan.org", true }, + { "jbm-management.com", true }, { "jbradaric.me", true }, { "jbridal.com.au", true }, { "jbs-jardins.ch", false }, @@ -36474,6 +37769,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jccars-occasions.be", true }, { "jccrew.org", true }, { "jch.xyz", true }, + { "jchn.be", true }, { "jci.cc", true }, { "jcit.xyz", true }, { "jclynne.com", true }, @@ -36502,7 +37798,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jdjohnsonmedia.com", true }, { "jdjohnsonwaterproofing.com", true }, { "jdm.elk.pl", true }, - { "jdm.pl", true }, { "jdmgarage.com.au", true }, { "jdncr.com", true }, { "jdoi.pw", true }, @@ -36530,9 +37825,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jec-dekrone.be", true }, { "jecho.cn", true }, { "jecjacshop.com", true }, + { "jed.site", true }, { "jeda.ch", true }, + { "jedatw.com", true }, { "jedayoshi.com", true }, - { "jedayoshi.tk", true }, + { "jedcg.com", true }, + { "jedepannetonordi.ch", true }, + { "jedepannetonordi.com", true }, { "jedepannetonordi.fr", true }, { "jedipedia.net", true }, { "jediweb.com.au", true }, @@ -36584,6 +37883,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jellybeanbooks.com.au", true }, { "jellyfish.co", true }, { "jellyfloral.com", true }, + { "jellypepper.com", true }, { "jellysquid.me", true }, { "jelmer.co.uk", true }, { "jelmer.uk", true }, @@ -36623,8 +37923,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jeremycrews.com", true }, { "jeremynally.com", true }, { "jeremyness.com", true }, - { "jeremypaul.me", true }, { "jeremytcd.com", true }, + { "jeremywinn.com", true }, + { "jeremywinn.xyz", true }, { "jericamacmillan.com", true }, { "jering.tech", true }, { "jerisandoval.tk", true }, @@ -36646,7 +37947,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jerseylvi2013.org", true }, { "jerseyplantsdirect.com", true }, { "jerusalempersonals.ml", true }, - { "jes.events", true }, { "jesec.cn", true }, { "jesec.io", true }, { "jesecharlie.com", true }, @@ -36656,6 +37956,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jesse-charlie.net", true }, { "jesse-charlie.org", true }, { "jesse3.com", true }, + { "jesseblum.com", true }, { "jessecharley.com", true }, { "jessecharli.com", true }, { "jessecharlie.co", true }, @@ -36676,6 +37977,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jessgranger.com", true }, { "jessica-weller.de", true }, { "jessicabenedictus.nl", false }, + { "jessicaevrard.com", true }, { "jessicahrehor.com", true }, { "jessicharlie.com", true }, { "jessiecharlie.com", true }, @@ -36688,13 +37990,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jesusvasquez.tk", true }, { "jesusvazquez.online", true }, { "jet-stream.fr", true }, + { "jetable.org", true }, { "jetapi.org", true }, { "jetbbs.com", true }, { "jetfirenetworks.com", true }, { "jetflex.de", true }, { "jetkittens.co.uk", true }, { "jetmirshatri.com", false }, - { "jetses.be", true }, { "jetsetboyz.net", true }, { "jetsieswerda.nl", true }, { "jetswhiteout.com", true }, @@ -36712,6 +38014,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jewadvert.ml", true }, { "jeweet.net", true }, { "jewellerymarvels.com", false }, + { "jewelleryrack.com", true }, + { "jewelryweluv.com", true }, { "jewishboyscouts.com", true }, { "jewishquotations.com", true }, { "jexler.net", true }, @@ -36727,7 +38031,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jfr.im", true }, { "jfreitag.de", false }, { "jftw.org", true }, + { "jfvaccountants.nl", true }, { "jg-skid.me", true }, + { "jg078.com", true }, { "jgid.de", true }, { "jgke.fi", true }, { "jgoguen.ca", true }, @@ -36768,6 +38074,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jicaivvip.com", true }, { "jichi.io", true }, { "jichi000.win", true }, + { "jiexi6.com", true }, { "jieyang2016.com", true }, { "jif.gc.ca", true }, { "jigsawdevelopments.com", true }, @@ -36782,7 +38089,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jijistatic.com", true }, { "jikegu.com", true }, { "jimbiproducts.com", true }, - { "jimbraaten.com", true }, { "jimbutlerkiaparts.com", true }, { "jimcoggeshall.com", true }, { "jimdorf.com", true }, @@ -36791,11 +38097,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jimfranke.com", true }, { "jimfranke.nl", true }, { "jimizhou.xyz", true }, + { "jimkimmel.com", true }, { "jimmiestore.com", true }, { "jimmycai.com", true }, { "jimmycarterlibrary.gov", true }, { "jimmycn.com", false }, { "jimmyroura.ch", false }, + { "jimsefton.com", true }, { "jimshaver.net", true }, { "jimslop.nl", true }, { "jinancy.fr", true }, @@ -36814,7 +38122,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jingyunbank.com", true }, { "jinja.ai", true }, { "jinkuru.net", true }, - { "jinliming.ml", true }, { "jino-jossy.appspot.com", true }, { "jino.gq", true }, { "jinshuju.net", true }, @@ -36823,7 +38130,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jiosongs.biz", true }, { "jirav.com", true }, { "jiretvariedades.com", true }, - { "jiripudil.cz", true }, + { "jiripik.com", true }, { "jisai.net.cn", true }, { "jischool.org", true }, { "jisha.site", true }, @@ -36846,11 +38153,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jjhampton.com", true }, { "jjj.blog", true }, { "jjj917.com", true }, - { "jjrstudio.com", true }, + { "jjphospitalaria.com", true }, { "jjspartyhire.co.uk", true }, { "jjsummerboatparty.co.uk", true }, { "jjvanoorschot.nl", true }, { "jk-entertainment.biz", true }, + { "jkbfabrics.com", true }, { "jkbizsolutions.org", true }, { "jkchocolate.com", true }, { "jkdhn.me", true }, @@ -36861,6 +38169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jkland.com", true }, { "jkng.eu", true }, { "jkrippen.com", true }, + { "jkuu.org", true }, { "jkvov.com", true }, { "jkyuan.tk", true }, { "jl-dns.eu", true }, @@ -36868,6 +38177,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jl-exchange.nl", true }, { "jl-mail.nl", true }, { "jldp.org", true }, + { "jldrenergysaver.com", true }, { "jlink.nl", true }, { "jlkhosting.com", true }, { "jloh.codes", true }, @@ -36892,13 +38202,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jmedved.com", true }, { "jmentertainment.co.uk", true }, { "jmfjltd.com", true }, + { "jmisern.com", true }, { "jmk.hu", true }, { "jmkrecords.fr", true }, { "jmlogistica.com", true }, { "jmorahan.net", true }, { "jmpb.hu", true }, - { "jms8.net", false }, - { "jmsjms.cc", false }, + { "jms8.net", true }, + { "jmsjms.cc", true }, { "jmsjms.me", true }, { "jmsjms.org", true }, { "jmsjms.top", true }, @@ -36907,11 +38218,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jmssg.jp", true }, { "jmstfv.com", true }, { "jmsystems.sk", true }, + { "jmussman.net", true }, { "jmwap.com", true }, + { "jmzo.nl", true }, { "jncie.eu", true }, { "jnjdj.com", true }, { "jnm-art.com", true }, { "jnordell.com", true }, + { "jnssnfotografie.nl", true }, { "jnsz.hu", true }, { "joa-ebert.com", true }, { "joanjensen.net", true }, @@ -36924,8 +38238,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "job-chocolat.jp", true }, { "job-ofertas.info", true }, { "job-offer.de", true }, + { "job-uber.com", true }, { "job.biz.tr", true }, { "jobalicious.nl", true }, + { "jobastudio.nl", true }, { "jobatus.com.br", true }, { "jobatus.es", true }, { "jobatus.it", true }, @@ -36956,6 +38272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jobss.co.uk", true }, { "jobsuchmaschine.ch", true }, { "jobtarget.com", true }, + { "jobtread.com", true }, { "jobty.net", true }, { "jobwinner.ch", true }, { "jobzninja.com", true }, @@ -36963,6 +38280,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jockbusuttil.co.uk", true }, { "jockbusuttil.com", true }, { "jockbusuttil.uk", true }, + { "jocusvenlo.nl", true }, { "jodaniels.photography", true }, { "jodbush.com", true }, { "jodlajodla.si", true }, @@ -36975,6 +38293,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joecod.es", true }, { "joedavison.me", true }, { "joedeblasio.com", true }, + { "joedinardo.com", true }, { "joedoyle.us", true }, { "joedroll.com", true }, { "joefixit.co", true }, @@ -36998,7 +38317,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joepitt.co.uk", false }, { "joergschneider.com", true }, { "joernwendland.de", true }, - { "joerosca.com", true }, { "joerss.at", true }, { "joeskup.com", true }, { "joesniderman.com", true }, @@ -37010,7 +38328,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joeyfelix.com", true }, { "joeyhoer.com", true }, { "joeysmith.com", true }, - { "joeyvanvenrooij.nl", true }, { "joeyvilaro.com", true }, { "jogi-server.de", true }, { "jogjacar.com", true }, @@ -37027,12 +38344,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johannes.io", true }, { "johannes.wtf", true }, { "johannesen.tv", true }, - { "johanneskonrad.de", true }, { "johannfritsche.de", true }, { "johanpeeters.com", true }, { "johansf.tech", true }, { "johego.org", true }, + { "johlmike.com", true }, { "johnaltamura.com", true }, + { "johnathanhasty.com", true }, { "johnball.co", true }, { "johnbeil.com", true }, { "johnberan.com", true }, @@ -37063,7 +38381,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "johnno.be", true }, { "johnnybegood.tk", true }, { "johnnybet.com", true }, + { "johnnybetstaging.com", true }, { "johnnybsecure.com", true }, + { "johnopdenakker.com", true }, { "johnpenny.info", true }, { "johnpenny.uk", true }, { "johnroach.io", true }, @@ -37100,16 +38420,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jollausers.de", true }, { "jolle.io", true }, { "jollygoodspudz.ca", true }, + { "jollyjoker.de", true }, { "jollykidswobbleworld.co.uk", true }, { "jolo.software", true }, { "jolokia.ch", true }, { "jomagus.de", true }, { "jomo.tv", true }, { "jomsolat.tk", true }, + { "jonahburke.com", true }, { "jonahperez.com", true }, { "jonale.net", true }, { "jonas-thelemann.de", true }, { "jonas.me", true }, + { "jonasherkel.de", true }, { "jonaskarlssonfoto.se", true }, { "jonaskjodt.com", true }, { "jonaskoeritz.de", true }, @@ -37126,6 +38449,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonathansanchez.pro", true }, { "jonathanscott.me", true }, { "jonathanwisdom.com", true }, + { "jonathonkimmel.com", true }, { "jonblankenship.com", true }, { "jondarby.com", true }, { "jondevin.com", true }, @@ -37150,8 +38474,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jonlu.ca", true }, { "jonnasbeauty.com", true }, { "jonny5.ru", true }, + { "jonnybarnes.uk", true }, { "jonnystoten.com", true }, { "jonoalderson.com", true }, + { "jonohewitt.com", true }, { "jonola.com", true }, { "jonpads.com", true }, { "jonpavelich.com", true }, @@ -37164,6 +38490,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joomla-leipzig.com", true }, { "joompress.biz", true }, { "joona.pw", true }, + { "joorshin.ir", true }, { "joostbovee.nl", true }, { "joostrijneveld.nl", true }, { "joostvanderlaan.nl", true }, @@ -37172,7 +38499,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jorcus.com", true }, { "jordan-jungk.de", true }, { "jordandevelopment.com", true }, - { "jordanhamilton.me", true }, + { "jordandirections.com", true }, + { "jordanhamilton.me", false }, { "jordankmportal.com", true }, { "jordanp.engineer", true }, { "jordanprogrammer.tk", true }, @@ -37188,6 +38516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jorgeto.ddns.net", true }, { "jorisdalderup.nl", true }, { "jornalalerta.com.br", true }, + { "jorritstollman.com", true }, { "jorsev.com", true }, { "josc.com.au", true }, { "joscares.com", true }, @@ -37203,7 +38532,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "josefjanosec.com", true }, { "josefottosson.se", true }, { "josegdigital.com", true }, - { "joseitoda.org", true }, + { "joseluishenriquez.cl", true }, { "josemikkola.fi", true }, { "josepbel.com", true }, { "josephbarela.com", true }, @@ -37216,6 +38545,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "josephsniderman.org", true }, { "josephv.website", true }, { "josericaurte.com", true }, + { "joshdiamant.com", true }, { "joshgilson.com", true }, { "joshgrancell.com", true }, { "joshharkema.com", true }, @@ -37231,16 +38561,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joshtriplett.org", true }, { "joshua-kuepper.de", true }, { "joshua.bio", true }, + { "joshuadiamant.com", true }, + { "joshuajohnson.ca", true }, { "joshuamessick.com", true }, { "joshuameunier.com", true }, - { "joshuarogers.net", true }, { "josien.net", true }, { "josoansi.de", true }, { "jouetspetitechanson.com", true }, { "jouons-aux-echecs.be", true }, { "jourdain.pro", true }, { "journaldesvoisins.com", true }, + { "journales.com", true }, { "journalism-schools.com", true }, + { "journalof.tech", true }, { "journeedesfilles.gc.ca", true }, { "journeyfitness.com", true }, { "journeyfriday.rocks", true }, @@ -37265,6 +38598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "joyinverse.com", true }, { "joyofcookingandbaking.com", true }, { "joyofhaskell.com", true }, + { "joyousisle.com", true }, { "joyqi.com", true }, { "joysinventingblog.com", true }, { "jpbe-network.de", true }, @@ -37274,13 +38608,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jpdeharenne.be", false }, { "jpeg.io", true }, { "jpgangbang.com", true }, - { "jphandjob.com", true }, { "jplennard.com", true }, - { "jplesbian.com", true }, { "jpm-inc.jp", true }, { "jpmelos.com", true }, { "jpmelos.com.br", true }, { "jpod.cc", true }, + { "jpoirierlavoie.ca", true }, { "jppcadvertising.com", true }, { "jpph.org", true }, { "jpprivatehiretaxis.co.uk", true }, @@ -37293,7 +38626,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jpsinflatables.co.uk", true }, { "jpslconsulting.ca", true }, { "jpst.it", true }, - { "jpvtutoriales.com", true }, { "jqk918.com", true }, { "jquery.wtf", true }, { "jr5devdoug.xyz", true }, @@ -37307,8 +38639,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jreiff.de", true }, { "jreinert.com", true }, { "jrflorian.com", true }, + { "jrjuristen.nl", true }, { "jrlopezoficial.com", true }, { "jross.me", true }, + { "jrstehlik.com", true }, + { "jrstehlik.cz", true }, { "jrt.ovh", true }, { "jrtapsell.co.uk", true }, { "jrxpress.com", true }, @@ -37347,18 +38682,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jsidefox.de", true }, { "jsjohnsononline.com", true }, { "jsk26.ru", true }, + { "jskarzin.org", true }, { "jskier.com", false }, { "jskoelliken.ch", true }, { "jsme.cz", true }, { "jsnfwlr.com", true }, { "jsnfwlr.io", true }, { "json.download", true }, - { "json2bot.chat", true }, { "jsonsinc.com", true }, + { "jsproxy.tk", false }, + { "jss.moe", false }, { "jss6868.cc", true }, { "jsteward.moe", true }, { "jstore.ch", true }, { "jsvr.tk", false }, + { "jswebbdevelopment.com", true }, { "jsxc.ch", true }, { "jtcat.com", true }, { "jtcjewelry.com", true }, @@ -37366,12 +38704,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jtl-pos.com", true }, { "jtl-software.com", true }, { "jtl-software.de", false }, - { "jtmar.me", true }, { "jtp.id", true }, { "jts3servermod.com", true }, { "jtslay.com", true }, { "jttech.se", true }, - { "ju.io", true }, { "juabcounty.gov", true }, { "juan23.edu.uy", true }, { "juanfrancisco.tech", true }, @@ -37392,7 +38728,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "judoprodeti.cz", true }, { "judosaintdenis.fr", true }, { "judybai.me", true }, - { "judytka.cz", true }, { "juef.space", true }, { "juegosycodigos.es", true }, { "juegosycodigos.mx", true }, @@ -37401,6 +38736,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "juergenklieber.de", true }, { "juergenspecht.com", true }, { "juergenspecht.de", true }, + { "juergmeier.ch", true }, { "juezz.top", true }, { "jugendfeuerwehr-vechta.de", true }, { "jugendhackt.org", true }, @@ -37457,7 +38793,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jultube.de", true }, { "jumbopan.com", true }, { "jumbopan.net", true }, - { "jumboquid.co.uk", true }, { "jumeirashoes.com", true }, { "jump-zone.co.uk", true }, { "jump.wtf", true }, @@ -37480,6 +38815,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jumpintogreenerpastures.com", true }, { "jumpman-iphone-design.de", true }, { "jumpnplay.co.uk", true }, + { "jumpnplay.com.au", true }, { "jumprun.com", true }, { "junctioncitywisconsin.gov", true }, { "jundongwu.com", true }, @@ -37495,17 +38831,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jungleviewresort.com", false }, { "junglist.org", true }, { "jungyonghwa.tk", true }, - { "juni.io", true }, { "junias-fenske.de", true }, { "juniorhandball.com", true }, { "juniperroots.ca", true }, { "junjhome.com", true }, { "junjun-web.net", true }, { "junkdrome.org", true }, + { "junkfoodcafe.com", true }, { "juno.co.uk", true }, { "junoaroma.com", true }, { "junodownload.com", true }, - { "junta.pl", true }, { "juozasveza.lt", true }, { "jupiterchiropractic.com", true }, { "juppy.tk", true }, @@ -37523,6 +38858,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jurke.com", true }, { "jurojin.net", true }, { "jurriaan.ninja", true }, + { "jusfitness.com.au", true }, { "just-a-clanpage.de", true }, { "just-heberg.fr", true }, { "just-keep-swimming.tk", true }, @@ -37531,6 +38867,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "just-webdesign-berlin.de", true }, { "just2trade.com", true }, { "just3preety.com", true }, + { "just4new.com", true }, + { "justacoupleofclarkes.co.uk", true }, { "justanothercompany.name", true }, { "justbelieverecoverypa.com", true }, { "justbookexcursions.com", true }, @@ -37555,6 +38893,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "justknigi.gq", true }, { "justmensgloves.com", true }, { "justmysocks.xyz", true }, + { "justmysocks8.com", true }, + { "justninja.com", true }, { "justnu.se", false }, { "justonce.net", true }, { "justpaste.it", true }, @@ -37624,7 +38964,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "jyrilaitinen.fi", true }, { "jyvaskylantykkimies.fi", true }, { "jz585.com", true }, - { "jzbk.org", true }, + { "jzbk.org", false }, { "jzcapital.co", true }, { "jzgj088.com", true }, { "jzwebdesign.ie", true }, @@ -37637,18 +38977,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k-sails.com", true }, { "k-scr.me", true }, { "k-system.de", true }, - { "k-tube.com", true }, { "k0.gg", true }, { "k10.ag", true }, { "k10.app", true }, { "k10.best", true }, { "k1024.org", true }, + { "k1059.com", true }, { "k123123.com", true }, { "k1958.com", true }, { "k1chn.com", true }, { "k1yoshi.com", false }, { "k234234.com", true }, { "k258059.net", true }, + { "k288.vip", true }, { "k2mts.org", true }, { "k30365.com", true }, { "k3508.com", true }, @@ -37659,7 +39000,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k4r.ru", true }, { "k51365.com", true }, { "k5197.co", true }, - { "k5k.top", false }, + { "k556.vip", true }, + { "k586.vip", true }, { "k60111.com", true }, { "k60222.com", true }, { "k60333.com", true }, @@ -37670,23 +39012,55 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k60888.com", true }, { "k60999.com", true }, { "k60d.com", true }, + { "k615.vip", true }, + { "k618.vip", true }, + { "k619.vip", true }, + { "k655.vip", true }, + { "k656.vip", true }, + { "k658.vip", true }, { "k66.ag", true }, + { "k6622.vip", true }, + { "k6626.vip", true }, { "k663.ag", true }, { "k663.vip", true }, + { "k6636.vip", true }, + { "k6638.vip", true }, { "k665.vip", true }, { "k666.ag", true }, { "k666.co", true }, + { "k6661.vip", true }, + { "k6662.vip", true }, + { "k6663.vip", true }, { "k6666.ag", true }, { "k66666.ag", true }, + { "k6667.vip", true }, { "k6668.ag", true }, { "k667.ag", true }, { "k668.ag", true }, { "k668.vip", true }, + { "k6685.vip", true }, + { "k6687.vip", true }, { "k6688.ag", true }, + { "k6688.vip", true }, + { "k6689.vip", true }, { "k669.ag", true }, + { "k6698.vip", true }, + { "k6699.vip", true }, + { "k66wang.com", true }, + { "k66win.com", true }, { "k6729.co", true }, { "k6729.com", true }, + { "k682.vip", true }, + { "k683.vip", true }, + { "k685.vip", true }, { "k6957.co", true }, + { "k696.vip", true }, + { "k698.vip", true }, + { "k775.vip", true }, + { "k776.vip", true }, + { "k778.vip", true }, + { "k78.vip", true }, + { "k798.vip", true }, { "k7azx.com", true }, { "k8-1.com", true }, { "k8-2.com", true }, @@ -37728,7 +39102,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k80966.com", true }, { "k8097.com", true }, { "k8098.com", true }, - { "k80998.com", true }, { "k8100.com", true }, { "k8102.com", true }, { "k8103.com", true }, @@ -37750,12 +39123,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k816.net", true }, { "k81788.com", true }, { "k818.co", true }, - { "k81818.com", true }, { "k819.co", true }, { "k819.com", true }, { "k819.net", true }, { "k82.org", true }, { "k821.net", true }, + { "k822.vip", true }, { "k82222.com", true }, { "k82222.net", true }, { "k82365.com", true }, @@ -37767,6 +39140,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k829.net", true }, { "k82999.com", true }, { "k83.app", true }, + { "k83.vip", true }, { "k830.co", true }, { "k831.co", true }, { "k831.com", true }, @@ -37795,9 +39169,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k852.com", true }, { "k8524.com", true }, { "k8533.com", true }, + { "k855.vip", true }, { "k8550.com", true }, { "k85555.com", true }, { "k8578.com", true }, + { "k858.vip", true }, + { "k859.vip", true }, { "k86.app", true }, { "k860.co", true }, { "k86188.com", true }, @@ -37960,6 +39337,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88210.com", true }, { "k88213.com", true }, { "k88214.com", true }, + { "k88231.com", true }, { "k88233.com", true }, { "k88236.com", true }, { "k88237.com", true }, @@ -37990,6 +39368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88276.com", true }, { "k88277.com", true }, { "k88285.com", true }, + { "k883.vip", true }, { "k88398.com", true }, { "k88399.com", true }, { "k884.co", true }, @@ -38041,8 +39420,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k88684.com", true }, { "k88685.com", true }, { "k88686.com", true }, + { "k887.vip", true }, { "k888.ag", true }, { "k88801.com", true }, + { "k8885.vip", true }, + { "k8886.vip", true }, + { "k8887.vip", true }, { "k88870.com", true }, { "k88881.com", true }, { "k88890.com", true }, @@ -38050,6 +39433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k889.co", true }, { "k8892.com", true }, { "k89.app", true }, + { "k89.vip", true }, { "k89188.com", true }, { "k8927.com", true }, { "k89388.com", true }, @@ -38057,6 +39441,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k8974.com", true }, { "k8994.com", true }, { "k89999.com", true }, + { "k8cf002.com", true }, + { "k8cf003.com", true }, + { "k8cf005.com", true }, + { "k8cf006.com", true }, + { "k8cf007.com", true }, { "k8dalao.com", true }, { "k8dc01.com", true }, { "k8dc13.com", true }, @@ -38072,6 +39461,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k8n.de", true }, { "k8r.eu", true }, { "k8slot.com", true }, + { "k8top.com", true }, { "k8v02.com", true }, { "k8v03.com", true }, { "k8v04.com", true }, @@ -38096,8 +39486,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "k8v27.com", true }, { "k8v29.com", true }, { "k8v30.com", true }, + { "k8vn001.com", true }, + { "k8vn002.com", true }, + { "k8vn003.com", true }, + { "k8vn005.com", true }, + { "k8vn006.com", true }, + { "k8vn007.com", true }, + { "k8vn008.com", true }, + { "k8vn009.com", true }, + { "k8vn010.com", true }, + { "k8vn011.com", true }, + { "k8vn9999.com", true }, { "k9297.co", true }, + { "k955.vip", true }, + { "k966.vip", true }, { "k9728.co", true }, + { "k986.vip", true }, + { "k992.vip", true }, + { "k993.vip", true }, + { "k995.vip", true }, + { "k997.vip", true }, { "k9swx.com", true }, { "kaamoscreations.com", true }, { "kaanhaa.com", true }, @@ -38110,7 +39518,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kabachok.tk", true }, { "kabal-invasion.com", true }, { "kabarlinux.id", true }, - { "kabartani.com", true }, { "kabat-fans.cz", true }, { "kabellegger.nl", true }, { "kabeltv.co.nz", true }, @@ -38118,12 +39525,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kabinett.cz", true }, { "kabos.art", true }, { "kabu-abc.com", true }, + { "kabukpsikoloji.com", true }, { "kabulpress.org", true }, { "kabus.org", true }, { "kacgal.com", true }, { "kachelfm.nl", true }, { "kachlikova2.cz", true }, { "kack.website", true }, + { "kadenba.ch", true }, { "kadhambam.in", true }, { "kado-ya.jp", true }, { "kadro.com.pl", true }, @@ -38140,6 +39549,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kagucho.net", true }, { "kai-ratzeburg.de", true }, { "kai-ruecker.tk", true }, + { "kai.cool", false }, { "kaibo.cz", true }, { "kaibo.eu", true }, { "kaibol.com", true }, @@ -38184,6 +39594,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kaitol.click", true }, { "kaitori-goods.shop", true }, { "kaiusaltd.com", true }, + { "kaiva.cl", true }, { "kaivac-emea.com", true }, { "kaiwu.xyz", true }, { "kaizencraft.ga", true }, @@ -38202,7 +39613,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kakolightingmuseum.or.jp", true }, { "kakoo-media.nl", true }, { "kakoomedia.nl", true }, - { "kaktuskola.se", true }, { "kakuto.me", true }, { "kalakarclub.com", true }, { "kalamos-psychiatrie.be", true }, @@ -38218,27 +39628,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kalender.goip.de", true }, { "kalevlamps.co.uk", true }, { "kalex.nl", true }, + { "kalhufvudet.se", true }, { "kaliaa.fi", true }, { "kaliajoyas.com", true }, { "kalian.cz", true }, { "kaliboairport.tk", true }, + { "kaligrafievreni.com", true }, { "kalilinux.tech", true }, { "kaliningrad.gq", true }, { "kalisch.eu", true }, { "kalkulacka-havarijni.cz", true }, { "kall.is", true }, { "kallies-net.de", true }, + { "kallisto.io", true }, { "kalmar.com", true }, { "kalmykphilly.org", true }, { "kaloix.de", true }, - { "kalolina.com", true }, { "kalombo.ru", true }, { "kaloni.info", true }, + { "kalprajsolutions.com", true }, { "kalsa.ga", true }, { "kalsbouncies.com", true }, { "kaltenbrunner.it", true }, { "kalterersee.ch", true }, { "kalugadeti.ru", true }, + { "kalwak.cr", true }, { "kalwestelectric.com", true }, { "kalyanmatka.guru", true }, { "kam-serwis.pl", true }, @@ -38246,16 +39660,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kamata-shinkyu-seikotsu.jp", true }, { "kameari-za.space", true }, { "kamen-master.ru", true }, + { "kameng.com", true }, + { "kamengapp.com", true }, { "kamikaichimaru.com", false }, { "kamikatse.net", true }, { "kamildrozd.tk", true }, - { "kamilmagdziak.pl", true }, { "kamilmajewski.pl", true }, { "kaminbau-laub.de", true }, { "kamisato-ent.com", true }, { "kamitech.ch", true }, { "kamixa.se", true }, - { "kamp-kisten.nl", true }, { "kamppailusali.fi", true }, { "kampunginggris-ue.com", true }, { "kamranmirhazar.com", true }, @@ -38274,6 +39688,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kandhamal.org", true }, { "kandianshang.com", true }, { "kandofu.com", true }, + { "kandrahechiceravudu.com", true }, { "kanecastles.com", true }, { "kanehusky.com", false }, { "kanganer.com", true }, @@ -38287,6 +39702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kangaroovalleyshow.org.au", true }, { "kangaroovalleywoodcrafts.com.au", true }, { "kangkai.me", true }, + { "kangutingo.com", true }, { "kangzaber.com", true }, { "kanis.ag", true }, { "kanis.me", true }, @@ -38295,11 +39711,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kannchen.de", true }, { "kanobu.ru", true }, { "kanootours.com", true }, + { "kanope.com.br", true }, { "kanotijd.nl", true }, { "kanpian369.com", true }, { "kansaiyamamoto.jp", true }, + { "kant1.tk", true }, { "kantankye.nl", true }, - { "kantanmt.com", true }, { "kantoportraits.com", true }, { "kantorad.io", true }, { "kantorosobisty.pl", true }, @@ -38307,6 +39724,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kanyingba.com", true }, { "kanzashi.com", true }, { "kanzlei-gaengler.de", true }, + { "kanzlei-hhh.de", true }, { "kanzlei-oehler.com", true }, { "kanzlei-sixt.de", true }, { "kanzshop.com", true }, @@ -38315,8 +39733,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kap.pe", true }, { "kapelya.gq", true }, { "kapiorr.duckdns.org", true }, + { "kaplanco.com", true }, { "kaplatzis.com", true }, - { "kapler.family", true }, + { "kapler.family", false }, { "kappenstein.org", false }, { "kappershuis-meppel.nl", true }, { "kappharn.com", true }, @@ -38326,7 +39745,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kapseli.net", true }, { "kaptadata.com", true }, { "kaptamedia.com", true }, - { "kaputt.com", false }, + { "kaputt.com", true }, { "kaputtzich.duckdns.org", true }, { "kara-fabian.com", true }, { "kara-fabian.de", true }, @@ -38375,6 +39794,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "karneid.info", true }, { "karo.pc.pl", true }, { "karodos.pl", true }, + { "karoke.in", true }, { "karolak.fr", true }, { "karopapier.de", true }, { "karopc.com.pl", true }, @@ -38393,13 +39813,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kartec.com", true }, { "karten-verlag.de", true }, { "kartikmohta.com", true }, + { "kartina.io", true }, { "kartoffel-tobi.de", true }, { "kartonmodellbau.org", true }, { "karula.org", true }, { "karuneshjohri.com", true }, { "karupp-did.net", true }, { "kas.ie", true }, - { "kasadara.com", true }, + { "kasasaprotect.com", true }, { "kaseban.com", true }, { "kasei.im", true }, { "kashadriskill.com", true }, @@ -38411,6 +39832,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kashinavi.com", true }, { "kashis.com.au", true }, { "kashpoker.com", true }, + { "kashrutbaking.com", true }, { "kashsports.com", true }, { "kasiafricagroup.org", true }, { "kasinobonus.com", true }, @@ -38442,6 +39864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katalogkapsli.pl", true }, { "katapult.es", true }, { "katarsisuib.no", true }, + { "katazuketai.net", true }, { "katcleaning.com.au", false }, { "katcr.co", true }, { "katedra.de", true }, @@ -38454,10 +39877,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katex.org", true }, { "kateysagal.tk", true }, { "kathardt.de", true }, - { "kathegiraldo.com", true }, { "katherineswynford.tk", true }, { "kathleendeisher.com", true }, + { "kathy.best", true }, { "kathy.lgbt", true }, + { "kathy.link", true }, { "kati-raumplaner.de", true }, { "kati0.com", true }, { "katiechai.xyz", true }, @@ -38470,6 +39894,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "katka.info", true }, { "katnunn.co.uk", true }, { "kato-yane.com", true }, + { "katom.com", true }, { "katrinjanke.de", false }, { "katscastles.co.uk", true }, { "katsiavarasorthopedics.gr", true }, @@ -38520,6 +39945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kazumi.ro", true }, { "kazvel.com", true }, { "kazy111.info", true }, + { "kb01.net", true }, { "kb0101.com", true }, { "kb0202.com", true }, { "kb021.com", true }, @@ -38593,6 +40019,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kb5757.com", true }, { "kb5959.com", true }, { "kb5pt.com", true }, + { "kb6.app", true }, { "kb6060.com", true }, { "kb6161.com", true }, { "kb6363.com", true }, @@ -38685,7 +40112,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kb8857.com", true }, { "kb8859.com", true }, { "kb8860.com", true }, - { "kb886119.com", true }, { "kb8863.com", true }, { "kb8864.com", true }, { "kb88666.com", true }, @@ -38725,6 +40151,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kb88dc25.com", true }, { "kb88dc26.com", true }, { "kb88dc27.com", true }, + { "kb88dc28.com", false }, { "kb88dc29.com", true }, { "kb88dc30.com", true }, { "kb88md01.com", true }, @@ -38822,7 +40249,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keb.net.au", true }, { "kebabbesteld.nl", true }, { "kebabbruce.com", false }, - { "kebhanamyanmar.com", false }, { "kecht.at", true }, { "kedarastudios.com", true }, { "kedibizworx.com", true }, @@ -38832,6 +40258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kee.pm", true }, { "keechain.io", true }, { "keeckee.ml", true }, + { "keeley.net", true }, { "keeleysam.com", true }, { "keelove.net", true }, { "keematdekho.com", true }, @@ -38846,6 +40273,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keepitsecure24.com", true }, { "keepleft.gr", true }, { "keepsight.org.au", true }, + { "keesslop.nl", true }, { "keestalkstech.com", true }, { "keevault.pm", true }, { "keeweb.info", true }, @@ -38857,11 +40285,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kehlenbach.net", true }, { "keian.tk", true }, { "keifel.de", true }, + { "keilycosmetics.com", true }, { "kein-design.de", true }, { "kein-fidget-spinner-werden.de", true }, { "keinanung.nl", false }, { "keinefilterblase.de", true }, { "keisaku.org", true }, + { "keisepulveda.com", true }, { "keishiando.com", true }, { "keithlomax.com", true }, { "keithws.net", true }, @@ -38871,7 +40301,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kekz.org", true }, { "kela.jp", true }, { "kelantanmudah.com", false }, - { "kelapagading.co.id", true }, { "keldan.fo", true }, { "kelderwijnen.nl", true }, { "kelgtermans-usedcars.be", false }, @@ -38880,6 +40309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keller-aarau.ch", true }, { "keller-sports.be", true }, { "kellerlan.org", true }, + { "kelleycurran.com", true }, { "kelleymcchesney.us", true }, { "kellimacconnell.com", true }, { "kellyandantony.com", true }, @@ -38891,6 +40321,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kelsa.io", true }, { "kelsall39.com", true }, { "kelvinfichter.com", false }, + { "kemand.com", true }, { "kemerovo.gq", true }, { "kemerovo.ml", true }, { "kemerovo.tk", true }, @@ -38912,10 +40343,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kenderhazmagyarorszag.hu", false }, { "kendermore.it", true }, { "kendernet.com", true }, - { "kendra.io", true }, { "kendu.si", false }, { "kengilmour.com", false }, - { "kenguntokku.jp", true }, { "kenia-vakantie.nl", true }, { "keniff.gq", true }, { "kenkou-kitakyusyu.jp", true }, @@ -38956,9 +40385,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kermadec.net", true }, { "kernel-error.de", true }, { "kernel-panik.me", true }, + { "kernel.nz", true }, { "kernelpanics.nl", true }, { "kernelprogrammer.com", true }, { "kerner.xyz", true }, + { "kernet.com.ar", true }, { "kernkompas.nl", true }, { "kerp.se", false }, { "kerrnel.com", true }, @@ -38966,19 +40397,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kersmexico.com", true }, { "kerstkaart.nl", true }, { "kersvers.agency", true }, + { "keru.su", true }, { "kerus.net", true }, { "kerzyte.net", true }, { "kescher.site", true }, { "kesef.org.il", true }, { "keshausconsulting.com", true }, + { "keskeces.com", true }, { "kessawear.com", true }, { "kessel-runners.com", true }, { "kesslerwine.com", true }, { "kesteren.org", true }, { "ketamine.co.uk", true }, - { "ketaminecareclinic.com", true }, { "ketoconazole.gq", true }, - { "ketoliv.dk", true }, { "ketosecology.co.uk", true }, { "ketotadka.com", true }, { "kettinggeleider.be", true }, @@ -39013,15 +40444,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kevinmorssink.nl", true }, { "kevinpatel.com", true }, { "kevinpirnie.com", false }, - { "kevinquintero.co", true }, + { "kevinquintero.co", false }, { "kevinrandles.com", false }, { "kevinratcliff.com", true }, { "kevinrousseeuw.be", true }, { "kevinvanderperren.tk", true }, + { "kevinwstanton.com", true }, { "kevyn.lu", true }, { "kexino.com", true }, { "kexueboy.com", true }, { "key-form.fr", true }, + { "key2swipe.com", true }, { "keybase.io", true }, { "keybored.co", true }, { "keybored.me", true }, @@ -39030,6 +40463,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keyerror.com", true }, { "keyex.com.br", true }, { "keygen.sh", true }, + { "keygens.pro", true }, { "keyhani.tk", true }, { "keyholdingservices.co.uk", true }, { "keyhomechecker.com", true }, @@ -39043,7 +40477,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "keyphotojs.cf", true }, { "keypointfrancine.nl", true }, { "keys.fedoraproject.org", true }, - { "keys.jp", true }, { "keys247.co.uk", true }, { "keyserver.sexy", false }, { "keysofart.com", true }, @@ -39070,6 +40503,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf068.com", true }, { "kf0808.com", true }, { "kf086.com", true }, + { "kf0909g.com", true }, { "kf098.com", true }, { "kf099.com", true }, { "kf0q.com", true }, @@ -39084,6 +40518,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf2000.vip", true }, { "kf201988.com", true }, { "kf2020g.com", true }, + { "kf2132.com", true }, + { "kf2138.com", true }, { "kf2525.com", true }, { "kf260.com", true }, { "kf268.com", true }, @@ -39104,9 +40540,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf5201314.com", true }, { "kf5252.com", true }, { "kf5656.com", true }, + { "kf5656g.com", true }, { "kf5858.com", true }, { "kf5858g.com", true }, { "kf588.com", true }, + { "kf6132.com", true }, { "kf6161.com", true }, { "kf6161g.com", true }, { "kf618.com", true }, @@ -39126,6 +40564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf6636.com", true }, { "kf6637.com", true }, { "kf6638.com", true }, + { "kf6639.com", true }, { "kf6666g.com", true }, { "kf66888.com", true }, { "kf680.com", true }, @@ -39246,6 +40685,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kf8895.com", true }, { "kf8896.com", true }, { "kf8897.com", true }, + { "kf8949.com", true }, + { "kf8950.com", true }, + { "kf8951.com", true }, + { "kf8952.com", true }, + { "kf8953.com", true }, + { "kf8954.com", true }, + { "kf8955.com", true }, + { "kf8956.com", true }, + { "kf8957.com", true }, + { "kf8958.com", true }, { "kf908.com", true }, { "kf909.com", true }, { "kf9191.com", true }, @@ -39266,12 +40715,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kfv-kiel.de", false }, { "kfz-hantschel.de", true }, { "kfz-service-wachtmann.de", true }, + { "kfz.nl", true }, + { "kfzjeugd.nl", true }, { "kg7.pl", true }, { "kgcarpetandupholsterycleaning.com", true }, { "kgm-irm.be", true }, { "kgnk.ru", true }, { "kgt10.ru", true }, - { "kgv-schlauroth.de", true }, + { "kha.com", true }, { "khaganat.net", true }, { "khairul-zamri.com", false }, { "khakasiya.ml", true }, @@ -39281,8 +40732,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "khakassia.gq", true }, { "khakassia.tk", true }, { "khaledgarbaya.net", false }, - { "khamphafood.com", true }, { "khanovaskola.cz", true }, + { "khaotipthai.se", true }, { "khas.co.uk", true }, { "khasiatmanfaat.com", true }, { "khedmatazma.com", true }, @@ -39305,11 +40756,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "khslaw.com", true }, { "khudothiswanpark.vn", true }, { "khushiandjoel.com", true }, - { "khwebgo.com", true }, { "ki-management.ch", true }, + { "kiadoapartman.hu", true }, { "kiahalchemy.com", true }, { "kiahoriane.com", true }, - { "kiano.net", true }, + { "kiano.net", false }, { "kiapps.ovh", true }, { "kiarayoga.com", true }, { "kibea.net", true }, @@ -39350,13 +40801,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kiekin.org", true }, { "kiekko.pro", true }, { "kiel-kind.de", true }, + { "kielux.de", true }, { "kielwi.gov", true }, { "kienlen.org", true }, + { "kienthucnoithat.vn", true }, { "kieran.de", true }, { "kieran.ie", true }, { "kieranjones.uk", true }, { "kieranweightman.me", true }, { "kieskundig.nl", true }, + { "kiesmedia.com", true }, + { "kiesuwarbeidsrechtadvocaat.nl", true }, { "kiesuwkerstkaart.nl", true }, { "kievkiralikotel.com", true }, { "kievradio.com", true }, @@ -39374,7 +40829,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kikuzuki.org", true }, { "kilbi-reussbuehl.ch", true }, { "kileahh.fr", true }, - { "kilerd.me", false }, { "kilianvalkhof.com", true }, { "kiliframework.org", true }, { "kill.trade", true }, @@ -39389,26 +40843,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kilo-files.tk", true }, { "kilobyte22.de", true }, { "kilogram.nl", true }, + { "kimai.cloud", true }, { "kimamass.com", true }, { "kimathilegal.com", true }, { "kimbal.co.uk", true }, { "kimberleythomson.tk", true }, { "kimdumaine.com", true }, + { "kimiadaro.ir", true }, { "kimiris.com", true }, { "kimis.gr", true }, { "kimisia.net", true }, { "kimitang.com", true }, { "kimkuhlmanphoto.com", true }, + { "kimkyzcrs.com", true }, { "kimmel.com", false }, { "kimmel.in", true }, { "kimochi.info", true }, - { "kimono-rental-one.com", true }, + { "kimono-furuya.com", true }, + { "kimono-hishiya.jp", true }, + { "kimono-yamaguchiya.com", true }, { "kimoota.net", false }, { "kimotodental.com", true }, + { "kimphattai.vn", true }, { "kimsnagelstudio.nl", true }, { "kimtran.kim", true }, { "kimtstore.com", true }, - { "kin-to-kin.ca", true }, { "kin.life", true }, { "kin.pet", true }, { "kinaesthetics-forschung.net", true }, @@ -39417,7 +40876,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinderarzt-berlin-zia.de", true }, { "kinderbasar-luhe.de", true }, { "kinderchor-bayreuth.de", true }, - { "kinderergotherapie-ik.nl", true }, { "kindergarten-neugnadenfeld.tk", true }, { "kinderkleding.news", true }, { "kinderopvangthuis.nl", true }, @@ -39432,13 +40890,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinepolis-studio.be", true }, { "kinepolis-studio.ga", true }, { "kinerd.me", true }, - { "kinesiomed-cryosauna.gr", true }, { "kinetiq.com", true }, { "kineto.space", true }, { "kinfolkcoffee.com", true }, { "king-of-the-castles.com", true }, { "kingant.net", true }, { "kinganywhere.eu", true }, + { "kingcannabisshop.com", true }, { "kingclass.cn", true }, { "kingdominnergy.com", true }, { "kingdoms.gg", true }, @@ -39448,6 +40906,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kingjamesgospel.com", true }, { "kinglaksa.com", false }, { "kinglier.ga", true }, + { "kingnascholing.nl", true }, { "kingofshooting.com", true }, { "kingofthecastlecoventry.co.uk", true }, { "kingofthecastlesentertainments.co.uk", true }, @@ -39462,6 +40921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kingsofkauffman.com", true }, { "kingstake.network", true }, { "kingstclinic.com", true }, + { "kingstonga.gov", true }, { "kingsvilletexas.com", true }, { "kingtecservices.com", true }, { "kingtreeexperts.com", true }, @@ -39489,12 +40949,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kinovsem.ml", true }, { "kinozal-tv.appspot.com", true }, { "kinozone.tk", true }, + { "kinshipnd.com", true }, { "kinsights.com", false }, { "kinsmenhomelottery.com", true }, { "kintana.ovh", true }, - { "kintawifi.com", false }, + { "kintawifi.com", true }, { "kintone.com", true }, { "kintore.tv", true }, + { "kinualive.com", true }, { "kiocloud.com", true }, { "kiomara.com", true }, { "kionetworks.es", true }, @@ -39523,7 +40985,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirgistan.tk", true }, { "kirig.ph", true }, { "kirikira.moe", true }, - { "kirill.ws", true }, + { "kirill.fr", true }, { "kirillaristov.com", true }, { "kirillpokrovsky.de", true }, { "kirinas.com", true }, @@ -39532,6 +40994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kirkforcongress.com", true }, { "kirkforillinois.com", true }, { "kirkify.com", true }, + { "kirkintillochbc.co.uk", true }, { "kirklandtriallawyer.com", true }, { "kirkovsky.com", true }, { "kirkwood-smith.com", true }, @@ -39572,6 +41035,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kitchen-profi.by", true }, { "kitchen-profi.com.ua", true }, { "kitchen-profi.kz", true }, + { "kitchenpad.biz", true }, + { "kitchenpad.co.uk", true }, + { "kitchenpad.info", true }, + { "kitchenpad.net", true }, + { "kitchenpad.org", true }, + { "kitchenpad.us", true }, + { "kitchenpadtimer.com", true }, { "kitchenpunx.com", false }, { "kitchenwarestore.xyz", true }, { "kiteadventure.nl", true }, @@ -39586,12 +41056,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kitevalley.tk", true }, { "kitpartners.com", true }, { "kitsapsolutions.com", true }, + { "kitseliit.ee", true }, + { "kitsuna.eu", true }, { "kittmedia.com", true }, { "kittpress.com", true }, { "kittyhacker101.tk", true }, { "kittymagician.com", true }, { "kiumie.com", true }, { "kivitelezesbiztositas.hu", true }, + { "kiwee.eu", true }, + { "kiwi-bird.xyz", true }, { "kiwi.digital", true }, { "kiwi.global", true }, { "kiwi.wiki", true }, @@ -39631,6 +41105,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kk9297.co", true }, { "kk9728.co", true }, { "kkcinemas.in", true }, + { "kkcsc.co.jp", true }, { "kki.org", true }, { "kkk0011.com", false }, { "kkk101.com", false }, @@ -39659,6 +41134,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klaasmeijerbodems.nl", true }, { "klabnik.cz", true }, { "klabnikova.cz", true }, + { "klacki.de", true }, { "klaim.us", true }, { "klamathrestoration.gov", true }, { "klanggut.at", true }, @@ -39680,7 +41156,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klebeband.eu", true }, { "kleberstoff.xyz", true }, { "klebetape.de", true }, - { "kleidermarkt-vintage.de", true }, { "kleidertauschpartys.de", true }, { "kleim.fr", true }, { "kleinblogje.nl", false }, @@ -39700,7 +41175,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kleinserienproduktion.com", true }, { "kleinsys.com", true }, { "kleintransporte.net", true }, - { "kleinveefokkerij.nl", true }, { "klemkow.net", true }, { "klemkow.org", true }, { "klempin.me", true }, @@ -39732,6 +41206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "klitmoeller.dk", true }, { "kliu.io", true }, { "klm-huisjes.nl", true }, + { "klmgewinnspiel.de", true }, { "klmhouses.com", true }, { "klocast.com", true }, { "klocker-ausserlechner.com", true }, @@ -39749,21 +41224,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kluck.me", true }, { "klugemedia.de", true }, { "klumba.org", true }, + { "klusbedrijfdupau.nl", true }, { "klustermedia.com", true }, { "klusweb-merenwijk.nl", true }, { "klva.cz", true }, { "kmashworth.co.uk", true }, { "kmkz.jp", true }, + { "kms60.fr", true }, { "kmucsu.com", true }, { "kn007.net", true }, { "kn40la.com", true }, { "kn4ivj.com", true }, { "kn4ola.com", true }, { "knaake.net", true }, + { "knab-networks.com", true }, { "knallfrosch.ddnss.de", true }, { "knapp.noip.me", true }, { "knapp.servehttp.com", true }, { "knarcraft.net", true }, + { "knautiluz.net", true }, { "kncg.pw", true }, { "kndkv.com", true }, { "kndrd.io", true }, @@ -39774,7 +41253,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knep.me", true }, { "kneppe.me", true }, { "knetterbak.nl", true }, - { "kngk-azs.ru", true }, { "kngk-group.ru", true }, { "kngk-transavto.ru", true }, { "kngk.org", true }, @@ -39783,6 +41261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "knightsblog.de", true }, { "knightsbridge.net", true }, { "knightsbridgewine.com", true }, + { "knightsofcolumbus867.com", true }, { "knightsweep.com", true }, { "knihovnajablonne.cz", true }, { "knip.ch", true }, @@ -39853,9 +41332,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koehn.com", true }, { "koelbli.ch", true }, { "koeldezomerdoor.nl", true }, + { "koelingmonitor.com", true }, { "koelnmafia.de", true }, { "koenigsbrunner-tafel.de", true }, { "koenleemans.nl", true }, + { "koenmartens.nl", true }, { "koenrh.com", true }, { "koenrh.net", true }, { "koenrh.nl", true }, @@ -39869,6 +41350,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koetjesenkanker.nl", true }, { "koez-mangal.ch", true }, { "koffie-enzo.com", true }, + { "koffkindom.ru", true }, { "koflegend.com", true }, { "kofler.info", true }, { "kogak.ninja", true }, @@ -39877,16 +41359,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kogi.fr", true }, { "kogro.de", true }, { "kogudesi.com", true }, - { "kohlchan.net", true }, { "kohlistkool.tk", true }, { "koho.fi", true }, { "kohoutsautomotive.com", true }, { "kohparadise.com", true }, { "kohsandra.com", false }, - { "kohu.nz", true }, { "koi-lexikon.de", true }, { "koicenter-thuine.de", true }, { "koifish.org", true }, + { "koineuno.com", true }, { "koirala.email", true }, { "koji-tsujitani.net", true }, { "kojip.com", true }, @@ -39901,6 +41382,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kokomo.xyz", true }, { "kokomu.com", true }, { "kokona.ch", true }, + { "kokoro-singsong.com", true }, { "kokosnusswasser.de", true }, { "kokumoto.com", true }, { "koladeogunleye.com", true }, @@ -39933,7 +41415,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koluke.co", true }, { "koluke.com", true }, { "komall.net", true }, - { "komelin.com", true }, + { "komelin.com", false }, { "komenamanda.de", true }, { "kometia.com", true }, { "komfort.kh.ua", true }, @@ -39986,19 +41468,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kontaxis.org", true }, { "kontorhaus-schlachte.de", true }, { "kontorhaus-stralsund.de", true }, + { "kontrolapovinnosti.cz", true }, { "konveer.com.ua", true }, { "konventa.net", true }, { "konyaescortsiteler.net", true }, { "konyalian.com", true }, { "konzertheld.de", true }, { "koodaklife.com", true }, + { "koode.mx", true }, { "koodimasin.ee", true }, { "koodimasin.eu", true }, { "kooer.org", true }, { "koof.win", true }, { "kooibeds.com", true }, { "koolauwomenshealthcare.com", true }, - { "koolerbythelake.org", true }, { "kooli.ee", true }, { "koolikatsed.ee", true }, { "koolitee.ee", true }, @@ -40033,8 +41516,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "koreanrandom.com", true }, { "koreanrandom.ru", true }, { "koretech.nl", true }, + { "korfbalinformatie.nl", true }, { "korinar.com", true }, { "koriyoukai.net", true }, + { "korkortonline.se", true }, { "kornrunner.net", true }, { "korob-ok.com.ua", true }, { "korobkovsky.ru", false }, @@ -40048,6 +41533,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "korup.com", true }, { "koryfi.com", true }, { "kos4all.com", true }, + { "kos9078.com", true }, { "kosaki.moe", true }, { "koscielniak-nieruchomosci.pl", true }, { "kosherjava.com", true }, @@ -40068,10 +41554,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kotitesti.fi", true }, { "kotke.ru", true }, { "kotly-marten.com.ua", true }, + { "kotmale.com", true }, { "kotobox.net", true }, { "kotois.com", true }, { "kotomei.moe", true }, - { "kotonoha.cafe", true }, { "kotonozaka.xyz", true }, { "kotori.love", true }, { "kotorimusic.ga", true }, @@ -40080,15 +41566,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kouki-food.com", true }, { "koumakan.cc", true }, { "koumuwin.com", true }, + { "koupons.nl", true }, { "koushinjo.org", true }, { "kouten-jp.com", true }, { "kov.space", true }, { "kovachica.tk", true }, { "koval.io", true }, - { "kovals.sk", true }, { "kovehitus.ee", true }, { "kovnsk.net", true }, { "kovspace.com", true }, + { "kovuthehusky.com", true }, { "kowalmik.tk", true }, { "kowalstwo.com.pl", true }, { "kowarschick.de", true }, @@ -40106,9 +41593,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kpinvest.eu", true }, { "kplasticsurgery.com", true }, { "kplnet.net", true }, - { "kpmgccc.co.nz", true }, { "kpmgclientcollab.co.nz", true }, { "kpntdolive.nl", true }, + { "kpnthings.com", true }, { "kpop.re", true }, { "kpopsource.com", true }, { "kprem.com", true }, @@ -40136,6 +41623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kram.nz", true }, { "krambeutel.de", true }, { "kramsj.uk", true }, + { "kranbearys.com", true }, { "krang.org.uk", true }, { "kranjnakolo.ml", true }, { "krankenpflege-haushaltshilfe.de", true }, @@ -40149,6 +41637,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kravmagaangers.fr", true }, { "kraynik.com", true }, { "krayx.com", true }, + { "krazy.net.au", true }, { "krazykastles.co.uk", true }, { "krazykoolkastles.com", true }, { "krazyphotobooths.co.uk", true }, @@ -40170,8 +41659,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krehl.io", true }, { "kremalicious.com", true }, { "kresimir-blazevic.tk", true }, + { "krestanskydarek.cz", true }, { "kretschmann.consulting", true }, { "kreuzpfadfinder.de", true }, + { "kreuzwortraetsellosungen.com", true }, { "krey.is", true }, { "kreyolgym.fr", true }, { "kreza.de", true }, @@ -40179,14 +41670,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kriegskindernothilfe.de", true }, { "krikorianconstruction.com", true }, { "krillz.se", true }, + { "krimikiosk.de", true }, { "krinetzki.de", true }, { "kringloopwinkelsteenwijk.nl", true }, { "krinnovations.ie", true }, { "kriptokereso.com", true }, { "kriptosec.com", true }, { "kriptoworld.hu", true }, - { "kris.click", true }, { "krise-chance.ch", true }, + { "krisenintervention-deutschland.de", true }, + { "kriseninterventiondeutschland.de", true }, { "krisftp.fr", true }, { "krishnenduayur.org", true }, { "krishofer.com", true }, @@ -40207,6 +41700,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kritikawebu.cz", true }, { "kritikos.io", true }, { "krizevci.info", true }, + { "krmela.com", true }, { "krmeni.cz", false }, { "kroell.net", true }, { "krokedil.se", true }, @@ -40225,6 +41719,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krsn.de", true }, { "krsvrs.nl", true }, { "krti.com.ua", true }, + { "krug-munroe.wedding", true }, { "krugermillions.org", true }, { "krugersdorpplumber24-7.co.za", true }, { "kruin.net", true }, @@ -40234,7 +41729,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "krumpf.de", true }, { "krup.com.ua", true }, { "krupa.net.pl", false }, - { "krupacars.pl", true }, { "kruselegal.com.au", true }, { "krusesec.com", true }, { "krusic22.com", true }, @@ -40343,7 +41837,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks099.com", true }, { "ks0990.com", true }, { "ks0996.com", true }, + { "ks1.vip", true }, { "ks10.ag", true }, + { "ks10.cc", true }, { "ks10.vip", true }, { "ks1010.com", true }, { "ks105.com", true }, @@ -40369,6 +41865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks1909.com", true }, { "ks191.com", true }, { "ks196.com", true }, + { "ks2.vip", true }, { "ks20.vip", true }, { "ks200.vip", true }, { "ks2000.vip", true }, @@ -40414,7 +41911,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks299.net", true }, { "ks30.vip", true }, { "ks308.com", true }, - { "ks318.com", true }, { "ks32.cc", true }, { "ks329.com", true }, { "ks330.com", true }, @@ -40445,7 +41941,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks3939.com", true }, { "ks40.vip", true }, { "ks4040.com", true }, + { "ks410.com", true }, { "ks4242.com", true }, + { "ks5.vip", true }, { "ks50.vip", true }, { "ks5000.com", true }, { "ks5014.com", true }, @@ -40482,6 +41980,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks596.com", true }, { "ks597.com", true }, { "ks6.app", true }, + { "ks6.vip", true }, { "ks60.vip", true }, { "ks600.com", true }, { "ks6008.com", true }, @@ -40608,10 +42107,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks695.com", true }, { "ks698.com", true }, { "ks6998.com", true }, + { "ks7.vip", true }, { "ks70.net", true }, { "ks70.vip", true }, { "ks7272.com", true }, { "ks7373.com", true }, + { "ks78.vip", true }, { "ks79.app", true }, { "ks8.ag", true }, { "ks8.com", true }, @@ -40628,6 +42129,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8128.com", true }, { "ks8129.com", true }, { "ks8135.com", true }, + { "ks814.com", true }, { "ks8152.com", true }, { "ks8176.com", true }, { "ks8177.com", true }, @@ -40643,10 +42145,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8281.com", true }, { "ks8383.com", true }, { "ks85.net", true }, + { "ks85.vip", true }, { "ks86.cc", true }, { "ks86.net", true }, + { "ks86.vip", true }, { "ks8600.com", true }, { "ks87.cc", true }, + { "ks87.vip", true }, { "ks8787.com", true }, { "ks88.ag", true }, { "ks88.best", true }, @@ -40680,6 +42185,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8865.com", true }, { "ks8869.com", true }, { "ks888.ag", true }, + { "ks888.app", true }, { "ks888.la", true }, { "ks8881.com", true }, { "ks8882.com", true }, @@ -40695,6 +42201,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks8915.com", true }, { "ks8989.com", true }, { "ks9.app", true }, + { "ks9.vip", true }, { "ks90.vip", true }, { "ks901.com", true }, { "ks902.com", true }, @@ -40712,7 +42219,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks958.com", true }, { "ks96.cc", true }, { "ks960.com", true }, - { "ks9696.com", true }, { "ks97.net", true }, { "ks9797.com", true }, { "ks98.cc", true }, @@ -40720,8 +42226,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ks99.app", true }, { "ks996.com", true }, { "ks996.net", true }, + { "ks999.app", true }, { "ksbet.ag", true }, { "ksbet168.com", true }, + { "kscarlett.com", true }, { "kschv-rdeck.de", true }, { "kselenia.ee", true }, { "ksero.center", true }, @@ -40730,6 +42238,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ksmmmo.org.tr", true }, { "ksoc.com", true }, { "ksopp.si", true }, + { "ksradio.it", true }, { "kssk.de", true }, { "kst-dlvr.tk", true }, { "kst-service.tk", true }, @@ -40761,7 +42270,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ku-7.club", true }, { "ku.io", false }, { "kuadey.com", true }, - { "kuaikan1.com", true }, { "kuaimen.bid", true }, { "kuaitiyu.org", true }, { "kuaiyaojing.com", true }, @@ -40771,8 +42279,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kualo.in", true }, { "kuaza.com", true }, { "kub.hr", true }, + { "kuba-orlik.name", true }, { "kubabrussel.be", true }, { "kubanitoscali.com", true }, + { "kubeico.com", true }, { "kubica.ch", true }, { "kubierecki.pl", true }, { "kubik-rubik.de", true }, @@ -40810,9 +42320,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kulinaristi.fi", true }, { "kulivps.com", true }, { "kulopo.com", true }, + { "kulp.is", true }, { "kulpakko.com", true }, { "kulthist.tk", true }, + { "kultmobil.se", true }, { "kultsar.com", true }, + { "kultur1.se", true }, { "kulturmel.ch", true }, { "kuma.es", true }, { "kumachan.biz", true }, @@ -40825,7 +42338,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kundenerreichen.com", true }, { "kundenerreichen.de", true }, { "kundo.se", true }, - { "kungerkueken.de", true }, { "kunow.ml", true }, { "kunra.de", true }, { "kunstdrucke-textildruck.de", true }, @@ -40842,6 +42354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kupibilet.ru", true }, { "kupiclub.com", true }, { "kupid.com", true }, + { "kupidom2.com", true }, { "kupiewszystkieauta.pl", true }, { "kupimlot.ru", true }, { "kupinska.pl", true }, @@ -40860,6 +42373,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kurhotel-am-reischberg.de", true }, { "kurido-anime.tk", true }, { "kurierwilenski.lt", true }, + { "kurition.eu", true }, { "kurniadwin.to", true }, { "kurofuku.me", true }, { "kuroha.co.uk", true }, @@ -40882,11 +42396,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kusasa.biz", true }, { "kuscheln.com", true }, { "kuschku.de", true }, - { "kuscu.co", true }, + { "kuscu.de", true }, { "kusdaryanto.web.id", true }, { "kushtikidsparties.co.uk", true }, { "kusochi.eu", true }, { "kustod.io", true }, + { "kutamo.com", true }, + { "kutekeiki.com", true }, { "kutinsoft.com", true }, { "kutip.id", true }, { "kutny.cz", true }, @@ -40910,6 +42426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kvetinymilt.cz", true }, { "kvetinyumarkety.cz", true }, { "kvhile.com", true }, + { "kvhv-brussel.be", true }, { "kvilt.dk", true }, { "kvnsport.ru", true }, { "kvpc.com.au", true }, @@ -40927,7 +42444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kwyxz.org", true }, { "kx197.com", true }, { "kxah35.com", true }, - { "kxnrl.com", false }, + { "kxnrl.com", true }, { "kyberna.xyz", true }, { "kybi.sk", true }, { "kycisrael.com", true }, @@ -40937,11 +42454,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "kyledrake.net", true }, { "kylegutschow.com", true }, { "kylejohnson.io", true }, + { "kylepet.co", true }, { "kylianvermeulen.com", true }, { "kylianvermeulen.nl", true }, { "kylie-pomada.tk", true }, { "kylinj.com", false }, - { "kylling.io", true }, { "kynaston.org.uk", true }, { "kynastonwedding.co.uk", true }, { "kyobostory-events.com", true }, @@ -40976,7 +42493,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "l18.io", true }, { "l214.com", true }, { "l2guru.ru", true }, - { "l2l.vn", true }, { "l3.ee", true }, { "l30365.com", true }, { "l33te.net", true }, @@ -40994,13 +42510,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "l7plumbing.com.au", true }, { "l7world.com", true }, { "l81365.com", true }, - { "l81818.com", true }, { "l82365.com", true }, - { "l9.fr", false }, { "l9297.co", true }, { "l9728.co", true }, { "la-baldosa.fr", false }, - { "la-bolle.fr", true }, + { "la-bolle.fr", false }, { "la-compagnie-des-elfes.fr", true }, { "la-fenice-neheim.de", true }, { "la-ganiere.com", true }, @@ -41015,6 +42529,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laab.gv.at", true }, { "laac.io", true }, { "laan247.dk", true }, + { "laanius.dk", true }, { "laassari.me", false }, { "laatikko.io", true }, { "laatjeniethackmaken.nl", true }, @@ -41025,12 +42540,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "labanote.com", true }, { "labanskoller.se", true }, { "labanskollermark.se", true }, - { "labastidedesaromes.com", true }, + { "labastidedesaromes.com", false }, { "labavn.com", true }, { "labavn.org", true }, { "labcenter.com", true }, { "labcoat.jp", true }, { "labeled.vn", true }, + { "labelfactory.nl", true }, { "labfilter.com", true }, { "labiblioafronebrulepas.com", false }, { "lablnet.tk", true }, @@ -41052,10 +42568,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "labtest.ltd", true }, { "labwater.com", true }, { "labworks.org", true }, - { "laby.life", true }, + { "laby.me", true }, { "lacaey.se", true }, { "lacantine.xyz", true }, { "lacasa.fr", true }, + { "lacasadelours.fr", true }, { "lacaserita.org", true }, { "lacasseroy.com", true }, { "lacaveducinquantenaire.com", true }, @@ -41074,7 +42591,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lacicloud.net", true }, { "lackierereischmitt.de", true }, { "laclaque.ch", false }, - { "lacledeslan.com", false }, + { "lacledeslan.com", true }, + { "lacledeslan.org", true }, { "lacledor.ch", false }, { "laclefdor.ch", false }, { "lacoast.gov", true }, @@ -41082,6 +42600,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lacocina.nl", true }, { "lacocinadelila.com", true }, { "lacoquette.gr", true }, + { "lacoste.net", true }, { "lacyc3.eu", true }, { "lada-event.com.ua", true }, { "lada-granta.tk", true }, @@ -41133,20 +42652,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laglab.org", false }, { "lagodny.eu", true }, { "lagout.org", true }, + { "lagracia.com.br", true }, + { "lagrange.cloud", true }, { "lagriffeduservice.fr", true }, { "lagsoftware.com", true }, { "laguinguette.fr", true }, { "lagunakitchenandbath.com", true }, + { "lahacker.net", true }, { "laharilais.fr", true }, { "lahipotesisgaia.com", true }, { "lahnau-akustik.de", true }, - { "lahora.com.ec", true }, { "lai.is", true }, { "lai.zone", true }, { "laibcoms.com", true }, { "laimut.com", true }, { "lain.at", true }, { "laindonleisure.co.uk", true }, + { "laissezparler.fr", true }, + { "laizhongliuxue.com", true }, + { "lajessica.com", true }, { "lajijonencadebarbera.com", true }, { "lajkatheme.com", true }, { "lak-berlin.de", true }, @@ -41169,10 +42693,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lakesherwoodlighting.com", true }, { "lakesherwoodoutdoorlighting.com", true }, { "lakeshowlife.com", true }, + { "lakeview.photography", true }, { "lakewoodcityglass.com", true }, { "lakewoodcomputerservices.com", true }, { "lakiernictwo.auto.pl", true }, { "lakkt.de", true }, + { "lakorntoday.com", true }, { "lalalab.com", true }, { "lalaloe.be", true }, { "lalaya.fr", true }, @@ -41201,18 +42727,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lamchannang.com", true }, { "lamclam.site", true }, { "lamconnect.com", true }, + { "lamdav.com", true }, { "lame1337.xyz", true }, - { "lamiaposta.email", false }, { "lamikvah.org", true }, { "laminine.info", true }, { "laminsaho.tk", true }, { "lammersmarketing.com", true }, + { "lamnea.se", true }, { "lamnhom.com.vn", true }, { "lamontre.ru", true }, { "lamp.re", false }, { "lamp24.se", true }, { "lampade.it", true }, { "lampara.es", true }, + { "lampco.com", true }, { "lampegiganten.dk", true }, { "lampegiganten.no", true }, { "lampen24.be", true }, @@ -41224,8 +42752,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lampposthomeschool.com", true }, { "lampsh.ml", true }, { "lampy.pl", true }, - { "lamunyon.com", true }, + { "lamunyonfoundationrepair.com", true }, + { "lan-divy.com", true }, + { "lan-divy.fr", true }, { "lan.biz.tr", true }, + { "lan4.life", true }, { "lana.swedbank.se", true }, { "lanahallen.com", true }, { "lanbroa.eu", true }, @@ -41242,10 +42773,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "landassessmentservices.com", true }, { "landbetweenthelakes.us", true }, { "landchecker.com.au", true }, + { "landdevcorp.com.au", true }, { "landegge.nl", true }, { "landell.ml", true }, - { "landflair-magazin.de", false }, - { "landhaus-christmann.de", true }, + { "landflair-magazin.de", true }, { "landhaus-havelse.de", true }, { "landinfo.no", true }, { "landingear.com", true }, @@ -41253,7 +42784,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "landofelves.net", false }, { "landoncreekapartments.com", true }, { "landoverhillsmd.gov", true }, - { "landsbankinn.com", true }, { "landsbref.is", true }, { "landscape-photography.org", true }, { "landscapelightingagoura.com", true }, @@ -41278,13 +42808,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lanforalla.se", true }, { "lang-php.com", true }, { "langadeduero.tk", true }, + { "langapi.com", true }, { "langatang.com", true }, { "langbein.org", true }, { "langduytinh.com", true }, { "langgasse-baar.ch", true }, { "langhun.me", true }, - { "langjp.com", true }, + { "langjp.com", false }, { "langkahteduh.com", true }, + { "langkawihomestay.net", true }, { "langkawitrip.com", true }, { "langleyporter.com", true }, { "langly.fr", true }, @@ -41307,7 +42839,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lanroamer.de", true }, { "lansechensilu.com", true }, { "lanselot.com", true }, - { "lansewu.com", true }, { "lansoftware.eu", true }, { "lanternalauth.com", true }, { "lanternhealth.org", true }, @@ -41349,6 +42880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lapseofsanity.net", true }, { "lapshore.com", true }, { "laptop98.com", false }, + { "laqueuedevache.be", true }, { "lara.photography", true }, { "larabergmann.de", true }, { "laracode.eu", true }, @@ -41358,14 +42890,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laranjada.org", true }, { "larasm.tk", true }, { "laraveldirectory.com", true }, - { "laravelsaas.com", true }, + { "larawoodarts.com", true }, { "larbertbaptist.org", true }, { "larch.me", true }, { "lareclame.fr", true }, + { "lareginetta.com", true }, { "larepublicacultural.es", true }, { "lares.com", true }, { "laresistencia.xyz", false }, { "larete.ch", true }, + { "largeandhighquality.com", true }, { "largescaleforums.com", true }, { "largeviewer.com", true }, { "lariposte.org", true }, @@ -41386,6 +42920,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "larsbauer.xyz", true }, { "larsklene.nl", true }, { "larsklint.com", true }, + { "larsmerke.de", true }, { "larsnittve.tk", true }, { "larsson-ornmark.se", true }, { "lartduportrait.fr", true }, @@ -41404,6 +42939,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "laserpc.net", true }, { "laserplaza.de", true }, { "laserplaza.net", true }, + { "lasersandbacon.com", true }, { "lasertechsolutions.com", true }, { "lask.in", true }, { "laskas.pl", true }, @@ -41412,7 +42948,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lasranas.es", true }, { "lasrecetascocina.com", true }, { "lasrecetasdeguada.com", true }, - { "lasse-it.dk", true }, + { "lasse-it.dk", false }, { "lasseleegaard.com", true }, { "lasseleegaard.dk", true }, { "lasseleegaard.net", true }, @@ -41422,12 +42958,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lassovideos.com", true }, { "lasst-uns-beten.de", true }, { "last-strike.org", true }, + { "lastcraft.ru", true }, { "lasterhub.me", true }, { "lastharo.com", true }, { "lastpass.com", false }, { "lastrada-minden.de", true }, { "lasuzefc.fr", true }, { "lasvegasescortmagazine.com", true }, + { "lasvegasgfegirls.com", true }, { "lat.sk", true }, { "lat46.ch", false }, { "latabaccheria.net", true }, @@ -41469,7 +43007,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "launch-subtitle.com", true }, { "launcher-minecraft.com", true }, { "launchgroup.com.au", true }, - { "launchkey.com", false }, { "launchmylifend.com", true }, { "launchpad-app2.com", true }, { "launchpadder2.com", true }, @@ -41519,7 +43056,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lavinya.net", true }, { "lavita.de", true }, { "lavitaura.com", true }, - { "lavitrine-une-collection.be", true }, { "lavoieducoeur.be", true }, { "lavoiepharmd.com", true }, { "lavolte.net", true }, @@ -41534,6 +43070,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "law.co.il", true }, { "law22.com", true }, { "lawabidingcactus.com", true }, + { "laways.cl", true }, { "lawda.ml", true }, { "lawlessenglish.com", true }, { "lawlessfrench.com", true }, @@ -41541,6 +43078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lawlessspanish.com", true }, { "lawn-seeds.com", true }, { "lawnuk.com", true }, + { "lawportal.com.ua", false }, { "lawrence-institute.com", true }, { "lawrenceberg.nl", true }, { "lawrencecountyboe-ohio.gov", true }, @@ -41551,6 +43089,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lawyer.cf", true }, { "lawyerdigital.co.bw", true }, { "lawyerkf.com", true }, + { "lawyermidrand.co.za", true }, { "layazc.com", true }, { "laylo.io", true }, { "laymans911.info", true }, @@ -41581,7 +43120,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lbda.net", true }, { "lbgconsultores.com", true }, { "lbihrhelpdesk.com", true }, - { "lbls.me", true }, + { "lbls.me", false }, { "lbmblaasmuziek.nl", true }, { "lbphacker.pw", true }, { "lbrlh.tk", true }, @@ -42029,14 +43568,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lcy.im", false }, { "lcy.moe", true }, { "ld-begunjscica.si", true }, - { "ld66999.com", true }, + { "ld66999.com", false }, { "ld699.com", false }, - { "ld6999.com", true }, + { "ld6999.com", false }, { "ldcraft.pw", true }, { "ldesignweb.com", true }, { "ldjb.jp", true }, { "ldm2468.com", true }, { "ldsun.com", true }, + { "ldts.es", true }, { "ldvsoft.net", false }, { "le-bar.org", true }, { "le-blog.ch", true }, @@ -42068,7 +43608,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leadgenie.me", true }, { "leadinfo.com", true }, { "leadpagebuilders.com", true }, - { "leadplan.ru", true }, + { "leadplan.ru", false }, { "leadquest.nl", true }, { "leaf-consulting.de", true }, { "leafandseed.co.uk", true }, @@ -42090,6 +43630,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leaodarodesia.com.br", true }, { "leap-it.be", false }, { "leapandjump.co.uk", true }, + { "leapday.us", true }, { "leapworks.io", true }, { "learncrypto.live", true }, { "learncrypto.show", true }, @@ -42109,7 +43650,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "learnlux.com", true }, { "learnpianogreece.com", true }, { "learnplayground.com", true }, - { "learnsait2.azurewebsites.net", true }, { "learntale.com", true }, { "learnthetruth.tk", true }, { "learntohack.me", true }, @@ -42126,25 +43666,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leatherwill.com.ua", true }, { "leatherwood.nl", true }, { "leavenworthcounty.gov", true }, + { "leaving.africa", true }, { "lebal.se", true }, + { "lebalcondesraspes.com", true }, { "lebanesearmy.gov.lb", true }, { "lebanonbitcoin.com", true }, { "lebanonoregon.gov", true }, { "lebarbatruc.com", true }, { "lebarmy.gov.lb", true }, { "lebeachvillage.com", true }, - { "lebedata.com", true }, { "lebendige-heilkunst.de", true }, { "lebens-fluss.at", true }, { "lebensraum-fitness-toenisvorst.de", true }, { "lebensraum-kurse.ch", true }, { "lebihan.pl", true }, { "leblanc.io", true }, - { "lebosse.me", true }, { "lebourgeo.is", true }, { "lecannabis.com", true }, { "lecannabiste.com", true }, { "lecannabiste.uk", true }, + { "lecatal.ca", true }, { "lechaudrondupertuis.ch", true }, { "lecheng.in", true }, { "lecheng08.com", true }, @@ -42164,6 +43705,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lecheng98.net", true }, { "lecheng988.com", true }, { "lechiennoir.net", true }, + { "leclubnestlereunion.re", true }, { "lecoinchocolat.com", true }, { "lectricecorrectrice.com", true }, { "led-jihlava.cz", true }, @@ -42171,11 +43713,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ledburyvets.co.uk", true }, { "leddingplasticsurgery.com", true }, { "ledeguisement.com", true }, + { "ledensite.com", true }, { "lederer-it.com", true }, { "lederkleren.nl", true }, { "ledlampor365.se", true }, { "ledlight.com", true }, { "ledlights.ca", true }, + { "lednavi.de", true }, { "ledspadova.eu", true }, { "ledspalluto.de", true }, { "ledwereld.nl", true }, @@ -42196,6 +43740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leelou.wedding", true }, { "leemachinetools.com", true }, { "leemankuiper.nl", true }, + { "leendebroekertfonds.nl", true }, { "leere.me", true }, { "leerkotte.eu", true }, { "leerliga.de", true }, @@ -42216,14 +43761,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "left-baggage.co.uk", true }, { "leftbankdesign.net", true }, { "leftbrainsolutions.com.au", true }, + { "leftclick.be", true }, { "leftclick.cloud", true }, + { "leftclick.es", true }, { "leftclick.eu", true }, - { "leftoye.com", true }, + { "leftclick.fr", true }, + { "leftclick.nl", true }, { "legabot.fr", true }, { "legacyiohs.org", true }, { "legadental.com", true }, { "legaillart.fr", true }, - { "legal-tender.com", true }, { "legal.farm", true }, { "legalatlanta.com", true }, { "legalband.club", true }, @@ -42235,16 +43782,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "legalrobot.com", true }, { "legalsearch.nl", true }, { "legalsoftware.net", true }, + { "legalsteroid.co", true }, { "legaltechnology.pro", true }, { "legaltip.eu", true }, { "legatofmrc.fr", true }, { "legend-v.life", true }, + { "legendary-royale.net", true }, { "legendcatz.com", true }, { "legendesdechine.ch", false }, { "legendofkrystal.com", true }, { "legends-game.ru", false }, + { "legendwiki.com", true }, { "legible.es", true }, { "legilimens.de", true }, + { "legion.ge", true }, { "legioniv.org", true }, { "legionminecraft.com", true }, { "legiscontabilidade.com.br", true }, @@ -42259,6 +43810,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lehighmathcircle.org", true }, { "lehighvalleypeds.com", true }, { "lehmitz-weinstuben.de", true }, + { "lehnen.xyz", true }, + { "lehouerou.net", true }, { "lehti-tarjous.net", true }, { "leibniz-gymnasium-altdorf.de", true }, { "leideninternationalreview.com", true }, @@ -42276,7 +43829,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leiyinan.com", true }, { "lejardindesmesanges.fr", true }, { "lektier.cf", true }, - { "lelac-capfrance.com", true }, + { "lelac-capfrance.com", false }, { "lele13.cn", true }, { "lelehei.com", true }, { "lelo.com.pl", true }, @@ -42286,13 +43839,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lelux.site", true }, { "lemagauto.fr", true }, { "lemarcheelagrandeguerra.it", true }, - { "lemat.de", true }, { "lemazol.fr", true }, { "lemilane.it", true }, { "leminhduong.com", true }, { "lemni.top", true }, { "lemoine.at", true }, - { "lemon.co", true }, { "lemondenumerique.com", true }, { "lemondrops.xyz", true }, { "lemonlawnow.com", true }, @@ -42300,6 +43851,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lemonparty.co", true }, { "lemonrockbiketours.com", true }, { "lemonrotools.com", true }, + { "lemuelbriza.com", true }, { "lenafonster.se", true }, { "lenagroben.de", true }, { "lenalio.fr", true }, @@ -42308,7 +43860,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lencia.ga", true }, { "lendahandmissionteams.org", true }, { "lendingclub.com", true }, - { "lenget.com", true }, { "lenguajedeprogramacion.com", true }, { "lengyelnyelvoktatas.hu", true }, { "lengyelul.hu", true }, @@ -42333,13 +43884,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leoandpeto.com", true }, { "leochedibracchio.com", true }, { "leodraxler.at", true }, + { "leoji.codes", false }, { "leola.cz", true }, { "leola.sk", true }, { "leolemos.com.br", true }, { "leominstercu.com", false }, - { "leomwilson.com", true }, + { "leomwilson.com", false }, { "leon-tec.co.jp", true }, { "leon-tech.com", true }, + { "leon.wtf", true }, { "leonard.io", false }, { "leonardcamacho.me", true }, { "leonardocremonesi.it", true }, @@ -42351,7 +43904,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "leonmahler.consulting", true }, { "leontiekoetter.de", true }, { "leontyev.tk", true }, - { "leopoldina.net", true }, + { "leonvermunt.nl", true }, + { "leonyork.com", true }, + { "leopoldina.net", false }, { "leoservicos.etc.br", true }, { "leoservicosetc.com", true }, { "leoservicosetc.com.br", true }, @@ -42376,6 +43931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lequest.dk", true }, { "lequocthai.com", true }, { "lerasenglish.com", true }, + { "lerefugedujambon.com", true }, { "lereporter.ma", true }, { "leretour.ch", false }, { "lerku.com", true }, @@ -42391,13 +43947,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "les-ateliers-de-melineo.be", false }, { "les-explos.com", true }, { "les-inoxydables.com", true }, + { "lesacredescouleurs.fr", true }, { "lesaffre.es", true }, + { "lesalpinistes.com", true }, { "lesancheslibres.fr", true }, { "lesarts.com", true }, { "lesberger.ch", false }, { "lesbi-porno-video.ru", true }, { "lesbianlovers.tk", true }, { "lesbiansslaves.com", true }, + { "lesblogueuses.fr", true }, { "lesbofight.com", true }, { "lesbrillantsdaristide.com", true }, { "lescomptoirsdepierrot.com", true }, @@ -42406,6 +43965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lesdouceursdeliyana.com", true }, { "leseditionsbraquage.com", true }, { "lesfilmsavivre.com", true }, + { "lesgarconsenligne.com", true }, { "lesgarianes.com", true }, { "lesgoodnews.fr", true }, { "lesh.eu", true }, @@ -42461,6 +44021,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "letsgame.nl", true }, { "letsgetchecked.com", true }, { "letsgetintouch.com", true }, + { "letsgo.icu", true }, { "letsgowhilewereyoung.com", true }, { "letsnet.org", true }, { "letson.me", true }, @@ -42473,9 +44034,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "letterdance.de", true }, { "letteringinstitute.com", true }, { "lettersblogatory.com", true }, - { "lettings101.org", true }, { "lettori.club", true }, { "lettres-motivation.net", true }, + { "letzchange.org", false }, { "leu.to", false }, { "leuchtmann.ch", true }, { "leuenhagen.com", true }, @@ -42497,7 +44058,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "levels.one", true }, { "levels3d.com", true }, { "leveluplv.com", true }, - { "leveluprails.com", true }, { "leveluprankings.com", true }, { "levendwater.org", true }, { "levensbron.nl", true }, @@ -42508,12 +44068,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "levermann.eu", true }, { "leviaan.nl", true }, { "leviathan-studio.com", true }, + { "levidromelist.com", true }, { "levindesalpes.fr", false }, { "levineteamestates.com", true }, { "levinus.de", true }, + { "leviobery.com", true }, { "levis.fun", true }, { "leviscop.com", true }, { "leviscop.de", true }, + { "levshamaster.org", true }, { "lew.im", true }, { "lewdawson.com", true }, { "lewdgamer.com", true }, @@ -42524,6 +44087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lewisllewellyn.me", true }, { "lewismcyoutube.uk", true }, { "lexautoservice.nl", true }, + { "lexblog.com", true }, { "lexdigital.pl", true }, { "lexic.co", true }, { "lexico.pt", true }, @@ -42534,6 +44098,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lexpartsofac.com", true }, { "lexpierce.social", true }, { "lexway.pk", true }, + { "leybelsgarden.cf", true }, + { "leybold.co.id", true }, { "leymaritima.com", true }, { "lezdomsm.com", true }, { "lfashion.eu", true }, @@ -42574,6 +44140,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lhsj68.com", true }, { "lhsj78.com", true }, { "li-ke.co.jp", true }, + { "li-n.net", true }, { "li.gz.cn", true }, { "li.search.yahoo.com", false }, { "li680.com", true }, @@ -42588,6 +44155,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liandongyoupin.com", true }, { "liang-li88.com", true }, { "liang-li88.net", true }, + { "lianglongcredit.com", true }, { "liangxingai.com", true }, { "lianwen.kim", true }, { "lianye1.cc", true }, @@ -42619,7 +44187,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "libertas.co.jp", true }, { "liberty-city.tk", true }, { "liberty-med.ru", true }, - { "libertyachts.com", true }, + { "libertyachts.com", false }, + { "libertytereconoce.com", true }, + { "libertywines.co.uk", true }, + { "libertywines.ie", true }, { "libgame.com", true }, { "libmpq.org", true }, { "libnull.com", true }, @@ -42628,6 +44199,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liborburda.cz", true }, { "libportal.cf", true }, { "libra.com", true }, + { "librairiezbookstore.com", true }, { "librarium.tk", true }, { "library-quest.com", true }, { "libraryextension.com", true }, @@ -42656,11 +44228,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "libreria-ouroboros.tk", true }, { "librerias-he.com.pe", true }, { "librervac.org", true }, + { "librespeed.org", true }, { "libricks.fr", true }, { "librisulibri.it", true }, { "librofilia.com", true }, { "librosdescargas.club", true }, - { "libscode.com", false }, + { "libscode.com", true }, { "libskia.so", true }, { "libsodium.org", true }, { "libstock.si", true }, @@ -42673,6 +44246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lichtletters-huren.nl", true }, { "lichtmetzger.de", false }, { "lichtspot.de", true }, + { "lichtsturm.net", true }, { "lichttechnik-tumler.com", true }, { "lichttraeumer.de", true }, { "lickingcounty.gov", true }, @@ -42698,6 +44272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lidl-sklep.pl", true }, { "lidl-stikeez.si", true }, { "lidl-tour.ro", true }, + { "lidl-vins.fr", true }, { "lidlonline.es", true }, { "lidlovajogurteka.si", true }, { "lidogr.com", true }, @@ -42706,7 +44281,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lidtkemotors.com", true }, { "liduan.com", false }, { "liduan.net", false }, - { "lie.as", true }, + { "lie.as", false }, { "liebel.org", true }, { "lieberwirth.biz", true }, { "lied8.eu", true }, @@ -42738,10 +44313,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lifemcserver.com", true }, { "lifemstyle.com", true }, { "lifenexto.com", true }, - { "lifeonplanetjapan.com", true }, { "lifeqa.net", true }, { "lifesavvy.com", true }, + { "lifesavvymedia.com", true }, { "lifeset.pp.ua", true }, + { "lifesharing.gr", true }, { "lifeslonglist.com", true }, { "lifestorage.com", true }, { "lifestyle7788.com", true }, @@ -42790,6 +44366,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lightning-wallet.com", true }, { "lightning.community", true }, { "lightning.engineering", true }, + { "lightningseed.net", true }, { "lightningwirelabs.com", true }, { "lightography.com", true }, { "lights.co.uk", true }, @@ -42801,7 +44378,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lighttp.com", true }, { "lightupcollective.co.uk", true }, { "lightweighthr.com", true }, - { "lightwitch.org", true }, + { "lightwitch.org", false }, { "lightyear.no", true }, { "ligmadrive.com", true }, { "lignemalin.com", true }, @@ -42820,7 +44397,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "likeablehub.com", true }, { "likeabox.de", true }, { "likebee.gr", true }, - { "likefluence.com", true }, { "likegeeks.com", true }, { "likehifi.de", true }, { "likemovies.de", true }, @@ -42845,6 +44421,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lilai634.com", true }, { "lilai6616.com", true }, { "lilai6677.com", true }, + { "lilai6688.com", true }, { "lilai777.com", true }, { "lilai838.com", true }, { "lilai8866.com", true }, @@ -42855,10 +44432,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lilianejuchli.ch", true }, { "liliang13.com", true }, { "lilismartinis.com", true }, + { "lilith-magic.com", true }, { "liljohnsanitary.net", true }, { "lillepuu.com", true }, { "lilliputpreschool.co.nz", true }, { "lilomatrixcorner.fr", true }, + { "lilosaludable.com", true }, + { "lilpwny.com", true }, { "lily-bearing.com", true }, { "lily-inn.com", true }, { "lilyfarmfreshskincare.com", true }, @@ -42873,8 +44453,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "limbaido.tk", true }, { "limberg.me", true }, { "limbo.services", true }, - { "limeres.com", true }, - { "limereslaw.com", true }, + { "limecho.net", true }, + { "limehost.com", true }, { "limit.xyz", true }, { "limitededitioncomputers.com", true }, { "limitededitionsolutions.com", true }, @@ -42893,6 +44473,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "limules.ch", true }, { "limx.win", true }, { "lin.fi", true }, + { "linafernandez.com.co", true }, { "linaklein.de", true }, { "linan.info", true }, { "linan.site", true }, @@ -42910,7 +44491,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lindajahn.de", true }, { "lindalap.fi", true }, { "lindaolsson.com", true }, - { "lindemann.space", true }, { "linden.me", true }, { "lindeskar.se", true }, { "lindgrenracing.tk", true }, @@ -42938,11 +44518,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lingolia.com", false }, { "lingotaxi.com", true }, { "lingting.vip", true }, + { "linguatrip.com", true }, { "linherest.tk", true }, { "linhua.org", true }, + { "link-man.net", true }, { "link-net.ga", true }, { "link-sanitizer.com", true }, - { "link.ba", true }, + { "link.ba", false }, { "link2serve.com", true }, { "link9.net", true }, { "linkages.org", true }, @@ -42962,16 +44544,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linksextremist.at", true }, { "linksphotograph.com", true }, { "linkst.co", true }, + { "linkstagr.am", true }, { "linkthis.me", true }, { "linkthis.ml", true }, { "linkthisstatus.ml", true }, { "linktio.com", true }, { "linkuva.tk", true }, + { "linkwater.org", true }, { "linkwheel.tk", true }, { "linky.tk", true }, { "linkycat.com", true }, + { "linkyou.top", true }, { "linley.de", true }, { "linnaeusgroup.co.uk", true }, + { "linncounty-ia.gov", true }, + { "linnetinfotech.in", true }, { "linonin.tk", true }, { "linosky.ch", true }, { "linost.com", true }, @@ -43004,8 +44591,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linuxchick.se", true }, { "linuxcode.net", true }, { "linuxcommand.ru", true }, + { "linuxdashboard.com", true }, { "linuxdays.cz", true }, { "linuxforum.ch", true }, + { "linuxforwindows.com", true }, { "linuxgiggle.com", true }, { "linuxhilux.com", true }, { "linuxhostsupport.com", true }, @@ -43019,13 +44608,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "linx.net", true }, { "linxmind.eu", true }, { "linzgau.de", true }, - { "linzyjx.com", true }, { "lion7.de", true }, { "lionhosting.nl", true }, { "lionlyrics.com", true }, - { "lionsdeal.com", true }, { "lipacom.ga", true }, { "lipartydepot.com", true }, + { "lipaslovanska.cz", true }, { "lipex.com", true }, { "lipighor.com", true }, { "lipighor.xyz", true }, @@ -43043,6 +44631,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liquidradio.pro", true }, { "liquidwarp.net", true }, { "liquipedia.net", true }, + { "liquor.my", true }, { "liress.gq", true }, { "lirico.ca", true }, { "lirion.de", true }, @@ -43064,7 +44653,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lislan.org.uk", true }, { "lisowski-development.com", false }, { "lisowski-photography.com", true }, - { "lissabon.guide", true }, + { "lissabon.guide", false }, { "lissajouss.tk", true }, { "lissauer.com", true }, { "list-gymnasium.de", true }, @@ -43090,6 +44679,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litebit.nl", true }, { "litebitcdn.eu", true }, { "litebits.com", true }, + { "litecache.de", true }, { "litemind.com", false }, { "litepanels-parts.com", true }, { "literaki123.pl", true }, @@ -43140,7 +44730,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "litvideoserver.de", true }, { "litz.ca", true }, { "litzenberger.ca", true }, - { "liu0hy.cn", true }, { "liubliu.co.uk", true }, { "liud.im", true }, { "liudon.org", true }, @@ -43149,6 +44738,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liukang.tech", true }, { "liul.in", true }, { "liuliuya.com.tw", true }, + { "liulo.cf", true }, + { "liuqiao.best", true }, + { "liuqiao.cf", true }, + { "liuqiao.eu.org", true }, + { "liuqiao.ga", true }, + { "liuqiao.ml", true }, + { "liuqiao.tk", true }, + { "liuqiaolovecaonali.ml", true }, { "liushuyu.tk", true }, { "liv3d.stream", true }, { "livada.fr", true }, @@ -43175,6 +44772,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liveforspeed.se", true }, { "livehomecams.co.uk", true }, { "liveint.org", true }, + { "liveitlogical.in", true }, { "livejasmin.dk", true }, { "livejh.tk", true }, { "livekaarten.be", true }, @@ -43196,6 +44794,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "liveperformersmeeting.net", true }, { "liveregistratie.nl", true }, { "liverider.co.jp", true }, + { "liverobot8.com", true }, + { "liverobot888.com", true }, { "livesheep.com", true }, { "liveslides.com", true }, { "livesure.com", true }, @@ -43213,9 +44813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "livingafrugallife.com", true }, { "livingforreal.com", true }, { "livinginhimalone.com", true }, - { "livingkingsinc.net", true }, { "livingspace.co.nz", true }, - { "livingword.in", true }, { "livingworduk.org", true }, { "livive.com", true }, { "livnev.me", true }, @@ -43250,7 +44848,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lk-hardware.cz", true }, { "lk1.bid", true }, { "lkbk.uk", true }, - { "lkdpp.lt", true }, { "lkellar.org", true }, { "lknw.de", true }, { "lkummer.cz", true }, @@ -43263,6 +44860,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ll8807.com", true }, { "ll8819.com", true }, { "ll9297.co", true }, + { "ll9721.com", false }, { "ll9728.co", true }, { "llamasweet.tech", true }, { "llandudnochristmasfayre.co.uk", true }, @@ -43288,6 +44886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lm228.com", true }, { "lm338.cn", true }, { "lm338.com", true }, + { "lmasqueen.com", true }, { "lmbyrne.co.uk", true }, { "lmbyrne.com", true }, { "lmddgtfy.net", true }, @@ -43299,6 +44898,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lmrcouncil.gov", true }, { "lms-luch.ru", true }, { "lmsptfy.com", true }, + { "lmsuitespagna.it", true }, { "lmtls.me", true }, { "lmtm.eu", true }, { "lmtravis.com", true }, @@ -43306,13 +44906,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ln.io", true }, { "lndrive.space", true }, { "lng-17.org", true }, - { "lnhequipmentltd.com", true }, { "lnhydy.cn", true }, { "lnoldan.com", true }, { "lnrsoft.ddns.net", true }, { "lnx.li", true }, { "lnyltx.cn", true }, { "load-ev.de", true }, + { "load.pm", false }, + { "loaded.se", true }, + { "loader.to", true }, { "loader.us.com", true }, { "loadlow.me", true }, { "loadwallet.com", true }, @@ -43322,7 +44924,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loanmatch.sg", true }, { "loanreadycredit.com", true }, { "loansharkpro.com", true }, - { "loanstreet.be", true }, { "loanstreet.nl", true }, { "lob-assets-staging.com", true }, { "lob-assets.com", true }, @@ -43347,15 +44948,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "localcryptopremium.com", true }, { "locald.at", true }, { "localethereum.com", true }, + { "localexpert.realestate", true }, { "localhorst.duckdns.org", true }, { "localhorst.xyz", true }, { "localhost.cat", true }, { "localhost.ee", true }, + { "locallhost.me", true }, { "localnet.site", true }, { "localnetwork.nz", true }, { "localpov.com", true }, { "localprideart.com", true }, { "localsearch.homes", true }, + { "localseo.ltd", true }, { "localseo.repair", true }, { "localseorepair.co", true }, { "localseorepair.design", true }, @@ -43367,7 +44971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "localseorepair.rocks", true }, { "localseorepair.services", true }, { "localseorepair.world", true }, - { "localsource.eu", true }, { "localspot.pl", true }, { "localtownhouses.ga", true }, { "locapos.com", true }, @@ -43391,6 +44994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locatorplus.gov", true }, { "locauxrama.fr", true }, { "locchat.com", true }, + { "lock-expert.de", true }, { "lock.me", true }, { "lock23.ca", true }, { "lockaby.org", true }, @@ -43440,7 +45044,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locksmithsammamishwa.com", true }, { "locksmithsbluff.com", true }, { "locksmithsbuda.com", true }, - { "locksmithscottsdaleaz.com", true }, { "locksmithseattleco.com", true }, { "locksmithservice-cypress.com", true }, { "locksmithservice-humble.com", true }, @@ -43453,12 +45056,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "locksmiththewoodlands.com", true }, { "locksport.org.nz", true }, { "lockwoodchristmastreefarm.com", true }, - { "locomen.me", false }, + { "locomen.me", true }, { "locomore.com", true }, { "locomotionds.com", true }, { "locoserver.net", true }, { "locurimunca.co", true }, { "locus-dashboard.com", true }, + { "locus-dashboard.eu", true }, { "locusmap.eu", true }, { "lodash.com", false }, { "loddeke.eu", true }, @@ -43483,6 +45087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logexplorer.net", true }, { "logfile.at", true }, { "logfile.ch", true }, + { "logibow.com", true }, { "logic8.ml", true }, { "logicaccountingsolutions.com", true }, { "logical-invest.com", true }, @@ -43516,8 +45121,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "logophiliapress.com", true }, { "logopoeia.com", true }, { "logostock.jp", true }, + { "logsnitch.com", true }, { "logtalk.org", true }, - { "logtalk.pt", true }, { "logtenberg.eu", true }, { "logtywardrobe.com", true }, { "logue.be", true }, @@ -43553,7 +45158,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loli.com", true }, { "loli.net", true }, { "loli.pet", true }, - { "loli.ski", true }, { "loli.today", true }, { "loli.tube", true }, { "loli.world", true }, @@ -43578,7 +45182,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lolnames.gg", true }, { "lolpatrol.de", true }, { "lolpatrol.wtf", true }, - { "loma.ml", false }, + { "loma.ml", true }, { "lomaem-nsk.ru", true }, { "lomayko.ml", true }, { "lombri-agro.com", true }, @@ -43599,13 +45203,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "londonkeyholdingcompany.co.uk", true }, { "londonlegaltranslation.ae", true }, { "londonpropertymatch.com", true }, - { "londonseedcentre.co.uk", true }, { "londontaxipr.com", true }, { "lone-gunman.be", true }, { "lonelyhaoss.com", true }, { "lonelypawn.com", true }, { "lonelystoner.design", false }, { "lonelytweets.com", true }, + { "lonelyworld.co.uk", true }, { "lonesomecosmonaut.com", true }, { "lonestarlandandcommercial.com", true }, { "long-6.com", true }, @@ -43746,9 +45350,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lookatmysco.re", true }, { "lookbetweenthelines.com", true }, { "lookgadgets.com", true }, - { "lookingstores.fr", true }, + { "lookingstores.fr", false }, { "lookup-dns.net", true }, + { "loonbedrijfdenboer.nl", true }, { "looneymooney.com", true }, + { "looneytunesdashgame.com", true }, { "loony.info", false }, { "loonylatke.com", true }, { "loopback.kr", true }, @@ -43767,6 +45373,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lord.sh", true }, { "lordjevington.co.uk", true }, { "lordofthebrick.com", false }, + { "lordusa.com", true }, { "lore-seeker.cards", true }, { "lore.azurewebsites.net", true }, { "loremipsum.info", true }, @@ -43792,10 +45399,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lost.report", true }, { "lostandfound.mu", true }, { "lostarq.com", true }, + { "lostinfood.co.uk", true }, { "lostingames.de", true }, { "lostinlegends.com", true }, { "lostinweb.eu", true }, { "lostkeys.co.uk", true }, + { "lostproperty.org", true }, { "lostsandal.com", true }, { "lostsandal.io", true }, { "lostserver.com", true }, @@ -43811,12 +45420,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loto-tele.com", true }, { "lotos-ag.ch", true }, { "lotro-wiki.com", true }, - { "lotsofbargains.com", true }, + { "lottodatabase.com", true }, { "lottoland.pt", true }, { "lottospielen24.org", false }, { "lotw.de", true }, { "lotz.li", true }, - { "lou-castelet.com", true }, + { "lou-castelet.com", false }, { "lou.ist", true }, { "lou.lt", true }, { "louange-reconvilier.ch", false }, @@ -43838,6 +45447,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "loungecafe.org", true }, { "loungepapillon.com", true }, { "louremedi.fr", true }, + { "louwlemmer.com", true }, { "love-books.ga", true }, { "love-sent.com", true }, { "love-spells-tarot.com", true }, @@ -43867,9 +45477,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovejms.com", true }, { "lovelens.li", false }, { "lovelive-anime.tk", true }, - { "lovelive.tools", true }, { "lovelive.us", true }, { "lovelivewiki.com", true }, + { "lovelo.store", true }, + { "lovelocalbmore.com", true }, { "lovelovenavi.jp", true }, { "loveluna.com", true }, { "lovelytimes.net", true }, @@ -43884,9 +45495,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lover-bg.com", true }, { "loverepublic.ru", true }, { "loverngifts.com", true }, + { "loveskin.co", true }, { "lovesmagical.com", false }, { "lovesove.com", true }, { "lovessentials.com", true }, + { "lovestar.wang", true }, { "lovesupremefestival.com", true }, { "loveweddingphotosandfilm.co.uk", true }, { "loveysa.ch", false }, @@ -43898,18 +45511,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lovizaim.ru", true }, { "low-diets.com", true }, { "lowbidders.com", true }, - { "lowcost.to", true }, { "lowcostvehicleinsurance.com", true }, { "lowcostwire.com.au", true }, { "lowend.cn", true }, { "lowerpricefinder.com", true }, { "lowestpriceremovals.com.au", true }, { "lowmagnitude.com", true }, + { "lowratelocksmith.com", true }, { "lowsec.space", true }, { "lowsidetna.com", true }, { "lowson.ca", true }, { "lowt.us", true }, - { "loxal.net", true }, { "loxal.org", true }, { "loyaleco.it", true }, { "loyaltech.ch", true }, @@ -43919,6 +45531,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lp-support.nl", true }, { "lpacademy.com.br", true }, { "lpbk-bethel.de", false }, + { "lpmkonji.cf", true }, + { "lprcommunity.co.za", true }, { "lps.in.ua", true }, { "lpt-nebreziny.eu", true }, { "lq.hr", true }, @@ -43935,17 +45549,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lsbricks.com", true }, { "lsc-dillingen.de", true }, { "lsc.gov", true }, + { "lsc.moe", true }, { "lsh1688.com", true }, { "lshiy.com", true }, { "lsiq.io", true }, { "lsl.eu", true }, { "lsmentor.com", true }, - { "lsmpx.com", true }, { "lspdonline.gq", true }, { "lsquo.com", true }, { "lsscreens.de", true }, { "lstlx.com", true }, { "lstma.com", true }, + { "lswim.com", true }, { "lsy.cn", true }, { "lsys.ac", true }, { "lszj.com", true }, @@ -43962,6 +45577,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ltls.org", true }, { "ltmw.xyz", true }, { "ltn-tom-morel.fr", true }, + { "ltonlinestore.in", true }, { "ltprtz.co.uk", true }, { "ltransferts.com", true }, { "lts-tec.de", true }, @@ -43972,6 +45588,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luav.org", true }, { "lubar.me", true }, { "lubbockyounglawyers.org", true }, + { "lubersacr.com", true }, { "lubot.net", true }, { "luc-oberson.ch", false }, { "luca-steeb.com", true }, @@ -43981,6 +45598,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lucafrancesca.me", true }, { "lucakrebs.de", true }, { "lucarautti.com", true }, + { "lucasartsclassics.com", true }, { "lucasbergen.ca", true }, { "lucascantor.com", true }, { "lucascodes.com", true }, @@ -44009,11 +45627,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luck9988.com", true }, { "lucklesslovelocks.com", true }, { "lucky-frog.co.uk", true }, + { "luckycasino.se", true }, { "luckycastles.co.uk", true }, { "luckyfrog.hk", true }, { "luckystorevn.com", true }, { "luckyxf.com", true }, { "luclu7.fr", true }, + { "lucorautopartes.com", true }, { "lucschiltz.com", true }, { "luctam.com", true }, { "lucy.science", true }, @@ -44044,8 +45664,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luelistan.net", true }, { "luenwarneke.com", true }, { "luera1959.de", true }, - { "lueurexterne-audiovisuel.com", true }, - { "lueurexterne.com", true }, + { "lueurexterne-audiovisuel.com", false }, + { "lueurexterne.com", false }, { "luffyhair.com", true }, { "luftbild-siegerland.de", true }, { "luftreiniger.biz", true }, @@ -44076,7 +45696,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lukasfunk.com", true }, { "lukasrod.cz", true }, { "lukasschauer.de", true }, - { "lukasschick.de", false }, { "lukasunger.cz", true }, { "lukasunger.net", true }, { "lukaswiden.com", true }, @@ -44091,25 +45710,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lukeistschuld.de", true }, { "lukem.net", true }, { "lukeng.net", true }, + { "lukersallamericanstorage.com", true }, { "lukesbouncycastlehire.com", true }, { "lukestebbing.com", true }, { "lukesutton.info", true }, { "lukezweb.tk", true }, { "lukin.ga", true }, + { "lukmanulhakim.id", true }, { "lukull-pizza.de", true }, { "lulua.pl", true }, { "lumbercartel.ca", true }, { "lumen.sh", true }, + { "lumenapp.com", true }, { "lumenbrowser.com", true }, + { "lumentell.us", true }, { "lumer.tech", true }, { "lumi.pw", true }, { "lumierewithinspirato.com", true }, { "luminaire.fr", true }, { "luminary.pl", true }, + { "lumindigital.com", true }, { "lumitop.com", true }, { "lummi-nsn.gov", true }, { "lumminary.com", true }, { "lumomongoose.com", true }, + { "lumoria.eu", true }, { "lums.se", true }, { "lunafag.ru", true }, { "lunakit.org", true }, @@ -44117,6 +45742,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunanova.moe", true }, { "lunapps.com", true }, { "lunar6.ch", false }, + { "lunares.pl", true }, { "lunarflake.com", true }, { "lunarlog.com", true }, { "lunarshark.com", true }, @@ -44128,6 +45754,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lunchbunch.me", true }, { "lundberghealthadvocates.com", true }, { "lune-indigo.ch", false }, + { "lunepieters.co.za", true }, { "lungta.pro", true }, { "lunidea.ch", false }, { "lunidea.com", false }, @@ -44144,7 +45771,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luom.net", true }, { "luongvu.com", true }, { "luoshifeng.com", true }, - { "luosonghao.com", false }, + { "luosonghao.com", true }, { "luowu.cc", true }, { "luoxingyu.ml", true }, { "lupa.cz", true }, @@ -44153,6 +45780,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lupinenorthamerica.com", true }, { "lushan.me", true }, { "lushnikov-alex.ru", true }, + { "lusis.fr", true }, { "lusitom.com", true }, { "luso-livros.net", true }, { "lust.works", true }, @@ -44168,7 +45796,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lutizi.com", false }, { "lutoma.org", true }, { "luu.moe", true }, - { "luuinhaler.com", true }, { "luukdebruincv.nl", false }, { "luukklene.nl", true }, { "luukuton.fi", true }, @@ -44190,6 +45817,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luxsci.com", true }, { "luxstil.ga", true }, { "luxur.is", true }, + { "luxury-inside.vn", true }, { "luxurydistribution.cz", true }, { "luxurynsight.net", false }, { "luxurytimepieces.net", true }, @@ -44201,6 +45829,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "luyckx.net", true }, { "luzat.com", true }, { "luzfaltex.com", true }, + { "luzi-type.ch", true }, { "lv.search.yahoo.com", false }, { "lv0.it", true }, { "lv5.top", true }, @@ -44212,6 +45841,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lvtrafficticketguy.com", true }, { "lw-addons.net", true }, { "lwl-foej-bewerbung.de", true }, + { "lwl.moe", true }, { "lwl12.com", true }, { "lwsl.ink", true }, { "lx-blog.cn", true }, @@ -44236,6 +45866,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lyness.io", true }, { "lyness.uk", true }, { "lyngvaer.no", true }, + { "lynnejeancleaning.com", true }, { "lynnellneri.com", true }, { "lynnlaytonnissanparts.com", true }, { "lynnmosher.com", true }, @@ -44244,15 +45875,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "lynx.nl", true }, { "lynxbroker.de", true }, { "lynxpro.nl", true }, + { "lynxriskmanager.com", true }, { "lyon-interactive.com", true }, { "lyon-synergie.com", true }, { "lyoness.digital", true }, + { "lyonl.com", true }, { "lyonslawlink.com", true }, + { "lyrenhex.com", true }, { "lyrical-nonsense.com", true }, { "lyricfm.com", true }, { "lyricfm.ie", true }, { "lyriksidan.ga", true }, - { "lys.ch", true }, + { "lys.ch", false }, { "lysbed.com", true }, { "lyscnd.com", true }, { "lysergion.com", true }, @@ -44275,11 +45909,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m-22.com", true }, { "m-beshr.tk", true }, { "m-chemical.com.hk", true }, - { "m-cont.cz", true }, { "m-epigrafes.gr", true }, { "m-gaming.tk", true }, { "m-generator.com", true }, { "m-gh.info", true }, + { "m-h-b.fr", true }, { "m-hydravlika.com.ua", true }, { "m-idea.jp", true }, { "m-kleinert.de", true }, @@ -44288,7 +45922,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m-monitor.pl", true }, { "m-net.de", true }, { "m-office.pl", true }, - { "m-orthodontic.com", true }, { "m-plan.com", true }, { "m-ses.fr", true }, { "m-team.cc", true }, @@ -44312,6 +45945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m36533.com", true }, { "m36594.com", true }, { "m365m.com", true }, + { "m3e30.com", true }, { "m3windowsanddoors.com", true }, { "m4570.xyz", true }, { "m4all.gr", true }, @@ -44325,10 +45959,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "m6957.co", true }, { "m6pub.fr", true }, { "m81365.com", true }, - { "m81818.com", true }, { "m82365.com", true }, - { "m8593.com", true }, + { "m8593.com", false }, { "m9297.co", true }, + { "m9721.com", false }, { "m9728.co", true }, { "ma-eir.nl", true }, { "ma-maison-container.fr", true }, @@ -44337,7 +45971,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ma2t.com", true }, { "maaret.de", true }, { "maartenderaedemaeker.be", true }, - { "maartenterpstra.xyz", true }, { "maartenvandekamp.nl", true }, { "maatwerkopruimcoaching.nl", true }, { "maatwerkzorgcoaching.nl", true }, @@ -44426,15 +46059,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "made-to-usb.com", true }, { "madebydusk.com", true }, { "madebyshore.com", true }, - { "madeinolive.com", true }, + { "madeinolive.com", false }, { "madeinrussia.com", true }, { "madeinstudio3.com", true }, { "madeintucson.org", true }, { "madeira.gov.pt", true }, - { "madeitwor.se", true }, { "madeloc.com", true }, { "mademoe.com", true }, { "mademoiselledemargaux.com", true }, + { "maden.com", true }, { "mader.jp", true }, { "maderasbrown.com", true }, { "maderasyacabados.net", true }, @@ -44448,6 +46081,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "madisoncountyhelps.com", true }, { "madisonent-facialplasticsurgery.com", true }, { "madisonsquarerealestate.com", true }, + { "madix.cl", true }, { "madmar.ee", true }, { "madmax-store.gr", true }, { "madnetwork.org", true }, @@ -44477,7 +46111,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maelstrom.ninja", true }, { "maeplasticsurgery.com", true }, { "maesinox.be", true }, - { "maestrano.com", false }, { "maewongaming.tk", true }, { "maff.co.uk", true }, { "maff.scot", true }, @@ -44508,6 +46141,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magenda.sk", true }, { "magentaize.net", true }, { "magentapinkinteriors.co.uk", true }, + { "magentoeesti.eu", true }, { "magepro.fr", true }, { "magestionfinanciere.com", true }, { "magewell.nl", true }, @@ -44535,6 +46169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "magicnethosting.com", true }, { "magicomotor.com", true }, { "magicroom.it", true }, + { "magicskillet.com", true }, { "magicsms.pl", true }, { "magicspaceninjapirates.de", true }, { "magicstay.com", true }, @@ -44616,6 +46251,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mailer.site", true }, { "mailfence.com", true }, { "mailflank.com", true }, + { "mailgun.com", true }, { "mailhardener.com", true }, { "mailinabox.email", true }, { "mailinabox.ml", true }, @@ -44623,12 +46259,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mailingproduct.tk", true }, { "mailjunky.de", true }, { "maillady-susume.com", true }, - { "mailmag.net", true }, + { "mailmaid.de", true }, { "mailman.ml", true }, { "mailmaster.tk", true }, { "mailmerc.com", true }, { "mailnara.co.kr", true }, - { "mailon.ga", true }, { "mailpenny.com", true }, { "mailsend.ml", true }, { "mailstart.ga", true }, @@ -44654,22 +46289,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mairie-sornay.fr", true }, { "maisallianz.com", true }, { "maisan.best", true }, + { "maisapanama.com", true }, { "maiscelular.com.br", true }, { "maisempregonet.com", true }, { "maisgasolina.com", true }, + { "maisie.nl", true }, { "maison-haimard.fr", true }, { "maisondoree.be", true }, { "maisonpaulmier.fr", true }, { "maispa.com", true }, { "maisretorno.com", true }, { "maisvitaminas.com.br", true }, - { "maisy.io", true }, { "maitemerino.net", true }, { "maitheme.com", true }, { "maiti.info", true }, { "maitrise-orthopedique.com", true }, { "maitriser-son-stress.com", true }, { "majahoidja.ee", true }, + { "majameer.com", true }, { "majaweb.cz", true }, { "majemedia.com", false }, { "majesnix.org", true }, @@ -44689,16 +46326,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "makalu.me", true }, { "makariza.com.co", true }, { "make-your-own-song.com", true }, - { "makeaboldmove.com", true }, { "makechanges.com.au", true }, { "makedin.net", true }, { "makefoodrecipes.com", true }, { "makeit-so.de", false }, - { "makejusticework.org.uk", true }, { "makelinks.online", true }, { "makemejob.com", true }, { "makenaiyo-fx.com", true }, { "makepro.net", true }, + { "maker.to", true }, { "makera.ga", true }, { "makerdao.com", true }, { "makermiles.com", true }, @@ -44716,6 +46352,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maklerinfo.biz", true }, { "makos.jp", true }, { "makowitz.cz", true }, + { "maksoud-karim.net", true }, { "maktoob.search.yahoo.com", false }, { "maku.edu.tr", true }, { "makura.fun", true }, @@ -44728,6 +46365,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malaysia.search.yahoo.com", false }, { "malaysian.dating", true }, { "malaysianews.ml", true }, + { "malcolmellis.com", true }, { "maldives.cx", true }, { "malediven.biz", true }, { "maleevcues.com", true }, @@ -44743,6 +46381,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malibu-electric.com", true }, { "malibuelectrical.com", true }, { "malibuexteriorlighting.com", true }, + { "malibulingerie.com", true }, { "malibumodas.com.br", true }, { "malik.holdings", true }, { "malik.id", true }, @@ -44765,12 +46404,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malnex.de", true }, { "malond.com", true }, { "malphisruul.de", true }, - { "malscan.com", true }, + { "malscan.com", false }, { "malscan.org", true }, { "malta-firma.com", true }, { "maltasite.tk", true }, { "maltaultrastifo.tk", true }, - { "malte-kiefer.de", true }, { "maltegegner.de", true }, { "malufs.com.br", true }, { "malvertise.xyz", true }, @@ -44782,7 +46420,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "malwarekillers.com", true }, { "malwaretips.com", true }, { "malwr.ee", true }, - { "maly.io", true }, { "malyshata.com", true }, { "malysvet.net", false }, { "mamabatataya.com", true }, @@ -44795,6 +46432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mamanura.tk", true }, { "mamasorganizedchaos.com", true }, { "mamastore.eu", true }, + { "mamaxi.org", true }, { "mambas.cn", true }, { "mame.cl", true }, { "mamiecouscous.com", true }, @@ -44826,9 +46464,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manager-efficacement.com", true }, { "manager.linode.com", false }, { "managewp.org", true }, + { "managr.net", true }, { "manalu.cz", true }, - { "manantialdevida1450.com", true }, { "manaonetrading.com", true }, + { "manasakcijas.lv", true }, { "manatees.com.au", true }, { "manatees.net", true }, { "manav-it.de", true }, @@ -44836,7 +46475,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manawill.jp", true }, { "manawithtea.com", true }, { "mancrates.com", true }, + { "mandalevydesigns.com", true }, { "mandanudes.ae", true }, + { "mandarinpediatrics.com", true }, { "mandcbouncycastlehire.co.uk", true }, { "mandediary.com", true }, { "mandela-effect-wiki.tk", true }, @@ -44880,9 +46521,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maniosglass.gr", true }, { "manipil.ch", true }, { "manipurmatka.net", true }, + { "manito.kr", true }, { "manja-und-martin.de", true }, { "manjaro.ru", true }, { "mankans.com", false }, + { "mankier.com", true }, { "mankomarketing.com", true }, { "manmeetgill.com", true }, { "mann-und-maeuse.de", true }, @@ -44902,6 +46545,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mansfeld.pl", true }, { "manshatech.com", true }, { "manski.net", true }, + { "mansora.co", true }, { "mansora.net", true }, { "mantabiofuel.com", true }, { "mantachiepharmacy.com", true }, @@ -44936,8 +46580,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "manuelahidalgo.org", true }, { "manuelguerra.pt", true }, { "manueli.de", true }, - { "manuelpinto.in", true }, - { "manuelrueger.de", true }, + { "manuelpinto.in", false }, + { "manuelraimo.cf", true }, + { "manuelrueger.de", false }, { "manufacturinginmexico.org", true }, { "manuscripteditorial.com", true }, { "manuscriptlink.com", true }, @@ -44971,6 +46616,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maplegate.info", true }, { "maplehome.tk", true }, { "mapletime.com", true }, + { "mappingfutures.org", true }, { "mapresidentielle.fr", true }, { "mapstack.org", true }, { "maquena.org", true }, @@ -44981,6 +46627,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marabumadrid.com", false }, { "marabunta.io", true }, { "marakovits.net", true }, + { "marandu.com.ar", false }, { "maransurology.com", true }, { "marbinvest.com", true }, { "marble.com", true }, @@ -45036,6 +46683,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marcohager.de", true }, { "marcoherten.com", true }, { "marcoklomp.nl", true }, + { "marcopolo-restaurant.com", true }, { "marcoreitmeier.de", true }, { "marcoslater.com", true }, { "marcotics.nl", true }, @@ -45050,10 +46698,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marechal-company.com", true }, { "marek.su", true }, { "marelijah.org", true }, + { "maresencial.com", true }, { "marex.host", true }, { "margagriesser.de", true }, { "margan.ch", true }, { "margatroid.com", true }, + { "margatroid.net", true }, { "margaux-perrin.com", true }, { "margays.de", true }, { "margecommunication.com", false }, @@ -45064,6 +46714,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "margots.life", true }, { "margots.tech", true }, { "marguerite-maison.fr", true }, + { "maria-galland.cz", true }, + { "mariaaguirrevalarezo.com", true }, { "mariafernanda.com.br", true }, { "mariage-photo.ch", true }, { "mariage-protestant.ch", true }, @@ -45071,6 +46723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mariagiovannaluini.it", true }, { "mariahandnasty.com", true }, { "mariaheidemann.nl", true }, + { "mariajuangarcia.com", true }, { "marianatherapy.com", true }, { "marianelaisashi.com", true }, { "marianhoenscheid.de", true }, @@ -45086,6 +46739,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marie-pettenbeck-schule.de", true }, { "marie.club", true }, { "mariehane.com", true }, + { "mariejulien.com", true }, { "mariemiramont.fr", true }, { "mariendistel-tee.de", true }, { "mariereichl.cz", true }, @@ -45094,6 +46748,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marijnfidder.nl", true }, { "marijuanajobscannabiscareers.com", true }, { "marikafranke.de", true }, + { "mariliaveiga.com.br", true }, { "marilsnijders.nl", true }, { "marilynhartman.com", true }, { "marilynmartin.com.au", true }, @@ -45102,6 +46757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marin-dom.ru", false }, { "marin-tullet.com", false }, { "marina-tsvetaeva.ml", true }, + { "marinat.de", true }, { "marinat2012.de", true }, { "marinazarza.es", true }, { "marinbusinesscenter.ch", false }, @@ -45111,10 +46767,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marinela.com.mx", false }, { "marinelausa.com", false }, { "marinershousecalstock.com", true }, - { "marines-shop.com", false }, { "maringalazer.com.br", true }, { "marioabela.com", true }, - { "marioberluchi.by", true }, + { "marioberluchi.by", false }, { "mariogeckler.de", false }, { "mariposah.ch", true }, { "marisamorby.com", false }, @@ -45158,31 +46813,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marketingconverts.com", true }, { "marketingdesignu.cz", true }, { "marketingforfood.com", true }, - { "marketinggenerators.nl", false }, { "marketingpalace.tk", true }, { "marketingprofesszorok.hu", true }, - { "marketingromania.ro", true }, { "marketingsuite.tk", true }, { "marketingtrendnews.com", true }, { "marketingvirtuales.com", true }, + { "marketingypublicidaddigital.com.mx", true }, { "marketizare.ro", true }, { "marketking.ga", true }, { "marketplacestrategy.com", true }, { "marketsearch.ga", true }, { "marketvalue.gq", true }, { "markf.io", true }, + { "markfisher.photo", true }, { "markfordelegate.com", true }, { "markhaehnel.de", true }, { "markholden.guru", true }, { "markhoodphoto.com", true }, { "markhoodwrites.com", true }, { "markido.com", true }, - { "markiewicz.online", true }, { "markitzeroday.com", true }, { "markkirkforillinois.com", true }, { "markkirkforsenate.com", true }, { "marklauman.ca", true }, { "markllego.com", true }, + { "markoglou.com.gr", true }, { "markoh.co.uk", true }, { "markprof.ru", true }, { "markri.nl", true }, @@ -45215,11 +46870,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "markusjochim.de", true }, { "markuskeppeler.de", true }, { "markuskeppeler.no-ip.biz", true }, + { "markusritzmann.ch", true }, { "markusueberallassetmanagement.de", true }, { "markusueberallconsulting.de", true }, { "markusweimar.de", true }, { "markxpdesign.ga", true }, { "marl.fr", true }, + { "marliesfens.nl", true }, { "marloncommunications.com", true }, { "marlonlosurdopictures.com", true }, { "marlonschultz.de", true }, @@ -45228,11 +46885,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marmista.roma.it", true }, { "marmolesromero.com", true }, { "marmotte.love", true }, + { "marmuif.fr", true }, { "marocemploi.co", true }, { "marocmail.ma", true }, { "maroismasso.com", true }, { "marolu.one", true }, - { "maroquineriepirlot.be", true }, + { "maroquineriepirlot.be", false }, { "maroussia.tk", true }, { "marpa-wohnen.de", true }, { "marqperso.ch", true }, @@ -45254,12 +46912,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marshallwilson.com", true }, { "marshmallow.co", true }, { "marshmallow.com", true }, - { "marshyplay.live", true }, { "marsikelektro.cz", true }, { "martasibaja.com", true }, { "martel-innovate.com", true }, { "martelange.ovh", true }, { "martellosecurity.com", true }, + { "martemeo-wetterau.de", true }, { "marten-buer.de", true }, { "martensmxservice.nl", true }, { "martensson.io", false }, @@ -45281,7 +46939,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "martinbaileyphotography.com", true }, { "martinboerhof.nl", true }, { "martincernac.cz", true }, - { "martindoe.pl", true }, { "martine.nu", true }, { "martinelias.cz", true }, { "martineweitweg.de", true }, @@ -45303,6 +46960,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "martynhare.uk", true }, { "marufmusic.tk", true }, { "maruhoi.com", true }, + { "marulaweb.com", true }, { "marustat.ru", true }, { "marvaco.ga", true }, { "marvell.cat", true }, @@ -45312,8 +46970,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "marvinschopf.com", true }, { "marvman.me", true }, { "marvnet.cf", true }, + { "marvnet.de", true }, { "marvnet.design", true }, - { "marvnet.email", true }, { "marvnet.ga", true }, { "marvnet.gq", true }, { "marvnet.ml", true }, @@ -45347,10 +47005,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "masalaband.tk", true }, { "masarik.sh", true }, { "masarn.com", true }, - { "masautonomo.com", true }, { "masaze-hanka.cz", true }, { "mascorazon.com", true }, { "mascosolutions.com", true }, + { "mascotarios.org", true }, { "masdemariette.com", true }, { "masdemexico.com", true }, { "maseni.com", true }, @@ -45372,6 +47030,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "massage-vitalite.fr", true }, { "massage-well.ch", true }, { "massage4u.net", true }, + { "massageandwellbeing.com", true }, { "massagecoolangatta.com.au", true }, { "massagecupping.com", true }, { "massagetainha-hanoi.com", true }, @@ -45382,7 +47041,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "massfone.com", true }, { "masshiro.blog", true }, { "masshvac.com", true }, - { "massive.tk", true }, { "massotherapeutique.com", true }, { "masstercurssos.com", true }, { "massvow.com", true }, @@ -45397,9 +47055,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "master-net.org", true }, { "master-tmb.ru", true }, { "mastercardpac.com", true }, + { "mastercomfig.com", true }, { "masterdemolitioninc.com", true }, { "masterdigitale.com", true }, { "masterdrilling.com", true }, + { "masterkitchen.com.br", true }, { "mastermindcesar.com", true }, { "masterofallscience.com", true }, { "masterofbytes.ch", true }, @@ -45412,7 +47072,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mastersthesiswriting.com", true }, { "masterstuff.de", true }, { "masterton.com.au", true }, - { "masterwayhealth.com", true }, { "mastiffingles.com.br", true }, { "mastodon.at", true }, { "mastodon.blue", false }, @@ -45439,6 +47098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matchpointusa.com", true }, { "matchupmagic.com", true }, { "matdogs.com", true }, + { "mate.vn", true }, { "matebalazs.hu", true }, { "mateiko.by", true }, { "matejgroma.com", true }, @@ -45478,9 +47138,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mathieui.net", true }, { "mathijskingma.nl", true }, { "mathis.com.tr", true }, - { "mathismoda.com", true }, { "mathiteia.com", true }, { "maths.network", true }, + { "mathsai.com", true }, { "mathsource.ga", true }, { "mathspace.co", true }, { "mathys.io", true }, @@ -45500,7 +47160,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matridiana.com", true }, { "matrieux.dk", true }, { "matrimoni.uk", true }, + { "matrimonio.com.co", true }, { "matrimonio.com.pe", true }, + { "matrimonios.cl", true }, { "matriterie-sdv.ro", true }, { "matrixglobalsms.com", true }, { "matrixim.cc", true }, @@ -45543,7 +47205,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matthewj.ca", true }, { "matthewkenny.co.uk", true }, { "matthewkerley.com", true }, - { "matthewljiang.com", true }, { "matthewohare.com", true }, { "matthewprenger.com", true }, { "matthewsaeger.com", true }, @@ -45573,9 +47234,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "matts.wiki", true }, { "matts.world", true }, { "mattwservices.co.uk", true }, + { "matucloud.de", true }, { "matuslab.net", true }, - { "matviet.vn", true }, - { "matway.com", true }, { "matway.net", true }, { "matze.co", true }, { "matze.org", false }, @@ -45583,7 +47243,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mau.life", true }, { "mauerwerk.online", true }, { "mauerwerkstag.info", true }, - { "mauiticketsforless.com", true }, { "mauldincookfence.com", true }, { "maunium.net", true }, { "mauracher.cc", true }, @@ -45602,14 +47261,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maveeranpasupathi.tk", true }, { "mavenclinic.com", true }, { "mavensecurity.com", true }, + { "mavenvets.co.uk", true }, { "maveris.com", true }, { "mawai.com.tw", true }, { "mawo.olkusz.pl", true }, { "mawrex.tech", true }, - { "max-apk.com", true }, + { "max-apk.com", false }, { "max-it.fr", true }, { "max-moeglich.de", true }, - { "max-phone.com", true }, + { "max-phone.com", false }, { "max-went.pl", true }, { "max.gov", true }, { "max00365.com", true }, @@ -45621,18 +47281,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "maxbytes.nl", false }, { "maxchan.info", true }, { "maxclean.ml", true }, - { "maxdg.be", true }, { "maxedgymequipment.com", true }, { "maxh.me.uk", true }, { "maxhamon.ovh", true }, { "maxhoechtl.at", true }, { "maxhorvath.com", true }, + { "maxi-corp.com", true }, { "maxibanki.ovh", true }, { "maxiglobal.net", true }, { "maxiglobal.pt", true }, { "maximdeboiserie.be", true }, { "maximdens.be", true }, { "maximeferon.fr", true }, + { "maximemichaud.me", true }, { "maximilian-graf.de", true }, { "maximilian-greger.com", true }, { "maximilian-staedtler.de", true }, @@ -45668,9 +47329,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "may24.tw", true }, { "mayaimplant.com", true }, { "mayavi.co.in", true }, + { "maybeonline.de", true }, { "maybeul.com", true }, + { "mayblossom.net", true }, { "maydex.info", true }, - { "maydn.org", true }, { "mayerbrownllz.com", true }, { "mayhutmuibep.com", true }, { "mayito.tk", true }, @@ -45702,7 +47364,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mb300sd.com", true }, { "mb300sd.net", true }, { "mbaasy.com", true }, - { "mbadika.org", true }, { "mbaestlein.de", true }, { "mbainflatables.co.uk", true }, { "mbanq.com", true }, @@ -45711,10 +47372,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mbc.asn.au", true }, { "mbcars.be", false }, { "mbclegal.org", true }, - { "mbda.gov", false }, + { "mbda.gov", true }, { "mbdrogenbos-usedcars.be", true }, { "mbed.com", true }, { "mbedcloud.com", true }, + { "mbedcloudintegration.net", true }, { "mbeo.ch", false }, { "mbetb33.com", true }, { "mbetb73.com", true }, @@ -45738,6 +47400,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mbwemmel-usedcars.be", true }, { "mbwis.net", true }, { "mc-jobs.net", true }, + { "mc-pub.org", true }, { "mc-venture.net", false }, { "mc-web.se", true }, { "mc007.xyz", true }, @@ -45750,6 +47413,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mccarty.io", false }, { "mcconciergerie.com", true }, { "mccoolesredlioninn.com", true }, + { "mccordscvs.com", true }, { "mccordsvillelocksmith.com", true }, { "mccrackon.com", true }, { "mcculloughjchris.com", true }, @@ -45766,6 +47430,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mce55.eu", true }, { "mcea-hld.jp", true }, { "mceconferencecentre.eu", true }, + { "mcfallout.ru", true }, { "mcfarlow.sk", true }, { "mcfedries.com", true }, { "mcfi.mu", true }, @@ -45774,11 +47439,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcgaccountancy.co.uk", true }, { "mcgavocknissanwichitaparts.com", true }, { "mcgovernance.com", true }, + { "mchan.us", true }, { "mchel.net", true }, { "mchopkins.net", true }, { "mchost.no", true }, { "mchristopher.com", true }, - { "mchuiji.com", true }, { "mcideas.tk", true }, { "mcivor.me", true }, { "mcjackk77.me", true }, @@ -45792,7 +47457,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mckinleytk.com", true }, { "mcl.de", false }, { "mcl.gg", true }, - { "mclawyers.com.au", true }, { "mclinflatables.co.uk", true }, { "mclmotors.co.uk", true }, { "mclouds.ru", true }, @@ -45815,6 +47479,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcsports.es", true }, { "mcsrvstat.us", true }, { "mcstaralliance.com", true }, + { "mcsteve.com", true }, { "mctherealm.net", true }, { "mctitan.net", true }, { "mctools.org", true }, @@ -45823,10 +47488,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mcuong.tk", false }, { "mcuuid.net", true }, { "mcversions.net", true }, + { "mcvs.net", true }, { "mcwrapper.com", true }, { "mcynews.com", true }, { "mcyukon.com", true }, - { "mczone.su", true }, { "md-clinica.com.ua", true }, { "md10lc8.com", true }, { "md11lc8.com", true }, @@ -45863,17 +47528,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mdek.at", true }, { "mdewendt.de", true }, { "mdf-bis.com", false }, - { "mdi-wolfsburg.de", true }, + { "mdhosting.co.uk", true }, { "mdihi.com", true }, { "mdinvest.nz", true }, { "mdir.tk", true }, { "mdiv.pl", true }, { "mdkhorshedalam.com", true }, - { "mdkr.nl", true }, { "mdlayher.com", true }, { "mdma.net", true }, { "mdmed.clinic", true }, - { "mdosch.de", true }, + { "mdpparish.com", true }, { "mdpraha.cz", true }, { "mdrsp.de", true }, { "mdrthmcs.io", true }, @@ -45893,8 +47557,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meadowfen.farm", true }, { "meadowfenfarm.com", true }, { "meadowviewfarms.org", true }, + { "meadstats.com", true }, { "mealcast.ml", true }, - { "mealz.com", false }, + { "mealz.com", true }, { "meamod.com", false }, { "meangirl.club", true }, { "meany.xyz", true }, @@ -46202,8 +47867,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mec0976.com", true }, { "mec0977.com", true }, { "mec0991.com", true }, - { "mec222.com", true }, - { "mec333.com", true }, { "mec444.com", true }, { "mec555.com", true }, { "mec825.com", true }, @@ -46216,6 +47879,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mechanixdirect.co.uk", false }, { "mechanus.io", true }, { "mechaspartans6648.com", true }, + { "mechbattlegrounds.com", true }, { "mechmk1.me", true }, { "mechok.ru", true }, { "med-colleges.com", true }, @@ -46245,9 +47909,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meddatix.com", true }, { "meddelare.com", true }, { "meddigital.com", false }, + { "meddin.com", true }, { "mede-handover.azurewebsites.net", true }, + { "medecinchinois.be", true }, { "medeinos.lt", true }, { "medellinapartamentos.com", true }, + { "medeurope.info", true }, { "medexpress.co.uk", true }, { "medguide-bg.com", true }, { "medhy.fr", true }, @@ -46274,7 +47941,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mediagetnews.tk", true }, { "mediagold.it", true }, { "mediagrand.net", true }, - { "mediahaus.de", true }, { "mediajurnal.com", true }, { "medialab.nrw", true }, { "medialys.ca", true }, @@ -46294,10 +47960,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mediawijzer.net", true }, { "mediawiki.org", true }, { "mediawin.pl", true }, + { "medibasket.co.in", true }, { "medic-world.com", true }, { "medical-assistant-colleges.com", true }, - { "medicalabroad.org", true }, + { "medicalabroad.org", false }, { "medicalcountermeasures.gov", true }, + { "medicaltools.de", true }, { "medicare-providers.net", true }, { "medicarecoveragefinder.com", true }, { "medicareful.com", true }, @@ -46307,12 +47975,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medicinesfast.com", false }, { "medicinia.com.br", true }, { "medicinskavranje.edu.rs", true }, - { "mediciventures.com", true }, { "medicm.jp", true }, { "medicocompetente.it", true }, { "medicoleads.com", true }, { "medicoresponde.com.br", true }, - { "medicsz.co", true }, + { "medictools.de", true }, { "medienweite.de", true }, { "medifirst.de", true }, { "medigap-quote.net", true }, @@ -46367,7 +48034,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medposturgentcare.org", true }, { "medpostwalkincare.com", true }, { "medpostwellness.com", true }, - { "medrep.pp.ua", true }, { "medsblalabs.com", true }, { "medschat.com", true }, { "medsourcelabs.com", true }, @@ -46375,7 +48041,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "medtalents.ch", true }, { "medtehnika.ua", true }, { "medtip.de", true }, - { "medundmed.at", true }, + { "medunovi.com", true }, { "medusa.wtf", true }, { "meduza.io", true }, { "medvedikorenka.cz", true }, @@ -46414,6 +48080,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mega-aukcion.ru", true }, { "mega-byte.nl", true }, { "mega-feeling.de", true }, + { "mega-loteria.com", true }, { "mega.co.nz", true }, { "mega.nz", true }, { "mega1.me", true }, @@ -46422,6 +48089,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megabounceni.co.uk", true }, { "megabouncingcastles.com", true }, { "megadrol.com", true }, + { "megaelettrostimolatore.com", true }, { "megaflix.nl", true }, { "megaflowers.ru", true }, { "megagifs.de", true }, @@ -46430,6 +48098,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megakoncert90.cz", true }, { "megam.host", true }, { "megamisja.pl", true }, + { "megamov.eu", true }, + { "megamov.fr", true }, + { "megamov.org", true }, + { "megamov.pro", true }, { "megamp3.eu", true }, { "meganandmarc.us", true }, { "meganreel.com", true }, @@ -46437,11 +48109,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megapixel.cz", true }, { "megapl.ru", true }, { "megaplan.cz", true }, - { "megaplan.ru", true }, { "megaplonk.com", true }, { "megaportal.ga", true }, { "megarex.jp", true }, { "megaron.at", true }, + { "megasupportcr.com", true }, { "megatravel.com.mx", true }, { "megauction.tk", true }, { "megawarez.org", true }, @@ -46449,6 +48121,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "megaxchange.com", true }, { "megaxchange.org", true }, { "megayachts.world", true }, + { "megazine3.de", true }, { "meggidesign.com", true }, { "megh.biz", true }, { "megh.tv", true }, @@ -46460,6 +48133,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mehalick.com", true }, { "mehdibouchema.be", true }, { "mehdimassage.com", true }, + { "meherbaba.sk", true }, { "meherpurnews.com", true }, { "mehhh.xyz", true }, { "mehibo.tk", true }, @@ -46481,6 +48155,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meillard-auto-ecole.ch", true }, { "meilleur.info", true }, { "meilleursavis.fr", true }, + { "meilleursjeuxporno.fr", true }, { "meilleurstrucs.com", true }, { "meimeistartup.com", true }, { "mein-domizil.at", true }, @@ -46500,6 +48175,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meinephbern.ch", true }, { "meinewolke.pw", true }, { "meinezwangsversteigerung.de", true }, + { "meinforum.net", true }, { "meinheizstrom.de", true }, { "meinstartinsleben.com", true }, { "meinstartinsleben.de", true }, @@ -46511,7 +48187,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meisterlabs.com", true }, { "meistertask.com", true }, { "meitan.gz.cn", true }, - { "meizitang.es", true }, { "mekaleskirit.tk", true }, { "mekanika.com.my", true }, { "mekatro.tech", true }, @@ -46521,9 +48196,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mekesh.ru", true }, { "meklon.net", true }, { "mekongmontessori.com", true }, - { "melania-voyance.fr", true }, + { "melania-voyance.fr", false }, { "melaniebernhardt.com", true }, { "melaniegruber.de", true }, + { "melanieschweiger.com", true }, { "melatonin.fun", true }, { "melbourne.dating", true }, { "melbourneapartments.website", true }, @@ -46533,16 +48209,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "melda.ru", true }, { "meldcode-assistent.nl", true }, { "meldpuntemma.nl", true }, + { "meldwekker.nl", true }, { "mele.ro", true }, { "melearning.university", false }, { "meledia.com", false }, - { "melefo.ddns.net", true }, { "melenchatsmelenchiens.fr", true }, { "melento.com", true }, { "melerpaine.com", true }, { "melhoresdominios.com", true }, { "melhoresmarcasdenotebook.com.br", true }, { "melhorproduto.com.br", true }, + { "meliggemert.nl", true }, + { "melihacar.com.tr", true }, { "melikoff.es", true }, { "melillaorienta.es", true }, { "melina-schefczyk.de", true }, @@ -46555,6 +48233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meliyb.ga", true }, { "mellika.ch", true }, { "mellitus.org", true }, + { "mellonne.com", true }, { "melnessgroup.com", true }, { "melnikov.ch", true }, { "melodic.com.au", true }, @@ -46582,6 +48261,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "members-only-shopping.com", true }, { "members.nearlyfreespeech.net", false }, { "membersense.com", true }, + { "membershipnetworksite.com", false }, { "membershipservices.org.uk", true }, { "memberstweets.com", true }, { "memdoc.org", true }, @@ -46596,15 +48276,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "memetrash.co.uk", true }, { "memind.net", true }, { "memiux.com", true }, - { "memmertusa.com", true }, { "memo-linux.com", true }, { "memo.ee", true }, { "memo2ch.com", true }, { "memoire-resistance-ariege.fr", true }, { "memoirmedie.dk", true }, + { "memoriadeunaciudadzccm2019.com", true }, { "memorind.com", true }, { "memorycards.ie", true }, { "memoryex.net", true }, + { "mempool.de", true }, { "memrise.com", true }, { "menanwc.org", true }, { "menaraannonces.com", true }, @@ -46627,6 +48308,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "menomineemi.gov", true }, { "menotag.com", true }, { "mens-health.com.my", false }, + { "mens-v.com", true }, { "mensagemaniversario.com.br", true }, { "mensagemdaluz.com", true }, { "mensagensaniversario.com.br", true }, @@ -46639,16 +48321,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mentalhealthmn.org", true }, { "mentaltraining-fuer-musiker.ch", true }, { "mentecuriosa.net", true }, - { "mentesemprendedoras.net", true }, { "menthiere.fr", true }, { "mentiq.az", true }, { "mentita.de", true }, - { "mentorbuk.com", true }, { "mentorithm.com", true }, { "mentup.com.br", true }, { "menu.fyi", true }, { "menuel.me", true }, { "menuonlineordering.com", true }, + { "menurutparaahli.com", true }, { "menzietti.it", true }, { "meo.de", true }, { "meodihoang.com", true }, @@ -46672,12 +48353,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mercadopago.com", true }, { "mercamaris.es", true }, { "mercanix.co.uk", true }, - { "mercari.com", true }, { "mercatoitticosbt.it", true }, + { "mercedes-benz-arena-stuttgart.de", true }, { "mercedes-benz-kiev.com", true }, { "mercedes-ig.de", true }, { "mercelo.com", true }, { "mercercountyohio.gov", true }, + { "mercerisland.gov", true }, { "merchant-automotive.com", true }, { "merchant.agency", true }, { "merchcity.com", true }, @@ -46696,10 +48378,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meric-graphisme.info", true }, { "meridanas.me", true }, { "meridianenvironmental.com", true }, - { "meridianfresno.com", true }, { "meridianmetals.com", true }, { "merimatka.fi", true }, { "merite.cloud", true }, + { "merkel.li", true }, { "merkel.me", true }, { "merlet.eu", true }, { "merlin-memorial.de", true }, @@ -46711,12 +48393,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mers.one", true }, { "merson.org", true }, { "merson.tv", true }, + { "mertak.cz", true }, { "mertarauh.com", true }, { "mertcangokgoz.com", true }, { "meruri.com", true }, { "merzai.co.uk", true }, { "mes-bouquins.fr", true }, - { "mes-finances.be", true }, { "mesabi.ga", true }, { "mesami-art.de", true }, { "mesappros.com", true }, @@ -46751,6 +48433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metachris.com", true }, { "metacoda.com", true }, { "metacode.biz", true }, + { "metacompliance.com", true }, { "metacortex.cf", true }, { "metadata.be", true }, { "metadedi.net", true }, @@ -46769,7 +48452,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metallobaza.ml", true }, { "metallomania.it", true }, { "metallosajding.ru", true }, - { "metallschutz-direkt.de", true }, { "metalu.ch", false }, { "metanic.services", true }, { "metanodo.com", true }, @@ -46777,6 +48459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metapeen.nl", true }, { "metasquare.com.au", true }, { "metasquare.nyc", true }, + { "metasurfforecast.com", true }, { "metasyntactic.xyz", true }, { "metasysteminfo.com", true }, { "metaurl.io", true }, @@ -46834,7 +48517,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "metrosahel.tn", false }, { "metsasta.com", true }, { "mettekopp.dk", true }, - { "metz-metropolitain.fr", true }, + { "mettin.org", true }, { "metzgermark.com", true }, { "meuautotrac.com.br", true }, { "meubanco7.com.br", true }, @@ -46857,12 +48540,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "meyeraviation.com", true }, { "meys.io", true }, { "mezedokamomata.tk", true }, + { "meziblog.cz", true }, { "mezinfo.tk", true }, { "mezzehuis.be", true }, { "mf-fischer.de", true }, { "mfedderke.com", true }, { "mfen.de", true }, - { "mfg2020.com.tw", true }, { "mfgusa.com", true }, { "mfiles.pl", true }, { "mfischer-it.de", true }, @@ -46873,6 +48556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mft.global", true }, { "mfxbe.de", true }, { "mfxer.com", true }, + { "mgae.com", true }, { "mgcraft.net", true }, { "mgdigitalmarketing.com.au", true }, { "mghiorzi.com.ar", false }, @@ -46880,6 +48564,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mgi.gov", true }, { "mgiljum.com", true }, { "mgmd.org", true }, + { "mgmultiservicessrl.it", true }, { "mgonline.tk", true }, { "mgrossklaus.de", false }, { "mgrt.net", true }, @@ -46913,7 +48598,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miacordeonstereo.com", true }, { "miadennees.com", true }, { "miagexport.com", true }, - { "miah.top", true }, { "mialquilerdecoches.com", true }, { "miamiaquatours.com", true }, { "miamiobgyndreams.com", true }, @@ -46921,6 +48605,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miaomiao.eu.org", true }, { "miaonagemi.com", true }, { "miaowo.org", true }, + { "miapuntes.com", true }, { "miasarafina.de", true }, { "miasonne.com", true }, { "miavierra.org", true }, @@ -46938,6 +48623,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michael-rigart.be", true }, { "michael-schefczyk.de", true }, { "michael-steinhauer.eu", true }, + { "michael.band", true }, { "michaelasawyer.com", true }, { "michaelband.co", true }, { "michaelband.com", true }, @@ -46965,6 +48651,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaelschubert.com", true }, { "michaelsweater.com", true }, { "michaeltaboada.me", true }, + { "michaeltjeuw.com.au", true }, { "michaeltroger.com", true }, { "michaeltruskowski.com", true }, { "michaelwermeester.com", true }, @@ -46976,6 +48663,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michal-spacek.cz", true }, { "michaldudek.it", true }, { "michalinastrzyz.xyz", true }, + { "michalis.xyz", true }, { "michalklabnik.com", true }, { "michalklabnik.cz", true }, { "michalkral.tk", true }, @@ -46986,6 +48674,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "michaonline.de", true }, { "michasfahrschule.com", true }, { "michel-wein.de", true }, + { "michel.pt", true }, { "michele.ga", true }, { "michele.ml", true }, { "michellavat.com", true }, @@ -47014,6 +48703,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "microcyber.net", true }, { "microdesic.com", true }, { "microdots.de", true }, + { "microjournal.xyz", true }, { "microjovem.pt", true }, { "microlog.org", true }, { "micromata.de", true }, @@ -47021,6 +48711,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "micromind.io", true }, { "micromookie.com", true }, { "microneedlingstudio.se", true }, + { "micropigmentadordesucesso.com", true }, { "micropigpets.com", true }, { "microsoftaffiliates.azurewebsites.net", true }, { "microsoftedgeinsider.com", true }, @@ -47040,6 +48731,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "midgawash.com", true }, { "midi-ctes.fr", true }, { "midiaid.de", true }, + { "midislandrealty.com", false }, { "midistop.org", true }, { "midkam.ca", true }, { "midlandgate.de", true }, @@ -47053,6 +48745,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "midnightmechanism.com", true }, { "mido.ga", true }, { "midrandplumber24-7.co.za", true }, + { "midrandrubbleremovals.co.za", true }, { "midress.club", true }, { "midstatebasement.com", true }, { "midterm.us", true }, @@ -47080,6 +48773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mightybit.co", true }, { "mightysighty.com", true }, { "migrantskillsregister.org.uk", true }, + { "miguel-platteel.fr", true }, { "miguel.pw", true }, { "migueldemoura.com", true }, { "migueldominguez.ch", false }, @@ -47090,6 +48784,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miguelmenendez.pro", true }, { "miguelmoura.com", true }, { "miguia.tv", true }, + { "mihalicka.com", true }, { "mihgroup.eu.org", true }, { "mihgroup.net", true }, { "mihnea.net", true }, @@ -47098,12 +48793,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mijn-financien.be", true }, { "mijn.computer", true }, { "mijnbeijesweb.nl", true }, - { "mijnetz.nl", false }, { "mijngeldcoach.nl", true }, { "mijnkantoor.net", true }, { "mijnkerstkaarten.be", true }, { "mijnkinderkleding.com", true }, { "mijnkwadraad.nl", true }, + { "mijnnaamdag.nl", true }, { "mijnpartijhandel.nl", true }, { "mijnreisoverzicht.nl", true }, { "mijnsite.ovh", true }, @@ -47114,6 +48809,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mika.moe", true }, { "mikadoe.nl", true }, { "mikaeljansson.net", true }, + { "mikaelvesavuori.se", true }, { "mikakalathil.ca", true }, { "mikakalevi.com", true }, { "mikalikes.men", true }, @@ -47131,9 +48827,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikecb.org", true }, { "mikechasejr.tk", true }, { "mikedhoore.be", true }, - { "mikedugan.org", true }, - { "mikegao.net", false }, - { "mikegao.org", true }, { "mikegerwitz.com", true }, { "mikeguy.co.uk", true }, { "mikehamburg.com", true }, @@ -47141,6 +48834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikekreuzer.com", true }, { "mikemooresales.com", true }, { "mikeowens.us", true }, + { "mikeprocopio.com", true }, { "mikerichards.gallery", true }, { "mikerichards.photography", true }, { "mikerichards.photos", true }, @@ -47159,7 +48853,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mikhlevich.ru", true }, { "miki.it", true }, { "mikkei.space", true }, - { "mikkelladegaard.dk", true }, + { "mikkelladegaard.dk", false }, { "mikkelscheike.com", true }, { "mikkelvej.dk", true }, { "mikkonen.bio", true }, @@ -47186,12 +48880,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "milania.de", true }, { "milanpala.cz", false }, { "milanstephan.de", false }, + { "milanvit.net", true }, { "milavica.tk", true }, { "milcahsmusings.com", true }, + { "milcarteles.com", true }, { "milchbuchstabe.de", true }, + { "milehighmaniac.com", true }, { "mileme.com", true }, { "milenaria.es", true }, { "milesapart.dating", true }, + { "milesdewitt.com", true }, + { "mileyweasel.de", true }, + { "milfhubs.com", true }, { "milfpornograph.com", true }, { "milieuland.com", true }, { "militaryaviationsafety.gov", true }, @@ -47199,11 +48899,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "militaryonesource.mil", true }, { "militarysrit.tk", true }, { "milkaalpesiutazas.hu", true }, + { "milkagyengedseg.hu", true }, { "milkameglepetes.hu", true }, + { "milkandbourbons.com", true }, { "milkandcookies.ca", true }, { "milkingit.co.uk", true }, { "milkingit.net", true }, - { "milkkids.ua", true }, { "milkmoovement.io", true }, { "milktea.info", false }, { "milkypond.org", true }, @@ -47222,7 +48923,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "millettable.com", true }, { "millhousenchurch.com", true }, { "millibitcoin.jp", true }, - { "millionairegames.com", true }, { "millionairessecrets.com", true }, { "millionen-von-sonnen.de", true }, { "millipore-alternative.com", true }, @@ -47250,7 +48950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minami.xyz", true }, { "minamo.io", true }, { "minandolacorrupcion.mx", true }, - { "minantavla.se", true }, + { "minantavla.se", false }, { "minapin.com", true }, { "minaprine.com", true }, { "mind-books.gq", true }, @@ -47305,18 +49005,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minfin.gov.ua", true }, { "mingky.net", true }, { "mingkyaa.com", true }, + { "mingming.info", true }, { "mingram.net", true }, { "mingtreerealty.com", true }, { "mingwah.ch", false }, { "mingy.ddns.net", true }, { "minh.at", false }, { "minhanossasenhora.com.br", true }, + { "minhng99.cloud", true }, { "minhyukpark.com", true }, { "mini-piraten.de", true }, { "mini2.fi", true }, { "miniaturepets.net", true }, { "minibaggerverleih-aulendorf.de", true }, { "minibrewery.cf", true }, + { "minicampingshalom.nl", true }, { "minican.net", true }, { "miniclip.com", true }, { "minigames.com", true }, @@ -47326,9 +49029,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "minikin.tk", true }, { "minikneet.com", true }, { "minilions.fr", true }, + { "minilov.fr", true }, { "minimal-apps.de", true }, { "minimalistbaker.com", true }, { "minimaliston.com", true }, + { "minimalmx.io", true }, { "minimaltimer.com", true }, { "minimayhemsoftplay.co.uk", true }, { "minimbah.com.au", true }, @@ -47337,7 +49042,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mining.diamonds", true }, { "miningtronics.com", false }, { "miniskipper.at", true }, - { "minisoft4u.ir", true }, { "ministeriumfuerinternet.de", true }, { "minitruckin.net", true }, { "minitrucktalk.com", true }, @@ -47346,7 +49050,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miniverse.social", true }, { "miniwallaby.com", true }, { "miniwaplus.com", true }, - { "miniwolke.ch", true }, { "mink-coat.tk", true }, { "minkymoon.jp", true }, { "minload.com", true }, @@ -47376,6 +49079,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mionerve.com", true }, { "mionerve.org", true }, { "mipapo.de", true }, + { "mipasevip.com", true }, { "mipnet.cl", true }, { "miproximopaso.org", true }, { "mipymesenlinea.com", true }, @@ -47394,6 +49098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mirazonline.tk", true }, { "mirazperu.com", true }, { "mircarfinder.ru", true }, + { "mirch.com", true }, { "mireiaseuba.com", true }, { "mireillewendling.com.br", true }, { "mirepublic.co.nz", true }, @@ -47403,7 +49108,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mirknighechek.tk", true }, { "mirkofranz.de", true }, { "mirkvartir.tk", true }, - { "miroctum.com", true }, { "mirokon.tk", true }, { "mironet.cz", true }, { "miroslavbaka.cz", true }, @@ -47420,6 +49124,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "misanci.cz", true }, { "misclick.nl", true }, { "misconfigured.io", true }, + { "misfit-media.com", true }, { "mishkan-israel.net", true }, { "mishkovskyi.net", true }, { "misini.fr", true }, @@ -47432,7 +49137,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miss-inventory.co.uk", true }, { "miss-platinum.net", true }, { "miss.com.tw", true }, - { "miss.sh", true }, { "missaocadastrobv.com.br", true }, { "missblisshair.com.au", true }, { "missdream.org", true }, @@ -47441,8 +49145,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "missfuli.com", true }, { "missguidedus.com", true }, { "mission-orange.de", true }, + { "missionpuppy.nl", true }, { "missionsgemeinde.de", true }, { "missip.nl", true }, + { "mississippigenealogy.com", true }, { "missivystorm.com", true }, { "misskey.jp", true }, { "misskey.site", false }, @@ -47463,14 +49169,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "misterl.net", true }, { "misterseguros.com.br", true }, { "mistine.com.cn", true }, - { "mistine.net", true }, { "mistlake.net", true }, { "mistreaded.com", true }, { "mistybox.com", true }, { "misupport.dk", true }, { "misura.re", true }, { "misuzu.moe", true }, - { "misxvenelantro.com", true }, { "mit-dem-rad-zur-arbeit.de", true }, { "mit-dem-rad-zur-uni.de", true }, { "mit-uns.org", true }, @@ -47479,6 +49183,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mitarbeitermotivation-anleitungen.de", true }, { "mitchellhandymanservices.co.uk", true }, { "mitchelmore.ca", true }, + { "mitchkalf.nl", true }, + { "mitdip-mit-group-ch.azurewebsites.net", true }, { "mitevi.com", true }, { "mitfx.com", true }, { "mithgol.tk", true }, @@ -47495,6 +49201,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mitrostudios.com", true }, { "mitsign.com", true }, { "mitsonnenbrillen.de", true }, + { "mitsubishi-club.ge", true }, { "mitsukabose.com", true }, { "mittagonggardencentre.com.au", true }, { "mittagonghomestead.com.au", true }, @@ -47503,7 +49210,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mittelunsachlich.de", true }, { "mittenofficesystems.com", true }, { "mittwoch-nacht.net", true }, - { "mitya.cz", true }, { "mitzpettel.com", true }, { "miui-germany.de", true }, { "miukimodafeminina.com", true }, @@ -47523,6 +49229,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "miweb.cr", false }, { "miwebmadrid.es", true }, { "mix-channel.ml", true }, + { "mix-recruit.jp", true }, + { "mixedreality.football", true }, { "mixedrecipe.com", true }, { "mixify.ga", true }, { "mixinglight.com", true }, @@ -47545,7 +49253,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mizternational.com", true }, { "mizu.coffee", true }, { "mizucoffee.net", true }, - { "mizuho-trade.net", true }, { "mizuhobank.co.id", true }, { "mizumax.me", true }, { "mj420.com", true }, @@ -47578,7 +49285,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mkbouncyhire.co.uk", true }, { "mkcert.org", true }, { "mkchandler.com", true }, - { "mkd.mk", true }, { "mkes.com", true }, { "mkfs.fr", true }, { "mkg-chirurgie-bruchsal.de", true }, @@ -47603,7 +49309,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mksac.co.uk", true }, { "mksdarchitects.com", true }, { "mkse.com", true }, - { "mkset.ru", true }, + { "mkset.ru", false }, { "mkt.com", true }, { "mktdigital.info", true }, { "mktemp.org", true }, @@ -47625,6 +49331,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mlpvector.club", true }, { "mlsha.cn", true }, { "mlsrv.de", true }, + { "mlstav.sk", true }, { "mlundberg.se", true }, { "mlwr.ee", true }, { "mlytics.com", true }, @@ -47634,9 +49341,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mm6729.co", true }, { "mm6729.com", true }, { "mm6957.co", true }, + { "mm88game.com", true }, { "mm9297.co", true }, { "mm9721.com", false }, { "mm9728.co", true }, + { "mma-records.de", true }, { "mmalisz.com", true }, { "mmaps.ddns.net", true }, { "mmaps.org", true }, @@ -47647,6 +49356,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mmcalc.jp", true }, { "mmgal.com", true }, { "mmhome.fr", true }, + { "mmichaelb.pw", true }, { "mmilog.hu", true }, { "mmin.us", false }, { "mminsco.com", true }, @@ -47668,6 +49378,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mmwb.nl", true }, { "mmxblog.com", true }, { "mna7e.com", true }, + { "mnatechnologies.com.au", true }, { "mnc.moda", true }, { "mnciitbhu.me", true }, { "mncloud.de", true }, @@ -47696,6 +49407,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mo2021.de", true }, { "mo3.club", true }, { "moa.moe", true }, + { "moabit.de", true }, { "moabpapier.de", true }, { "moabygg.se", true }, { "moahmo.com", true }, @@ -47720,6 +49432,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobilebooster.tk", true }, { "mobilecasinoclub.co.uk", true }, { "mobilecontractcomparison.com", true }, + { "mobileinternetbanking.com", true }, { "mobilelooper.com", true }, { "mobilemedics.com", true }, { "mobileread.com", true }, @@ -47731,8 +49444,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mobilinnov.it", true }, { "mobilisation-generale.org", false }, { "mobility-events.ch", true }, + { "mobilmobil.co", true }, { "mobilux.lv", true }, + { "mobincube.com", true }, { "mobinst.ml", true }, + { "mobinstore.com", true }, { "mobio.net", true }, { "mobiproj.com", true }, { "mobisaar-cloud.de", true }, @@ -47779,6 +49495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mode-individuell.de", true }, { "modecaso.com", true }, { "model.earth", true }, + { "modelbase.org", true }, { "modelclub-draveil.eu", true }, { "modelcube.com", true }, { "modeldimension.com", true }, @@ -47799,7 +49516,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "modernapprenticeships.org", true }, { "modernautorepairs.com", true }, { "moderncommercialrealestate.com", true }, - { "modernibytovytextil.cz", true }, { "moderniknihovna.cz", true }, { "moderntld.net", true }, { "modifiedmind.com", true }, @@ -47807,7 +49523,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "modistryusercontent.com", true }, { "modmountain.com", true }, { "modnitsa.info", true }, - { "modonor.dk", true }, { "mods-community.de", true }, { "modscrew.com", true }, { "modul21.eu", true }, @@ -47832,7 +49547,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moekes.amsterdam", true }, { "moeking.me", true }, { "moeli.org", true }, - { "moeloli.cc", true }, { "moenew.top", true }, { "moenew.us", true }, { "moens.tech", true }, @@ -47846,7 +49560,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mofohome.dyndns.org", true }, { "mogica.tk", true }, { "moha-swiss.com", false }, + { "mohamedhamuda.com", true }, { "mohamedhosting.tk", true }, + { "mohanmekap.com", true }, { "mohela.com", true }, { "mohitchahal.com", true }, { "mohot.com", true }, @@ -47863,9 +49579,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojeco2.cz", true }, { "mojefedora.cz", true }, { "mojefilmy.xyz", true }, + { "mojekonsultacje.pl", true }, { "mojilitygroup.com", true }, { "mojitoparty-articlespara.website", true }, { "mojizuri.com", true }, + { "mojizuri.jp", true }, { "mojkragujevac.net", true }, { "mojleksikon.com", true }, { "mojnet.eu", true }, @@ -47876,7 +49594,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mojzis.com", true }, { "mojzis.cz", true }, { "mojzisova.com", true }, - { "mok.pw", true }, { "mokeedev.com", true }, { "mokeedev.review", true }, { "mokhan.ca", true }, @@ -47888,6 +49605,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moldovanka.tk", true }, { "moldovawall.tk", true }, { "molecularbiosystems.org", true }, + { "molekula.hr", true }, { "moleskinestudio.com", true }, { "molinero.xyz", true }, { "mollaretsmeningitis.org", true }, @@ -47918,6 +49636,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "momstableonline.com", true }, { "momut.org", true }, { "momy-genealogie.info", true }, + { "mon-a-lisa.com", true }, { "mon-agenda.org", false }, { "mon-butin.fr", true }, { "mon-partage.fr", true }, @@ -47945,6 +49664,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moneoci.com.br", true }, { "monerogamez.com", true }, { "monetki.net", true }, + { "monetus.com.br", true }, { "money-fast.ga", true }, { "moneybird.com", true }, { "moneybird.nl", true }, @@ -47953,7 +49673,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moneyfactory.gov", true }, { "moneyfortitude.com", true }, { "moneygo.se", true }, - { "moneyhouse.de", true }, { "moneypark.ch", true }, { "moneyreal.tk", true }, { "moneytoday.se", true }, @@ -47999,10 +49718,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monolithic.tk", true }, { "monolithindustries.com", true }, { "monolithinteractive.com", true }, - { "mononom.com", true }, { "monopoly-one.com", true }, { "monospazzole.roma.it", true }, - { "monotai.com", true }, { "monothesis.com", true }, { "monoworks.co.jp", true }, { "monpc-pro.fr", false }, @@ -48013,6 +49730,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monplay.host", true }, { "monroe27.com", true }, { "monsieurbureau.com", true }, + { "monsieurdecapage.com", true }, { "monsieursavon.ch", false }, { "monsitemoncommerce.com", true }, { "monsterandfox.co.uk", true }, @@ -48035,9 +49753,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "monthlyfukuoka.com", true }, { "montpreveyres.ch", false }, { "montrain.com", true }, + { "montrain.fr", true }, { "montrealcatadoptions.com", true }, { "montredeal.fr", true }, { "montsaintaignan.fr", true }, + { "montsearias.com", true }, { "montychristie.com", true }, { "monwarez.ovh", true }, { "monzo.com", true }, @@ -48084,13 +49804,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moorparklighting.com", true }, { "moorparkoutdoorlighting.com", true }, { "moort.be", true }, - { "moosbild.com", true }, { "mooselook.de", true }, { "moosikapp.tk", true }, - { "moosmann-moehrle.de", true }, { "moosmaus.tk", true }, { "moot-info.co.za", true }, { "moovablestorage.com", true }, + { "moove-it.com", true }, { "mooveo.co", true }, { "moparcraft.com", true }, { "moparcraft.net", true }, @@ -48129,6 +49848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morepablo.com", true }, { "morepay.cn", true }, { "moreserviceleads.com", true }, + { "moreshop.pl", true }, { "moresw.com", true }, { "morethanautodealers.com", true }, { "morethancode.be", true }, @@ -48137,11 +49857,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morgan-insurance.com", true }, { "morgancounty-al.gov", true }, { "morgancountysheriffal.gov", true }, - { "morgangallant.com", true }, + { "morgandesort.com", true }, { "morgansleisure.co.uk", true }, { "morganwilder.com", true }, { "morgner.com", true }, { "morhys.com", true }, + { "moritoworks.com", true }, { "moritz-baestlein.de", true }, { "moritzkornher.de", true }, { "moritztremmel.de", true }, @@ -48149,12 +49870,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moriz.net", true }, { "mormon-colleges.com", true }, { "mormonleaks.io", true }, - { "morningcurve.com", true }, + { "morningbird.eu", true }, + { "morningcurve.com", false }, { "morningstar.moe", true }, { "morningtime.cloud", true }, { "moroccanews.tk", true }, { "moroccomiami.com", true }, { "moroccotodaynews.ga", true }, + { "moron-mu.com", true }, { "morox.top", true }, { "morozko.gq", true }, { "morrellllc.com", false }, @@ -48164,6 +49887,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "morse-ti.net", true }, { "mortengamstpedersen.tk", true }, { "mortgagecalculator.biz", true }, + { "mortgagetranslations.gov", true }, { "mortis.eu", true }, { "morvo.mx", true }, { "mosaic-design.ru", true }, @@ -48190,9 +49914,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mosshi.be", true }, { "mostafabanaei.cf", true }, { "mostbelehuzunk.hu", true }, + { "mosteirobudista.com", true }, { "mosternaut.com", true }, { "mostlyharmless.at", true }, { "mostlyoverhead.com", true }, + { "mosttaza.com", true }, + { "motcha.be", true }, { "motd.ch", true }, { "motekforce.link", true }, { "motekforcelink.com", true }, @@ -48230,16 +49957,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motohell.com", true }, { "motoland.ml", true }, { "motomorgen.com", true }, - { "motonauticaibiza.com", true }, { "motor-agro.com", true }, { "motor-agro.com.ua", true }, { "motor-agro.kz", true }, { "motor-agro.ru", true }, - { "motor-forum.nl", true }, + { "motor-forum.nl", false }, { "motor1.com", true }, { "motorbiketourhanoi.com", true }, { "motoreflex.com", true }, - { "motorialab.com", true }, + { "motorialab.com", false }, { "motornaolja.com", true }, { "motorpointarenacardiff.co.uk", true }, { "motorring.ru", true }, @@ -48250,7 +49976,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "motoscascos.com", true }, { "motosikletevi.com", true }, { "motospaya.com", true }, - { "motostorie.blog", true }, { "mototax.ch", true }, { "motovated.co.nz", false }, { "motovio.de", true }, @@ -48276,9 +50001,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mountainutilities.eu", true }, { "mountairymd.gov", true }, { "mountbatten.cz", true }, + { "mountknowledge.nl", true }, { "mountpost.tk", true }, { "mousepotato.uk", true }, { "moutiezhaller.com", true }, + { "mov-square.jp", true }, { "movacare.de", true }, { "movahoteis.com.br", true }, { "move-out-cleaning.co.uk", true }, @@ -48304,10 +50031,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moviltronix.com", true }, { "movimento-terra.it", true }, { "moving-pixtures.de", true }, + { "moving-target.info", true }, { "movinglogistics.nl", false }, { "movingoklahoma.org", true }, { "movingtohttps.com", true }, { "movingtojapan.life", false }, + { "moviro.net", true }, { "movlib.org", true }, { "mowalls.net", true }, { "mox.link", true }, @@ -48317,8 +50046,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "moylen.eu", true }, { "mozartgroup.hu", true }, { "mozektevidi.net", true }, + { "mozgb.ru", true }, { "mozilla-hispano.org", true }, { "mozilla.cz", true }, + { "moztrack.co.mz", true }, { "mozzez.de", true }, { "mozzilla.cz", true }, { "mp3gratuiti.com", true }, @@ -48346,9 +50077,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mpu-giessen.com", true }, { "mpu-ibbi.de", true }, { "mpu-vorbereitung.com", true }, + { "mpu-vorbereitung.com.de", true }, { "mpublicidad.com", true }, { "mpy.ovh", true }, { "mqas.net", true }, + { "mqbeauty.com.tw", true }, { "mr-anderson.org", true }, { "mr-bills.com", true }, { "mr-coffee.net", true }, @@ -48365,6 +50098,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mralonas.ml", true }, { "mralonas.tk", true }, { "mrandmrsparrot.gr", true }, + { "mrazek.biz", true }, { "mrbmafrica.com", true }, { "mrbounce.com", true }, { "mrbouncescrazycastles.co.uk", true }, @@ -48388,9 +50122,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrjbanksy.com", true }, { "mrjhnsn.com", true }, { "mrjo.sh", true }, + { "mrjones.org", true }, { "mrjooz.com", false }, { "mrkapowski.com", true }, - { "mrketolocksmith.com", true }, { "mrknee.gr", true }, { "mrkrabat.de", true }, { "mrksk.com", true }, @@ -48407,7 +50141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mrnonz.com", true }, { "mrnordic.com", true }, { "mrprintables.com", true }, - { "mrs-labo.jp", true }, { "mrs-shop.com", true }, { "mrsbairds.com", false }, { "mrschristine.com", true }, @@ -48435,15 +50168,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mscenter.cf", true }, { "msch.pw", true }, { "mschuessler.org", true }, + { "msdprojectclearmo.gov", true }, { "msebera.cz", true }, { "mserve.ddns.net", true }, { "mservers.cz", true }, - { "msgallery.tk", true }, { "msh100.uk", true }, { "msha.gov", true }, { "mshemailmarketer.com.au", true }, { "msi-zlin.cz", true }, { "msiegmund.com", true }, + { "msieursvp.fr", true }, { "msize48.ch", true }, { "msmails.de", true }, { "msnhdd.info", true }, @@ -48457,7 +50191,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "msquadrat.de", true }, { "msroot.de", true }, { "mssora.com", true }, - { "mssys.de", true }, { "mstdn.blue", true }, { "mstdn.io", true }, { "mstdn.onl", false }, @@ -48470,6 +50203,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mszavodumiru.cz", true }, { "mt-bank.jp", true }, { "mt-tech.fi", true }, + { "mt-west.org", true }, { "mt.search.yahoo.com", false }, { "mt1016.com", true }, { "mt2414.com", true }, @@ -48481,7 +50215,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mtasts.xyz", true }, { "mtauburnassociates.com", true }, { "mtb.wtf", true }, - { "mtcgf.com", true }, { "mtcpuntosalud.com", true }, { "mtcq.jp", true }, { "mtd.org", true }, @@ -48494,12 +50227,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mtgenius.com", true }, { "mtgsuomi.fi", true }, { "mthode.org", true }, - { "mthopebank.com", true }, { "mthrbrd.com", true }, { "mthrbrd.net", true }, { "mths.be", false }, { "mticareportal.com", true }, - { "mtinz.com", true }, { "mtirc.co", true }, { "mtiryaki.com", true }, { "mtjholding.ee", true }, @@ -48518,7 +50249,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mu105.cc", true }, { "mu3on.com", true }, { "muabannhanh.com", false }, - { "muahahahaha.co.uk", true }, { "mubase.dk", true }, { "mubiflex.nl", true }, { "muchohentai.com", true }, @@ -48526,7 +50256,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "muckingabout.eu", true }, { "muckrack.com", true }, { "mucmail.de", true }, + { "muctool.de", true }, { "mudanzasacuna.com.co", true }, + { "mudanzasytransportesbh.com", true }, { "mudaomundo.org", true }, { "mudasobwa.tk", true }, { "mudbenesov.cz", true }, @@ -48549,7 +50281,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "muh.io", true }, { "muhabbet.org", true }, { "muhcow.dk", true }, - { "mui.jp", true }, + { "muhlenbergtwppa.gov", true }, { "muilties.com", true }, { "muitoalemdobolo.com.br", true }, { "mujerfutura.com", true }, @@ -48572,7 +50304,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multibit.org", true }, { "multiclinicacardio.com.br", true }, { "multicomhost.com", true }, - { "multicore.cl", true }, { "multicorpbra.com", true }, { "multigamecard.com", true }, { "multigamers-net.tk", true }, @@ -48584,7 +50315,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multimed.krakow.pl", true }, { "multimedia-pool.com", true }, { "multimediapc.de", true }, - { "multiplayernow.com", true }, { "multipleservers.com", true }, { "multiplexcy.com", true }, { "multirep.ch", false }, @@ -48604,7 +50334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "multixa.net", true }, { "multixvideo.com", true }, { "multizone.games", true }, - { "multrier.fr", true }, + { "multypanels.com", true }, { "mum.ceo", true }, { "muma.ml", true }, { "mumablue.com", true }, @@ -48631,8 +50361,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "munduch.cz", true }, { "munduch.eu", true }, { "munera.ca", true }, + { "munfordtn.gov", true }, + { "munibernal.gob.pe", true }, { "munich-eventlocations.de", true }, { "munirajiwa.com", true }, + { "munivice.gob.pe", true }, { "munki.org", true }, { "munkibuilds.org", true }, { "muntproever.nl", true }, @@ -48661,6 +50394,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "murray.xyz", true }, { "murraya.cn", true }, { "murraycoin.org", true }, + { "murster.tw", true }, { "mursu.directory", true }, { "murz.tv", true }, { "murzik.space", true }, @@ -48679,11 +50413,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "muserver.io", true }, { "muses-success.info", true }, { "musettishop.com", true }, + { "museumwaalsdorp.nl", true }, { "mush-room.co.jp", true }, { "mushel.ddns.net", true }, { "mushikabu.net", true }, { "mushman.tk", true }, { "music-is-my-life.de", true }, + { "music-privilege.fr", true }, { "music-project.eu", true }, { "music-world.pl", true }, { "music.amazon.com", true }, @@ -48697,6 +50433,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "musicfactory.ml", true }, { "musicfromgod.com", true }, { "musicgamegalaxy.de", true }, + { "musicgivesmelife.com", true }, { "musician.dating", true }, { "musicindustrydb.org", true }, { "musicinsiderdigest.com", true }, @@ -48716,6 +50453,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "musiktag2020.ch", true }, { "musikverein-elten.de", true }, { "musikzentrale.net", true }, + { "musings.tech", true }, { "musingsatmidnight.com", true }, { "musique2nuit.com", true }, { "musketiers.tk", true }, @@ -48736,7 +50474,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mustertexte-musterbewerbung.de", true }, { "musthavesforreal.com", true }, { "musthinsider.com", true }, - { "muszic.co", true }, { "mutantmonkey.in", true }, { "mutantmonkey.info", true }, { "mutantmonkey.sexy", true }, @@ -48762,7 +50499,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mvbits.com", true }, { "mvbug.com", true }, { "mvccp.co.za", true }, - { "mvion.fr", true }, { "mvisioncorp.com", true }, { "mvistatic.com", true }, { "mvno.io", true }, @@ -48790,6 +50526,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mxcrs.com", true }, { "mxdanggui.org", true }, { "mxdvl.com", true }, + { "mxes.net", true }, { "mxihan.xyz", true }, { "mxn8.com", true }, { "my-aftershave-store.co.uk", true }, @@ -48804,23 +50541,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "my-ebook.es", true }, { "my-floor.com", true }, { "my-gode.fr", true }, + { "my-goldfinger.com", true }, { "my-host.ovh", true }, { "my-hps.de", true }, { "my-ip.work", true }, { "my-new-bikini.de", true }, { "my-nextcloud.at", true }, { "my-pawnshop.com.ua", false }, + { "my-photo.me", true }, { "my-profile.org", true }, { "my-sex-cam.com", true }, { "my-static-demo-808795.c.cdn77.org", true }, { "my-static-live-808795.c.cdn77.org", true }, { "my-stuff-online.com", true }, { "my-tunisia.tk", true }, - { "my-voice.nl", false }, { "my-web.xyz", true }, { "my-webcloud.at", true }, { "my.onlime.ch", false }, - { "my.usa.gov", false }, + { "my.usa.gov", true }, { "my4g.net", true }, { "my4thtelco.com.sg", true }, { "my4thtelco.sg", true }, @@ -48851,17 +50589,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mybestmattress.com", true }, { "mybestwebsitebuilder.com", true }, { "mybicc.org", true }, + { "mybigsaving.com", true }, { "mybillie.com", true }, { "myblockchain.cloud", true }, { "mybloggedlife.com", true }, { "mybodylife.com", true }, { "mybon.at", false }, + { "mybon.online", true }, { "myboothang.com", true }, { "mybreastcancerjourney.com", true }, + { "mybrisbanewebsite.com.au", true }, + { "mybsms.gr", true }, { "mybuildingcertifier.com.au", true }, - { "mybusiness.wien", true }, { "mycaelis.fr", true }, - { "mycakeangel.com", true }, { "mycam.gq", true }, { "mycamshowhub.com", true }, { "mycamshowhub.to", true }, @@ -48885,7 +50625,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mycoldjet.com", true }, { "mycolorado.gov", true }, { "mycompanion.cz", true }, + { "mycompanysite.host", true }, + { "myconcorde.fr", true }, { "myconf.com", true }, + { "myconf.es", true }, { "myconf.uk", true }, { "myconsulting.ch", false }, { "mycontrolmonitor.com", true }, @@ -48897,6 +50640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mycreativenook.com", true }, { "mycreditcardcenter.com", true }, { "mycreditunion.gov", true }, + { "mycrowdstack.com", true }, { "mycrypnet.io", true }, { "mycrypto.com", true }, { "mycrystalgrove.com", true }, @@ -48906,6 +50650,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mydatadoneright.eu", true }, { "mydaywebapp.com", true }, { "mydebian.in.ua", true }, + { "mydentalhealth.com.au", true }, { "mydentalplan.gr", true }, { "mydenverhomesource.com", true }, { "mydevolo.com", true }, @@ -48930,6 +50675,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myebony.cam", true }, { "myecms.com", true }, { "myedcreview.cf", true }, + { "myediblefood.com", true }, { "myeditclub.ml", true }, { "myedu.ga", true }, { "myedumundo.com", true }, @@ -48939,6 +50685,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myepass.bg", true }, { "myepass.de", true }, { "myeriri.com", true }, + { "myersking.com", true }, { "myesk.rs", true }, { "myessaygeek.com", true }, { "myetherwallet.com", true }, @@ -48955,6 +50702,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myforfaitmobile.com", true }, { "myformatconverter.com", false }, { "myfortdodge.com", true }, + { "myforum.community", true }, { "myfreemp3.click", true }, { "myfrenchtattoo.fr", true }, { "myfunworld.de", true }, @@ -48964,6 +50712,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mygallery.homelinux.net", true }, { "mygameconsole.tk", true }, { "mygate.at", false }, + { "mygate.in", true }, { "mygaysitges.com", true }, { "mygear.live", true }, { "mygedit.com", true }, @@ -48980,6 +50729,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mygnmr.com", true }, { "mygoldennetwork.com", true }, { "mygomel.tk", true }, + { "mygov.scot", true }, { "mygreatjob.eu", true }, { "mygreatjobs.de", true }, { "mygreatlakes.org", true }, @@ -48987,14 +50737,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mygreenrecipes.com", true }, { "mygretchen.de", true }, { "mygrodno.tk", true }, - { "mygrotto.org", true }, { "mygymer.ch", true }, { "myhatsuden.jp", true }, { "myhealthyday.com", true }, { "myhmz.bid", true }, { "myhollywoodnews.com", true }, { "myhome-24.pl", true }, - { "myhomeworkpapers.com", true }, { "myhoor.ga", true }, { "myhostname.net", true }, { "myhuthwaite.com", true }, @@ -49021,7 +50769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mykursumlija.tk", true }, { "mylatestnews.org", true }, { "mylawyer.be", true }, - { "myleanfactory.de", true }, { "mylegacyvip.com", true }, { "mylene-chandelier.me", true }, { "mylennonbuddy.com", true }, @@ -49036,7 +50783,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mylighthost.com", false }, { "mylittlechat.ru", true }, { "myliveupdates.com", true }, - { "mylkguys.com", true }, { "mylms.nl", true }, { "myloan.hk", true }, { "myloanmanager.com", true }, @@ -49046,6 +50792,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mylstrom.com", true }, { "mylucknursinghome.com", true }, { "mymall.co.jp", true }, + { "mymartinbeckeropenhab.de", true }, { "mymb.pm", true }, { "mymedz.nl", true }, { "mymerlin.co.nz", true }, @@ -49077,6 +50824,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mynn.io", true }, { "mynook.info", false }, { "myoddlittleworld.com", true }, + { "myodysi.com", true }, { "myofficeconnect.co.uk", true }, { "myonline.hu", true }, { "myonline.store", true }, @@ -49108,6 +50856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mypfp.co.uk", true }, { "myphamaplus.org", true }, { "myphamthemis.com", true }, + { "mypharmjar.com", true }, { "myphotonics.ml", true }, { "myphotos.ga", true }, { "myphotoshopbrushes.com", true }, @@ -49142,7 +50891,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myrepublic.asia", true }, { "myrepublic.cf", true }, { "myrepublic.cloud", true }, - { "myrepublic.co.id", true }, { "myrepublic.com.cn", true }, { "myrepublic.com.hk", true }, { "myrepublic.com.kh", true }, @@ -49207,10 +50955,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myseatime.com", true }, { "myself5.de", true }, { "myseo.ga", true }, - { "myserv.one", true }, { "myservice.store", false }, { "myservicearl.com", true }, + { "mysexycard.com", true }, { "mysexydate24.com", true }, + { "myshopdisplay.com", true }, { "mysignal.com", true }, { "mysmelly.com", true }, { "mysocialporn.com", true }, @@ -49235,7 +50984,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mystic-welten.de", true }, { "mysticconsult.com", true }, { "mystickphysick.com", true }, - { "mystore24.eu", false }, + { "mystore24.eu", true }, { "mystore24.us", true }, { "mystorymonster.com", true }, { "mystown.org", true }, @@ -49282,6 +51031,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "myvoipnews.com", false }, { "myvpl.com", true }, { "mywari.com", true }, + { "myweatherbuzz.com", true }, + { "myweb360.de", true }, { "mywebinar.io", true }, { "mywebmanager.co.uk", true }, { "mywebpanel.eu", true }, @@ -49302,6 +51053,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mza.com", true }, { "mzb.company", true }, { "mzcsgo.top", true }, + { "mzitu.com", true }, { "mziulu.me", false }, { "mzlive.eu", true }, { "mzlog.win", true }, @@ -49310,7 +51062,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "mzorn.photography", true }, { "mzstatic.cc", true }, { "mzzj.de", true }, - { "n-blox.com", true }, + { "n-design-service.de", true }, { "n-design.de", true }, { "n-gram.it", true }, { "n-linear.org", true }, @@ -49321,56 +51073,53 @@ static const nsSTSPreload kSTSPreloadList[] = { { "n0099.cf", true }, { "n0paste.tk", false }, { "n0psled.nl", true }, - { "n16.co", true }, - { "n18.co", true }, + { "n16.co", false }, + { "n18.co", false }, { "n26.com", true }, - { "n29.co", true }, + { "n29.co", false }, { "n2diving.net", true }, { "n30365.com", true }, - { "n32.co", true }, + { "n32.co", false }, { "n36533.com", true }, { "n36594.com", true }, - { "n37.co", true }, - { "n3domains.com.au", true }, + { "n37.co", false }, { "n3ro.io", true }, { "n3ro.net", true }, { "n3twork.net", true }, - { "n48.co", true }, + { "n48.co", false }, { "n4v.eu", true }, { "n5118.com", true }, { "n5197.co", true }, - { "n56.co", true }, + { "n56.co", false }, { "n6729.co", true }, { "n6729.com", true }, - { "n69.co", true }, + { "n69.co", false }, { "n6957.co", true }, { "n6a.net", true }, - { "n7.education", true }, - { "n78.co", true }, + { "n78.co", false }, { "n81365.com", true }, - { "n81818.com", true }, { "n82365.com", true }, { "n886666.com", true }, - { "n888-qieji.com", true }, - { "n888000.com", true }, - { "n888010.com", true }, - { "n888101.com", true }, - { "n888111.com", true }, - { "n888118.com", true }, - { "n888131.com", true }, - { "n888151.com", true }, - { "n888161.com", true }, - { "n88828.com", true }, - { "n888292.com", true }, - { "n888378.com", true }, - { "n888388.com", true }, - { "n888599.com", true }, - { "n888668.com", true }, - { "n888677.com", true }, - { "n888699.com", true }, - { "n88890.com", true }, - { "n888duchang.com", true }, - { "n888go.com", true }, + { "n888-qieji.com", false }, + { "n888000.com", false }, + { "n888010.com", false }, + { "n888101.com", false }, + { "n888111.com", false }, + { "n888118.com", false }, + { "n888131.com", false }, + { "n888151.com", false }, + { "n888161.com", false }, + { "n88828.com", false }, + { "n888292.com", false }, + { "n888378.com", false }, + { "n888388.com", false }, + { "n888599.com", false }, + { "n888668.com", false }, + { "n888677.com", false }, + { "n888699.com", false }, + { "n88890.com", false }, + { "n888duchang.com", false }, + { "n888go.com", false }, { "n888ok.com", true }, { "n8ch.net", true }, { "n8mgt.com", true }, @@ -49387,6 +51136,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "na-school.nl", true }, { "naahgluck.de", true }, { "naam.me", true }, + { "naamlint.nl", true }, { "naano.org", true }, { "nabaleka.com", true }, { "nabankco.com", true }, @@ -49398,7 +51148,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nabytek-valmo.cz", true }, { "nabytokalva.sk", true }, { "nacfit.com", true }, - { "nachovni.pp.ua", true }, + { "nachovni.org", true }, { "nachrichten-heute.net", true }, { "nachsendeauftrag.net", true }, { "nachsenden.info", true }, @@ -49418,21 +51168,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nadine-chaudier.net", true }, { "nadjabenaissa.tk", true }, { "nadji.ga", true }, + { "nadlerdentistry.com", true }, { "nadoske.info", true }, { "nadsandgams.com", true }, { "nadyaolcer.fr", true }, { "naemnuk.tk", true }, { "nafod.net", true }, + { "nafoods.com", true }, { "naga-semi.com", true }, - { "naganithin.me", true }, { "nagashi.ma", false }, { "nagato.tk", true }, { "nagaya.biz", true }, { "nagb.gov", true }, + { "nagb.org", true }, { "nagel-dentaltechnik.de", true }, { "nageler.org", true }, { "nagelfam.com", true }, { "naggie.net", true }, + { "nagoonline.com", true }, { "nah.nz", true }, { "nah.re", true }, { "nahman.tk", true }, @@ -49443,6 +51196,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "naiaokami.me", true }, { "naide.ee", true }, { "naidonline.org", true }, + { "naifcare.cz", true }, { "naijaxnet.com.ng", true }, { "nailattitude.ch", false }, { "nailchiodo.com", true }, @@ -49452,6 +51206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nailshop.gq", true }, { "nailtodayminneapolis.com", true }, { "nairobibusinessreview.com", true }, + { "nais0ne.com", true }, { "naive.network", true }, { "naivetube.com", false }, { "najany.de", true }, @@ -49485,9 +51240,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nalepky-na-zed.cz", true }, { "nalepte.cz", true }, { "nalexandru.xyz", true }, - { "nalsai.de", true }, { "nalukfitness.com.br", true }, { "namaanakperempuan.net", true }, + { "namacindia.com", true }, { "namaleaks.com", false }, { "namalelaki.com", true }, { "namaperempuan.com", true }, @@ -49534,7 +51289,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nange.cn", true }, { "nange.co", true }, { "nanisiyou.com", true }, + { "nanjiyy.com", true }, { "nankiseamansclub.com", true }, + { "nannycoupons.com", true }, { "nannytax.ca", true }, { "nano.voting", true }, { "nanodynelabs.com", true }, @@ -49553,6 +51310,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nanshy.com", false }, { "nanubo.com", true }, { "nanubo.de", true }, + { "nanxin.xyz", true }, { "nao.sh", true }, { "naoar.com", true }, { "naomiheji.com", true }, @@ -49601,8 +51359,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nasarawanewsonline.com", true }, { "nasbi.pl", true }, { "nasbnation.com", false }, + { "naschenweng.info", true }, + { "naschenweng.me", true }, { "nascher.org", false }, { "naseehah.ga", true }, + { "nasehyar.ir", true }, { "nashdistribution.com", true }, { "nashikmatka.com", true }, { "nashira.cz", true }, @@ -49613,12 +51374,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nashzhou.me", true }, { "nasladko.cz", true }, { "naslovi.net", true }, - { "nasmocopati.com", true }, { "nasosvdom.com.ua", true }, { "nasr.mobi", true }, { "nasrsolar.com", true }, { "nassi.me", true }, - { "nastoletni.pl", true }, { "nastrojka-pianino.spb.ru", true }, { "nastycomics.eu", true }, { "nastysclaw.com", true }, @@ -49626,7 +51385,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nataldigital.com", true }, { "natalia-in-quebec.tk", true }, { "nataliedawnhanson.com", true }, - { "natan-fourie.fr", true }, { "natanaelys.com", false }, { "nataniel-perissier.fr", true }, { "natarius.tk", true }, @@ -49674,24 +51432,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nationalservice.gov", true }, { "nationaltrails.ru", true }, { "nationslending.com", true }, + { "nativeonestop.gov", true }, { "natives-team.ch", false }, { "nativitynj.org", true }, { "nativs.ch", false }, + { "natlec.ch", true }, { "natlec.com", true }, { "natmal.net", true }, { "natropie.pl", true }, { "natsumihoshino.com", true }, - { "natteravneneibergen.no", true }, { "nattiam.com", true }, { "natuerlichabnehmen.ch", true }, { "natur-care.com", true }, { "natur-udvar.hu", true }, { "natur.com", true }, { "natura-sense.com", true }, + { "naturadent.hu", true }, { "naturalbeautyhacks.com", true }, { "naturalbijou.com", true }, { "naturalcommission.com", true }, { "naturalcosmetics.cf", true }, + { "naturaleza.com.ar", true }, { "naturalezafengshui.com", true }, { "naturalfit.co.uk", true }, { "naturalkitchen.co.uk", true }, @@ -49713,6 +51474,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "natuterra.com.br", true }, { "natverkstekniker.se", true }, { "naude.co", true }, + { "naughton.ie", true }, { "naughty.audio", true }, { "nauris.fi", true }, { "nausicaahotel.it", true }, @@ -49740,6 +51502,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nayahe.ru", true }, { "nayami64.xyz", true }, { "nayanaas.com", true }, + { "nayefalebrahim.com", true }, { "nayr.us", true }, { "nazarenoviso.tk", true }, { "nazbol.tk", true }, @@ -49814,6 +51577,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nbl.org.tw", true }, { "nbm.gov", true }, { "nbnnetwork.com", true }, + { "nbook.org", true }, { "nbrain.de", true }, { "nbrii.com", true }, { "nbriresearch.com", true }, @@ -49842,10 +51606,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ncic.gg", true }, { "ncjrs.gov", true }, { "nclf.net", true }, + { "ncli-design.com", true }, { "ncloud.freeddns.org", true }, { "ncmedicaidplan.gov", true }, { "ncmedicaidplans.gov", true }, { "ncpimd001.spdns.de", true }, + { "ncrypt.at", true }, { "ncsc.gov.uk", true }, { "ncsccs.com", true }, { "nctx.co.uk", true }, @@ -49874,6 +51640,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nealvorusphd.com", true }, { "neanderthalia.tk", true }, { "neap.io", true }, + { "neapi.com", true }, { "nearbi.com.mx", true }, { "nearby.in.th", true }, { "nearon.nl", true }, @@ -49883,7 +51650,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neatlife.co.uk", true }, { "neatous.cz", true }, { "neatous.net", true }, - { "neatzy.co.uk", true }, { "neave.tv", true }, { "neaz.tk", true }, { "neba.io", true }, @@ -49894,7 +51660,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neboley.cf", true }, { "nebra.io", true }, { "nebracy.com", true }, - { "nebras.ga", true }, { "nebul.at", true }, { "nebula.exchange", true }, { "nebulae.co", true }, @@ -49905,14 +51670,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "necord.com", true }, { "necormansir.com", true }, { "necromantia.tk", true }, + { "necsol.ru", true }, { "nectardigit.com", true }, { "nectarleaf.com", true }, { "nectir-staging.com", true }, { "nectir.co", true }, { "nedcdata.org", true }, - { "nederdraad.org", true }, { "nederland.media", true }, { "nederlands-vastgoedfonds.nl", true }, + { "nedermisp.nl", true }, { "nediapp.com", true }, { "nedim-accueil.fr", true }, { "nedlinin.com", true }, @@ -49924,7 +51690,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "needfire.ga", true }, { "needle.net.nz", true }, { "needle.nz", true }, - { "needletail.io", true }, + { "needrom.com", true }, { "needstyle.ru", true }, { "neel.ch", true }, { "neemdetijd.nl", true }, @@ -49942,10 +51708,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "negativeentropy.org", true }, { "neglecteddiseases.gov", true }, { "negocios-imatore.com", true }, + { "negoya-shokai.info", true }, { "negril.com", true }, + { "nehalem.gov", true }, { "neheim-huesten.de", true }, { "nehoupat.cz", true }, { "nehrp.gov", true }, + { "nehta.gov.au", true }, { "nei.st", true }, { "neighborhoodelectricwa.com", true }, { "neighborshop.de", true }, @@ -49961,11 +51730,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neio.uk", true }, { "nejenpneu.cz", true }, { "nejlevnejsi-parapety.cz", true }, - { "nejprivlac.cz", true }, + { "nejmaklerka.cz", true }, { "neko-nyan-nuko.com", true }, { "neko-nyan.org", true }, - { "nekodex.net", true }, { "nekoku.io", true }, + { "nekolove.jp", true }, { "nekomimi.pl", true }, { "nekomimirouter.com", true }, { "nekomio.com", true }, @@ -49983,8 +51752,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nellacms.org", true }, { "nellafw.org", true }, { "nellen.it", true }, + { "nellyarias.com", true }, { "nellydallois.fr", true }, - { "nemausus.com", true }, { "nemcd.com", true }, { "nemecl.eu", true }, { "nemez.net", true }, @@ -49999,6 +51768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nemumu.com", true }, { "nemunai.re", true }, { "nemzetizaszlok.hu", true }, + { "neneko.moe", true }, { "nengzhen.com.cn", true }, { "nenkin-kikin.jp", true }, { "neno.io", true }, @@ -50006,6 +51776,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neo2k.dk", true }, { "neo2shyalien.eu", false }, { "neobits.nl", true }, + { "neochan.net", true }, + { "neochan.ru", true }, { "neocities.org", true }, { "neoclick.io", true }, { "neocyd.com", true }, @@ -50017,6 +51789,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neohu.com", true }, { "neojames.me", true }, { "neojo.org", true }, + { "neoko.fr", true }, { "neokobe.city", true }, { "neolaudia.es", true }, { "neolink.dk", true }, @@ -50058,16 +51831,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nerdoutstudios.tv", true }, { "nerdpol.ch", true }, { "nerdpol.org", true }, - { "nerdrockshop.co.uk", true }, { "nerds-gegen-stephan.de", true }, { "nerds.company", false }, - { "nerdswithknives.com", true }, { "nerdtime.de", true }, { "nerdwallet.com", true }, + { "nerdycharmer.com", true }, { "nerdydev.net", true }, { "nereustech.com", true }, { "nerfroute.com", true }, { "neriumrx.com", true }, + { "neroshana.com", true }, { "nerot.eu", true }, { "nerpa-club.ru", true }, { "nert.gq", true }, @@ -50116,7 +51889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netera.se", true }, { "neteraser.de", true }, { "netexpat.com", true }, - { "netexpatcommunity.com", true }, + { "netexpatcommunity.com", false }, { "netfabb.com", true }, { "netface.com.br", true }, { "netfeeds.eu", true }, @@ -50157,6 +51930,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netolink.ru", true }, { "netpenge.tk", true }, { "netrabota.tk", true }, + { "netradyne.com", true }, { "netraising.com", false }, { "netrelay.email", true }, { "netrewrite.com", true }, @@ -50194,7 +51968,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "netwaf.com", true }, { "netwarc.eu", true }, { "netwarc.nl", true }, - { "netweaver.uk", false }, + { "netweaver.uk", true }, { "netwerkmanager.nl", false }, { "networg.com", true }, { "networg.cz", true }, @@ -50218,6 +51992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "networkofarts.com", true }, { "networkposting.com", true }, { "networksolutionsconsultant.com", true }, + { "networkuser.de", true }, { "networth.at", true }, { "networx-online.de", true }, { "netz-yokohama.co.jp", true }, @@ -50249,6 +52024,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "neutralox.com", true }, { "neuwal.com", true }, { "neva.li", true }, + { "nevadafiber.com", true }, { "nevadafiber.net", true }, { "never-afk.de", false }, { "never.pet", true }, @@ -50278,6 +52054,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "new-web-studio.com", true }, { "newaccess.ch", true }, { "newantiagingcreams.com", true }, + { "newaygotowing.com", true }, { "newbasemedia.us", true }, { "newbernpost539.com", true }, { "newbietech.cn", false }, @@ -50313,7 +52090,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newflavor.design", true }, { "newflora.ru", true }, { "newfordmustang.com.au", true }, - { "newforms.nl", true }, { "newfoundland-labradorflora.ca", true }, { "newgraphics.by", true }, { "newgrowbook.com", true }, @@ -50324,10 +52100,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newind.info", true }, { "newinf.at", true }, { "newinternet.media", true }, - { "newizv.ru", true }, + { "newizv.ru", false }, { "newjianzhi.com", true }, { "newkaliningrad.ru", true }, { "newknd.com", true }, + { "newlegalsteroid.com", true }, { "newlifeband.de", true }, { "newlifehempoil.com", true }, { "newline.online", true }, @@ -50336,12 +52113,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newlynamed.com", true }, { "newlytricks.ml", true }, { "newmall.org", true }, + { "newmanwebsolutions.com", true }, { "newmarketbouncycastlehire.co.uk", true }, { "newmediaone.net", true }, { "newmovements.net", true }, { "newmusicjackson.org", true }, { "newodesign.com", true }, { "neworiflame.tk", true }, + { "neworleansmenshealth.com", true }, + { "newparadigmventures.net", false }, { "newposts.ru", true }, { "newquilters.com", true }, { "newreleases.io", true }, @@ -50349,12 +52129,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "news-srilanka.tk", true }, { "news-sy.cf", true }, { "news-technology.ml", true }, + { "news-trendlab.com", true }, { "news123.ga", true }, { "news12elite.tk", true }, { "news47ell.com", true }, { "news53today.tk", true }, { "news54.tk", true }, { "newsa2.com", true }, + { "newsall.gr", true }, { "newsarmenia.tk", true }, { "newsbali.tk", true }, { "newsbusiness.cf", true }, @@ -50364,6 +52146,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newsdiffs.eu", true }, { "newserumforskin.com", true }, { "newsgroups.io", true }, + { "newsheaders.net", true }, { "newshell.it", true }, { "newsinkansas.ml", true }, { "newsinpolitics.ga", true }, @@ -50371,6 +52154,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newsletteralerts.com", true }, { "newsmotor.info", true }, { "newsnew2020.com", true }, + { "newsound.vn", true }, { "newspaper-myapp.herokuapp.com", true }, { "newspiritfilms.com", true }, { "newspsychology.com", true }, @@ -50379,6 +52163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newsuk.tk", true }, { "newsuzbekistan.tk", true }, { "newsvideo.tk", true }, + { "newsvoice.com", true }, { "newsyslog.org", true }, { "newtekstil.ga", true }, { "newtnote.com", true }, @@ -50393,6 +52178,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "newyorknews.tk", true }, { "nex.li", true }, { "nex.sx", true }, + { "nexcoda.io", true }, { "nexd.com", true }, { "nexgeneration-solutions.com", true }, { "nexicafiles.com", true }, @@ -50413,7 +52199,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nextcloud.org", true }, { "nextclouddarwinkel.nl", true }, { "nextcom.digital", true }, - { "nextechoax.com", true }, { "nextend.net", true }, { "nexter.cloud", true }, { "nextevolution.co.uk", true }, @@ -50440,7 +52225,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nexus-exit.de", true }, { "nexus-vienna.at", true }, { "nexusbyte.de", true }, - { "nexusconnectinternational.eu", true }, { "nexwebsites.com", true }, { "nexxus-sistemas.net.br", true }, { "neyer-lorenz.de", true }, @@ -50471,6 +52255,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nghe.net", true }, { "ngi.eu", true }, { "ngiemboon.net", true }, + { "nginx.io", true }, { "nginxconfig.com", true }, { "nginxyii.tk", true }, { "ngla.gov", true }, @@ -50479,7 +52264,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ngmx.org", true }, { "ngndn.jp", true }, { "ngocuong.net", false }, - { "ngojclee.com", true }, { "ngospelmedia.net", true }, { "ngt.gr", true }, { "nguru.net", true }, @@ -50493,6 +52277,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nhakhoabella.com", true }, { "nhakhoangocanh.net", true }, { "nhanlucnhatban.com", true }, + { "nhbp-nsn.gov", true }, { "nhccnews.org", true }, { "nhchalton.com", true }, { "nhdsilentheroes.org", true }, @@ -50560,10 +52345,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nic.zip", true }, { "nicastrosalvatore.tk", true }, { "nice.ch", true }, + { "niceb5y.net", false }, { "niceguyit.biz", true }, { "nicesco.re", true }, - { "nicesleepo.com", true }, { "nicestudio.co.il", false }, + { "nicetaninaka.com", true }, { "nichesite.gq", true }, { "nichi.co", true }, { "nichijou.com", true }, @@ -50584,6 +52370,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nickfrost.rocks", true }, { "nickguyver.com", true }, { "nickhitch.co.uk", true }, + { "nickhowell.co.uk", true }, { "nickkallis.com", true }, { "nickloose.de", true }, { "nicklord.com", true }, @@ -50621,6 +52408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nicolas-hoizey.com", true }, { "nicolas-simond.ch", true }, { "nicolas-simond.com", true }, + { "nicolascornet.com", true }, { "nicolasfriedli.ch", true }, { "nicolasiung.me", true }, { "nicolaspecher.com", true }, @@ -50632,15 +52420,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "niconico.ooo", true }, { "niconode.com", false }, { "nicoobank.com", true }, + { "nicoobook.com", true }, { "nicoobook.net", true }, { "nicorevin.ru", true }, { "nicsezcheckfbi.gov", true }, { "nicul.in", true }, + { "nidhoeggr.duckdns.org", true }, + { "nidialozano.com", true }, { "nidro.de", true }, { "nidsuber.ch", true }, { "niduxcomercial.com", true }, { "niederalt.com", true }, { "niederohmig.de", true }, + { "niekbrekelmans.nl", true }, { "nielsbohr.ai", true }, { "niemaler.de", true }, { "nien.cf", true }, @@ -50663,17 +52455,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nietzsche.com", true }, { "nieuwpoort.tk", true }, { "nieuwsberichten.eu", true }, + { "nieuwsfiets.nu", true }, { "nieuwslagmaat.nl", true }, { "nifc.gov", true }, { "niffler.software", true }, { "niftiestsoftware.com", true }, - { "niftypersonalloans.com.au", true }, { "nifume.com", true }, { "nigelwakefield.com", true }, { "nigensha.co.jp", true }, - { "niggemeier.cc", true }, { "nigger.racing", true }, { "niggo.eu", true }, + { "night.cat", true }, { "night2stay.cn", true }, { "night2stay.de", true }, { "night2stay.fr", true }, @@ -50701,16 +52493,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nikandcara.com", true }, { "nikavandenbos.nl", true }, { "nikcub.com", false }, + { "nikifoth.io", true }, { "nikimix.com", false }, { "nikitenko.tk", true }, { "nikitin.photo", true }, - { "nikka.systems", true }, { "nikkasystems.com", true }, { "nikkila.me", true }, - { "nikklassen.ca", true }, { "nikksno.io", true }, { "niklas.pw", true }, { "niklasbabel.com", true }, + { "niklasstinkt.com", true }, { "nikolahost.tk", true }, { "nikolai-schmidt.tk", true }, { "nikolasbradshaw.com", true }, @@ -50719,8 +52511,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nikonlibrary.co.uk", true }, { "nikonnps.co.uk", true }, { "nikonpromotions.co.uk", true }, + { "nikpool.com", true }, + { "niktok.com", true }, { "nil.gs", true }, { "nil.mx", true }, + { "nila.store", true }, { "nilahue.com", true }, { "niles.xyz", true }, { "nilgirispice.co.uk", true }, @@ -50740,6 +52535,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ninetailed.ninja", true }, { "ninetaillabs.com", true }, { "ninetaillabs.xyz", true }, + { "nineteensixtyone.co.uk", true }, { "ninfora.com", true }, { "ningbo.co.uk", true }, { "ningrui.me", true }, @@ -50749,14 +52545,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ninjan.co", true }, { "ninjasquad.fr", true }, { "ninjaworld.co.uk", true }, + { "ninkt.com", true }, { "ninmegam.gq", true }, { "ninofink.com", true }, { "ninreiei.jp", true }, + { "nintendohill.com", true }, { "ninth.cat", true }, { "ninthfloor.org", true }, { "ninux.ch", false }, { "ninverse.com", true }, - { "niouininon.eu", true }, { "niourk.com", true }, { "nipax.cz", true }, { "nipe-systems.de", true }, @@ -50778,6 +52575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nishikino-maki.com", true }, { "nishimebistro.cz", true }, { "nishisbma.com", true }, + { "nishiyama-shoten.com", true }, { "nissanofbismarckparts.com", true }, { "nist.tech", true }, { "nitifilter.com", true }, @@ -50790,6 +52588,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nitropur.de", true }, { "nitrous-networks.com", true }, { "nitschinger.at", true }, + { "nitter.net", true }, { "niu.moe", false }, { "niumactive.it", true }, { "nivelul2.ro", true }, @@ -50798,10 +52597,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nix.org.ua", false }, { "nix13.xyz", true }, { "nixnet.email", true }, + { "nixnet.services", true }, { "nixnetmail.com", true }, { "nixonlibrary.gov", true }, { "nixtest.net", true }, - { "nixval.com", true }, + { "nixval.com", false }, { "nixx-gel.cz", true }, { "niyawe.de", true }, { "niyazpoyilan.com", false }, @@ -50812,14 +52612,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nizhaoheng.com", true }, { "nja.id.au", true }, { "njast.net", true }, + { "njcareers.org", true }, { "njguardtraining.com", true }, { "njilc.com", true }, { "njpjanssen.nl", true }, { "njprimary.com", true }, { "nkapliev.org", true }, { "nkbwnx.com", true }, - { "nkforum.pl", true }, { "nkinka.de", true }, + { "nkio.de", true }, { "nkjwmn.com", true }, { "nkjwrs.com", true }, { "nklwhx.com", true }, @@ -50827,7 +52628,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nkp-media.de", true }, { "nkp.bg", true }, { "nksky.cn", true }, - { "nkx4sjyrk4tcv0sluhwajyc-n6icja9gchqxmhp.com", true }, + { "nkx4sjyrk4tcv0sluhwajyc-n6icja9gchqxmhp.com", false }, { "nl-comunistas.tk", true }, { "nl-ix.net", true }, { "nl-xs.com", true }, @@ -50837,6 +52638,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nlap.ca", false }, { "nlayer.info", true }, { "nlbewustgezond.nl", true }, + { "nlc-business.com", true }, { "nlc.org.au", true }, { "nlegall.fr", true }, { "nllboard.co.uk", true }, @@ -50881,15 +52683,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noahwitt.me", true }, { "nob.ro", true }, { "nobilefoods.com", true }, - { "nobitakun.com", true }, { "nobledust.com", true }, { "nobleparkapartments.com.au", true }, { "nobly.de", true }, + { "nobodyplex.gq", true }, { "nobreaks.ca", true }, { "nobreinox.com.br", true }, { "noc.org", true }, { "noc.wang", true }, - { "nocit.dk", true }, { "nocks.com", true }, { "noclegiwchecinach.pl", true }, { "nocloud.website", true }, @@ -50900,7 +52701,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nodecdn.net", true }, { "nodecraft.com", true }, { "nodeedge.com", true }, - { "nodeflame.com", true }, { "nodefoo.com", true }, { "nodejs.de", true }, { "nodelab-it.de", true }, @@ -50939,10 +52739,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noincludesubdomains.preloaded.test", false }, { "noinghene.com", true }, { "noise.agency", true }, + { "noiseandheat.com", true }, { "noisebridge.social", true }, { "noisetor.net", true }, { "noisetrap.cz", true }, - { "noisky.cn", true }, + { "noisky.cn", false }, { "noisyfox.cn", true }, { "noites.pt", true }, { "noithat247.com.vn", true }, @@ -50950,19 +52751,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nokia.la", true }, { "nokono.com", true }, { "nokya.tk", true }, + { "nolanpowellisaho.com", true }, + { "nolanvilletx.gov", true }, { "nolatepayments.com", true }, { "nolaviz.org", true }, { "noleggio-bagni-chimici.it", true }, { "noleggiobagnichimici.perugia.it", true }, { "noleggioimbarcazioni.it", true }, { "noleggiolimousine.roma.it", true }, - { "nolimits.net.nz", true }, { "noma-film.com", true }, { "nomadichome.com", true }, { "nomadichome.org", true }, { "nomadichomes.com", true }, { "nomadichomes.org", true }, - { "nomadproject.io", true }, + { "nomadicrootsco.com", true }, + { "nomadproject.io", false }, { "nomagic.software", true }, { "nomaster.cc", true }, { "nomenclator.org", true }, @@ -50971,6 +52774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nomifensine.com", true }, { "nomik.xyz", true }, { "nomoondev.azurewebsites.net", true }, + { "nomsing.tk", true }, { "nomsy.net", true }, { "nomzamo.spdns.org", true }, { "nonabytes.xyz", false }, @@ -50981,6 +52785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nonglamfarm.vn", true }, { "nontonfilem.ml", true }, { "nonx.pro", true }, + { "nony.no", true }, { "nonzero.io", true }, { "noob-box.net", true }, { "noob-rp.ru", true }, @@ -51001,6 +52806,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "noordwesthoekrit.nl", true }, { "noorsolidarity.com", false }, { "noortronic.com", true }, + { "noosxe.com", true }, { "nootroic.com", false }, { "nootronerd.com", true }, { "nootropic.com", true }, @@ -51015,7 +52821,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "norad.sytes.net", true }, { "noradevot.com", true }, { "norala.tk", true }, - { "noranowak.com", true }, { "norapiero.com", true }, { "norbertschneider-music.com", true }, { "nord-sud.be", true }, @@ -51037,6 +52842,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nordvestkysten.de", true }, { "nordvestkysten.dk", true }, { "nordvpn.com", true }, + { "nordvpnteams.com", true }, { "nordwaldzendo.de", true }, { "noref.tk", true }, { "noreply.mx", true }, @@ -51050,7 +52856,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "normanbauer.com", true }, { "normandgascon.com", true }, { "normankranich.de", true }, + { "normansolutions.co.uk", true }, { "normantobar.com", true }, + { "normapro.es", true }, { "norml.fr", true }, { "noroshi-burger.com", true }, { "norrkemi.se", true }, @@ -51062,6 +52870,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "northampton-vets.co.uk", true }, { "northatlantalaw.net", true }, { "northbayvillage-fl.gov", true }, + { "northbengaltourism.com", true }, { "northbridgecre.com", true }, { "northbrisbaneapartments.com.au", true }, { "northcoastlabs.com", true }, @@ -51093,6 +52902,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "northumbriagames.co.uk", true }, { "northwest-events.co.uk", true }, { "northwoodsfish.com", true }, + { "northwoodstudios.org", true }, { "norys-escape.de", true }, { "nos-medias.fr", true }, { "nos-oignons.net", true }, @@ -51139,14 +52949,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "notbolaget.se", true }, { "notboring.co.uk", true }, { "notcompletelycorrect.com", true }, - { "notdienstreform-nordrhein.de", true }, { "note64.com", true }, { "note7forever.com", true }, { "noteboat.net", true }, { "notecoffee.tw", true }, { "notedinstyle.co.uk", true }, { "notenarchiv.eu", true }, - { "notengosuelto.com", true }, { "notepad.nz", true }, { "notequal.me", true }, { "notesforpebble.com", true }, @@ -51157,7 +52965,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nothing.net.nz", true }, { "nothing.org.uk", true }, { "noticaballos.com", true }, - { "noticiasdehumor.com", true }, + { "noticiaelmundo.com", true }, { "noticiasdetv.com", true }, { "noticiasymas.cl", true }, { "notificami.com", true }, @@ -51180,11 +52988,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nou9ta.tk", true }, { "noudjalink.nl", true }, { "nougat-anduze.fr", true }, - { "noujoumtounes.com", true }, { "nourishandnestle.com", true }, + { "noussommesluniversite.org", true }, { "noustique.com", true }, { "noustramits.com", true }, { "nousyukum.com", true }, + { "nouveauhosting.com.au", true }, { "nova-dess.ch", false }, { "nova-kultura.org", true }, { "nova-wd.org.uk", true }, @@ -51209,6 +53018,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "novecity.it", true }, { "novecity.org", true }, { "novecitymail.com", true }, + { "novel543.com", true }, { "novelfeed.com", true }, { "novelinglife.net", false }, { "novelvyretraite.fr", true }, @@ -51224,11 +53034,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "novinivo.com", true }, { "novinkihd.tk", true }, { "novinminer.com", true }, + { "novobi.com", true }, { "novodiegomaia.com.br", true }, { "novogradnje.si", true }, { "novojet.cl", true }, { "novokuznetsk.tk", true }, { "novonegoc.io", true }, + { "novoregalos.com", true }, { "novoresume.com", false }, { "novorossiysk.tk", true }, { "novorussiya.tk", true }, @@ -51245,7 +53057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nowhere.dk", true }, { "nowitzki.me", true }, { "nowitzki.network", true }, - { "nowlas.org", true }, + { "nowlas.org", false }, { "nowloading.co", true }, { "nowremindme.com", true }, { "nowzuwan.org", false }, @@ -51266,11 +53078,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "npdigital.com", true }, { "nphrm.com", true }, { "npmcdn.com", true }, + { "npod.me", true }, { "npool.org", true }, { "npregion.org", true }, { "npsas.org", true }, { "npu.best", true }, - { "npw.net", true }, { "nqesh.com", true }, { "nqeshreviewer.com", true }, { "nr-sputnik.ru", true }, @@ -51288,6 +53100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nrvn.cc", false }, { "nrvnastudios.com", true }, { "ns-frontier.com", true }, + { "ns-ohsnek.com", true }, { "ns2servers.pw", true }, { "nsa.lol", true }, { "nsa.ovh", true }, @@ -51316,7 +53129,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nsoft.nu", true }, { "nsp.ua", true }, { "nspawn.org", true }, - { "nspeaks.com", true }, { "nspireoutreach.org", false }, { "nsradiology.net", true }, { "nst-maroc.com", true }, @@ -51337,13 +53149,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ntppool.org", false }, { "ntsb.gov", true }, { "ntut.net", true }, - { "ntwt.us", true }, { "ntx360grad-fallakte.de", true }, { "ntzlaw.com", true }, { "ntzwrk.org", true }, { "nu-pogodi.net", true }, { "nu3tion.com", true }, { "nu3tion.cz", true }, + { "nu3vex.com", true }, { "nuacht.ie", true }, { "nualgiponds.com", true }, { "nuamooreaindonesia.com", true }, @@ -51365,17 +53177,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nuevaimagenpublicidad.es", true }, { "nuffield.nl", true }, { "nugdev.co", false }, + { "nugmanov.net", true }, { "nuipogoda.ru", true }, { "nuits-franciliennes.fr", true }, { "nukleosome.com", true }, + { "null-d.com", true }, { "null-life.com", true }, - { "nullday.de", true }, { "nulle-part.org", true }, { "nullonerror.org", true }, { "nullroute.com", true }, { "nullscripts.tk", true }, { "nulltime.net", false }, + { "nullwebscripts.com", true }, { "nullxsec.net", true }, + { "nully.xyz", true }, { "numarasorgulama.tel", true }, { "numatic.co.uk", true }, { "number.me", true }, @@ -51397,6 +53212,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nunesgh.com", true }, { "nunnenmacher.net", true }, { "nunnun.jp", true }, + { "nunoleiria.com", true }, { "nunomoura.com", true }, { "nuntiicaelo.in.ua", true }, { "nunu.io", true }, @@ -51417,7 +53233,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nurseregistry.com", true }, { "nurses.dating", true }, { "nursingschool.network", true }, - { "nusaceningan.io", true }, + { "nusaceningan.io", false }, + { "nusantaratv.com", true }, { "nusatrip-api.com", true }, { "nussadoclub.org", true }, { "nut-dev.com", true }, @@ -51429,6 +53246,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nutleyef.org", true }, { "nutpanda.com", true }, { "nutra-creations.com", true }, + { "nutradian.com", true }, + { "nutralivbio.com", true }, { "nutrashop.fr", true }, { "nutri-spec.me", true }, { "nutricaovegana.com", true }, @@ -51440,6 +53259,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nutripedia.gr", true }, { "nutrishop.com", true }, { "nutrition.gov", true }, + { "nutritionalsupplement.co.uk", true }, { "nutrivisa.com.br", true }, { "nutrizionista.roma.it", true }, { "nuva.hu", true }, @@ -51452,6 +53272,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nvfoundation.com", true }, { "nvl-game.tokyo", true }, { "nvlocalbusiness.com", true }, + { "nvlop.xyz", false }, { "nvmo.org", true }, { "nvoip.com.br", true }, { "nvq.nl", true }, @@ -51462,6 +53283,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nwea.nl", true }, { "nwerc.party", true }, { "nwgh.org", false }, + { "nwh.nz", true }, { "nwitt.us", true }, { "nwk1.com", true }, { "nwmd.nl", false }, @@ -51479,6 +53301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nxinfo.ch", false }, { "nxit.ca", true }, { "nxtgenbroadband.in", true }, + { "nxtgensn.com", true }, { "nxth.io", true }, { "nya.as", true }, { "nyadora.com", true }, @@ -51486,7 +53309,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nyan.it", true }, { "nyan.kim", true }, { "nyan.stream", true }, - { "nyanco.space", true }, { "nyanpasu.tv", true }, { "nyansparkle.com", true }, { "nyantec.com", true }, @@ -51495,7 +53317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nycfilmcrew.com", true }, { "nyconcretelifting.com", true }, { "nycoyote.org", true }, - { "nycrerc.com", true }, + { "nycrerc.com", false }, { "nydig.com", true }, { "nyerjachioval.hu", true }, { "nyerjakekszekkel.hu", true }, @@ -51526,6 +53348,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "nyzed.com", true }, { "nzelaweb.com", true }, { "nzstudy.ac.nz", true }, + { "nzt.capital", true }, + { "nzt.co", true }, + { "nzt.dev", true }, + { "nzt.foundation", true }, + { "nzt.holdings", true }, + { "nzt.io", true }, + { "nzt.one", true }, + { "nzt.productions", true }, + { "nzt.properties", true }, + { "nzt.services", true }, + { "nzt.team", true }, + { "nzt.technology", true }, + { "nzt.tools", true }, + { "nzt.ventures", true }, + { "nztcap.com", true }, + { "nztcap.de", true }, + { "nztcapital.com", true }, + { "nztcapital.de", true }, + { "nztcapital.net", true }, + { "nztfoundation.com", true }, + { "nztholdings.com", true }, + { "nztproperties.com", true }, + { "nztservices.com", true }, + { "nzttechnology.com", true }, + { "nzttools.com", true }, + { "nzttools.net", true }, + { "nztventures.com", true }, + { "nztventures.de", true }, + { "nztventures.net", true }, { "nzws.me", false }, { "o-aconsult.com", true }, { "o-results.ch", true }, @@ -51533,15 +53384,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "o-sp.com", true }, { "o00228.com", true }, { "o0c.cc", true }, - { "o0o.st", false }, { "o15y.com", true }, { "o2oxy.cn", true }, + { "o2ss.com", true }, { "o3.wf", true }, { "o30365.com", true }, - { "o365.vip", true }, + { "o365.vip", false }, { "o36533.com", true }, { "o36594.com", true }, - { "o3c.com.br", true }, + { "o3ptitschats.fr", true }, { "o3wallet.com", true }, { "o5.cx", false }, { "o5197.co", true }, @@ -51550,16 +53401,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "o6957.co", true }, { "o6asan.com", true }, { "o81365.com", true }, - { "o81818.com", true }, { "o82365.com", true }, { "o8b.club", true }, { "o9297.co", true }, { "o9397.com", true }, - { "o9721.com", true }, + { "o9721.com", false }, { "o9728.co", true }, { "o98.com", true }, { "o98.net", true }, { "oacloud.nl", true }, + { "oadeo.com", true }, { "oahpmdata.net", true }, { "oaic.gov.au", true }, { "oakbarnvets.com", true }, @@ -51574,15 +53425,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oakparklighting.com", true }, { "oakparkmedicalcentre.ga", true }, { "oakparkoutdoorlighting.com", true }, - { "oaksbloom.com", true }, { "oakshield.nl", true }, { "oakslighting.co.uk", true }, - { "oaktravel.nl", true }, { "oaktree-realtors.com", true }, { "oakwood-park.tk", true }, { "oanalista.com.br", true }, { "oasiristorantebagno.it", true }, - { "oasis-conference.org.nz", true }, + { "oasis-conference.org.nz", false }, + { "oasis9.net", true }, { "oasisim.net", false }, { "oasisorthodontics.com.au", true }, { "oatmealdome.me", true }, @@ -51601,9 +53451,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oberhofjuice.com", true }, { "obermeiers.eu", true }, { "oberoi.de", true }, + { "obery.com", true }, { "obesidadlavega.com", true }, { "obfuscate.xyz", true }, { "obg-global.com", true }, + { "obg.ceo", true }, { "obgalslancaster.com", true }, { "obgynmiamifl.com", true }, { "obioncountytn.gov", true }, @@ -51616,6 +53468,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "objetperso.fr", true }, { "oblast45.ru", false }, { "obligacjekk.pl", true }, + { "obliviate.io", true }, { "obmen-vizitami.ml", true }, { "obnalichka.ga", true }, { "oboeta.com", true }, @@ -51626,18 +53479,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "obs.group", true }, { "obscur.us", true }, { "obscureware.xyz", true }, + { "observer.com", true }, { "observer.name", true }, { "obsessedwithknives.ru", true }, { "obsessharness.com", true }, { "obsidianirc.net", true }, { "obsproject.com", true }, { "obtima.org", true }, - { "obu4alka.ru", true }, { "obuchowicz.pl", true }, { "obud.cz", true }, { "obxlistings.com", true }, - { "obyvateleceska.cz", true }, { "obzor-znakomstv.tk", true }, + { "obzoroff.asia", true }, + { "obzoroff.info", true }, { "oc-minecraft.com", true }, { "oc-sa.ch", false }, { "ocachik.com.br", true }, @@ -51655,14 +53509,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocd2016.com", true }, { "ocdadmin.com", true }, { "oceanbreezehomes.com", true }, - { "oceancity4sales.com", true }, { "oceandns.eu", true }, { "oceandns.net", true }, { "oceandns.nl", true }, { "oceanlogisticgroup.com", true }, { "oceanlord.me", true }, { "oceanofapk.com", true }, - { "oceanspraymiami.com", true }, + { "oceanspraymiami.com", false }, { "oceanvisuals.com", true }, { "ocenka-nedv.ml", true }, { "ocenovani-inspekce.cz", true }, @@ -51675,6 +53528,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ochsundjunior.swiss", true }, { "ociaw.com", true }, { "ocim.ch", false }, + { "ocimumcdn.net", true }, { "ockendenhemming.co.uk", true }, { "oclausen.com", true }, { "ocloud.fr", true }, @@ -51688,6 +53542,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ocrn.nl", true }, { "ocsigroup.fr", true }, { "octa.store", true }, + { "octagon.institute", true }, + { "octagongroup.co", true }, { "octane.net.au", true }, { "octarineparrot.com", true }, { "octav.name", true }, @@ -51698,6 +53554,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "octocaptcha.com", true }, { "octod.tk", true }, { "octohedralpvp.tk", true }, + { "octohost.net", true }, { "octolopagon.games", true }, { "octopoos.com", true }, { "octopoos.org", true }, @@ -51708,12 +53565,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "octosys.org", true }, { "octosys.ru", true }, { "octothorpe.club", true }, - { "octothorpe.ninja", true }, { "octovpn.com", true }, { "oculus.com", true }, + { "ocupat.ro", true }, { "ocwr.gov", true }, { "od-cure.com", true }, { "odacyeux.fr", true }, + { "odatakao.com", true }, { "odden.io", true }, { "oddmouse.com", false }, { "oddmuse.org", true }, @@ -51731,14 +53589,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "odifi.com", true }, { "odinseye.net", true }, { "odolbeau.fr", true }, - { "odonti.com", true }, + { "odontologia-online.com", true }, { "odoo.co.th", true }, { "odosblog.de", true }, { "odpikedoslike.com", true }, { "odtu.lu", true }, { "oducs.org", true }, - { "odvps.com", true }, { "odysea.cat", true }, + { "odyssey44.com", true }, { "odysseyofthemind.eu", true }, { "odysseytraining.com.au", true }, { "odzyskaniedomeny.pl", true }, @@ -51772,10 +53630,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ofertolino.fr", true }, { "offandonagain.org", true }, { "offbyinfinity.com", true }, + { "offcasesstore.com", true }, { "offenekommune.de", true }, { "offenes-deutschland.de", true }, { "offensity.com", true }, { "offerhome.com", true }, + { "offermann-koeln.de", true }, { "offersgame.com", true }, { "offertegiuste.com", true }, { "offertenet.nl", true }, @@ -51791,6 +53651,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "officeinteriors.co.nz", true }, { "officemovepro.com", true }, { "officeprint.co.th", true }, + { "officevibe.com", true }, { "officezoneonline.com", true }, { "official-sensitive.com", true }, { "official-sensitive.net", true }, @@ -51801,6 +53662,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "offroadeq.com", true }, { "offroadhoverboard.net", true }, { "offshoot.ie", true }, + { "offshoot.rentals", false }, { "offshore.digital", true }, { "offshoremarineparts.com", false }, { "offtherails.ie", true }, @@ -51815,12 +53677,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oftn.org", true }, { "ogamerezine.tk", true }, { "oge.ch", false }, + { "ogfarms.in", true }, { "oggw.us", true }, { "oghost.ir", true }, { "ogis.gov", true }, { "ogkw.de", true }, { "oglen.ca", true }, { "ogo-knigi.ml", true }, + { "ogretmenimsanat.com", true }, { "oguya.ch", true }, { "ogyaa.jp", true }, { "oh-leg.com", true }, @@ -51852,6 +53716,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ohm2013.org", true }, { "ohmayonnaise.com", true }, { "ohmy.ca", true }, + { "ohmyunix.com", true }, { "ohne-name.de", true }, { "ohnonotme.com", true }, { "ohol.se", true }, @@ -51860,9 +53725,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ohreally.de", true }, { "ohsocool.org", true }, { "ohsohairy.co.uk", true }, + { "ohsweetart.com", true }, { "ohya8.com", true }, { "ohyooo.com", true }, { "oi-wiki.org", true }, + { "oiahe.org.uk", true }, { "oic-ci.gc.ca", true }, { "oil-ecn.ru", true }, { "oil-heaters.tk", true }, @@ -51874,6 +53741,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oita-homes.com", true }, { "ojaioliveoil.com", true }, { "ojdip.net", true }, + { "ojeremy.com", true }, { "ojojz.com", true }, { "ojomovies.com", true }, { "ojp.gov", true }, @@ -51889,22 +53757,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "okasurfbali.com", true }, { "okay.cf", true }, { "okay.coffee", true }, + { "okayloser.com", true }, { "okaz.de", true }, { "okazoo.eu", true }, { "okburrito.com", true }, { "okchousebuyer.com", true }, { "okeeferanch.ca", true }, + { "okewp.com", true }, { "okhrana.agency", true }, { "okib.ca", true }, - { "okin-jp.net", true }, { "okinawa-mag.net", true }, { "okkhor52.com", true }, + { "okkur.community", true }, + { "okkur.dev", true }, + { "okkur.io", true }, + { "okkur.net", true }, + { "okkur.org", true }, + { "okkur.team", true }, + { "okkurlabs.com", true }, { "oklahomafibroids.com", true }, { "oklahomamoversassociation.org", true }, { "oklahomanotepro.com", true }, { "okmx.cloud", true }, { "okmx.de", true }, - { "okmyanmartravels.com", false }, { "okna-tm.kz", true }, { "okna-vek.com.ua", true }, { "okonetwork.org.uk", true }, @@ -51914,9 +53789,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "okpo.tk", true }, { "okqubit.net", true }, { "oksafe-t.org", true }, + { "oktave.co", true }, { "oktayincesuturizm.com", true }, { "oktime.cz", true }, - { "oku-nara.com", true }, { "okukan.com.au", true }, { "okulistiyoruz.tk", true }, { "okurapictures.com", true }, @@ -51955,6 +53830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oldriver.tk", true }, { "oldroutetwo.com", true }, { "oldschool-criminal.com", true }, + { "oldschool.wiki", true }, { "oldsticker.com", true }, { "oldstmary.com", true }, { "oldtimerparts.de", true }, @@ -51985,7 +53861,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "olinux.fr", true }, { "oliode.tk", true }, { "olitham.com", true }, - { "olive.my", true }, { "olivejs.com", true }, { "olivemultispecialist.com", true }, { "oliveoil.bot", true }, @@ -52004,7 +53879,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oliverst.com", true }, { "olivia-smith.com", true }, { "olivier-rochet.com", true }, - { "olivierberardphotographe.com", true }, + { "olivierberardphotographe.com", false }, { "olivierpieters.be", true }, { "oliviervaillancourt.com", true }, { "olivlabs.com", true }, @@ -52044,14 +53919,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "om.yoga", true }, { "om1.com", true }, { "omaedu.ro", true }, - { "omahmebel.com", true }, + { "omaharoofpros.com", true }, { "omangrid.com", true }, { "omanko.porn", false }, { "omaosurveys.org", true }, { "omarh.net", true }, + { "omarpalos.com", true }, { "omarsamarah.tk", true }, { "omdesign.cz", false }, { "omega-gaming.online", true }, + { "omega-intranet.com", true }, { "omega-marijuana.com", true }, { "omegahosting.net", true }, { "omegarazer.ca", true }, @@ -52087,13 +53964,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "omniverse.ru", true }, { "omny.info", true }, { "omoide-hitokoto.com", true }, - { "omori.ch", true }, + { "omorashi.org", false }, { "omoteura.com", true }, { "omranic.com", true }, { "omronwellness.com", true }, { "omsdieppe.fr", true }, { "omshivalab.com", true }, { "omsk-web.ml", true }, + { "omskit.ru", false }, { "omsknews.tk", true }, { "omskrock.com", true }, { "omskweb.tk", true }, @@ -52109,7 +53987,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onaboat.se", true }, { "onahonavi.com", true }, { "onair.ovh", true }, - { "onarto.com", true }, { "onazikgu.com", true }, { "onbuzzer.com", false }, { "oncalltech.net", true }, @@ -52130,6 +54007,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ondiet.biz", true }, { "ondrej.org", true }, { "ondrejbudin.cz", true }, + { "ondrejhoralek.cz", true }, { "one---line.com", true }, { "one-news.net", true }, { "one-resource.com", true }, @@ -52168,6 +54046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oneononeonone.tv", true }, { "onepercentrentals.com", true }, { "onepersona.io", true }, + { "oneplaykh.com", true }, { "onepointsafeband.ca", true }, { "onepointsafeband.com", true }, { "onepointzero.com", true }, @@ -52175,6 +54054,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oneshotmediakc.com", true }, { "oneso.win", true }, { "onesports.cz", true }, + { "onestacked.club", true }, + { "onestacked.tk", true }, { "onestasolar.com", true }, { "onestopcastles.co.uk", true }, { "onestpasdesanges.fr", true }, @@ -52204,14 +54085,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onionplay.net", true }, { "onionsburg.com", false }, { "onionscan.org", true }, + { "onionyst.com", true }, { "oniria.ch", false }, + { "oniriamultimedia.com", true }, { "onix.eu.com", true }, { "onixcco.com.br", true }, { "onkentessegertdij.hu", true }, { "onkfaktor.de", true }, { "onlfait.ch", false }, { "online-backup.se", true }, - { "online-biblio.tk", true }, { "online-calculator.com", true }, { "online-consulting-corp.com", true }, { "online-eikaiwa-guide.com", true }, @@ -52228,6 +54110,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "online.swedbank.se", true }, { "online24.pt", true }, { "onlineautodealered.com", true }, + { "onlinebcs.com", true }, { "onlinebiller.com", true }, { "onlinecasinobluebook.com", true }, { "onlinecasinolisboa.com", true }, @@ -52235,11 +54118,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinecensorship.org", true }, { "onlinecollegeessay.com", true }, { "onlinedemo.hu", true }, + { "onlinedivorce.com", true }, { "onlinefashion.it", true }, { "onlinehaircuts.com", true }, { "onlinehashfollow.com", true }, { "onlineinfographic.com", true }, - { "onlineinsurancespot.com", true }, { "onlinekmc.com", true }, { "onlinekocunuz.com", true }, { "onlinelegalmarketing.com", true }, @@ -52250,9 +54133,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlinemarketingtraining.co.uk", true }, { "onlinemoviewatch.org", true }, { "onlinepokerspelen.be", true }, + { "onlineporno.cc", true }, { "onlineprofecional.com", true }, { "onlineradio.pp.ua", true }, - { "onlinerollout.de", false }, { "onlinesports.tk", true }, { "onlinestoresite.com.au", true }, { "onlinesystem.jp", true }, @@ -52264,7 +54147,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onlineweblearning.com", true }, { "onlinexl.nl", true }, { "onload.pt", true }, - { "only-fragrances.com", true }, + { "only-fragrances.com", false }, { "only.sh", true }, { "onlycrumbsremain.co.uk", true }, { "onlyesb.com", true }, @@ -52276,6 +54159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onnaguse.com", true }, { "onnee.ch", true }, { "onnext.cc", true }, + { "onoelixir.gr", true }, { "onoranze-funebri.biz", true }, { "onoranzefunebri.roma.it", true }, { "onore.org", true }, @@ -52292,13 +54176,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "onspring.com", true }, { "onstud.com", true }, { "onsudoku.com", true }, + { "ontariocountyny.gov", true }, { "ontdekhetzelf.nu", true }, { "onthe.network", true }, { "onthebriteside.com", true }, { "onthecheap.store", true }, + { "onthegosystems.com", true }, { "onthehook.ru", true }, { "ontheten.org", true }, { "ontogenese.net", true }, + { "ontopoflove.nl", true }, { "ontourmarketing.at", true }, { "ontrio.cz", true }, { "ontsc.com", true }, @@ -52337,15 +54224,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ooharttemplates.com", true }, { "ookjesprookje.nl", true }, { "oolsa.net", true }, + { "oomepu.com", true }, + { "oonne.com", true }, { "ooo-santal.ml", true }, { "ooonja.de", true }, { "oopsis.com", true }, + { "oorbellen.nl", true }, { "oortcast.com", true }, { "oosm.org", true }, { "oosolutions.nl", true }, { "oosoo.org", true }, { "oost.io", false }, - { "oosterhout.nl", true }, { "ooyo.be", true }, { "op11.co.uk", false }, { "op3racional.eu", true }, @@ -52354,6 +54243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "opale-concept.com", true }, { "opalesurfcasting.net", true }, { "oparl.org", true }, + { "opatut.de", false }, { "opbedbugcanines.com", true }, { "opcare.co.uk", true }, { "opcenter.de", true }, @@ -52397,6 +54287,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "openconf.uk", true }, { "openconnect.com.au", true }, { "opencpes.com", true }, + { "opencpes.info", true }, + { "opencpes.io", true }, + { "opencpes.net", true }, { "opencpes.org", true }, { "opencrm.co.uk", true }, { "openctp.com", true }, @@ -52405,11 +54298,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "opendata.cz", true }, { "opendataincubator.eu", true }, { "opendecide.com", true }, + { "opendoorcounselingpa.com", true }, { "openevic.info", true }, { "openfir.st", true }, { "openfitapi-falke.azurewebsites.net", true }, { "opengg.me", true }, { "opengovpartnership.de", true }, + { "openhistory.de", true }, { "openings.ninja", true }, { "openiocdb.com", true }, { "openitforum.pl", true }, @@ -52439,6 +54334,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "openshippers.com", true }, { "opensource-cms.nl", true }, { "opensource-training.de", true }, + { "opensource.fund", true }, + { "opensourcesoftware.rocks", true }, { "opensourcesurvey.org", true }, { "openspa.webhop.info", true }, { "openssl.org", true }, @@ -52460,11 +54357,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "operad.fr", true }, { "operanavigation.ro", true }, { "operationforever.com", true }, - { "operr.com", true }, - { "operrbilling.com", true }, - { "operrgroup.com", true }, - { "operrhealth.com", true }, - { "operrtel.com", true }, + { "operationkiwi.work", true }, + { "operr.com", false }, + { "operrbilling.com", false }, + { "operrgroup.com", false }, + { "operrhealth.com", false }, { "opexterminating.com", true }, { "opfin.com", true }, { "opiates.ca", true }, @@ -52482,6 +54379,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oplata.uz", true }, { "oplatki-charistia.pl", true }, { "oplop.appspot.com", true }, + { "opnaarsalto.be", true }, { "opncld.com", true }, { "oposiciones.com.es", true }, { "oposicionesapolicialocal.es", true }, @@ -52510,12 +54408,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oprueba.com", true }, { "opryshok.com", true }, { "ops-com.com", true }, + { "ops.ai", true }, { "ops.com.pl", true }, + { "opskiwi.work", true }, { "opsmate.com", false }, { "opsnotepad.com", true }, { "opstory.com", true }, { "opti-net.at", true }, { "opticaltest.com", true }, + { "opticasocialvision.com", true }, + { "opticsboss.com", true }, { "optiekdemeester.be", true }, { "optigear.nl", true }, { "optik-trosdorff.de", true }, @@ -52527,7 +54429,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "optimised.cloud", true }, { "optimised.io", true }, { "optimisedlabs.co.uk", true }, - { "optimisedlabs.com", true }, { "optimisedlabs.info", true }, { "optimisedlabs.net", true }, { "optimisedlabs.uk", true }, @@ -52538,6 +54439,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "optimizedlabs.net", true }, { "optimizedlabs.uk", true }, { "optimo.com.tr", true }, + { "optimumterapia.pl", true }, { "optimumwebdesigns.com", true }, { "optimus.io", true }, { "optimuscrime.net", true }, @@ -52546,31 +54448,34 @@ static const nsSTSPreload kSTSPreloadList[] = { { "optmos.at", true }, { "optoutday.de", true }, { "opture.ch", true }, - { "opure.ru", true }, { "opus-codium.fr", true }, { "opus-consulting.no", true }, { "opvakantie-noorwegen.nl", true }, { "opvakantie-zweden.nl", true }, + { "opztechwall.com", true }, { "oqpo.ru", true }, { "oqrqtn7ynmgc7qrgwd-ubhdvfiymfbjrh5ethdti8.com", false }, { "oqwebdesign.com", true }, { "orablanket.co.nz", true }, { "oralb.co.uk", true }, { "orang-utans.com", true }, + { "orangeacademy.cz", true }, { "orangecat.tw", true }, { "orangecomputers.com", true }, { "orangefab.asia", true }, { "orangefinanse.com.pl", true }, { "orangejetpack.com", true }, - { "orangekey.tk", true }, { "orangelandgaming.com", true }, { "orangenbaum.at", true }, + { "orangenj.gov", true }, { "orangenuts.in", true }, { "orangewombat.com", true }, { "orangtua.tk", true }, { "orangutan-appeal.org.uk", true }, { "orangutan.org", true }, { "oranjee.net", false }, + { "oratto.co.uk", true }, + { "orbeimaginario.com", true }, { "orbitabaja.com", true }, { "orbital3.com", true }, { "orbitalcommerce.com.br", true }, @@ -52588,6 +54493,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orchidlive.com", true }, { "orchidsforum.com", true }, { "orcsnet.com", true }, + { "orcuyo.com", true }, { "ordbokpro.se", true }, { "orde.red", true }, { "ordermore.cloud", true }, @@ -52600,6 +54506,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ore.cool", true }, { "oreadstudios.com", true }, { "orebolt.cz", true }, + { "oregon2020census.gov", true }, { "oreka.online", true }, { "orel-sait.tk", true }, { "orembaeviajes.tur.ar", true }, @@ -52610,6 +54517,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orf-kartentausch.at", false }, { "orfelios.com", true }, { "orfeo-engineering.ch", true }, + { "organdonor.gov", true }, { "organica.co.za", true }, { "organisatieteam.nl", true }, { "organisationsberatung-jacobi.de", true }, @@ -52619,7 +54527,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orgoniteindonesia.com", true }, { "orgsyn.in", true }, { "orgyporngroup.com", true }, - { "orhideous.name", true }, { "orians.eu", true }, { "oribia.net", true }, { "oricejoc.com", false }, @@ -52651,6 +54558,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "orleika.io", true }, { "ormer.nl", true }, { "ornsyn.no", true }, + { "ornua.com", true }, { "oro.roma.it", true }, { "orocojuco.com", true }, { "orologeria.roma.it", true }, @@ -52663,14 +54571,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ortho-europe.com", true }, { "ortho-graz.at", true }, { "orthocop.cz", true }, + { "orthodocspro.com", true }, { "orthodontiste-geneve-docteur-rioux.com", false }, + { "orthodoxy.lt", false }, { "orthograph.ch", true }, { "orthotictransfers.com", true }, { "ortizmario.com", true }, { "ortlepp.eu", true }, - { "ortopedistamarcelocosta.com.br", true }, { "ortopertutti.it", true }, { "oruggt.is", true }, + { "orum.in", true }, { "orwell1984.today", true }, { "oryva.com", true }, { "os-s.net", true }, @@ -52689,14 +54599,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "osci.io", true }, { "oscillation-services.fr", true }, { "oscloud.com", true }, + { "oscreen.ru", true }, { "osdls.gov", true }, { "osepideasthatwork.org", true }, { "osereso.tn", true }, { "oses.mobi", true }, { "osez-l-odyssee.fr", true }, - { "oshanko.de", false }, { "oshayr.com", true }, + { "oshea.cc", true }, { "oshell.me", true }, + { "oshershalom.com", true }, { "oshrc.gov", true }, { "osielnava.com", true }, { "osimmo.fr", true }, @@ -52706,6 +54618,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oskrba.online", true }, { "oskuro.net", true }, { "osla.org", true }, + { "osledvan.com", true }, { "oslinux.net", true }, { "osm.is", true }, { "osm.ovh", true }, @@ -52721,17 +54634,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "osomagicmountain.com", true }, { "osomjournal.org", true }, { "ospf.sk", true }, + { "osrs.wiki", true }, { "osszekotatermeszettel.hu", true }, - { "ostachstore.com", true }, - { "ostan-collections.net", true }, { "ostankino.tk", true }, { "ostechnix.com", true }, { "osteendiner.com", true }, + { "osteopathe-palaiseau.com", true }, { "osterkraenzchen.de", true }, { "osterlensyd.se", true }, { "ostgotamusiken.se", true }, { "osti.gov", true }, { "ostimwebyazilim.com", true }, + { "osto.us", true }, { "ostr.io", true }, { "ostrov8.com", true }, { "ostylelimo.com", true }, @@ -52745,9 +54659,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oswbouncycastles.co.uk", true }, { "osx86spain.com", true }, { "oszri.hu", true }, + { "ota365.com", true }, { "otakubox.de", true }, { "otakurepublic.com", true }, - { "otakurumi.de", false }, + { "otakurumi.de", true }, { "otchecker.com", true }, { "otdelka56.ml", true }, { "otdyh-v-abhazii.tk", true }, @@ -52791,7 +54706,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "otzyvy2.ru", true }, { "ouaibe.qc.ca", true }, { "ouattara.ch", true }, - { "ouest-annonces.com", true }, { "ouestfrance-auto.pro", true }, { "ouestsolutions.com", true }, { "ouglor.com", true }, @@ -52809,6 +54723,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ourevents.net", true }, { "ourfavorite-kakamigahara.jp", true }, { "ourladymountcarmel.net", true }, + { "ourladymtcarmel.org", true }, { "ourladyofcalvary.org", true }, { "ourladyoftheassumptionchurch.org", true }, { "ourladyqueenofmartyrs.org", true }, @@ -52836,6 +54751,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "outdoorlightingthousandoaks.com", true }, { "outdoorlightingwestlakevillage.com", true }, { "outdoormixfestival.com", true }, + { "outdoorstop.net", true }, { "outdoortrip.com", true }, { "outerlimitsdigital.com", true }, { "outetc.com", true }, @@ -52847,11 +54763,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "outinjersey.net", true }, { "outka.xyz", true }, { "outline.ski", true }, + { "outline.vn", true }, { "outlookonthedesktop.com", true }, + { "outnow.ch", true }, { "outofcontrol.ca", true }, + { "outoftheboxfitness.com", true }, { "outplnr.fr", true }, { "outpostinfo.com", true }, - { "output.clothing", true }, + { "outshinesolutions.nl", true }, { "outsideconnections.com", true }, { "outsiders.paris", false }, { "outstack.vote", true }, @@ -52863,13 +54782,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ovabastecedoraindustrial.com", true }, { "ovejabohemia.com", true }, { "ovelhaostra.com", false }, - { "overalglas.nl", true }, - { "overamsteluitgevers.nl", true }, { "overclockers.ge", true }, { "overdrive-usedcars.be", false }, { "overframe.gg", true }, { "overijsselsemerentocht.nl", true }, { "overlandireland.ie", true }, + { "overlord.network", true }, { "overnetfaq.tk", true }, { "overnightglasses.com", true }, { "overpb.gq", true }, @@ -52883,7 +54801,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "overstemmen.nl", true }, { "overstockpromote.com", true }, { "overthecloud.it", true }, - { "overthinkingit.com", true }, { "overwall.org", true }, { "overwatchss.club", true }, { "overzicht.pro", true }, @@ -52915,6 +54832,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ownagepranks.com", true }, { "ownc.at", true }, { "owncloud.ch", true }, + { "owncloud.help", true }, { "owner.pw", true }, { "ownian.com", true }, { "ownmay.com", false }, @@ -52922,6 +54840,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "owntournament.org", true }, { "oxanababy.com", true }, { "oxborrow.ca", true }, + { "oxegenmedia.com", true }, { "oxelie.com", false }, { "oxfordbio.com", true }, { "oxfordurgentclinic.com", true }, @@ -52933,12 +54852,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oxsec.co.uk", true }, { "oxt.co", true }, { "oxygenit.co.za", true }, - { "oxygin.net", true }, + { "oxygin.net", false }, { "oxymail.ru", true }, { "oxynux.xyz", true }, { "oxyx.tk", true }, { "oxz.me", true }, { "oxzeth3sboard.com", true }, + { "oyama-conf.com", true }, { "oyashirosama.tokyo", true }, { "oyesunn.com", true }, { "oyk13tyuj8ljpete31edj2tes-9if7bi.com", false }, @@ -52948,7 +54868,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oysterworldwide.com", true }, { "oyungg.net", true }, { "oyunmadeni.tk", true }, - { "oyunpat.com", true }, { "oz-style.com", true }, { "ozalp.dk", true }, { "ozark.be", true }, @@ -52957,11 +54876,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "oznamovacipovinnost.cz", true }, { "ozonstyle.ga", true }, { "ozvolvo.org", true }, + { "p-0.me", true }, + { "p-art.design", true }, { "p-damda.com", true }, { "p-mint.jp", true }, { "p-p.site", true }, { "p-pc.de", true }, { "p-s-b.com", true }, + { "p-soc.com.br", true }, { "p-store.net", true }, { "p-t.io", true }, { "p1979.com", true }, @@ -53038,8 +54960,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p333w.com", true }, { "p333x.com", true }, { "p333y.com", true }, - { "p333z.com", true }, - { "p365.vip", true }, + { "p333z.com", false }, + { "p365.vip", false }, { "p36533.com", true }, { "p36594.com", true }, { "p4chivtac.com", true }, @@ -53058,9 +54980,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "p6729.co", true }, { "p6957.co", true }, { "p81365.com", true }, - { "p81818.com", true }, { "p82365.com", true }, - { "p888010.com", true }, + { "p888010.com", false }, { "p9165.com", true }, { "p91aa.com", true }, { "p9297.co", true }, @@ -53081,6 +55002,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pablo.io", true }, { "pablo.scot", true }, { "pablo.sh", true }, + { "pabloalbertoazar.com", true }, { "pabloartea.ga", true }, { "pabloarteaga.co.uk", true }, { "pabloarteaga.com", true }, @@ -53108,10 +55030,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pacchioni.me", true }, { "paccolat.name", true }, { "pace.car", true }, + { "pacecounsel.com", true }, { "paced.me", true }, { "paceda.nl", true }, { "pacelink.de", true }, { "pacifco.com", true }, + { "pacificarperu.com", true }, { "pacificautobody.net", true }, { "pacificbeachpub.com", true }, { "pacificcashforcars.com.au", true }, @@ -53126,10 +55050,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pacifictilkin-occasions.be", false }, { "pacifique-web.nc", true }, { "pack-haus.de", true }, + { "pack.io", true }, { "packagingproject.management", true }, { "packagist.jp", true }, { "packagist.org", false }, { "packaware.com", true }, + { "packer.io", false }, { "packetapp.ru", true }, { "packetcrash.net", true }, { "packetdigital.com", true }, @@ -53145,7 +55071,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "padberx-marketing-consultants.de", true }, { "paddy.rocks", true }, { "padelbox.de", true }, - { "padeoe.com", true }, { "pader-deko.de", true }, { "padkit.org", true }, { "padpilot.co", true }, @@ -53153,6 +55078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "padshah.tk", true }, { "paducaheic.com", true }, { "padzilla.com", true }, + { "paediatricdata.eu", true }, { "paedlink.ca", true }, { "paesi.info", true }, { "paf-events.ch", false }, @@ -53176,8 +55102,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pagedesignpro.com", true }, { "pagedesignweb.com", true }, { "pagefulloflies.io", true }, + { "pagenstedt.de", true }, { "pagerduty.com", true }, { "pages-tocaven.com", true }, + { "pagespeedtweaks.com", true }, { "pagewizz.com", true }, { "pagiamtzis.com", true }, { "pagina394.com.br", true }, @@ -53190,12 +55118,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pahealthbilling.com", true }, { "pahlawanpulsa.com", true }, { "paichai.space", false }, + { "paidikasymeon.gr", true }, { "paiementdp.com", true }, + { "paigejulianne.com", true }, { "paincareehr.com", true }, { "paindata.dk", true }, { "painefamily.co.uk", true }, + { "painetcompagnie.fr", true }, { "painosso.org", true }, { "paint-it.pink", true }, + { "paint4.life", true }, { "paintball-ljubljana.si", true }, { "paintball-shop.sk", true }, { "paintbrush.ga", true }, @@ -53222,17 +55154,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paknetworking.org", true }, { "pakremit.com", true }, { "paktolos.net", true }, - { "palapadev.com", true }, + { "palabr.as", true }, { "palariviera.com", true }, { "palary.work", true }, { "palatetotable.com", true }, { "palatin.at", true }, { "palationtrade.com", true }, + { "palaubluetours.com", true }, { "palava.tv", true }, { "palavalbasket.it", true }, { "palavatv.com", true }, { "palawan.jp", false }, - { "palazzo.link", true }, { "palazzo.work", true }, { "palazzotalamo.it", true }, { "palebluedot.de", true }, @@ -53247,16 +55179,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paleosquawk.com", true }, { "palermoantagonista.tk", true }, { "palermopride.it", true }, + { "palessit.com", true }, { "palestra.roma.it", true }, { "paletdecor.com.ua", true }, { "palladium46.com", true }, { "palletflow.com", true }, { "palli.ch", false }, { "palmaprop.com", true }, + { "palmbeachcuisine.com", true }, + { "palmbeachwebsitehosting.com", true }, { "palmen-apotheke.de", true }, { "palner.eu", true }, { "palomardisplays.com", true }, - { "pama.fun", true }, { "pamaniqu.nl", true }, { "pamc.tk", true }, { "pamm.tk", true }, @@ -53299,6 +55233,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "panaxis.li", true }, { "panda-community.com", true }, { "panda.tf", true }, + { "pandagifts.co", false }, { "pandahut.net", true }, { "pandaltd.nl", false }, { "pandapsy.com", true }, @@ -53315,7 +55250,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paneldoorsolutions.com", true }, { "paneu.de", true }, { "panevo.com", true }, - { "panezasociados.com", true }, { "panghu.me", true }, { "pangoly.com", true }, { "panhandlemenshealth.com", true }, @@ -53329,6 +55263,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "panjiva.com", true }, { "panlex.org", true }, { "panmetro.com", true }, + { "pano-guru.com", true }, + { "pano.ie", true }, { "panopy.co", true }, { "panopy.me", true }, { "panoramahurtowni.pl", true }, @@ -53340,6 +55276,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pansino.net", true }, { "pantallasled.mx", true }, { "pantallasyescenarios.com", false }, + { "panthenolplus.co.uk", true }, + { "panthenolplus.com", true }, { "pantheoncrafters.com", true }, { "pantherage.co.uk", true }, { "panthi.lk", true }, @@ -53348,6 +55286,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pantou.org", false }, { "pants-off.xyz", true }, { "pantsu.club", true }, + { "panzdravi.cz", true }, { "panzer72.ru", true }, { "paolodemichele.it", true }, { "paolotagliaferri.com", true }, @@ -53359,6 +55298,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "papakatsu-life.com", true }, { "papakonstantinou.tk", true }, { "papapa-members.club", true }, + { "paparazzie.de", true }, { "papatest24.de", true }, { "papaya.me.uk", true }, { "papayame.com", true }, @@ -53390,6 +55330,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "par-allel.ru", true }, { "paraborsa.net", true }, { "parachute70.com", false }, + { "parachuteteam.co.uk", true }, { "paracomer.es", true }, { "paradais-sphynx.com", true }, { "paradependentesquimicos.com.br", true }, @@ -53409,6 +55350,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paragonremodeling.com", true }, { "paragontasarim.com", true }, { "paragreen.net", true }, + { "parallaxsite.com", true }, { "paramaquetas.com", true }, { "paramountelectronics.co.uk", true }, { "paranoidandroid.tk", true }, @@ -53441,7 +55383,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parentsintouch.co.uk", true }, { "parfum-selbermachen.de", true }, { "parfumer.tk", true }, - { "parfumerie-de-grasse.fr", true }, + { "parfumerie-de-grasse.fr", false }, { "pari.cz", true }, { "pariga.co.uk", true }, { "parisackerman.com", true }, @@ -53458,6 +55400,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "parkefficient.de", true }, { "parkercs.tech", true }, { "parkeren.in", true }, + { "parkerforum.cf", true }, + { "parkerforum.tk", true }, { "parkerplumbingcompany.com.au", true }, { "parkers.co.uk", true }, { "parket.gq", true }, @@ -53514,16 +55458,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "partnercardservices.com", true }, { "partnermobil.de", true }, { "partnersofprc.com", true }, - { "partnertaxhub.com", true }, { "partnerwerk.de", true }, { "partoenagua.org", true }, { "partou.de", true }, { "partridge.tech", true }, { "parts4phone.com", false }, { "partsestore.com", true }, + { "partsguysusa.com", true }, + { "partshop.be", true }, { "parturi-manner.fi", false }, { "partusedtyres.net", true }, - { "party-and-play.co.uk", true }, { "party-kneipe-bar.com", true }, { "party-time-inflatables-durham.co.uk", true }, { "partyausstatter24.de", true }, @@ -53550,7 +55494,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pasarella.eu", true }, { "pasarkoin.co", true }, { "pascal-bourhis.com", true }, - { "pascal-bourhis.net", true }, { "pascal-wittmann.de", true }, { "pascal90.de", true }, { "pascalchristen.ch", true }, @@ -53559,11 +55502,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pascalmathis.com", true }, { "pascalmathis.me", true }, { "pascalmathis.net", true }, + { "pascovotes.gov", true }, { "pascualinmuebles.com", true }, { "pasearch.nl", true }, { "pashminacachemire.com", true }, { "pasito.se", true }, { "pasnederland.tk", true }, + { "pasquinelli-truebag.ch", true }, { "pass.org.my", true }, { "passa.org", true }, { "passabook.com", true }, @@ -53586,6 +55531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "passionfiat.fr", true }, { "passionpictures.eu", true }, { "passions-art.com", true }, + { "passmefaster.net", true }, { "passover-fun.com", true }, { "passphrase.today", true }, { "passport.yandex.by", true }, @@ -53638,7 +55584,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pasztor.at", true }, { "patapwn.com", true }, { "patatbesteld.nl", true }, + { "pataterosviajeros.com", true }, { "patbatesremodeling.com", false }, + { "patchofabsence.com", true }, { "patchyvideo.com", true }, { "patdorf.com", true }, { "patechmasters.com", true }, @@ -53676,7 +55624,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "patriksima.cz", true }, { "patriksimek.cz", true }, { "patrikzk.eu", true }, - { "patriotstationatchalfont.com", true }, { "patrol-x.com", true }, { "patryk.cf", true }, { "patrz.eu", true }, @@ -53700,7 +55647,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulbdelaat.nl", true }, { "paulbramhall.uk", true }, { "paulbrown.ddns.net", true }, - { "paulchen.at", true }, + { "paulchen.at", false }, { "paulcloud.fr", true }, { "paulcoldren.org", true }, { "paulcooper.me.uk", true }, @@ -53714,6 +55661,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paulmeier.com", false }, { "pauloalcobianeves.pt", true }, { "paulocolacino.tk", true }, + { "paulomonteiro.pt", true }, { "paulorochago.com.br", true }, { "paulov.com", true }, { "paulov.info", true }, @@ -53740,6 +55688,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pavamtio.cz", true }, { "pavando.com", false }, { "pavelfojt.cz", true }, + { "pavelfucik.com", true }, + { "pavelfucik.cz", true }, + { "pavelfucik.eu", true }, { "pavelitus.tk", true }, { "paveljanda.com", true }, { "pavelrebrov.com", true }, @@ -53784,7 +55735,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "paymill.de", true }, { "paymon.tj", true }, { "paymongo.com", true }, - { "paymongo.me", true }, { "paymyphysician.com", true }, { "paynet.com.co", true }, { "payoff.com", true }, @@ -53809,6 +55759,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pback.se", true }, { "pbcables.tk", true }, { "pbcknd.ml", true }, + { "pbdigital.org", true }, { "pborn.eu", true }, { "pbosquet.com", false }, { "pbourhis.me", true }, @@ -53829,11 +55780,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pcatv.org", true }, { "pcbmarketing.gq", true }, { "pcbricole.fr", true }, + { "pcccthicongcungcap.com", true }, { "pcdbank.com", true }, { "pcdn.cf", true }, { "pcdocjim.com", true }, { "pcel.com", true }, { "pcexpress.tk", true }, + { "pcf-frankfurt.de", true }, { "pcf92.fr", true }, { "pcfeuerwehr.de", true }, { "pcgamingfreaks.at", true }, @@ -53846,7 +55799,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pcidss.hu", true }, { "pcisecuritystandards.org", true }, { "pcissc.org", true }, - { "pcjsercon.com", true }, { "pckurzypd.sk", true }, { "pclaeuft.de", true }, { "pclob.gov", true }, @@ -53857,10 +55809,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pcnotdienst-oldenburg-rastede.de", true }, { "pcprkolo.pl", true }, { "pcr24.ru", true }, - { "pcrab.ml", false }, + { "pcrab.ml", true }, { "pcrabme.com", true }, { "pcrypt.org", true }, - { "pcs2.gr", true }, { "pcsetting.com", true }, { "pcsremodel.com", true }, { "pctonic.net", true }, @@ -53883,6 +55834,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pdkrawczyk.com", true }, { "pdox.net", true }, { "pdragt.com", true }, + { "pdstudios.cz", true }, + { "pdtech.ltd", true }, { "pdthings.net", true }, { "pdxdeli.com", true }, { "pdxtowncar.net", true }, @@ -53894,7 +55847,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peaceispossible.cc", true }, { "peacekeeper.tk", true }, { "peaceloveandlabor.com", true }, - { "peakhomeloan.com", true }, { "peakslead.com", true }, { "peaksloth.com", true }, { "peakvets.co.uk", true }, @@ -53903,24 +55855,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pear2pear.de", true }, { "pearbloom.com", true }, { "pearcom.co.uk", true }, - { "pearlcohen.com", true }, { "pearlsonly.ca", true }, { "pearlsonly.com", true }, { "pearlsonly.com.au", true }, { "pearlsonly.de", true }, { "peatsbeast.com", false }, - { "peaudorange.net", true }, { "peawo.com", true }, - { "pebbleparents.com", true }, + { "pebbleparents.com", false }, { "pebblepointapartmentsstl.com", true }, { "pebbles.net.in", true }, + { "pebmarketing.nl", true }, { "pecheneg.tk", true }, { "pechonova.com", true }, { "pecker-johnson.com", true }, { "peda.net", true }, { "pedago.it", true }, + { "pedaleuse.be", true }, { "pedalsbarcelona.com", true }, - { "peddock.com", true }, { "peddy.dyndns.org", true }, { "pediatersucha.sk", true }, { "pedicurean.nl", true }, @@ -53935,6 +55886,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peekier.com", true }, { "peelland-fm.tk", true }, { "peen.ch", true }, + { "peenor.xyz", true }, { "peep.gq", true }, { "peepsfoundation.org", false }, { "peer.travel", true }, @@ -53970,6 +55922,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peetah.com", true }, { "peeters.io", true }, { "peev.io", true }, + { "pefricea.com", true }, { "pegas-studio.net", true }, { "peifi.de", false }, { "peippo.at", true }, @@ -53991,6 +55944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pelotonimports.com", true }, { "peluqueriaalcobendas.com", true }, { "peluqueriaalcobendas.es", true }, + { "pem-jp.co.uk", true }, { "pemagrid.org", true }, { "pemborongbangunan.id", true }, { "pems.gov.au", true }, @@ -54018,7 +55972,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "penispumpen.se", true }, { "pennergold.net", true }, { "pennington.io", true }, - { "pennyparkerpaper.com", true }, { "penrithapartments.com.au", true }, { "pens.com", true }, { "pensacolawinterfest.org", true }, @@ -54026,6 +55979,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pensador.info", true }, { "pensioenfonds-ey.nl", true }, { "pension-am-alten-waschhaus.de", true }, + { "pension-veldzigt.nl", true }, { "pensionecani.milano.it", true }, { "pensionecani.roma.it", true }, { "pensioner-1000.tk", true }, @@ -54038,11 +55992,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pentatec.de", true }, { "pentechealth.com", true }, { "pentest.blog", true }, - { "pentest.nl", true }, { "pentesterlab.com", true }, + { "pentestit.com", true }, { "pentofun.ch", true }, { "pentoo.ch", true }, { "pentools.org", true }, + { "penuelaspr.gov", true }, { "penz.media", true }, { "penza-on-line.tk", true }, { "penza-today.tk", true }, @@ -54067,12 +56022,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pequenosfavoritos.com.br", false }, { "per-olsson.se", true }, { "perala.me", true }, + { "perantiguru.com", true }, { "peraparker.cz", true }, + { "perceptivemeded.com", true }, { "percolate.com", true }, { "percraft.com", true }, { "percy.io", true }, { "percyflix.com", true }, { "perd.re", true }, + { "pereceh.eu.org", true }, { "perecraft.com", true }, { "peredoz.tk", true }, { "pereuda.com", true }, @@ -54090,7 +56048,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "perfectcloud.org", true }, { "perfectfocuseyecare.com", true }, { "perfectgarden.es", true }, - { "perfectgift.com", true }, { "perfectoparty.co.uk", true }, { "perfectsnap.co.uk", true }, { "perfectstreaming.systems", true }, @@ -54111,12 +56068,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "periodismoactual.com", true }, { "periscope.tv", true }, { "perishablepress.com", true }, - { "perka.com", true }, + { "perlbanjo.com", true }, { "perm-avia.ru", true }, { "perm-jur.ch", true }, { "perm-juridique.ch", true }, { "perm4.com", true }, { "permaculture.cf", true }, + { "permaculture.co.uk", true }, { "permajackofstlouis.com", true }, { "permanence-juridique.com", true }, { "permanencejuridique-ge.ch", true }, @@ -54128,13 +56086,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "permisecole.com", true }, { "permistheorique.be", true }, { "permistheoriqueenligne.be", true }, - { "perniciousgames.com", true }, + { "perniciousgames.com", false }, { "perot.me", true }, { "perpetual.ga", true }, { "perpetualemotion.com", true }, { "perrau.lt", true }, { "perron.ml", true }, - { "perrone.co", true }, { "perroquet-passion.ch", false }, { "pers-hr.tk", true }, { "persefonne.com", true }, @@ -54142,13 +56099,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "persiart.shop", true }, { "persiennkompaniet.se", true }, { "persjrp.ca", true }, - { "persocloud.org", true }, { "persoform.ch", true }, { "personadecoded.com", true }, { "personal-genome.com", true }, { "personal-injury-attorney.co", true }, { "personalfunctionaldata.net", true }, { "personalidadmagnetica.com", true }, + { "personalityjunkie.com", true }, { "personalitymax.com", true }, { "personaljokes.ml", true }, { "personalnames.net.ru", true }, @@ -54188,6 +56145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "petcarvers.com", true }, { "petech.ro", true }, { "petelew.is", true }, + { "peter-hennes.de", true }, { "peter-hurtenbach.de", false }, { "peter-r.co.uk", true }, { "peter.org.ua", true }, @@ -54201,6 +56159,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterfiorella.com", true }, { "peterfolta.net", true }, { "peterheery.me", true }, + { "peterhennes.de", true }, { "peterhons.com.au", true }, { "peterhuetz.at", true }, { "peterhuetz.com", true }, @@ -54210,15 +56169,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "peterkshultz.com", false }, { "peterlew.is", true }, { "petermaar.com", true }, + { "peternagy.ie", true }, { "peters.consulting", true }, + { "peterslavik.com", true }, { "petersontoscano.com", true }, { "petervaldesii.com", false }, - { "petervanleeuwentweewielers.nl", true }, { "petfa.ga", true }, + { "petherwick.co.uk", true }, + { "petherwick.com", true }, + { "petherwicks.co.uk", true }, + { "petherwicks.com", true }, + { "pethood.com.au", true }, { "pethub.com", true }, { "petit-archer.com", true }, { "petite-maison.ch", true }, { "petitsfrenchies.com", true }, + { "petitu.mx", true }, { "petja.me", false }, { "petlife.od.ua", true }, { "petlife.vet", true }, @@ -54249,7 +56215,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "petruzz.net", true }, { "petschnighof.at", true }, { "petstoredog.com", true }, - { "pettitcoat.com", true }, { "petto.com.co", true }, { "peturnashes.ga", true }, { "petwall.info", true }, @@ -54271,16 +56236,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pfarreiengemeinschaft-neuerburg.de", true }, { "pfcafeen.dk", true }, { "pfd-nz.com", false }, + { "pfdevroye.com", true }, { "pfefferkuchen-shop.de", true }, { "pfefferkuchenprinzessin-dresden.de", true }, + { "pferdesportclub-chiemgau.de", true }, { "pfeuffer-elektro.de", true }, { "pfft.net", true }, + { "pfish.zone", true }, { "pfk.org.pl", true }, { "pflan.dk", true }, { "pflanzen-shop.ch", true }, { "pflanzenshop-emsland.de", true }, { "pfmeasure.com", true }, - { "pfnext.de", true }, { "pfolta.net", true }, { "pfonks.com", true }, { "pfotentour-berlin.de", true }, @@ -54303,7 +56270,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ph-blog.de", true }, { "ph.search.yahoo.com", false }, { "ph3r3tz.net", true }, - { "phanmemcuocsong.com", false }, { "phantasie.cc", true }, { "phantastikon.de", true }, { "phantomfund.ml", true }, @@ -54328,6 +56294,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phasme-2016.com", true }, { "phattea.tk", true }, { "phaux.uno", true }, + { "phbits.com", true }, + { "phc-sa.com", true }, { "phcimages.com", true }, { "phcnetworks.net", false }, { "phcorner.net", true }, @@ -54338,22 +56306,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phelx.de", true }, { "phen-garcinia.info", true }, { "phenixairsoft.com", true }, + { "phenonline.com", true }, { "phenq.com", true }, { "pheramoan.com", true }, { "pheramoans.com", true }, { "phero.com", true }, { "pheroforce.com", true }, { "pherologie.com", true }, - { "pherology.com", true }, { "pheromeon.com", true }, { "pheromeons.com", true }, { "pheromoans.com", true }, { "pheromoen.com", true }, { "pheromoens.com", true }, + { "pheromones.co", true }, + { "pheromonetalk.com", true }, { "pheromonez.com", true }, { "pheronome.com", true }, { "pheronomes.com", true }, { "pheros.com", true }, + { "pherotalk.com", true }, { "pheroz.com", true }, { "phget.com", true }, { "phi-works.com", true }, @@ -54381,8 +56352,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "philippa.cool", true }, { "philippbirkholz.com", true }, { "philippbirkholz.de", true }, - { "philippe-mignotte.fr", true }, + { "philippe-metayer-platrier.fr", true }, { "philippebonnard.fr", true }, + { "philippegoffin.be", true }, { "philipperoose.be", false }, { "philippestudiopro.com", true }, { "philippheenen.de", false }, @@ -54395,6 +56367,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phillipgoldfarb.com", true }, { "phillippe-lemarc.ch", true }, { "phillippi.me", true }, + { "philly-injury-law.com", true }, { "philna.sh", true }, { "philo.shop", true }, { "philomathiclife.com", true }, @@ -54416,7 +56389,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phishingusertraining.com", true }, { "phive.eu", true }, { "phligence.com", true }, + { "phoenixcourt.gov", true }, { "phoenixlogan.com", true }, + { "phoenixmunicipalcourt.gov", true }, { "phoenixnest.ltd", true }, { "phoenixnow.org", true }, { "phoenixurbanspaces.com", true }, @@ -54432,6 +56407,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phonenumberfind.tk", true }, { "phonetikos.com", true }, { "phongthuyanthinh.vn", false }, + { "phongthuyhoangmanh.vn", true }, { "phonix-company.fr", true }, { "phormance.com", true }, { "phosagro.biz", false }, @@ -54500,8 +56476,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phuket-idc.com", true }, { "phuket-idc.de", true }, { "phuket-nash.ga", true }, + { "phuket-rawai.school", true }, { "phukienchanh.com", true }, { "phulyshop.com", true }, + { "phumin.in.th", true }, { "phuoctran.com", true }, { "phuoctran.com.vn", true }, { "phuoctran.me", true }, @@ -54511,6 +56489,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "phurl.de", true }, { "phurl.io", true }, { "phyley.com", true }, + { "phyllischerry.com", true }, { "physicalism.com", true }, { "physicalist.com", true }, { "physicpezeshki.com", false }, @@ -54518,13 +56497,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "physik.hu", true }, { "physiobiggerawaters.com.au", true }, { "physiobroadbeach.com.au", true }, + { "physioteam-franz.de", true }, { "physiotherapie-seiwald.de", true }, { "physiovesenaz.ch", false }, { "pi-control.de", true }, { "pi-dash.com", true }, { "pi-net.dedyn.io", true }, { "pi-supply.com", true }, - { "pi3kum.com", true }, { "pianetaottica.com", false }, { "pianetaottica.eu", true }, { "pianetaottica.info", true }, @@ -54534,7 +56513,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pianos.de", true }, { "pianyigou.com", true }, { "piasto.com.cy", true }, + { "piata.com.br", true }, { "piatika.com", true }, + { "piazzafrancesco.com", true }, { "piboubes.me", true }, { "pic.gov", false }, { "pic.sr", true }, @@ -54543,9 +56524,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "picchietti.io", true }, { "piccirello.com", true }, { "piccolo-parties.co.uk", true }, + { "pick.aw", true }, { "pick150.hu", true }, { "picka.gift", true }, { "pickabrain.fr", true }, + { "pickaw.click", true }, + { "pickaw.com", true }, + { "pickaw.link", true }, { "pickawaycountyohio.gov", true }, { "pickelhaubes.com", true }, { "picklinik.id", true }, @@ -54571,6 +56556,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pidginhost.com", true }, { "pidibagrik.cz", true }, { "pidjipi.com", true }, + { "pidmanager.de", true }, { "pie-express.xxx", true }, { "pieceofme.be", false }, { "pieces-or.com", true }, @@ -54586,6 +56572,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "piepermail.nl", true }, { "pieq.eu", true }, { "pieq.eu.org", true }, + { "pier1url.com", true }, { "pier23.org", false }, { "pier28.com", true }, { "piercing.hu", true }, @@ -54620,7 +56607,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pijusmagnificus.com", true }, { "pik.bzh", true }, { "pikafederation.ca", true }, - { "pikboxstore.com", true }, { "piken.eu", true }, { "pikimusic.moe", true }, { "pikio.pl", true }, @@ -54635,12 +56621,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "piliszek.net", true }, { "pill.id", true }, { "pillitteriobgyn.com", true }, + { "pillowcast.net", true }, { "pillowfort.pub", true }, { "pilot-colleges.com", true }, { "pilot.co", false }, { "pilotgrowth.com", true }, { "pilsoncontracting.com", true }, { "pilvi.pw", true }, + { "pilvi.space", true }, { "pilvin.pl", true }, { "pimanta.com", true }, { "pimg136.com", true }, @@ -54657,12 +56645,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pincha.com.tw", false }, { "pinchuk.tk", true }, { "pincodeit.com", true }, + { "pincong.rocks", true }, { "pindanutjes.be", false }, { "pinebaylibrary.org", true }, { "pinellaslaser.com", true }, { "pinemountainnursery.com.au", true }, { "pinemountbaptistchurch.org", true }, { "pinetopazrealestate.com", true }, + { "pingu.info", true }, { "pingworks.com", true }, { "pingworks.de", true }, { "pingworks.eu", true }, @@ -54679,7 +56669,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinkinked.com", true }, { "pinklecfest.org", true }, { "pinklittlenotebook.com", true }, - { "pinkmango.travel", true }, { "pinkoi.com", true }, { "pinksec.com.au", true }, { "pinkwalk.co.nz", true }, @@ -54698,6 +56687,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pinpromosisemarang.com", true }, { "pinscher.com.br", true }, { "pinskupakki.fi", true }, + { "pinster.com", true }, { "pinterest.at", true }, { "pinterest.co.uk", true }, { "pinterest.com", true }, @@ -54710,6 +56700,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pintiaux.com", true }, { "pintosbeeremovals.co.za", true }, { "pintoselectricfencing.co.za", true }, + { "pintoselectrician.co.za", true }, { "pintosplumbing.co.za", true }, { "pinup-app.com", true }, { "pioneer-car.eu", true }, @@ -54720,6 +56711,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pipeuro.com", true }, { "pipfrosch.com", true }, { "pippenainteasy.com", true }, + { "piprotec.com", true }, + { "pipscprd.ca", true }, { "piraeuspress.gr", true }, { "piramalglassusa.com", true }, { "piranhaattack.tk", true }, @@ -54776,7 +56769,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pistonkandidatu.tk", true }, { "pistonpowered.com", true }, { "pisupp.ly", true }, - { "pitaiabank.com", true }, { "pitaiatrade.com", true }, { "pitbooks.ga", true }, { "pitbullsecuritysolutions.ca", true }, @@ -54833,44 +56825,44 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pizzafest.ddns.net", true }, { "pizzagigant.hu", true }, { "pizzahut.ru", true }, - { "pizzalongaway.it", true }, { "pizzamc.eu", true }, + { "pizzariapartiupizza.com.br", true }, { "pizzeria-mehrhoog.de", true }, { "pizzeriaamadeus.hr", true }, { "pizzeriacolore.com", true }, - { "pj1100.cc", true }, - { "pj11018.com", true }, - { "pj21299.com", true }, - { "pj21399.com", true }, - { "pj21499.com", true }, - { "pj21566.com", true }, - { "pj21599.com", true }, - { "pj21677.com", true }, - { "pj21678.com", true }, - { "pj21866.com", true }, - { "pj21877.com", true }, - { "pj21886.com", true }, - { "pj21887.com", true }, - { "pj21899.com", true }, - { "pj21990.com", true }, - { "pj21991.com", true }, - { "pj21992.com", true }, - { "pj21993.com", true }, - { "pj21994.com", true }, - { "pj21995.com", true }, - { "pj21996.com", true }, - { "pj21997.com", true }, - { "pj21998.com", true }, - { "pj21aa.com", true }, - { "pj21bb.com", true }, - { "pj21c.com", true }, - { "pj21f.com", true }, - { "pj21g.com", true }, - { "pj21gg.com", true }, - { "pj21i.com", true }, - { "pj21j.com", true }, + { "pizzeriasmallorca.com", true }, + { "pj11018.com", false }, + { "pj21299.com", false }, + { "pj21399.com", false }, + { "pj21499.com", false }, + { "pj21566.com", false }, + { "pj21599.com", false }, + { "pj21677.com", false }, + { "pj21678.com", false }, + { "pj21866.com", false }, + { "pj21877.com", false }, + { "pj21886.com", false }, + { "pj21887.com", false }, + { "pj21899.com", false }, + { "pj21990.com", false }, + { "pj21991.com", false }, + { "pj21992.com", false }, + { "pj21993.com", false }, + { "pj21994.com", false }, + { "pj21995.com", false }, + { "pj21996.com", false }, + { "pj21997.com", false }, + { "pj21998.com", false }, + { "pj21aa.com", false }, + { "pj21bb.com", false }, + { "pj21c.com", false }, + { "pj21f.com", false }, + { "pj21g.com", false }, + { "pj21gg.com", false }, + { "pj21i.com", false }, + { "pj21j.com", false }, { "pj21k.com", true }, - { "pj21kk.com", true }, + { "pj21kk.com", false }, { "pj21m.com", true }, { "pj21n.com", true }, { "pj21o.com", true }, @@ -54892,21 +56884,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pjax.xyz", true }, { "pjentertainments.co.uk", true }, { "pjgj16.com", true }, - { "pjgj18.com", true }, { "pjleisure.co.uk", true }, { "pjo.no", true }, - { "pjp.com.mt", true }, { "pjshop.cf", true }, { "pjuu.com", false }, { "pjylb.com", true }, { "pk.search.yahoo.com", false }, { "pk.wiki", true }, + { "pk6132.com", true }, + { "pk8.com", true }, { "pk8k.com", true }, + { "pk9.com", true }, { "pkbjateng.com", true }, { "pkbjateng.or.id", true }, { "pkdhungthinh.com", true }, { "pkeus.de", true }, { "pkgt.de", false }, + { "pkgviewer.com", true }, { "pkirwan.com", true }, { "pkisolutions.com", true }, { "pko.ch", false }, @@ -54931,7 +56925,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "placker.com", true }, { "plae.com.au", true }, { "plaettliaktion.ch", true }, - { "plage-les-pirates.fr", true }, + { "plage-les-pirates.fr", false }, { "plagiarismcheck.org", true }, { "plainbulktshirts.co.za", true }, { "plainjs.com", true }, @@ -54952,7 +56946,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plandegralba.net", true }, { "planecon.nz", true }, { "planeexplanation.com", true }, - { "planespotterblog.de", true }, + { "planer.me", true }, { "planet-work.com", true }, { "planet.live", true }, { "planeta-deti.org", true }, @@ -54977,7 +56971,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "planetromeo.com", true }, { "planetromeofoundation.org", true }, { "planetsoftware.com.au", true }, - { "planhub.com", true }, + { "planettimer.com", true }, { "planify.io", false }, { "planisys.net", true }, { "planitz.com", true }, @@ -55000,7 +56994,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plantron.gr", true }, { "plantroon.com", true }, { "plantrustler.com", true }, + { "plantsupplement.co.uk", true }, { "planujemywesele.pl", true }, + { "planungsregion-abw.de", true }, { "planup.fr", true }, { "planview.com", true }, { "plaque-funeraire.fr", true }, @@ -55008,6 +57004,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plassmann.ws", true }, { "plastdesign.com.ua", true }, { "plastic-id.com", true }, + { "plastic2print.com", true }, { "plasticbags.co.uk", true }, { "plasticosbiobasados.com", true }, { "plasticstare.com", true }, @@ -55022,15 +57019,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "platformadmin.com", true }, { "platformlms.org", true }, { "platinapump.com", true }, + { "platinumexpress.com.ar", true }, { "platomania.eu", true }, { "platomania.nl", true }, { "platten-nach-mass.de", true }, { "platter.ga", true }, { "platterlauncher.com", true }, + { "platypiduses.com", true }, { "plavdoma.com.ua", true }, { "play", true }, { "play-casino-japan.com", true }, { "play-charades.com", true }, + { "play-the-furyu.com", true }, { "play.cash", true }, { "play.google.com", true }, { "playandwin.co.uk", true }, @@ -55041,17 +57041,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "playelephant.com", true }, { "playerdb.co", true }, { "playerhunter.com", false }, - { "players2gather.com", true }, { "playfinder.com", true }, - { "playform.cloud", true }, + { "playform.cloud", false }, { "playhappywheelsunblocked.com", true }, { "playinfinity.com", true }, { "playinfinityvr.com", true }, + { "playit.rs", true }, { "playlisten.radio.br", true }, { "playmfe.com", true }, { "playmytime.com", true }, { "playnation.io", true }, { "playnow.com", true }, + { "playnuganug.com", true }, { "playocean.net", true }, { "playpirates.com", true }, { "playreal.city", true }, @@ -55108,10 +57109,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plny.eu", true }, { "plob.org", true }, { "plochka.bg", true }, + { "ploegleiderbhv.nl", true }, { "ploi.io", true }, { "plokko.com", true }, { "plongee-phuket.fr", true }, - { "plot.ly", true }, { "plotbubble.com", true }, { "ploxel.com", true }, { "plr4wp.com", true }, @@ -55151,12 +57152,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plus15.ml", true }, { "plus1s.site", true }, { "plus1s.tk", true }, - { "pluscbdoil.com", true }, { "pluslink.co.jp", true }, { "plusmobile.fr", true }, { "plusreed.com", true }, { "plussizereviews.com", true }, { "plusstreamfeed.appspot.com", true }, + { "plustream.com", true }, { "pluta.net", true }, { "pluth.org", true }, { "plutiedev.com", true }, @@ -55170,6 +57171,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "plzz.de", true }, { "pm-onboarding-external-dev.azurewebsites.net", true }, { "pm-partners-management-dev.azurewebsites.net", true }, + { "pm.gov.au", true }, + { "pm.link", true }, { "pm.me", true }, { "pm13.cz", true }, { "pm13.org", true }, @@ -55192,6 +57195,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pmessage.ch", true }, { "pmf.gov", true }, { "pmg-offshore-company.com", true }, + { "pmg-p4p.de", true }, { "pmg-purchase.com", true }, { "pmg-purchase.net", true }, { "pmi.gov", true }, @@ -55205,14 +57209,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pmsacorp.com", true }, { "pmsf.eu", true }, { "pmsfdev.com", true }, + { "pmsoft.nl", false }, { "pmt-documenten.nl", true }, { "pn.id.lv", true }, { "pnakosoft.com", true }, { "pnakosoft.com.au", true }, + { "pnawrocki.com", true }, { "pneu01.fr", true }, { "pneu74.fr", true }, { "pneuhaus-lemp.ch", true }, - { "pnfc.re", true }, + { "pneumogalati.ro", true }, { "pnimmobilier.ch", false }, { "pnnl.gov", true }, { "pnoec.org.do", true }, @@ -55338,7 +57344,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pocitacezababku.cz", true }, { "pocketfruity.com", true }, { "pocketinsure.com", true }, - { "pocketmemories.net", true }, { "pocketpasta.com", true }, { "pocobelli.ch", false }, { "pocpok.com", true }, @@ -55360,6 +57365,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "poe.digital", true }, { "poed.com.au", true }, { "poed.net.au", true }, + { "poemerx.com", true }, + { "poemerx.net", true }, { "poemlife.com", true }, { "poemwall.ml", true }, { "poetenblog.tk", true }, @@ -55373,6 +57380,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pogotowiekomputeroweolsztyn.pl", true }, { "pogrebisky.net", true }, { "pogs.us", true }, + { "pohatta.com", true }, { "pohlednice-tap.cz", true }, { "pohlmann.io", true }, { "poiema.com.sg", false }, @@ -55390,13 +57398,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pointum.com", true }, { "pointworksacademy.com", true }, { "pointzip.ml", true }, + { "poirierlavoie.ca", true }, { "poisk.kharkov.ua", true }, { "poitiers-ttacc-86.eu.org", true }, - { "pojarnayabezopasnost-gov.ru", true }, + { "pojdnafp.cz", true }, { "pojer.me", true }, { "pokalsocial.de", true }, { "pokazy-iluzji.pl", true }, { "poke.blue", true }, + { "pokedex.mobi", true }, { "pokefarm.com", true }, { "pokeforest.io", true }, { "pokeinthe.io", true }, @@ -55432,7 +57442,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "police-schools.com", true }, { "policereferencecheck.com", true }, { "policesromandesrecrutement.ch", true }, - { "policyreporter.com", false }, + { "policyreporter.com", true }, { "policyreporter.us", true }, { "polimer39.ml", true }, { "polinet.de", true }, @@ -55448,6 +57458,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polish.directory", true }, { "polishforums.com", false }, { "polishmarriage.org", true }, + { "polishmodels.net", true }, { "polishtranslation.com", true }, { "polishwomen.com", true }, { "polisipati.tk", true }, @@ -55474,7 +57485,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pollingplace.uk", true }, { "pollpodium.nl", true }, { "polly.spdns.org", true }, + { "pollybarks.com", true }, { "polog.tk", true }, + { "pologalileo.eu", true }, { "polomack.eu", true }, { "poloniainfo.com", true }, { "polska-robota.com.ua", true }, @@ -55482,7 +57495,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polskienewsy.tk", true }, { "poly-fast.com", true }, { "polybius.io", true }, - { "polychainlabs.com", true }, { "polycoise.com", true }, { "polycraftual.co.uk", true }, { "polyfluoroltd.com", false }, @@ -55490,7 +57502,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polygraphi.ae", true }, { "polymake.org", true }, { "polymathematician.com", true }, - { "polymorph.rs", true }, { "polynomapp.com", true }, { "polypane.rocks", true }, { "polypet.com.sg", true }, @@ -55499,9 +57510,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "polytechecosystem.vc", true }, { "polytekniskforening.dk", true }, { "pomar.club", true }, + { "pomdoc.com", true }, { "pomegranate.productions", true }, { "pomelo-paradigm.com", true }, - { "pomfe.co", true }, { "pomfeed.fr", true }, { "pommedepain.fr", true }, { "pommetelecom.fr", true }, @@ -55509,6 +57520,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pomocniczy.eu.org", true }, { "pomorskibereg.ml", true }, { "pomozmruczkom.pl", true }, + { "pompeii.tickets", true }, { "pompiers-martigny.ch", false }, { "pompoco.info", true }, { "pomsinoz.com", true }, @@ -55522,6 +57534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ponio.org", true }, { "ponio.xyz", true }, { "ponnau.com", true }, + { "ponpon.tk", true }, { "pontodogame.com.br", true }, { "ponxel.com", true }, { "pony-cl.co.jp", true }, @@ -55536,6 +57549,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pookl.com", true }, { "poolinstallers.co.za", true }, { "poollicht.be", true }, + { "poolmans.se", true }, { "poolsafely.gov", true }, { "poolsafety.gov", true }, { "poolspondsandwaterscapes.com", true }, @@ -55560,19 +57574,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "popkins.cf", true }, { "popkins.ga", true }, { "popkins.gq", true }, - { "popkins.tk", true }, { "popmagz.com", true }, { "popova.tk", true }, { "popoway.cloud", true }, { "popoway.me", true }, { "popoway9.ml", true }, { "poppetsphere.de", true }, - { "poppincurls.com", true }, - { "poptimize.net", true }, { "populardogs.gq", true }, { "population-ethics.com", true }, + { "popup-stores.online", true }, { "popupbazaar.tk", true }, { "popvitrin.com", true }, + { "poquiloco.com", true }, { "poquvi.net", true }, { "porchdaydreamer.com", true }, { "porcore.com", true }, @@ -55587,19 +57600,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "porn2019.tk", true }, { "porn7.net", true }, { "porn77.info", true }, + { "pornabee.com", true }, { "pornagent.de", true }, { "pornalpha.com", true }, { "pornbay.eu", true }, { "pornbay.org", true }, { "pornblog.org", true }, - { "porncandi.com", true }, { "porncompanions.com", true }, { "porndragon.net", true }, { "pornfacefinder.com", false }, { "pornflare.net", true }, { "pornforwomentube.com", true }, { "porngay.co", true }, - { "pornguin.com", true }, { "pornhubhd.biz", true }, { "pornimg.net", true }, { "porniwi.com", true }, @@ -55609,11 +57621,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pornloupe.com", true }, { "pornmax.net", true }, { "pornmega.net", true }, + { "pornmixed.com", true }, { "porno-gif.ru", true }, { "porno-stars-video.ru", true }, { "pornofilme.top", true }, { "pornofilmovi.us", true }, { "pornohub.su", true }, + { "pornokran.com", true }, { "pornolab.su", true }, { "pornolarizlehd.com", true }, { "pornomens.be", true }, @@ -55621,7 +57635,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pornovk.xxx", true }, { "pornport.org", true }, { "pornshop.biz", true }, - { "pornskyhub.com", true }, { "pornsocket.com", true }, { "pornspider.to", true }, { "pornstop.net", true }, @@ -55658,6 +57671,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portalz.xyz", true }, { "portamiinpista.it", false }, { "portatiles-baratos.net", true }, + { "portchesterny.gov", true }, { "porte.roma.it", true }, { "portefeuillesignalen.nl", false }, { "portercup.com", true }, @@ -55671,6 +57685,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "portsdebalears.gob.es", true }, { "portsmouthbouncycastles.co.uk", true }, { "portsmoutheic.com", true }, + { "portsolent.com", true }, { "portugal-a-programar.pt", true }, { "portugal.gov.pt", false }, { "portugalsko.net", true }, @@ -55683,6 +57698,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "poshcastles.co.uk", true }, { "poshlashes.se", true }, { "poshsecurity.com", true }, + { "poshvine.com", true }, { "posijson.stream", true }, { "positionus.io", true }, { "positive.com.cy", true }, @@ -55705,10 +57721,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "postal3.es", true }, { "postandfly.com", true }, { "postawnasiebie.pl", true }, + { "postback.io", false }, { "postblue.info", true }, { "postbox.life", true }, { "postcardpayment.com", true }, { "postcode.nl", true }, + { "postcodeswag.co.uk", true }, + { "postcodeswag.com", true }, + { "postcodeswag.uk", true }, { "postcodewise.co.uk", true }, { "postdarwinian.com", true }, { "postdarwinism.com", true }, @@ -55720,6 +57740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "postfinance.ch", true }, { "postimages.org", true }, { "postimg.cc", true }, + { "postman.com.ng", true }, { "postmatescode.com", true }, { "postmistress.email", true }, { "postmusicologia.tk", true }, @@ -55735,7 +57756,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "potatofrom.space", true }, { "potatopro.com", true }, { "potatotee.com", true }, - { "potatron.tech", true }, { "potature.it", true }, { "potature.org", true }, { "potature.rimini.it", true }, @@ -55754,6 +57774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "potomac.cf", true }, { "potomacurology.com", true }, { "potomania.cz", true }, + { "potreningu.pl", true }, { "potrillionaires.com", true }, { "potsdam.directory", true }, { "potterperfect.tk", true }, @@ -55763,14 +57784,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "potworowski.de", true }, { "potz.tk", true }, { "potzwonen.nl", true }, + { "pouchdog.com", true }, { "poudlard.fr", true }, { "pouet.it", false }, { "pouets.ovh", true }, { "poundgatepark.co.uk", true }, { "poundwholesale.co.uk", true }, + { "poupee.me", true }, { "pourlesenfants.info", true }, { "pouwels-oss.nl", true }, - { "povarchik.com", true }, { "povareschka.ru", true }, { "povesham.tk", true }, { "povmacrostabiliteit.nl", true }, @@ -55783,11 +57805,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "power-tools24.com", true }, { "powerb.ch", false }, { "powerball.shop", true }, + { "powerbi.istanbul", true }, { "powerblanket.com", true }, { "powercloud.technology", true }, { "poweredbyiris.nl", true }, { "powerentertainment.tv", true }, { "powerfortunes.com", true }, + { "powergok.com", true }, { "powergridess.com", false }, { "powerinboxperformance.com", true }, { "powerlifting.tk", true }, @@ -55806,7 +57830,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "powersergunited.org", true }, { "powersergusercontent.com", true }, { "powershellmagic.com", true }, - { "powertothebuilder.com", true }, + { "powertoolsrater.net", true }, { "powerwellness-korecki.de", true }, { "pozarevac.tk", true }, { "pozd.tk", true }, @@ -55816,6 +57840,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pozitiffchik.ml", true }, { "pozitive.pl", true }, { "pozlife.net", true }, + { "poznaj-siebie.pl", true }, { "poznajrynek.pl", true }, { "pozzitiv.ro", true }, { "pp-server.com", true }, @@ -55831,6 +57856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pp9728.co", true }, { "ppcrestaurants.com", true }, { "ppipe.net", true }, + { "ppissis.com.cy", true }, { "pplsoft.nl", true }, { "pplsvc.com", true }, { "ppmathis.ch", true }, @@ -55843,6 +57869,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pptavmdata.org", true }, { "ppy.la", true }, { "ppy.sh", true }, + { "pqgruber.com", true }, { "pqscript.com", true }, { "pr-news.spb.ru", true }, { "pr.search.yahoo.com", false }, @@ -55852,6 +57879,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pr3.space", true }, { "prac.to", true }, { "pracevjihlave.cz", true }, + { "pracownia-porta.pl", true }, + { "practicalbytes.de", true }, { "practicalhomes.com.au", true }, { "practicallabs.com", true }, { "practicalprogrammer.tech", true }, @@ -55860,6 +57889,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "practisforms.com", true }, { "practixdevelopment.com", true }, { "practo.com", true }, + { "practodev.com", true }, { "pradeek.tk", true }, { "praderarestaurant.co.uk", true }, { "prado.it", true }, @@ -55870,6 +57900,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pragma-solution.com", true }, { "pragmatist.nl", true }, { "prague-swim.cz", true }, + { "praguemakeover.com", true }, { "praguepsychology.com", true }, { "praguepsychology.cz", true }, { "pragueswim.cz", true }, @@ -55888,8 +57919,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pranita.cz", true }, { "pranita.sk", true }, { "pranksearch.ml", true }, + { "prankstercompany.com", true }, { "prateep.io", true }, { "pratemarkets.com", true }, + { "praticienmedecinechinoise.be", true }, { "pratopronto.org", true }, { "pratorotoli.it", true }, { "pravaha-elixirs.com", true }, @@ -55904,6 +57937,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "praxis-dingeldey.de", true }, { "praxis-familienglueck.de", true }, { "praxistipp24.com", true }, + { "prayercentric.com", true }, { "prayerrequest.com", true }, { "prayum.com", true }, { "prazeresdavida.com.br", true }, @@ -55912,15 +57946,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "precedecaritas.com.br", true }, { "precedencemedia.com", true }, { "precept.uk.com", true }, + { "preci0.com", true }, + { "preciodolarhoymexico.com", true }, { "preciouslife.fr", true }, { "preciscx.com", true }, { "preciseassemblies.com", true }, { "precision-tops.com", true }, { "precision.st", true }, { "precisionclan.com", true }, + { "precisioncoolingco.com", true }, { "precisiondigital-llc.com", true }, { "precisionhealthpilot.org", true }, { "precisionhockey.net", true }, + { "precisionicerinks.com", true }, { "precisionmachineservice.com", true }, { "precisionvaccinations.com", true }, { "precode.eu", true }, @@ -55935,6 +57973,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "preigu.de", true }, { "preis-alarm.info", true }, { "preis-alarm.org", true }, + { "preis-reifen.de", true }, { "preisser-it.de", true }, { "preisser.it", true }, { "preissler.co.uk", true }, @@ -55952,6 +57991,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prelved.se", true }, { "prematureacceleration.club", true }, { "preme.name", true }, + { "premierbb.com", true }, { "premierbouncycastles.co.uk", true }, { "premierdisco.co.uk", true }, { "premiereco.com.sg", true }, @@ -55990,6 +58030,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prepavesale.fr", true }, { "prepedia.org", true }, { "prepfba.com", true }, + { "prepperswill.com", true }, { "preppertactics.com", true }, { "preprodfan.gov", true }, { "presbee.com", true }, @@ -55997,7 +58038,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "presbyterian-colleges.com", true }, { "prescotonline.co.uk", true }, { "presdesdunes.com", true }, + { "presenciainternet.com", true }, { "present-m.com", true }, + { "presentacionesweb.com", true }, { "presentationmedia.com", true }, { "preserveourhillcountry.org", true }, { "president.bg", true }, @@ -56014,6 +58057,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pressography.org", true }, { "pressplayandrelax.com", true }, { "pressrush.com", true }, + { "pressspace2hack.com", true }, + { "pressspacetohack.com", true }, { "pressup.it", true }, { "pressureradio.com", true }, { "prestige-car-location.ch", false }, @@ -56048,9 +58093,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prgrmmr.nl", true }, { "pricegg.com", true }, { "priceholic.com", true }, + { "priceofdollar.com", true }, { "priceremoval.net", true }, { "pricesim.com", true }, { "pricesniffer.co", true }, + { "pricope-stefan.com", true }, { "prideindomination.com", true }, { "pridnestrovye.gq", true }, { "prielwurmjaeger.de", true }, @@ -56071,6 +58118,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "primetrialfree.co.uk", true }, { "primglaz.ru", true }, { "primoloyalty.com", true }, + { "primopan.org", true }, { "primordialsnooze.com", true }, { "primorus.lt", true }, { "primos-tech.com", true }, @@ -56095,6 +58143,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "printeknologies.com", true }, { "printerinktoutlet.nl", true }, { "printerleasing.be", true }, + { "printerpoint.co.in", true }, { "printertonerkopen.nl", true }, { "printexpress.cloud", true }, { "printfn.com", false }, @@ -56102,8 +58151,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "printmet.com", true }, { "printmet.ru", true }, { "printmijn3dmodel.be", true }, + { "printserverpa.com", true }, { "printus.de", true }, { "prior-it.be", true }, + { "prior.cloud", true }, { "priorite-education.com", true }, { "priorityelectric-agourahills.com", true }, { "priorityelectric-calabasas.com", true }, @@ -56130,6 +58181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prismacloud.com", true }, { "prismacloud.green", true }, { "prismacloud.xyz", true }, + { "prismapixel.studio", true }, { "prisminfosys.com", true }, { "prismintl.org", true }, { "pristal.eu", true }, @@ -56138,7 +58190,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pritalk.com", true }, { "pritchett.xyz", true }, { "pritchi.tk", true }, - { "priv.gc.ca", true }, { "priv.im", true }, { "privacy-week-vienna.at", true }, { "privacy-week.at", true }, @@ -56161,6 +58212,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privacyweekvienna.at", true }, { "privaday.de", false }, { "privasphere.com", true }, + { "private-diary-taka.com", true }, { "privatebanks.uk", true }, { "privatebin.info", true }, { "privatecapsecurity.org", true }, @@ -56168,6 +58220,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "privategiant.com", true }, { "privateideas.de", true }, { "privateimarketing.com", true }, + { "privatemediaserver.tech", true }, { "privatenebula.eu", true }, { "privatepokertour.com", true }, { "privatepropertymallorca.com", true }, @@ -56214,12 +58267,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pro-lq.net", true }, { "pro-lq.ro", true }, { "pro-mile.pl", true }, - { "pro-netz.de", false }, { "pro-taucher.com", true }, { "pro-taucher.de", true }, { "pro-wiert.pl", true }, + { "pro100systems.com.ua", true }, { "proact-it.co.uk", true }, { "proactive.run", true }, + { "proactivediscovery.com", true }, { "proactivenews.ml", true }, { "proactivestructuresolutions.com", true }, { "proactivo.digital", true }, @@ -56231,12 +58285,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "probely.com", true }, { "probiv.biz", true }, { "probiv.cc", true }, + { "procabinetrefinishers.com", true }, { "procar-rheinland.de", true }, { "procarservices.com", true }, { "procarswoking.com", true }, { "procens.us", true }, { "procensus.com", true }, { "procert.ch", false }, + { "procesadorafenix.com.mx", true }, { "processesinmotion.com", true }, { "procharter.com", true }, { "procinorte.net", true }, @@ -56257,7 +58313,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prodentalsantacruz.es", true }, { "prodesigntools.com", true }, { "prodietix.cz", true }, - { "prodigia.com", false }, + { "prodigyhq.io", true }, { "prodinger.com", true }, { "prodottogiusto.com", true }, { "prodsim.ninja", true }, @@ -56282,12 +58338,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "produkt.cf", true }, { "produkttest-online.com", true }, { "produra.nl", true }, - { "prodwa.re", true }, { "prodware.fr", true }, { "prodware.nl", true }, { "proeflokaalbakker.nl", true }, { "proefteksten.nl", false }, - { "proeftuinveenweiden.nl", true }, { "proemployeeprotection.com", true }, { "proemployeeprotection.net", true }, { "proesb.com", true }, @@ -56314,6 +58368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "profits.fund", true }, { "profloorstl.com", true }, { "profmetod.com", true }, + { "profootballnetwork.com", true }, { "proformer.io", true }, { "profritual.ru", true }, { "profsaranya.com", true }, @@ -56332,6 +58387,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proggersession.com", true }, { "proggersession.de", true }, { "progiscad.com", false }, + { "prognoshealth.com", true }, { "progolfjourney.com", true }, { "prograce.info", true }, { "program-and.work", true }, @@ -56362,6 +58418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "proimpact.it", true }, { "proj.org.cn", true }, { "proj3ct.me", true }, + { "project-novis.org", true }, { "project-rune.tech", true }, { "project-stats.com", true }, { "project86fashion.com", true }, @@ -56386,10 +58443,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "projectsecretidentity.com", true }, { "projectsecretidentity.org", true }, { "projectte.ch", true }, + { "projecttools.info", true }, { "projectunity.io", true }, { "projectxparis.com", true }, { "projectxyz.eu", true }, - { "projekt-allianz.de", true }, { "projekt-umbriel.de", true }, { "projektarbeit-projektplanung.de", true }, { "projektzentrisch.de", true }, @@ -56402,6 +58459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prolinos.de", true }, { "prolinq.in", true }, { "promarketer.net", true }, + { "promax.nl", true }, { "promedyczny.pl", true }, { "prometheanfire.net", true }, { "prometheanfire.org", true }, @@ -56417,23 +58475,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "promo-matelas.com", true }, { "promobo.fr", true }, { "promocao.email", true }, + { "promocjedladzieci.pl", true }, { "promocodius.com", true }, { "promodafinil.com", true }, { "promodance.cz", true }, { "promods.cn", true }, + { "promods.download", true }, { "promods.net", true }, + { "promods.store", true }, { "promods.web.tr", true }, + { "promoglisse.com", true }, { "promohulp.nl", true }, { "promohunt.ru", false }, { "promolover.com", true }, { "promopony.com", true }, + { "promoqueen.nl", true }, { "promorder.ru", true }, { "promoscuola.net", true }, - { "promosjungle.com", true }, + { "promotech.pro", true }, { "promoterms.com.au", true }, { "promotioncentre.co.uk", true }, { "promotiongeeks.com", false }, - { "promozione.info", true }, { "promtechosnastka.ru", true }, { "promuovi.tv", true }, { "pronto-intervento.net", true }, @@ -56460,6 +58522,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "propertyinside.id", true }, { "propertyone.mk", true }, { "propertysales-almeria.com", true }, + { "propertysold.ca", true }, { "prophiler.de", true }, { "propipesystem.com", true }, { "propiteer.com", true }, @@ -56498,18 +58561,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prosto-dengi.tk", true }, { "prostohobby.ru", true }, { "prostoporno.love", true }, + { "prostoporno.zone", true }, { "prostoskidki.ml", true }, { "prostye-recepty.com", true }, { "prosurveillancegear.com", true }, { "proteapower.co.za", true }, - { "protech.ge", true }, + { "protech.ge", false }, { "proteco.sk", true }, { "protectedpayments.net", true }, { "protectedreport.com", true }, { "protectem.de", true }, { "protectionformula.com.ua", true }, { "protectoraanimalesalicante.org", true }, - { "protectorlando.com", true }, { "protectr.de", false }, { "protectwrap.ml", true }, { "protege.moi", true }, @@ -56531,10 +58594,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "protogenbrainbooster.tk", true }, { "protonmail.ch", true }, { "protonmail.com", true }, + { "protonpix.com", true }, { "protonvpn.com", true }, { "prototypefund.de", true }, { "prototyping-computer.ml", true }, { "protoxin.net", false }, + { "protracks.ca", false }, { "proudplus.com", true }, { "proust.ch", false }, { "proust.media", false }, @@ -56564,6 +58629,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prowise.com", true }, { "prowise.me", true }, { "prowpcare.com", true }, + { "proximasrl.eu", true }, { "proximityradio.fr", true }, { "proximoconcurso.com.br", true }, { "proxirealtime.com", true }, @@ -56606,14 +58672,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "prynhawn.com", true }, { "prynhawn.net", true }, { "prynhawn.org", true }, - { "prytkov.com", true }, { "przemas.pl", true }, { "przerabianiezdjec.pl", true }, { "ps-provider.co.jp", true }, { "ps-sale.ru", true }, { "ps2911.com", true }, { "ps4all.nl", true }, - { "ps5ssd.com", true }, { "psa-travel-care.com", true }, { "psabrowse.com", true }, { "psasines.pt", true }, @@ -56631,7 +58695,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psdsuc.com", true }, { "pseek.com", true }, { "pself.net", true }, - { "pseric.site", true }, { "pservicer.com.mx", true }, { "pseta.ru", true }, { "psg-calw.de", true }, @@ -56644,9 +58707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psicologasandrabernal.es", true }, { "psicologo-especialista-barcelona.com", true }, { "psicologo-infantil-barcelona.com", true }, - { "psicologoforensemadrid.com", true }, { "psicometricas.mx", true }, - { "psicosalud.online", true }, { "psihotest.tk", true }, { "psinergy.info", true }, { "psinergyhealth.com", true }, @@ -56692,20 +58753,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "psychologytests.tk", true }, { "psychometrictest.africa", true }, { "psychometrictest.ca", true }, + { "psychometrictest.co.il", true }, + { "psychometrictests.uk", true }, + { "psychometrischetests.de", true }, + { "psychopathtest.com", true }, { "psychopersonnalite.com", true }, { "psychotechnique.africa", true }, { "psychotechnique.be", true }, { "psychotechnique.ch", true }, + { "psychotechnique.com", true }, { "psychotechniquetest.fr", true }, { "psychotherapie-kp.de", true }, - { "psychotherapie1220wien.at", true }, + { "psychotherapie1220wien.at", false }, { "psychotherapy-vienna.com", true }, { "psycolleges.com", true }, { "psydix.org", true }, + { "psykometrisk.se", true }, { "psylab.re", true }, { "psylab.vip", true }, { "psynapse.net.au", true }, { "psytrance-pro.com", true }, + { "pszinfo.hu", true }, { "pt-d.ru", true }, { "pt-server.de", true }, { "pt.im", true }, @@ -56723,6 +58791,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ptfiber.spb.ru", true }, { "ptgoldensun.com", true }, { "pthsec.com", true }, + { "ptk-svarka.ru", true }, { "ptm.ro", true }, { "ptmarquees.ie", true }, { "ptmp.net", true }, @@ -56737,6 +58806,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pubclub.com", true }, { "pube.tk", true }, { "pubean.com", true }, + { "pubg-tournament.com", true }, { "pubi.me", true }, { "pubkit.io", true }, { "publanda.nl", true }, @@ -56748,20 +58818,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "public-vocals.de", true }, { "publicard.es", true }, { "publiccarauctionscalifornia.com", true }, + { "publicintegrity.org", true }, { "publicintelligence.net", true }, { "publicrea.com", true }, { "publicspeakingcamps.com", true }, { "publicsuffix.org", true }, - { "publikate.online", true }, { "publimepa.it", false }, { "publiq.space", true }, { "publishedpaper.ga", true }, { "publisherservices.co", true }, { "publivate.ca", true }, + { "publixphere.net", true }, { "pubmire.com", false }, { "pubreview.com.au", true }, - { "pucchi.net", true }, { "pucogid.ga", true }, + { "pucsr.tech", true }, { "pucssa.org", true }, { "puddis.de", true }, { "pudro.com", true }, @@ -56777,6 +58848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "puhka.me", true }, { "puissancemac.ch", false }, { "puiterwijk.org", true }, + { "pukeking.com", true }, { "pukfalkenberg.dk", true }, { "pukkapilatesandpt.com", true }, { "pulcinella.tk", true }, @@ -56795,6 +58867,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pulsnitzer-pfefferkuchen-shop.de", true }, { "pulsnitzer-pfefferkuchen.shop", true }, { "pulsr.ml", true }, + { "pump19.eu", true }, { "pumpandcash.com", true }, { "pumperszene.com", true }, { "pumpn.net", true }, @@ -56832,7 +58905,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "purchasetncrash.gov", true }, { "pure-gmbh.com", true }, { "pure-host.de", true }, + { "purecbdvapors.com", true }, { "puredayshop.com.tw", true }, + { "puredns.org", true }, { "purefkh.xyz", false }, { "pureitsolutionsllp.com", true }, { "purelunch.co.uk", true }, @@ -56875,7 +58950,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pushoflove.com", true }, { "pushpanel.io", true }, { "pushphp.com", true }, - { "pushrax.com", true }, { "pusichatka.ddns.net", true }, { "pussr.com", true }, { "pussylickingnow.com", true }, @@ -56893,7 +58967,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "putnamcollision.com", true }, { "putney.io", true }, { "putomani.rs", true }, - { "putrawijayatours.com", true }, { "putrock.be", true }, { "puttymonos.club", true }, { "puxlit.net", true }, @@ -56903,10 +58976,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "puzz.me", true }, { "puzzlage.com", true }, { "puzzle-welt.ch", true }, + { "puzzlegames.com", true }, { "puzzlepoint.ch", true }, { "pv-paderborn-now.de", true }, { "pvamg.org", true }, - { "pvc-stolarija.co", true }, + { "pvc-stolarija.co", false }, { "pvcvoordeel.nl", false }, { "pvda.nl", true }, { "pvhe.pl", true }, @@ -56939,6 +59013,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "pycrypto.org", true }, { "pycycle.info", true }, { "pygarage.com", false }, + { "pyhello.world", true }, { "pylon.bot", true }, { "pymenetica.com", true }, { "pymescentro.net", true }, @@ -56961,6 +59036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "python-hyper.org", true }, { "python.org", false }, { "pythonatrix.com", true }, + { "pythonhosted.org", true }, { "pytradebot.com.br", true }, { "pyxo.net", false }, { "pyzlnar.com", true }, @@ -56976,7 +59052,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "q1000.nl", true }, { "q1q2q3.tk", true }, { "q30365.com", true }, - { "q365.vip", true }, + { "q365.vip", false }, { "q36594.com", true }, { "q5118.com", true }, { "q5197.co", true }, @@ -56984,7 +59060,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "q6729.com", true }, { "q6957.co", true }, { "q81365.com", true }, - { "q81818.com", true }, { "q82365.com", true }, { "q88588.com", true }, { "q886666.com", true }, @@ -56999,10 +59074,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qa.stg.fedoraproject.org", true }, { "qabalah.jp", true }, { "qabel.de", true }, - { "qacademy.com.au", true }, { "qaconstrucciones.com", true }, { "qadmium.com", true }, - { "qadmium.tk", true }, { "qambarraza.com", true }, { "qandavision.com", false }, { "qani.me", true }, @@ -57011,24 +59084,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qarea.com", true }, { "qarto.com", true }, { "qaz.cloud", true }, + { "qaz.link", true }, { "qbiltrade.com", true }, { "qbtechs.com", true }, { "qc.immo", true }, { "qc.search.yahoo.com", false }, { "qcbrna.qa", true }, - { "qccareerschool.com", true }, + { "qccareerschool.com", false }, { "qcdesignschool.com", false }, { "qceventplanning.com", false }, { "qclt.com", true }, { "qcmakeupacademy.com", false }, { "qcmlw.com", true }, { "qcstudentcenter.com", true }, - { "qcstyleacademy.com", true }, - { "qctravelschool.com", true }, + { "qcstyleacademy.com", false }, + { "qctravelschool.com", false }, + { "qcuarto.com.py", true }, { "qdabogados.com", true }, { "qdon.space", true }, { "qdqlh.cn", true }, { "qdrat.ml", true }, + { "qdstationary.co.uk", true }, + { "qdstationery.co.uk", true }, { "qe-lab.at", true }, { "qed.ai", true }, { "qedcon.org", false }, @@ -57038,10 +59115,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qetic.co.jp", true }, { "qewc.com", true }, { "qgblog.org", true }, - { "qgr.se", true }, { "qhse-professionals.nl", true }, + { "qi0.de", true }, { "qianalysis.com", true }, { "qianmo.com", true }, + { "qiannews.net", true }, { "qianqiao.me", true }, { "qiaohong.org", true }, { "qicsystems.com", true }, @@ -57050,7 +59128,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qihl.gg", true }, { "qikan.net", false }, { "qiliang.wang", true }, - { "qingcao.org", true }, { "qingly.me", true }, { "qingpat.com", true }, { "qingpei.me", true }, @@ -57059,7 +59136,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qis.fr", true }, { "qitarabutrans.com", true }, { "qits.de", false }, - { "qiuby.de", true }, { "qiuri.org", false }, { "qivonline.pt", true }, { "qiwi.be", true }, @@ -57070,9 +59146,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ql.tc", true }, { "qlarititech.io", true }, { "qlcvea.com", true }, + { "qlcvea.it", true }, { "qldcarwreckers.com.au", true }, { "qldconservation.org.au", true }, { "qldformulaford.org", true }, + { "qliving.com", true }, { "qlix.pl", true }, { "qlrace.com", false }, { "qm-marzahnnordwest.de", true }, @@ -57094,8 +59172,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qpcna.org", true }, { "qponverzum.hu", true }, { "qpresentes.com.br", true }, + { "qpsinc.com", true }, { "qq5197.co", true }, - { "qq52o.me", true }, { "qq6177.com", true }, { "qq6177.net", true }, { "qq6729.co", true }, @@ -57109,6 +59187,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qqiao.me", true }, { "qqq6.com", true }, { "qqq63.com", true }, + { "qqq67.com", true }, { "qqrss.com", true }, { "qr-city.org", true }, { "qr.cl", true }, @@ -57119,7 +59198,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qrcontagion.com", true }, { "qrd.by", true }, { "qristianuliarkhi.ge", true }, - { "qrlfinancial.com", true }, + { "qrlfinancial.com", false }, { "qrpatrol.com", true }, { "qrpth.eu", true }, { "qruiser.com", true }, @@ -57152,14 +59231,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qualiacomputers.com", true }, { "qualite-ecole-et-formation.ch", false }, { "quality-life.gr", true }, + { "qualityconcreteraising.com", true }, { "qualityhomesystems.com", true }, - { "qualityhvacservices.com", true }, - { "qualityofcourse.com", true }, + { "qualityofcourse.com", false }, { "qualitypropertycare.co.uk", true }, { "qualitywaterproofing.com", true }, - { "quallo.com", true }, { "qualpay.com", true }, { "qualtrics.com", true }, + { "qualyven.com", true }, + { "quant-labs.de", true }, { "quantaloupe.tech", true }, { "quanterra.ch", false }, { "quantifiedcommerce.com", true }, @@ -57171,7 +59251,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quantum2.xyz", true }, { "quantumcrypto.nl", true }, { "quantumfinance.com.au", true }, - { "quantumfurball.net", true }, { "quantumpair.net", true }, { "quantumtelecom.com.br", true }, { "quantumwebs.co", true }, @@ -57182,6 +59261,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quarterfull.com", true }, { "quarticon.com", true }, { "quartix.com", true }, + { "quartz.im", true }, + { "quartzclinical.com", true }, { "quarus.net", true }, { "quasarelectronics.co.uk", true }, { "quasiproxy.com", true }, @@ -57224,12 +59305,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quentin-sauvetre.fr", true }, { "quentinaurat.com", true }, { "quentinchevre.ch", true }, - { "queo.com.co", true }, { "quera.ir", true }, { "querenciavirtual.com.br", true }, - { "quermail.com", true }, { "query-massage.com", false }, { "queryquinton.com", true }, + { "quest-medica.com", true }, { "questdairy.com", true }, { "question.com", true }, { "questionable.host", true }, @@ -57237,17 +59317,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "questoj.cn", true }, { "questsocial.it", true }, { "quevisiongrafica.com", true }, + { "quezmedia.com", true }, { "quhyu.xyz", true }, { "quic.network", true }, { "quic.stream", true }, { "quichante.com", true }, + { "quiche-quic.cf", true }, { "quickassortments.com", true }, { "quickboysvrouwen2.nl", true }, { "quickformspro.com", true }, { "quickinfosystem.com", true }, + { "quickq.nu", true }, { "quickrelations.de", true }, { "quicksell.store", true }, { "quicksupplies.us", true }, + { "quieoltre.it", true }, { "quieroserbombero.org", true }, { "quieroserdoula.com", true }, { "quieroserdoula.es", true }, @@ -57269,6 +59353,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quiq-api.com", true }, { "quiq-cdn.com", true }, { "quiq-uri.com", true }, + { "quiq-url.com", true }, + { "quiq.com", true }, { "quiq.us", true }, { "quiqd.com", true }, { "quiqstatus.com", true }, @@ -57279,6 +59365,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "quitarlasmanchasde.com", true }, { "quitimes.com", true }, { "quiz4math.gr", true }, + { "quizandmoney.com", true }, { "quizhub.co", true }, { "quizogames.com", true }, { "quizstore.net", true }, @@ -57288,7 +59375,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qunzi.la", true }, { "quocdesign.ch", true }, { "quote.gq", false }, - { "quotedtale.com", true }, { "quoteidiot.com", true }, { "quotev.com", true }, { "quovadisaustria.com", true }, @@ -57314,15 +59400,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "qwertyatom100.me", true }, { "qwikdash.com", true }, { "qwq.moe", true }, - { "qwq2333.top", true }, { "qx.fi", true }, { "qx.se", true }, - { "qxy.ch", true }, { "qxzg.org", true }, { "qxzg.xyz", true }, { "qxzgssr.xyz", true }, { "qybot.cc", true }, { "qybot.cn", true }, + { "qzhou.ddns.net", true }, { "r-ay.cn", true }, { "r-core.org", true }, { "r-cut.fr", true }, @@ -57333,14 +59418,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "r18.moe", true }, { "r1a.eu", true }, { "r1ch.net", true }, + { "r1h3.nl", true }, { "r2d2pc.com", true }, { "r30365.com", true }, { "r33.space", true }, { "r36533.com", true }, { "r36594.com", true }, { "r3bl.blog", true }, - { "r3bl.me", true }, { "r3s1stanc3.me", true }, + { "r3t.io", true }, { "r40.us", true }, { "r5197.co", true }, { "r6-team.ru", true }, @@ -57350,7 +59436,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "r7.com.au", true }, { "r7h.at", true }, { "r81365.com", true }, - { "r81818.com", true }, { "r82365.com", true }, { "r9297.co", true }, { "r9397.com", true }, @@ -57368,11 +59453,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raailto.com", true }, { "raaynk.com", true }, { "raballder.tk", true }, + { "rabbit.finance", true }, { "rabbit.wales", false }, { "rabbitcallcenter.com", true }, { "rabbitfinance.com", true }, { "rabbitinternet.com", true }, { "rabica.de", true }, + { "rabis.co", true }, { "rabitfordarcy.org", true }, { "rabota-x.ru", false }, { "rabotaescort.com", false }, @@ -57383,6 +59470,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raccoltarifiuti.com", true }, { "raccoon.fun", true }, { "racermaster.xyz", true }, + { "racesimscoring.com", true }, { "racesport.nl", false }, { "raceviewcycles.com", true }, { "racevinyl.es", true }, @@ -57403,6 +59491,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radar.sx", true }, { "radaravia.ru", true }, { "radarbanyumas.co.id", true }, + { "radarequation.com", true }, { "radarnext.com", true }, { "radartatska.se", true }, { "radartek.com", true }, @@ -57432,8 +59521,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radioduepuntozero.it", true }, { "radioelectronic.tk", true }, { "radiofmimagen.net", true }, - { "radioh.no", true }, - { "radioheteroglossia.com", true }, { "radiohub.ru", true }, { "radioilusion.es", true }, { "radioldpr.ru", true }, @@ -57458,7 +59545,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "radiumtree.com", true }, { "radixsalon.tk", true }, { "radlina.com", true }, - { "radmehrco.com", true }, { "radomir-online.ru", true }, { "radondetectionandcontrol.com", true }, { "radreisetraumtreibstoff.de", true }, @@ -57488,6 +59574,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rage.rip", true }, { "rage4.com", true }, { "raghughphotography.tk", true }, + { "raghuspeaks.com", true }, { "raginggaming.ga", true }, { "ragingserenity.com", true }, { "ragnaroktop.com.br", true }, @@ -57510,6 +59597,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rail360.nl", true }, { "railbird.nl", true }, { "railduction.eu", true }, + { "raileo.com", true }, { "railgun.ac", true }, { "railgun.com.cn", true }, { "railjob.cn", true }, @@ -57542,10 +59630,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "railvideo.nl", true }, { "railwaytech.net", true }, { "rain.bz", true }, + { "rainbow-web.com", true }, { "rainbow.pizza", true }, { "rainbowbay.org", true }, { "rainbowflowers.co.uk", true }, { "rainbowinflatables.co.uk", true }, + { "rainbowloompattern.com", true }, + { "rainbowloompatterns.com", true }, { "rainbowsmoothies.win", true }, { "rainbowstore.com.au", true }, { "rainbowstore.com.ua", true }, @@ -57565,10 +59656,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raipet.no-ip.biz", true }, { "raisecorp.com", true }, { "raiseyourflag.com", true }, + { "raisingzona.com", true }, { "raissarobles.com", true }, { "raistrick.it", true }, { "raitlo.com", true }, { "raitza.de", true }, + { "raivis.com", true }, { "rajaealhoceima.tk", true }, { "rajasatour.id", true }, { "rajastore.ma", true }, @@ -57597,13 +59690,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ralvke.rocks", true }, { "ram-it.nl", true }, { "ram.nl", true }, + { "rama.ovh", true }, { "ramarka.de", true }, { "ramatola.uk", false }, { "rambedjeans.com", true }, { "rambii.de", true }, { "ramblingrf.tech", true }, { "rambo.codes", true }, + { "ramdigital.xyz", true }, { "rametrix.com", true }, + { "ramirezpeluqueria.com", true }, { "ramitan.com", true }, { "ramitmittal.com", true }, { "rammstein-portugal.com", true }, @@ -57632,6 +59728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "randomquotesapp.com", true }, { "randomsearching.ml", true }, { "randomserver.pw", true }, + { "randstalker.ovh", true }, { "randy.su", true }, { "ranfurlychambers.co.nz", true }, { "rangde.org", true }, @@ -57641,12 +59738,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rankgiants.com", true }, { "ranking-deli.jp", true }, { "rannamoisaaiasalong.ee", true }, - { "ranobe.club", true }, { "ranos.org", true }, { "ranson.com.au", true }, { "rantanda.com", true }, { "ranthambhorenationalpark.net", true }, { "ranwest.com", true }, + { "rany.eu.org", true }, { "ranyeh.co", true }, { "ranyeh.com", true }, { "ranzbak.nl", true }, @@ -57664,6 +59761,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rapidapp.io", true }, { "rapidflow.io", true }, { "rapidhubs.com", true }, + { "rapidminer.com", false }, { "rapidoo.com.br", true }, { "rapidshit.net", true }, { "rapidstone.com", true }, @@ -57687,9 +59785,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rascalscastlesdoncaster.co.uk", true }, { "rasebo.ro", true }, { "raspberid.com.es", true }, - { "raspberrypi.tv", true }, { "raspii.tech", true }, { "raspitec.ddns.net", true }, + { "rassadacvetov.com", true }, + { "rasset.ie", true }, { "rassro.sk", true }, { "rastabooks.ga", true }, { "rasty.cz", true }, @@ -57738,6 +59837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rawdamental.com", true }, { "rawdutch.nl", true }, { "rawinfosec.com", true }, + { "rawpearls.com", true }, { "rawr.sexy", true }, { "rawsec.net", true }, { "raxion.cf", true }, @@ -57749,10 +59849,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "raycarruthersphotography.co.uk", true }, { "raydius.de", true }, { "raydolapfiyat.com", true }, + { "rayfalling.com", true }, { "rayiris.com", true }, { "raykitchenware.com", true }, { "raymcbride.com", true }, { "raymd.de", true }, + { "raymondelooff.nl", true }, { "raynersorchard.com.au", true }, { "raynis.net", true }, { "raysei.com", true }, @@ -57827,6 +59929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rdactive.net", true }, { "rdap.co.il", true }, { "rdcdesign.com", true }, + { "rddjapan.info", true }, { "rdfencingandgates.co.uk", true }, { "rdfproject.it", true }, { "rdfz.tech", true }, @@ -57850,15 +59953,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "re-wilding.com", true }, { "reach-on.de", true }, { "reachhead.com", true }, - { "reachonline.org", true }, { "reachout-ghana.com", true }, { "reachrss.com", true }, { "reaconverter.com", true }, { "react-db.com", true }, - { "reactions.ai", true }, - { "reactive-press.com", true }, + { "reactions.ai", false }, { "reactivelambda.com", true }, { "reactivemarkets.com", true }, + { "reactor.cool", true }, { "reactpwa.com", true }, { "readabilitychecker.com", true }, { "reades.co.uk", true }, @@ -57915,6 +60017,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "realestateonehowell.com", true }, { "realestateradioshow.com", true }, { "realfamilyincest.com", true }, + { "realfood.space", true }, { "realfreedom.city", false }, { "realgogo.com", true }, { "realhorsegirls.net", true }, @@ -57932,6 +60035,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reallycooljobs.ga", true }, { "reallytrusted.com", true }, { "reallywild.tk", true }, + { "realm-of-shade.com", true }, { "realme.govt.nz", true }, { "realmofaesir.com", true }, { "realmofespionage.xyz", true }, @@ -57964,7 +60068,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rebelessex.com", true }, { "rebelko.de", true }, { "rebellion.global", true }, - { "rebellionbrewing.com.au", true }, { "rebelonline.nl", true }, { "rebelrebel.com.au", true }, { "rebelz.se", true }, @@ -57972,6 +60075,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reboxetine.com", true }, { "reboxonline.com", true }, { "rebtoor.com", true }, + { "rebuga.com", true }, { "reby.cf", true }, { "reby.ga", true }, { "reby.gq", true }, @@ -58002,6 +60106,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recipex.ru", true }, { "recipeyak.com", true }, { "reckontalk.com", true }, + { "reclamebureau-ultrax.nl", false }, { "reclametoolz.nl", true }, { "reclusiam.net", true }, { "recmon.hu", true }, @@ -58013,12 +60118,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recompiled.org", false }, { "recon-networks.com", true }, { "reconexion.life", true }, + { "recordmeeting.jp", true }, + { "recoveringircaddicts.org", true }, { "recoveringspirit.com", true }, { "recoveryohio.gov", true }, { "recoveryonline.org", true }, { "recoveryunplugged.com", true }, { "recoveryunpluggedtreatment.com", true }, { "recrea.pl", true }, + { "recreatieftotaal.nl", true }, { "recruit.net", true }, { "recruitmade.jp", true }, { "recruitnow.nl", true }, @@ -58026,6 +60134,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recruitsecuritytraining.com", true }, { "rectecforum.com", true }, { "rectoraudiparts.com", true }, + { "recuperatucuentaya.com", true }, { "recuperodatiraidfastec.it", true }, { "recurly.com", true }, { "recurrentmeningitis.org", true }, @@ -58036,13 +60145,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "recyclingisland.com", true }, { "red-button.hu", true }, { "red-dead-rp.de", true }, - { "red-dead.life", true }, { "red-t-shirt.ru", true }, + { "red-train.de", true }, { "red-trigger.net", true }, { "red031000.com", true }, { "red2fred2.com", true }, { "redable.hosting", true }, { "redable.nl", true }, + { "redactedmedia.org", false }, { "redactieco.nl", true }, { "redb.cz", true }, { "redballoonsecurity.com", true }, @@ -58094,6 +60204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redhawkwa.com", true }, { "redheadfuck.com", true }, { "redheeler.com.br", true }, + { "rediazauthor.com", true }, { "redicals.com", true }, { "redinational.com", true }, { "redion.me", true }, @@ -58135,6 +60246,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "redstoner.com", true }, { "redteam-pentesting.de", true }, { "redunion.tk", true }, + { "redwater.co.uk", true }, { "redwaterhost.com", true }, { "redweek.com", true }, { "redwhey.com", true }, @@ -58147,6 +60259,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reedyforkfarm.com", true }, { "reeftrip.com", true }, { "reegle.com", true }, + { "reemployks.gov", true }, { "reening.net", true }, { "reensshop.com", true }, { "rees-carter.net", true }, @@ -58186,6 +60299,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "refu.net", true }, { "refundo.cz", true }, { "refundo.sk", true }, + { "reg.place", true }, { "regalcapitalwi.com", true }, { "regalopublicidad.com", true }, { "regalosymuestrasgratis.com", true }, @@ -58219,11 +60333,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "regiovertrieb.de", false }, { "regis.tech", true }, { "regisearch.co.uk", true }, + { "register.to", true }, { "registerex.me", true }, { "registerforevent.co.uk", true }, { "registerra.nl", true }, { "registr.io", true }, - { "registrar.io", true }, { "registrarplus.net", true }, { "registrarplus.nl", true }, { "registry.google", true }, @@ -58235,7 +60349,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "regolithmedia.com", true }, { "regon.hu", true }, { "regraph.de", true }, - { "regresionavidaspasadas.com", true }, { "regsec.com", true }, { "regularflolloping.com", true }, { "regularizaeudora.com.br", true }, @@ -58259,6 +60372,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reignsphere.net", true }, { "reiki-coaching.nl", false }, { "reiki-france.fr", true }, + { "reikicentrumdelft.nl", true }, { "reilly.io", true }, { "reimaginebelonging.de", true }, { "reimaginebelonging.org", true }, @@ -58274,7 +60388,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reineberthe.ch", true }, { "reinencaressa.be", true }, { "reinfer.io", true }, - { "reinhardtsgermanautorepair.com", true }, { "reinhardtsgrimma.de", true }, { "reinhart-auto.cz", true }, { "reinierjonker.nl", true }, @@ -58284,6 +60397,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reinouthoornweg.nl", true }, { "reinventetoi.com", false }, { "reinventfit.ro", true }, + { "reirei.cc", true }, { "reisenbauer.ee", true }, { "reiseversicherung-werner-hahn.de", true }, { "reishunger.de", true }, @@ -58299,6 +60413,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rejido.tk", true }, { "rejushiiplotter.ru", true }, { "rekisuta.com", true }, + { "rekkur.com", true }, + { "rekkur.consulting", true }, + { "rekkur.de", true }, + { "rekkur.dev", true }, + { "rekkur.io", true }, + { "rekkur.net", true }, + { "rekkur.org", true }, + { "rekkur.solutions", true }, + { "rekkur.team", true }, + { "rekkur.tech", true }, + { "rekkur.technology", true }, + { "rekkursolutions.com", true }, + { "rekkurtechnology.com", true }, { "reklamjog.hu", true }, { "rekorsanat.com.tr", true }, { "rekurasi.com", true }, @@ -58313,9 +60440,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "release-monitoring.org", true }, { "releasepoint.com", true }, { "releasetimes.io", true }, + { "releasingarchive.org", true }, + { "reliablemaids.co.uk", true }, { "reliableremovals-blackpool.co.uk", true }, { "reliancebank.bank", true }, { "reliant3sixty.com", true }, + { "relitas.cz", true }, + { "rellmusic.com", true }, { "relocatefeds.gov", true }, { "relojeriajoyeria.com", true }, { "relojes-online.com", true }, @@ -58334,6 +60465,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remedioparaherpes.com", true }, { "remejeanne.com", true }, { "remembermidi.sytes.net", true }, + { "remembertheend.com", true }, { "rememberthemilk.com", false }, { "remetall.cz", true }, { "remi-saurel.com", true }, @@ -58347,12 +60479,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "remitatm.com", false }, { "remmik.com", true }, { "remny.com", true }, + { "remo-ribeli.ch", true }, { "remodelingfy.com", true }, { "remodeus.com", true }, { "remonline.ru", true }, { "remont-kvartirvmoskve.ga", true }, { "remont-naushnikov.tk", true }, { "remont-p.com", true }, + { "remont-warszawa.pl", true }, { "remonti.info", true }, { "remontpc.cf", true }, { "remotedesktop.corp.google.com", true }, @@ -58392,6 +60526,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "renezuo.com", true }, { "renkenlaw.com", true }, { "renlen.nl", true }, + { "rennes-bachata.com", true }, + { "rennes-blues.com", true }, + { "rennes-dancehall.com", true }, + { "rennes-danse-africaine.com", true }, + { "rennes-danse-orientale.com", true }, + { "rennes-danses-en-ligne.com", true }, + { "rennes-hip-hop.com", true }, + { "rennes-lindy-hop.com", true }, + { "rennes-pilates.com", true }, + { "rennes-reggaeton.com", true }, + { "rennes-rock-6-temps.com", true }, + { "rennes-salsa-portoricaine.com", true }, + { "rennes-salsa.com", true }, + { "rennes-tango.com", true }, + { "rennes-valse.com", true }, + { "rennes-west-coast-swing.com", true }, + { "rennes-yoga.com", true }, + { "rennes-zumba.com", true }, { "rennfire.org", true }, { "renoovodesign.ltd", true }, { "renov8sa.co.za", true }, @@ -58413,8 +60565,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rentinsingapore.com.sg", true }, { "rentourhomeinprovence.com", true }, { "rentsbg.com", true }, - { "rentta.fashion", true }, { "renuo.ch", true }, + { "renut.com.np", true }, { "renxinge.cn", false }, { "renyiyou.com", true }, { "reo.gov", false }, @@ -58422,6 +60574,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reox.at", false }, { "repaik.com", true }, { "repairguy.dk", true }, + { "repairit.support", true }, { "repalcateia.com.br", true }, { "repaper.org", true }, { "reparacionesdecalefones.com", true }, @@ -58429,6 +60582,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reparizy.com", true }, { "repauto.com.ua", true }, { "repaxan.com", true }, + { "repceszentgyorgy.hu", true }, + { "repgad.com", true }, { "repin.in.ua", true }, { "replaceits.me", true }, { "replenology.com", true }, @@ -58444,6 +60599,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reportband.gov", true }, { "reporting.gov", true }, { "reposaarenkuva.fi", true }, + { "reposeed.dev", true }, + { "reposeed.org", true }, { "reproduciblescience.org", true }, { "reproductive-revolution.com", true }, { "reproductiverevolution.com", true }, @@ -58464,10 +60621,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "repuestosmedellin.com", true }, { "repugnant-conclusion.com", true }, { "repugnantconclusion.com", true }, - { "reputatiedesigners.nl", true }, { "reputationweaver.com", true }, { "requestr.co.uk", true }, - { "require.software", true }, + { "requezmc.net", true }, + { "require.software", false }, { "reroboto.com", true }, { "reroboto.eu", true }, { "reroboto.net", true }, @@ -58478,7 +60635,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resch.io", true }, { "rescms-secure.com", true }, { "rescuer.gq", true }, - { "resdon.cn", true }, { "research-panel.jp", true }, { "research.facebook.com", false }, { "research.md", true }, @@ -58487,14 +60643,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "researchstory.com", true }, { "reseausyndic.ca", true }, { "resepimok.com", true }, + { "resepsimbok.com", true }, { "reservar-un-hotel.com", true }, { "reserve-duchenier.com", true }, { "reservetonshift.com", true }, { "reshka.ga", true }, { "residence-donatello.be", true }, { "residence-simoncelli.com", true }, + { "residencedesign.net", true }, { "residentiallocksmithdallas.com", true }, { "residentialmortgageholdings.com", true }, + { "resilience-france.org", true }, { "resilientlives.com", true }, { "resilienzatropical.it", true }, { "resine.roma.it", true }, @@ -58545,10 +60704,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ressl.ch", true }, { "ressupply.com", true }, { "restaurant-de-notenkraker.be", true }, + { "restaurant-eatenjoy.be", true }, { "restaurant-fujiyama.fr", true }, { "restaurant-oregano.de", true }, { "restaurant-rosengarten.at", true }, { "restaurantedonono.com.br", true }, + { "restaurantepepeyestrella.es", true }, { "restaurantesimonetti.com.br", true }, { "restauranttester.at", true }, { "restauriedili.roma.it", true }, @@ -58557,7 +60718,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "restioson.me", true }, { "restoran-radovce.me", true }, { "restoran.cf", true }, - { "restorethegulf.gov", true }, { "restoringhopeberks.org", true }, { "restoruns.com", true }, { "restoruns.xyz", true }, @@ -58567,10 +60727,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "resultsdate.news", true }, { "resume4dummies.com", true }, { "resumelab.com", true }, - { "resumeprime.com", true }, { "resumeprofessionalwriters.com", true }, { "resumeshoppe.com", true }, + { "resumic.com", true }, + { "resumic.dev", true }, + { "resumic.io", true }, + { "resumic.net", true }, + { "resumic.org", true }, { "resursedigitale.ro", true }, + { "resveratrolsupplement.co.uk", true }, { "retailcybersolutions.com", true }, { "retailing.cf", true }, { "retcor.net", true }, @@ -58581,7 +60746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reth.ch", true }, { "reticket.me", true }, { "reticon.de", true }, - { "retidurc.fr", true }, + { "retinacv.es", true }, { "retireearlyandtravel.com", true }, { "retirementsolutionva.com", true }, { "retirest.com", true }, @@ -58615,7 +60780,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "retrovideospiele.com", true }, { "rettig.xyz", false }, { "returnonerror.com", true }, - { "returnpath.com", true }, { "retzer.me", true }, { "reucon.com", true }, { "reulitz.de", false }, @@ -58625,14 +60789,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reut42.de", true }, { "reuter-profishop.de", true }, { "reuter.de", true }, + { "reuzenplaneten.nl", true }, { "revamed.com", false }, { "revampweb-development.azurewebsites.net", true }, { "revampweb-staging.azurewebsites.net", true }, { "revapost.fr", true }, { "revayd.net", true }, { "revealdata.com", true }, - { "revealglobally.com", true }, { "revensoftware.com", true }, + { "reverenceplanning.com", true }, { "reverencestudios.com", true }, { "reverse.design", true }, { "reverseaustralia.com", true }, @@ -58640,7 +60805,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reverseloansolutions.com", true }, { "reverselookupphone.us", true }, { "reversesouthafrica.com", true }, - { "reviderm-skinmedics-rheinbach.de", true }, { "review.jp", true }, { "reviewbestseller.com", true }, { "reviewcenter.in", true }, @@ -58661,6 +60825,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "revitalisierungs-akademie.de", true }, { "revivalinhisword.com", true }, { "revivalprayerfellowship.com", true }, + { "revivemoment.com", true }, { "reviveplumbingmelbourne.com.au", true }, { "revivingtheredeemed.org", true }, { "revizor-online.gq", true }, @@ -58684,12 +60849,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "reyna.cc", true }, { "reyrubi.com", true }, { "rezendemultimarcas.com.br", true }, - { "rezenfitness.com", true }, { "rezept-planer.de", true }, { "rezio.io", true }, { "rezka-burenie.cf", true }, - { "rezosup.net", true }, - { "rezosup.org", true }, { "rezultant.ru", true }, { "rezun.cloud", true }, { "rfeif.org", true }, @@ -58722,6 +60884,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rheijmans.io", true }, { "rheijmans.nl", true }, { "rhein-liebe.de", true }, + { "rheincamneuss.hopto.org", true }, { "rheinneckarmetal.com", true }, { "rheinturm.nrw", true }, { "rhese.net", true }, @@ -58735,6 +60898,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rhinobase.net", false }, { "rhinoceroses.org", true }, { "rhiskiapril.com", false }, + { "rhkg.dk", true }, { "rhnet.at", true }, { "rhodenmanorcattery.co.uk", true }, { "rhodes.ml", true }, @@ -58775,6 +60939,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richardcrosby.co.uk", true }, { "richardharpur.com", true }, { "richardhicks.us", true }, + { "richardinesrolltop.com", true }, { "richardjgreen.net", true }, { "richardlangham.plumbing", true }, { "richardlangworth.com", true }, @@ -58790,8 +60955,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richardson.systems", true }, { "richardson.tw", true }, { "richardstonerealestate.com", true }, + { "richardvd.nl", true }, { "richardwarrender.com", true }, { "richbutler.co.uk", true }, + { "richcamgirls.com", true }, { "richcat.tw", true }, { "richecommecresus.com", true }, { "richelelahaise.nl", true }, @@ -58799,6 +60966,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richeza.com", true }, { "richie.cloud", true }, { "richie.fi", true }, + { "richie.network", true }, { "richie.one", true }, { "richie.pm", true }, { "richieheijmans.cloud", true }, @@ -58806,7 +60974,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "richieheijmans.email", true }, { "richieheijmans.eu", true }, { "richieheijmans.io", true }, + { "richieheijmans.network", true }, { "richieheijmans.nl", true }, + { "richieheijmans.one", true }, + { "richieheijmans.xyz", true }, { "richlj.net", true }, { "richmtdriver.com", true }, { "richviajero.com", true }, @@ -58823,7 +60994,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rico.ovh", true }, { "ricobaldegger.ch", true }, { "ricochet.im", true }, - { "ricomp.com.br", false }, + { "ricomp.com.br", true }, { "ricordisiciliani.it", true }, { "ricoydesign.com", true }, { "ricozienke.de", true }, @@ -58875,6 +61046,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "righttobuy.gov.uk", true }, { "rigintegrity.com", true }, { "rigsalesaustralia.com", true }, + { "riho.moe", true }, { "riight.online", true }, { "riimihaku.fi", true }, { "rijk-catering.nl", false }, @@ -58886,6 +61058,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riklewis.com", true }, { "riku.pw", true }, { "rikunori.com.tw", true }, + { "rikuras.cl", true }, { "rile5.com", true }, { "rileyevans.co.uk", true }, { "rileyskains.com", true }, @@ -58895,7 +61068,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rime.com.hr", true }, { "rimeto.io", true }, { "rimkereso.hu", true }, - { "rimo.site", false }, + { "rimo.site", true }, + { "rimonhwang.com", true }, { "rimorrecherche.nl", true }, { "rincon-nsn.gov", true }, { "rincondenoticas.com", true }, @@ -58925,6 +61099,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ripple.com", true }, { "riproduzionichiavi.it", true }, { "riptidetech.io", true }, + { "riptoforex.com", true }, + { "ripuree.com", true }, { "riqy86.nl", true }, { "ris-bad-wurzach.de", true }, { "ris.fi", true }, @@ -58934,8 +61110,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rischard.org", true }, { "rise-technologies.com", true }, { "rise.global", true }, + { "riseandrank.com", true }, { "riselab.com.ua", true }, { "riseup.net", true }, + { "rishabh.me", true }, { "rishikeshyoga.in", true }, { "risi-china.com", true }, { "risiinfo.com", true }, @@ -58963,7 +61141,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ritsu-life.com", true }, { "rittau.biz", true }, { "rittau.org", true }, - { "ritualesyamarresdelamor.com", true }, { "ritzlux.com.tw", true }, { "rivaforum.de", true }, { "rivalsa.cn", true }, @@ -58972,7 +61149,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riverbendroofingnd.com", true }, { "riverford.co.uk", true }, { "rivermist.com.au", true }, - { "riveroflifegifts.com", true }, { "riverotravel.cl", true }, { "riverridgecc.com", true }, { "rivers.gov", true }, @@ -58981,7 +61157,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "riversideradio.nl", true }, { "riversmeet.co.uk", true }, { "riverstyxgame.com", true }, - { "riverviewcourtapts.com", true }, + { "riverviewurologic.com", true }, { "riverweb.gr", true }, { "rivierasaints.ch", false }, { "riviere.pro", true }, @@ -58993,6 +61169,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rixter.com", false }, { "rixzz.ovh", true }, { "riyono.com", true }, + { "rizalpalawan.gov.ph", true }, { "rizarus.com", true }, { "rizoma.tech", true }, { "rizospastis.gr", true }, @@ -59001,6 +61178,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rjrplay.com", true }, { "rk.mk", true }, { "rk12.de", true }, + { "rkbegraafplaats.com", true }, { "rkfp.cz", true }, { "rkmedia.no", true }, { "rkmns.edu.in", true }, @@ -59020,7 +61198,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rmeuropean.com", true }, { "rmf.io", true }, { "rmit.me", true }, - { "rmk.si", true }, { "rmm-i.com", true }, { "rmmanfredi.com", true }, { "rmrig.org", true }, @@ -59029,6 +61206,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rmsupply.nl", true }, { "rn29.me", true }, { "rnag.ie", true }, + { "rnb-storenbau.ch", true }, { "rnbjunk.com", true }, { "rndconceptsourcing.solutions", true }, { "rngmeme.com", true }, @@ -59044,14 +61222,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roamfreun.tk", true }, { "roams.es", true }, { "roams.mx", true }, + { "roar.com.br", true }, { "rob006.net", true }, { "robandjanine.com", true }, { "robbertt.com", false }, { "robbiecrash.me", true }, + { "robbinsgaragedoorwenatchee.com", true }, { "robbysmets.be", true }, { "robdavidson.network", true }, { "robert-flynn.de", true }, - { "robert-foster.com", true }, + { "robert-reisemobil.de", true }, { "robert-wiek-transporte.de", true }, { "robertabittle.com", true }, { "robertattfield.com", true }, @@ -59089,6 +61269,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robinhoodbingo.com", true }, { "robinlinden.eu", true }, { "robinloeffel.ch", true }, + { "robinminto.com", true }, { "robinsonstrategy.com", true }, { "robinsonyu.com", true }, { "robinvdmarkt.nl", true }, @@ -59122,7 +61303,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "robtatemusic.com", true }, { "robtex.com", true }, { "robu.in", true }, - { "robud.info", true }, { "robust.ga", true }, { "robustac.com", true }, { "robuxemporium.com", true }, @@ -59137,6 +61317,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rockcanyonbank.com", true }, { "rockcellar.ch", true }, { "rockefellergroup.info", true }, + { "rockernj.com", true }, { "rocket-resume.com", true }, { "rocketevents.com.au", true }, { "rocketgnomes.com", true }, @@ -59144,10 +61325,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rocketr.net", true }, { "rocketsandtutus.com", true }, { "rockfax.com", true }, + { "rockfordtow.com", true }, + { "rockfordtowing.com", true }, { "rockhounds.co.za", true }, { "rockinronniescastles.co.uk", true }, { "rockitinflatables.co.uk", true }, - { "rockmyshoes.co.uk", true }, + { "rocklinhousecleaning.com", true }, { "rocknwater.com", true }, { "rockpesado.com.br", true }, { "rockslideengineering.com", true }, @@ -59155,7 +61338,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rockymountainspice.com", true }, { "rockypest.com.au", true }, { "rocmartialartsacademy.com", true }, + { "rocsole.com", true }, { "rocssti.net", true }, + { "rod.run", false }, { "rodab.party", true }, { "rodafe.sk", true }, { "rodarion.pl", true }, @@ -59172,6 +61357,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rodinka.tk", true }, { "rodinnebyvanie.eu", true }, { "rodinneodpoledne2018.cz", true }, + { "rodkidesings.com", true }, { "rodolfo.gs", true }, { "rodomonte.org", true }, { "rodrigoacevedo.com.uy", true }, @@ -59179,6 +61365,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rody-design.com", true }, { "rodykossen.com", true }, { "roeckx.be", true }, + { "roed.gg", true }, + { "roeden.dk", true }, { "roeitijd.nl", false }, { "roelenscitynews.ml", true }, { "roelhollander.eu", true }, @@ -59190,6 +61378,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rofl.com.ua", true }, { "rofrank.space", true }, { "rogagym.com", true }, + { "rogard.fr", true }, { "rogeiro.net", true }, { "rogerdat.ovh", true }, { "rogerhub.com", true }, @@ -59217,6 +61406,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rohrle.com", true }, { "roi.ovh", true }, { "rointe.online", true }, + { "roircop.info", true }, { "roiscroll.com", true }, { "roisu.org", true }, { "roka9.de", true }, @@ -59237,11 +61427,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rolecontj.com", true }, { "roleplaybdsm.com", true }, { "roleplayhome.com", true }, + { "roll-bakery.com.tw", true }, { "rolleyes.org", true }, { "rollforadventure.com.au", true }, { "rollingbarge.com", true }, { "rollingstocks.tk", true }, - { "rolliwelt.de", true }, { "rolob.io", true }, { "rolodato.com", true }, { "roma-servizi.it", true }, @@ -59274,14 +61464,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "romatrip.it", true }, { "rome.dating", true }, { "rommelhuntermusic.tk", true }, + { "rommelmark.nl", true }, { "rommelwood.de", true }, { "romo-holidays.de", true }, { "romo-holidays.dk", true }, + { "romsey.org", true }, { "romtex.co.uk", true }, { "romun.net", true }, { "romy.tw", true }, { "ronan-hello.fr", true }, { "ronbongamis.com", true }, + { "ronbyrne.com", true }, { "roncallijets.net", true }, { "rondommen.nl", true }, { "rondouin.fr", true }, @@ -59343,6 +61536,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rootetsy.com", true }, { "rootie.de", true }, { "rootkea.me", true }, + { "rootkit.es", true }, { "rootlair.com", true }, { "rootonline.de", true }, { "rootpigeon.com", true }, @@ -59353,6 +61547,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rootsbar.fr", false }, { "rootscope.co.uk", false }, { "rootsh3ll.com", true }, + { "rootsskininstitute.com", true }, { "rootstation.de", true }, { "rootswitch.com", false }, { "rootusers.com", true }, @@ -59363,8 +61558,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roryneville.com", true }, { "rosa-spain.tk", true }, { "rosabellas.co.uk", true }, + { "rosahijab.com", true }, + { "rosakkreditatsiya-forum.ru", true }, { "rosalindgreenllc.com", true }, { "rosalindturner.co.uk", true }, + { "rosaquest.ru", true }, { "rosbass.ru", true }, { "rosbiznes.tk", true }, { "rose-prism.org", true }, @@ -59390,20 +61588,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roshiya.co.in", true }, { "rosi-royal.com", true }, { "rosiervandenbosch.nl", true }, - { "rosihui.com", true }, { "roslynpad.net", true }, { "rosnertexte.at", true }, + { "rospotreb.com", true }, { "rosrabota.tk", true }, { "rosset.me", true }, { "rosset.net", true }, { "rossfrance.com", true }, { "rossiworld.com", true }, + { "rosslongulartgallery.com", true }, { "rosslug.org.uk", true }, { "rossmacphee.com", true }, { "rossome.org", true }, { "rosstroj-balashiha.ml", true }, { "rosswilson.co.uk", true }, { "rostclub.ro", true }, + { "rostlau.be", true }, { "rostov-avia.ru", true }, { "rot47.net", true }, { "rotamap.net", true }, @@ -59443,9 +61643,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rout0r.org", true }, { "route-wird-berechnet.de", true }, { "routerclub.ru", true }, + { "routeto.com", true }, { "routetracker.co", true }, { "rove3d.com", true }, { "roverglobal.ga", true }, + { "rovota.com", true }, { "rowancasting.com", true }, { "rowancasting.ie", true }, { "rowancounty911.com", true }, @@ -59466,13 +61668,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roy-buehring.de", true }, { "roya-holding.com", true }, { "royal-rangers.de", true }, - { "royal869.com", false }, + { "royal71.com", true }, + { "royal72.com", true }, + { "royal818.com", true }, + { "royal833.com", true }, + { "royal850.com", true }, + { "royal851.com", true }, { "royal876.com", true }, { "royal88.com", true }, + { "royal929.com", true }, { "royalacademy.org.uk", true }, { "royalasianescorts.co.uk", true }, { "royalaubar.com", true }, - { "royalbeautyclinic.ir", true }, { "royalbluewa3.cc", true }, { "royalcavaliers.tk", true }, { "royalcitytaxi.ca", true }, @@ -59484,6 +61691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "royalnissanparts.com", true }, { "royaloz.ma", true }, { "royalpainters.co", true }, + { "royalpalacenogent.fr", true }, { "royalpratapniwas.com", true }, { "royalrangers.fi", true }, { "royalstylefit.com", true }, @@ -59496,15 +61704,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "roychan.org", true }, { "roygerritse.nl", true }, { "roys.design", true }, + { "roystowingrockford.com", true }, { "royveenendaal.com", true }, { "royzez.com", true }, { "rozalisbengal.ro", true }, { "rozalynne-dawn.ga", true }, { "rozar.eu", true }, + { "rozar.sk", true }, { "rozhodce.cz", true }, { "rpadonline.com", true }, { "rpadovani.com", false }, { "rpasafrica.com", true }, + { "rpattisonroofing.co.uk", true }, { "rpauto.ru", true }, { "rpgcampaign.website", true }, { "rpgchan.cf", true }, @@ -59546,6 +61757,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rs-devdemo.host", true }, { "rs-maschinenverleih.de", true }, { "rs-solution.ch", true }, + { "rs.wiki", true }, { "rs200.org", true }, { "rs2ap33.com", true }, { "rsa-erp.com", true }, @@ -59555,6 +61767,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rsarchive.org", true }, { "rsauget.fr", true }, { "rsblake.net", true }, + { "rscturmoil.com", true }, { "rsdisedezzari.it", true }, { "rsec.kr", true }, { "rsgcard.com", true }, @@ -59564,6 +61777,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rslnd.com", true }, { "rsm-intern.de", true }, { "rsmith.io", true }, + { "rsmmail.com", true }, { "rsp-blogs.de", true }, { "rsquare.nl", true }, { "rsridentassist.com", true }, @@ -59586,7 +61800,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rtd.uk", true }, { "rtd.uk.com", false }, { "rte.eu", true }, + { "rte.mobi", true }, { "rte.radio", true }, + { "rte1.ie", true }, { "rte2fm.ie", true }, { "rteaertel.ie", true }, { "rtechservices.io", true }, @@ -59596,16 +61812,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rtek.se", true }, { "rtenews.eu", true }, { "rteone.ie", true }, + { "rteplayer.co.uk", true }, { "rteplayer.com", true }, + { "rteplayer.ie", true }, + { "rteplayer.org", true }, { "rtesport.eu", true }, { "rteworld.com", true }, { "rtfch.ru", true }, { "rtgnews.cf", true }, - { "rthe.cn", true }, { "rtho.me", true }, { "rths.tk", false }, - { "rthsoftware.cn", true }, { "rthsoftware.net", false }, + { "rtlspiele.de", true }, { "rtmoran.org", true }, { "rtrappman.com", true }, { "rtsak.com", true }, @@ -59619,6 +61837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ru-e-business.com", true }, { "ru-sprachstudio.ch", true }, { "ru.search.yahoo.com", false }, + { "rua.cx", false }, { "ruaneattorneys.com", true }, { "ruanmi.de", true }, { "rubbaduckee.tk", true }, @@ -59634,13 +61853,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rubenbarbero.com", true }, { "rubenbrito.net", true }, { "rubenkruisselbrink.nl", true }, + { "rubenmamo.com", true }, { "rubenroy.com", true }, { "rubenruiz.org", true }, { "rubens.cloud", true }, + { "rubenschulz.nl", true }, + { "rubia.ca", true }, + { "rubidium.ml", true }, { "rubixstudios.com.au", true }, { "rublacklist.net", true }, { "ruby-auf-schienen.de", true }, - { "rubyist.im", true }, { "rubyist.today", true }, { "rubylabs.am", true }, { "rubymartin.com.au", true }, @@ -59661,10 +61883,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ruddick.uk", true }, { "rudewiki.com", true }, { "rudloff.pro", true }, + { "rudnikas.com", true }, { "rudolph.life", true }, { "rudolphmarketing.com", true }, { "rudrastyh.com", true }, { "rue-de-la-vieille.fr", true }, + { "rueder.com", true }, { "ruediger-voigt.eu", true }, { "ruedigervoigt.de", true }, { "ruedirrenggli.ch", false }, @@ -59692,10 +61916,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ruhproject.kz", true }, { "ruhrmobil-e.de", true }, { "ruhrnalist.de", true }, - { "ruht.ro", true }, { "ruicore.cn", true }, + { "ruika.ru", true }, { "ruimarques.xyz", true }, - { "ruiming.me", true }, + { "ruiming.me", false }, { "ruin.one", true }, { "ruiruigeblog.com", true }, { "ruitershoponline.nl", true }, @@ -59708,10 +61932,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rulu.tv", true }, { "rulutv.com", true }, { "rumahminimalisoi.com", true }, + { "rumahpropertigratis.com", true }, { "rumartinez.es", true }, { "rumbasguayaquil.com", true }, { "rumenka.tk", true }, { "rumlager.de", true }, + { "rummage4property.co.uk", true }, { "rummel-platz.de", true }, { "rummey.co.uk", true }, { "rumplesinflatables.co.uk", true }, @@ -59726,7 +61952,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rundesign.it", true }, { "rundumcolumn.xyz", true }, { "runebet.com", true }, + { "runefake.com", true }, { "runementors.com", false }, + { "runescape.wiki", true }, { "runetracker.org", true }, { "runfitcoaching.com", true }, { "rungutan.com", true }, @@ -59734,6 +61962,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "runklesecurity.com", true }, { "runner.az", true }, { "runnergrapher.com", true }, + { "runners.yoga", true }, { "runningrabb.it", true }, { "runreport.fr", true }, { "runrocknroll.com", true }, @@ -59774,22 +62003,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "russian-page.tk", true }, { "russianbearsmotorsport.tk", true }, { "russianbristol.tk", true }, + { "russianescortsmumbai.com", false }, { "russianpunkrock.tk", true }, { "russianrandom.com", true }, { "russianrandom.ru", true }, - { "russpuss.ru", true }, - { "russstudios.com", true }, { "russt.me", true }, + { "russtekh.com", true }, { "rust-lang.codes", true }, { "rust.cf", true }, { "rust.mn", true }, + { "rust.pm", true }, { "rustable.com", true }, { "rustfu.rs", true }, { "rusticpathways.com.au", true }, { "rustikalwallis.ch", true }, + { "rustls.com", true }, + { "rustls.org", true }, { "rustpedia.net", true }, { "rustyrambles.com", true }, { "rusxakep.com", true }, + { "rutewisata.com", true }, { "rutgerschimmel.nl", true }, { "ruthbarrettmusic.com", true }, { "ruthbellgrahammemorial.org", true }, @@ -59809,6 +62042,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rva-asbestgroep.nl", true }, { "rva.gov", true }, { "rvdbict.nl", true }, + { "rvender.cz", true }, { "rvfit.dk", true }, { "rvfu98.com", true }, { "rvg.zone", true }, @@ -59820,11 +62054,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rvsa4bevestigingen.nl", true }, { "rvsbevestigingen.nl", true }, { "rvsuitlaatdelen.nl", true }, + { "rw-invest.com", true }, { "rw.search.yahoo.com", false }, { "rw2.de", true }, { "rwgamernl.ml", true }, { "rwky.net", true }, - { "rws-cc.com", true }, { "rws-vertriebsportal.de", true }, { "rwx.ovh", true }, { "rwx.work", true }, @@ -59838,15 +62072,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ryan-goldstein.com", true }, { "ryan.cafe", true }, { "ryanbritton.com", true }, + { "ryandewsbury.co.uk", true }, { "ryanfamily.net.au", true }, { "ryanhowell.io", true }, { "ryankearney.com", false }, { "ryanmcdonough.co.uk", false }, { "ryanparman.com", true }, { "ryansmithphotography.com", true }, + { "ryanteck.uk", true }, { "ryazan-region.ru", true }, { "rybox.info", true }, - { "rychlikoderi.cz", true }, + { "rychlikoderi.cz", false }, { "ryejuice.sytes.net", true }, { "rylandgoldman.com", true }, { "rylore.com", true }, @@ -59856,6 +62092,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "rys.pw", true }, { "rythgs.co", false }, { "rythm.es", true }, + { "ryu22e.org", true }, { "ryuanerin.kr", true }, { "ryuu.es", true }, { "ryzex.de", true }, @@ -59920,7 +62157,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "s6957.co", true }, { "s6o.de", true }, { "s81365.com", true }, - { "s81818.com", true }, { "s82365.com", true }, { "s88.com", true }, { "s886666.com", true }, @@ -59944,6 +62180,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saamhorigheidsfonds.nl", false }, { "saas.de", true }, { "saatchiart.com", true }, + { "saathi.asia", true }, { "saba-piserver.info", true }, { "sabahattin-gucukoglu.com", true }, { "sabbat-wildfire.tk", true }, @@ -59964,14 +62201,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saccounty.gov", true }, { "sacharidovejednotky.eu", true }, { "sachk.com", true }, + { "sachse.info", true }, { "sacians.tk", true }, { "sackmesser.ch", true }, { "saclier.at", true }, { "saco-ceso.com", true }, { "sacprincesse.com", true }, + { "sacramentocounty.gov", true }, { "sacred-knights.net", true }, { "sacredheart-cliftonheights.net", true }, { "sacrome.com", true }, + { "sad-berezka.ru", true }, { "sadbox.es", true }, { "sadbox.org", true }, { "sadbox.xyz", true }, @@ -59992,6 +62232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saenforcement.agency", true }, { "saengsook.com", true }, { "saengsuk.com", true }, + { "saevor.com", true }, { "saf.earth", true }, { "safar.sk", true }, { "safara.host", true }, @@ -60013,12 +62254,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safegroup.pl", true }, { "safeguardcommerce.com", true }, { "safeguardhosting.ca", true }, + { "safehero.com", true }, { "safeinfra.nl", true }, { "safeitup.se", true }, { "safejourney.education", true }, { "safematix.com", true }, { "safeme.ga", true }, { "safemt.gov", true }, + { "safenetwork.it", true }, { "safeocs.gov", true }, { "safercar.gov", true }, { "saferchildren.eu", false }, @@ -60037,7 +62280,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "safethishome.com", true }, { "safetycloud.me", true }, { "safetymp3.com", true }, - { "safetynames.com", true }, { "safetynetwork.me", true }, { "safetyrange.com", true }, { "safetysite.tips", true }, @@ -60058,36 +62300,35 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saglikhaber.tk", true }, { "sagnette.xyz", true }, { "sagracefarms.com", true }, + { "sagytec.net", true }, { "sahajbooks.com", true }, { "sahar.io", true }, { "saharacloud.com", true }, { "saharmassachi.com", true }, { "sahb.dk", true }, { "sahibinden.com", true }, - { "sahilm.com", true }, { "sahkotyot.eu", true }, { "said.id", true }, { "said.it", true }, { "said.my.id", true }, - { "saidtezel.com", true }, { "saier.me", true }, { "saifonvillas.com", true }, { "saifoundation.in", true }, { "saigaocy.me", true }, + { "saigaocy.moe", true }, { "saigonflowers.com", true }, { "saigonstar.de", true }, { "saikarra.com", true }, { "saikou.moe", true }, { "saikouji.tokushima.jp", true }, { "sail-nyc.com", true }, - { "sailanitours.com", true }, - { "sailbookers.com", true }, { "sailing-yacht.club", true }, { "sailingonward.com", true }, { "sailormoonevents.org", true }, { "sailormoongallery.org", true }, { "sailormoonlibrary.org", true }, { "sailwiz.com", true }, + { "saimatravels.in", true }, { "saimoe.moe", true }, { "saimoe.org", true }, { "sainetworks.net", true }, @@ -60151,7 +62392,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sakaki.anime.my", false }, { "sakamichi.moe", true }, { "sakenohana.com", true }, - { "sakerhetsbubblan.se", true }, { "sakerhetskopiering.nu", true }, { "sakostacloud.de", true }, { "saksonski-szlak-parowozow.pl", true }, @@ -60161,9 +62401,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sakuracommunity.com", true }, { "sakuradata.com", true }, { "sakuraplay.com", true }, + { "sakuraz.net", true }, + { "saladgo.id", true }, { "salaire-minimum.com", true }, + { "salaminos.no-ip.org", true }, { "salamon-it.de", false }, { "salandalairconditioning.com", true }, + { "salariominimo.com.co", true }, { "salde.net", true }, { "sale4ru.ru", true }, { "saleaks.org", true }, @@ -60180,10 +62424,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saleduck.fi", true }, { "saleduck.se", true }, { "saledump.nl", true }, + { "salekaz.ru", true }, { "salemedia.pro", true }, { "salensmotors-usedcars.be", false }, { "salentocab.com", true }, - { "salesactivities.de", true }, { "salesflare.com", true }, { "saletzki.de", true }, { "salexy.kz", true }, @@ -60206,12 +62450,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "salon1.ee", true }, { "salonasymetria.com", true }, { "salonasymetria.pl", true }, - { "salonderecepcionessjl.com", true }, { "salonestella.it", true }, { "salonsantebienetre.ch", true }, { "salrosadohimalaia.com", true }, { "salsa-straubing.de", true }, { "salt-documentary.blog", true }, + { "saltaranuncios.com", true }, { "saltbythesea.com", true }, { "saltedfish.network", true }, { "saltercane.com", false }, @@ -60227,7 +62471,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saluels.servemp3.com", true }, { "salutethefish.com", true }, { "salutethegrains.com", true }, - { "salutethepig.com", true }, { "salva.re", true }, { "salvaalocombia.com", true }, { "salvadorinfantil.tk", true }, @@ -60267,11 +62510,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samesound.ru", true }, { "sameworks.com", true }, { "samfreaks.de", true }, + { "samhsa.gov", true }, { "samhuri.net", true }, { "samiamelikian.com.br", true }, { "samifar.in", true }, { "samindgroup.com", true }, { "samiratv.tk", true }, + { "samisoft.ir", true }, { "samiysok.cf", true }, { "samizdat.cz", true }, { "samkelleher.com", true }, @@ -60284,7 +62529,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sammyjohnson.com", true }, { "sammyservers.com", true }, { "sammyservers.net", true }, - { "sammyslimos.com", true }, { "samodding.com", true }, { "samorazvitie.ru", true }, { "samotorsporttyres.com.au", true }, @@ -60303,6 +62547,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "samuelkeeley.com", true }, { "samuellaulhau.fr", false }, { "samui-samui.de", false }, + { "samuidiving.net", true }, { "samuirehabcenter.com", true }, { "samusil.org", true }, { "samvanderkris.com", true }, @@ -60323,12 +62568,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sanantoniolocksmithtx.com", true }, { "sanasport.cz", true }, { "sanasport.sk", true }, + { "sanates.cz", true }, { "sanatorii-sverdlovskoy-oblasti.ru", true }, { "sanatorionosti.com.ar", true }, - { "sanatrans.com", true }, { "sanbornteam.com", true }, { "sancaktepehaber.tk", true }, { "sanchez.adv.br", false }, + { "sanctum.geek.nz", true }, { "sanctumwealth.com", true }, { "sand-islets.de", true }, { "sand-stoneinc.com", true }, @@ -60337,6 +62583,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sandalj.com", true }, { "sandbox.mydigipass.com", false }, { "sandboxfp.com", true }, + { "sandburner.net", true }, { "sander.sh", true }, { "sanderdorigo.nl", true }, { "sanderkoenders.eu", true }, @@ -60352,10 +62599,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sandiegotown.com", true }, { "sandmanintel.com", true }, { "sandmarc.cz", true }, - { "sandobygg.se", true }, - { "sandogruppen.se", true }, { "sandor.wtf", true }, { "sandr0.tk", true }, + { "sandra-perlbach.de", true }, { "sandrabernardo.com", true }, { "sandrainden.nl", true }, { "sandraindenfotografie.nl", true }, @@ -60396,16 +62642,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sanpham-balea.org", true }, { "sanqianssr.com", true }, { "sanqinyinshi.com.cn", true }, + { "sans-hotel.com", true }, { "sanskritiyoga.com", true }, { "sansonehowell.com", true }, { "santa-fell-from.space", true }, { "santacruzdescargas.tk", true }, { "santaijia.com", false }, - { "santamariaretreats.com", true }, { "santamonicapost123.org", true }, { "santanderibc.com", true }, { "santegra.tk", true }, - { "santensautomatics.be", true }, { "santevie.ch", false }, { "santi-club.de", true }, { "santiagogarza.co", true }, @@ -60428,6 +62673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saorsa.fr", true }, { "saorsat.com", true }, { "saorsat.ie", true }, + { "saorsat.net", true }, { "saorsat.tv", true }, { "saorview.com", true }, { "saorview.ie", true }, @@ -60445,17 +62691,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sapk.fr", true }, { "saplumbers.com.au", true }, { "saposute-s.jp", true }, + { "sapphi.st", true }, { "sapphireblue.me", true }, { "sapphirepearl.com.sg", true }, { "sapphireservicesga.com", true }, { "sapporobeer.com", true }, { "sapprendre.ch", false }, { "saprima.de", false }, + { "sapuseven.com", true }, { "saputra.org", true }, - { "saq.com", true }, + { "saq.com", false }, { "sarae.id", true }, { "sarah-jane.nl", true }, { "sarahbeckettharpist.com", true }, + { "sarahjanecreates.co.uk", true }, { "sarahlicity.co.uk", true }, { "sarahlicity.me.uk", true }, { "sarahplusdrei.de", true }, @@ -60476,11 +62725,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sard.ro", true }, { "sardacompost.it", true }, { "sardegnatirocini.it", true }, + { "sardinianvillas.co.uk", true }, { "sardinianvillas.com", true }, + { "sardinianvillas.ru", true }, { "sarella.org", true }, { "sarhua.tk", true }, { "sarindia.com", true }, - { "sarindia.de", true }, { "sarink.eu", true }, { "sarjakuvakauppa.fi", true }, { "sarkisianbuilders.com", true }, @@ -60488,8 +62738,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sarndipity.com", true }, { "sarny.at", true }, { "saro.me", true }, - { "saronikos.city", true }, + { "saronikos.guide", true }, { "saropa.com", true }, + { "sarox.com.au", true }, { "sarpsb.org", true }, { "sartoria.roma.it", true }, { "sarumtechnologies.com", true }, @@ -60505,7 +62756,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sashleighaust.com", true }, { "sasioglu.co.uk", true }, { "saskadoodle.com", true }, - { "saskpension.com", true }, { "sasrobotics.xyz", true }, { "sassandbelle.co.uk", true }, { "sassandbelle.com", true }, @@ -60520,6 +62770,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "satania.moe", true }, { "satanspowers.tk", true }, { "satario.vn", true }, + { "satellite-prof.com", true }, { "satellites.hopto.me", true }, { "satellitetv-deal.com", true }, { "satimagingcorp.com", true }, @@ -60528,16 +62779,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sativatunja.com", true }, { "satmali.az", true }, { "satmd.de", true }, + { "satoshilabs.com", true }, { "satoshinumbers.com", true }, { "satplay.host", true }, { "satserwis.xyz", true }, + { "satsukii.moe", true }, { "sattamatka.market", false }, { "sattamatka420.mobi", false }, - { "sattamatkamobi.mobi", false }, { "sattaresult.in", true }, { "sattaresult.net", true }, { "saturn.pl", true }, - { "saturngames.co.uk", true }, { "saucelabs.com", true }, { "saudeealimentos.com", true }, { "saudeintimadamulher.com.br", true }, @@ -60562,6 +62813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saurel.me", true }, { "sauvagebridge.nl", true }, { "savaari.com", true }, + { "savagecore.eu", true }, { "savageorgiev.com", true }, { "savanna.io", true }, { "savantic.io", true }, @@ -60593,6 +62845,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "savorvip.ir", true }, { "sawyerroofing.com", true }, { "saxeandthecity.com", true }, + { "saxis.dk", true }, { "saxojoe.co.uk", true }, { "saxojoe.de", true }, { "saxol-group.com", true }, @@ -60601,6 +62854,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "saxotex.de", true }, { "saxowert.de", true }, { "saxwereld.nl", true }, + { "say-it-loud.com", true }, { "sayori.pw", true }, { "sayprepay.com", true }, { "sayrodigital.com", true }, @@ -60619,6 +62873,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sbanken.no", true }, { "sbaten.nl", true }, { "sbblog.cn", true }, + { "sbbz-bad-wurzach.de", true }, { "sbcargo.com", true }, { "sbconstrucciones.com", true }, { "sber.us", true }, @@ -60631,7 +62886,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sbirecruitment.co.in", true }, { "sbit.com.br", true }, { "sbivc.jp", true }, - { "sbl001.com", true }, { "sbm.cloud", true }, { "sbo-dresden.de", true }, { "sbox-servers.com", true }, @@ -60643,7 +62897,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sbssoft.ru", true }, { "sbstattoo.com", true }, { "sbytes.info", true }, - { "sc-artworks.co.uk", true }, + { "sc-artworks.co.uk", false }, { "sc019.com", true }, { "sc5.jp", true }, { "scaarus.com", true }, @@ -60653,6 +62907,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scaffoldhiremidrand.co.za", true }, { "scaffoldhirerandburg.co.za", true }, { "scaffoldhiresandton.co.za", true }, + { "scag9.com", true }, { "scalaire.com", true }, { "scalaire.fr", true }, { "scale.milano.it", true }, @@ -60674,12 +62929,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scanmailx.com", true }, { "scanpay.dk", true }, { "scapdoors.ca", true }, + { "scarabcoder.com", true }, { "scarafaggio.it", true }, { "scarinex.tk", true }, - { "scarvespalace.com", true }, { "scatsbouncingcastles.ie", true }, { "scatters.com", true }, + { "scatterscasino.com", true }, { "scbdh.org", true }, + { "sccd.co.uk", true }, { "sccimo.com", true }, { "scde.ventures", true }, { "sceenfox.de", true }, @@ -60693,6 +62950,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scenester.tv", true }, { "scenicbyways.info", true }, { "scepticism.com", true }, + { "sceventures.com", true }, { "scevity.com", true }, { "scfpensante.ca", true }, { "sch44r0n.de", true }, @@ -60703,6 +62961,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schadevergoedingen.eu", true }, { "schaffensdrang.at", true }, { "schafgarbe-tee.de", true }, + { "schafzwitschern.blog", false }, { "schallert.com", false }, { "schamlosharmlos.de", true }, { "schastie.ml", true }, @@ -60731,8 +62990,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scherfke.de", true }, { "schermkapot.nl", true }, { "scheuchenstuel.at", true }, + { "schiau.co", true }, { "schier.info", true }, - { "schil.li", true }, + { "schil.li", false }, { "schildbach.de", true }, { "schillers-friedberg.de", true }, { "schimmel-test.info", true }, @@ -60757,7 +63017,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schlueter-software.de", true }, { "schmaeh-coaching.ch", true }, { "schmatloch.cloud", true }, - { "schmelle.me", true }, { "schmelzle.io", true }, { "schmidthomes.com", true }, { "schmidtlohwasser.de", true }, @@ -60768,7 +63027,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schmitz.link", true }, { "schmuggelware.de", false }, { "schnapke.name", true }, - { "schneckenhilfe.de", true }, + { "schneckenhilfe.de", false }, { "schnegg.name", false }, { "schneidr.de", true }, { "schneids.me", true }, @@ -60786,6 +63045,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schoknecht.one", true }, { "schoko-ferien.de", true }, { "schokoferien.de", true }, + { "schokofoto.de", true }, { "schokokeks.org", true }, { "schokoladensouffle.eu", true }, { "scholar.group", true }, @@ -60796,7 +63056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scholarnet.cn", true }, { "scholarshipplatform.com", true }, { "scholarshipsplatform.com", true }, - { "scholarstyle.com", true }, + { "scholarstyle.com", false }, { "scholieren.com", true }, { "schollbox.de", false }, { "scholledev.com", true }, @@ -60808,7 +63068,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "school-register.co.za", true }, { "school.in.th", true }, { "schoolantwoorden.tk", true }, - { "schoolarchive.net", true }, { "schoolcafe.com", true }, { "schooli.io", true }, { "schoolofphilosophy.org.au", true }, @@ -60818,9 +63077,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schoolsonice.nl", true }, { "schoop.me", true }, { "schopenhauer-institut.de", true }, + { "schorel.eu", true }, { "schorel.ovh", true }, { "schorelweb.nl", true }, - { "schorers.org", true }, + { "schorers.org", false }, { "schoring.com", true }, { "schottenland.de", true }, { "schrader-institute.de", true }, @@ -60839,6 +63099,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schrodingersscat.org", true }, { "schroeder-immobilien-sundern.de", true }, { "schroepfi.de", true }, + { "schrok.eu", true }, { "schrolm.de", true }, { "schsrch.org", true }, { "schsrch.xyz", true }, @@ -60850,8 +63111,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schuhbeck.tk", true }, { "schuhbedarf.de", true }, { "schuhwerkstatt.at", true }, + { "schuhzoo.de", true }, { "schul-bar.de", true }, { "schulderinsky.de", true }, + { "schule.wtf", true }, { "schuler.st", true }, { "schulfotograf-deinfoto.ch", true }, { "schull.ch", false }, @@ -60879,13 +63142,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "schwarztrade.cz", true }, { "schwarzwald-flirt.de", true }, { "schweingehabt.expert", true }, + { "schweininchen.de", true }, { "schweizerbanken.tk", true }, { "schwerkraftlabor.de", true }, { "schwinabart.com", true }, { "schwinger.me", true }, { "schwinnbike.ru", true }, { "schwuppengrillen.de", false }, - { "sci-internet.tk", true }, { "scib.tk", true }, { "scicomm.xyz", true }, { "science-network.ch", true }, @@ -60920,6 +63183,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scohetal.de", true }, { "scolasti.co", true }, { "scom.org.uk", true }, + { "scoolcode.com", true }, { "scoop6.co.uk", true }, { "scootaloo.co.uk", true }, { "scooter-experts.com", true }, @@ -60935,23 +63199,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scotthelme.co.uk", true }, { "scotthelmesucks.com", true }, { "scottipc.com", true }, + { "scottishcca.co.uk", true }, { "scottishcu.org", true }, { "scottishseniorsgolf.com", true }, { "scottlanderkingman.com", true }, { "scottmay.id.au", true }, + { "scottrae.me.uk", true }, { "scotts-restaurant.com", true }, { "scottseditaacting.com", true }, { "scottshorter.com.au", true }, { "scottspainting.com", true }, { "scouting-wageningen.nl", true }, { "scoutingridderkerk.nl", true }, + { "scoutingtheworld.co.uk", true }, { "scoutingtungelroy.nl", true }, { "scoutnet.de", true }, { "scoutsanbartolome.tk", true }, + { "scoutsberg.be", true }, { "scouttrails.com", true }, { "scp-079.org", true }, { "scp-trens.notaires.fr", true }, { "scp500.com", true }, + { "scpartyentertainment.co.uk", true }, { "scpi-is.fr", true }, { "scpslgame.com", true }, { "scqpw.com", true }, @@ -60968,6 +63237,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scrap.photos", true }, { "scrap.tf", true }, { "scrapbookdecorations.ga", true }, + { "scrapcarremovalmississauga.ca", true }, { "scratchzeeland.nl", true }, { "scrayos.net", true }, { "scredible.com", false }, @@ -60993,7 +63263,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scriptomania.tk", true }, { "scriptslug.com", true }, { "scriptum.gr", true }, - { "scrisulfacebine.ro", true }, { "scrivito.com", true }, { "scrod.me", true }, { "scroll.in", true }, @@ -61023,11 +63292,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "scwilliams.co.uk", true }, { "scwilliams.uk", true }, { "sd.af", true }, + { "sd4u.be", true }, { "sda.one", true }, { "sdcardrecovery.de", true }, { "sdebitati.it", true }, { "sdeu.fr", true }, - { "sdfleetmanagement.com", true }, { "sdg-tracker.org", true }, { "sdgllc.com", true }, { "sdho.org", true }, @@ -61050,12 +63319,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "se.com", true }, { "se.gg", true }, { "se.search.yahoo.com", false }, + { "se86.us", true }, { "sea-godzilla.com", true }, { "seabehind.me", true }, { "seabooty.com", true }, { "seabrooklocksmith.com", true }, { "seac.me", true }, { "seachef.it", true }, + { "seadrive.cc", true }, { "seadus.ee", true }, { "seaelba.com", true }, { "seafood.co.nz", true }, @@ -61131,7 +63402,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sebastianjaworecki.tk", true }, { "sebastianungureanu.com", true }, { "sebastiaperis.com", true }, - { "sebastiensenechal.com", true }, { "sebasveeke.nl", true }, { "sebepoznani.eu", true }, { "seberova.cz", true }, @@ -61148,6 +63418,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sec.gd", true }, { "sec.gov", true }, { "sec.red", true }, + { "sec30.com", true }, { "sec3ure.co.uk", true }, { "sec44.com", false }, { "sec44.net", false }, @@ -61166,6 +63437,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secinto.at", true }, { "secinto.com", true }, { "secitem.de", true }, + { "secluded.site", true }, { "secnews.gr", true }, { "secomo.org", true }, { "second-life-partner-ichien.com", true }, @@ -61187,9 +63459,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secretsdujeu.com", true }, { "secretserveronline.com", true }, { "secretum.tech", true }, - { "secteer.com", true }, + { "secrium.io", true }, { "sectelligence.nl", true }, + { "sectember.com", true }, + { "sectember.events", true }, { "sectest.ml", true }, + { "secthirty.com", true }, { "sectio-aurea.org", true }, { "section-31.org", true }, { "section.io", true }, @@ -61220,6 +63495,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securefiletransfer.nl", true }, { "securegovernment.us", true }, { "secureheaders.com", true }, + { "securehugs.com", true }, { "secureim.de", true }, { "secureindia.co", true }, { "securejabber.me", true }, @@ -61235,17 +63511,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "secureonline.co", true }, { "securepress.io", true }, { "secureprivacy101.org", true }, + { "securesense.nl", true }, + { "securesystems.de", true }, { "securetasks.net", true }, { "securethe.news", true }, - { "securetronic.ch", true }, { "securetrustbank.com", true }, { "securevideo.com", true }, { "securewebcomputing.com", true }, { "secureworks.com", true }, + { "secureyourerp.nl", true }, { "securi-tay.co.uk", true }, { "securify.nl", true }, { "securipy.com", true }, { "securist.nl", true }, + { "securitelandry.com", true }, { "security-24-7.com", true }, { "security-brokers.com", true }, { "security.gives", true }, @@ -61255,13 +63534,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "security.xn--q9jyb4c", true }, { "security201.co.uk", true }, { "security201.com", true }, + { "securityaware.me", true }, { "securityblues.co.uk", false }, { "securitybrief.asia", true }, { "securitybrief.co.nz", true }, { "securitybrief.com.au", true }, { "securitybrief.eu", true }, { "securitybsides.pl", false }, - { "securitycamerascincinnati.com", true }, { "securitydriver.com", true }, { "securityescrownews.com", true }, { "securityfest.com", true }, @@ -61276,7 +63555,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securitypluspro.com", true }, { "securityprimes.in", true }, { "securitypuppy.com", true }, - { "securityrussia.com", true }, { "securitysense.co.uk", true }, { "securitysnobs.com", false }, { "securitysoapbox.com", true }, @@ -61291,18 +63569,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "securon.io", true }, { "securoswiss.ch", true }, { "securview.ch", true }, + { "secutorcloud.com", true }, { "secutrans.com", true }, { "secuvera.de", false }, { "secvault.io", true }, { "secwall.me", true }, - { "secyourity.se", true }, - { "sedesignxtra.com", true }, + { "secyourity.se", false }, { "sedlakovalegal.com", true }, { "sedlex.fr", true }, { "sedmicka.sk", false }, { "sedoexpert.nl", true }, { "sedoexperts.nl", true }, - { "sedomicilier.fr", true }, { "see.asso.fr", true }, { "see.wtf", true }, { "seedalpha.com", true }, @@ -61324,6 +63601,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seeonce.co", true }, { "seerainer.com", true }, { "seesuite.com", false }, + { "seetheprogress.com", true }, + { "seetheprogress.de", true }, + { "seetheprogress.eu", true }, + { "seetheprogress.net", true }, + { "seetheprogress.org", true }, { "seewang.me", true }, { "seewhatididhere.com", true }, { "seewines.com", true }, @@ -61343,13 +63625,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seguimosganando.com", true }, { "segulink.com", true }, { "seguridadconsumidor.gov", true }, + { "seguridadsistem.tech", true }, + { "seguridadsistemtienda.tech", true }, { "seguridadysaludeneltrabajo.com.co", true }, { "seguros-de-salud-y-vida.com", true }, { "segurosbalboa.com.ec", false }, { "segurosmaurobracchieri.com", true }, { "segurosocial.gov", false }, { "seguroviagem.srv.br", false }, - { "sehablazolano.com", true }, { "sehd.top", true }, { "sehnenweh.org", true }, { "seht.xyz", true }, @@ -61369,10 +63652,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seitai-nabejun.jp", true }, { "seitai-taiyou.com", true }, { "seitenwaelzer.de", true }, + { "sejageek.com", true }, { "sek.ai", true }, { "sekainokokki.jp", true }, { "sekfung.me", true }, { "sekisonn.com", true }, + { "sekkom.com", true }, { "sekoya.org", true }, { "sektor.ro", true }, { "sektor.tech", true }, @@ -61401,6 +63686,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seleondar.ru", true }, { "self-business.tk", true }, { "self-evident.org", true }, + { "self-signed.com", true }, { "self-xss.info", true }, { "selfassess.govt.nz", true }, { "selfdestruct.net", true }, @@ -61434,21 +63720,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seloc.org", true }, { "seltendoof.de", true }, { "semacode.com", true }, - { "semaf.at", true }, { "semaflex.it", true }, - { "semakincantik.com", true }, { "semantica.cz", false }, { "semao.org", true }, { "semaphore-studios.com", true }, { "sembyotic.com", true }, - { "semdynamics.com", true }, { "semenov.ml", true }, { "semenov.su", true }, { "sementes.gratis", true }, { "semerkhet.com", true }, + { "semesur.com", true }, { "semianalog.com", true }, { "seminariosvip.com", true }, { "seminariruum.ee", true }, + { "seminarraum-isny.de", true }, { "semiocast.com", true }, { "semiotical.com", false }, { "semiotika.tk", true }, @@ -61474,6 +63759,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sendc.at", true }, { "sendcat.com", true }, { "sender.services", true }, + { "sendfile.online", true }, { "sendingbee.com", true }, { "sendmeback.de", false }, { "sendonce.io", true }, @@ -61485,8 +63771,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "senego.com", true }, { "senekalstorageman.co.za", true }, { "senergyconsultants.com", true }, - { "sengoku-okayama.net", true }, - { "sengokulife.com", true }, { "senhost.tk", true }, { "seniorem.eu", true }, { "seniorhomepurchaseprogram.com", true }, @@ -61499,6 +63783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sens2lavie.com", true }, { "sense.hamburg", true }, { "sensebridge.net", true }, + { "senseonline.co.il", true }, { "sensepixel.com", true }, { "senshot.com", true }, { "senshudo.tv", true }, @@ -61508,7 +63793,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sensoft-int.org", true }, { "sensor-dream.ru", true }, { "sensorville.com.br", true }, - { "sensory-brands.com", true }, { "sensound.ml", true }, { "sensualism.com", true }, { "sensuality-models.com", true }, @@ -61519,17 +63803,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sentiments.io", true }, { "sentinel.gov", true }, { "sentinelproject.io", true }, - { "sentinelsmotorcycleclub.com", true }, { "sentirmebien.org", true }, { "sentry.io", true }, { "sentry.nu", true }, + { "sentworks.com", true }, { "senu.pro", true }, { "senzaparole.de", true }, { "seo-analyse.com", true }, { "seo-dr-it.com", true }, { "seo-forum.nu", true }, { "seo-linz.at", true }, - { "seo-nerd.de", true }, { "seo-obmen.tk", true }, { "seo-phpbb.cf", true }, { "seo-piar.tk", true }, @@ -61537,18 +63820,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seo-reality.cf", true }, { "seo-website.ru", true }, { "seo.london", true }, - { "seoagentur2go.de", true }, { "seoankara.name.tr", true }, { "seoarchive.org", true }, - { "seobase.pro", true }, { "seobutler.com", true }, + { "seocraft.me", true }, { "seodayo.com", true }, { "seoexpert.com.br", true }, { "seogeek.nl", true }, { "seohackers.fr", true }, - { "seoharish.com", true }, { "seohouston.com", true }, { "seoinc.com", true }, + { "seoium.com", true }, { "seojames.com", true }, { "seolab.amsterdam", true }, { "seolabuitest.azurewebsites.net", true }, @@ -61558,20 +63840,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "seomaton.com", true }, { "seomaton.org", true }, { "seomen.biz", true }, - { "seomik.dk", true }, + { "seon.me", true }, + { "seonoco.com", true }, { "seoonline.cf", true }, - { "seoprovider.nl", true }, { "seoquake.com", true }, { "seorus.cf", true }, { "seoscribe.net", true }, - { "seosec.xyz", true }, { "seoserfing.tk", true }, { "seosof.com", true }, { "seoul.dating", true }, { "seovision.se", true }, { "seoviziti50.tk", true }, { "seowebexpert.co.uk", true }, - { "seowordpress.pl", true }, + { "seowerkz.com", true }, { "seowork.tk", true }, { "seozel.tk", true }, { "sepalandseed.com", true }, @@ -61583,6 +63864,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "septonol.tk", true }, { "septs.blog", true }, { "seputarpengertian.com", true }, + { "sequachee.com", true }, { "sequatchiecounty-tn.gov", true }, { "sequatchiecountytn.gov", true }, { "sequencing.com", true }, @@ -61598,6 +63880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sereema.com", true }, { "serele.fr", true }, { "serenaden.at", true }, + { "serenascreations.com", true }, { "serenavilage.net", true }, { "serenavillage.net", true }, { "serenavillageresidence.com", true }, @@ -61609,14 +63892,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sergefonville.nl", true }, { "sergeyreznikov.com", true }, { "sergije-stanic.me", true }, - { "sergio.me", true }, { "sergiozygmunt.com", true }, { "sergivb01.me", false }, { "serialexperiments.co.uk", true }, - { "serienstream.to", true }, { "seriesdatv.pt", true }, + { "seriesfeed.com", true }, { "serigraphs.co.uk", true }, - { "serije.co", true }, { "serinamusic.com", true }, { "seriousaboutsecurity.com", true }, { "seriousclimbing.com", true }, @@ -61633,6 +63914,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serrano-chris.ch", false }, { "serrature.roma.it", true }, { "seru.eu", true }, + { "servcom.net.au", true }, { "serve-a.com.au", true }, { "servea.com.au", true }, { "serveatechnologies.com", true }, @@ -61643,16 +63925,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servepublic.org", true }, { "server-bg.net", true }, { "server-daten.de", true }, - { "server-essentials.com", true }, - { "server-eye.com", true }, - { "server-eye.de", true }, { "server72a.ddns.net", true }, { "server92.eu", true }, { "server92.tk", true }, { "serveradium.com", true }, { "serveradmin.ovh", true }, { "serverco.com", true }, - { "servercode.ca", true }, { "serverd.de", true }, { "serverexpose.com", true }, { "serverfrog.de", true }, @@ -61660,19 +63938,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serverhunter.com", true }, { "serverlauget.no", true }, { "serverlog.net", true }, + { "servermacher.de", true }, { "servermaster.sk", true }, { "serverninja.tk", true }, { "serveroffline.net", false }, { "serverpedia.de", true }, - { "servers4all.co.uk", true }, { "serversfrom.space", true }, { "serversftw.com", true }, { "serverstuff.info", true }, { "serversuit.com", true }, { "servertastic.com", true }, + { "servertutorial.eu", true }, { "servethecity-karlsruhe.de", true }, { "servetten-groothandel.nl", true }, - { "servettorna.com", true }, { "serveur.nl", true }, { "serveursminecraft.org", true }, { "servfefe.com", true }, @@ -61686,6 +63964,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "servicemagicusa.com", true }, { "servicemembers.gov", true }, { "servicerequesthub.io", true }, + { "serviceslotenmaker.nl", false }, + { "servicestechnologiquesam.ca", true }, + { "servicevie.com", true }, { "serviciales.com", true }, { "servicios-electricos.com", true }, { "servida.ch", true }, @@ -61710,7 +63991,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "serw.org", true }, { "serwetki-papierowe.pl", true }, { "serwis-wroclaw.pl", true }, - { "serwusik.pl", true }, { "seryovpn.com", true }, { "seryox.com", true }, { "sesam-biotech.com", true }, @@ -61761,7 +64041,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "severntrentinsuranceportal.com", true }, { "sevilinux.es", true }, { "sevinci.ch", true }, - { "sevipro.mx", true }, { "sevocomm.com", true }, { "sevsey.ru", true }, { "sevwebdesign.com", true }, @@ -61778,6 +64057,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sex-education.com", true }, { "sex-sex-cam.com", true }, { "sex5.com", true }, + { "sexaki.com", true }, { "sexar.info", true }, { "sexara.co", true }, { "sexdocka.nu", true }, @@ -61791,18 +64071,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sexonosalao.com", true }, { "sexoyrelax.com", true }, { "sexpay.net", true }, - { "sexplicit.co.uk", true }, { "sexservice.io", true }, { "sexshopfacil.com.br", true }, { "sexshopnet.com.br", true }, { "sextop1.pro", true }, + { "sexvirtualspace.com", true }, { "sexwork.net", true }, { "sexy-store.nl", true }, + { "sexyblonds.net", true }, { "sexyfish.com", true }, { "sexyfotosvandep.nl", true }, { "sexymassageoil.com", true }, { "sexytagram.com", true }, - { "seydaozcan.com", true }, { "seyfarth.de", true }, { "seyhanlar.com", true }, { "seyr.it", true }, @@ -61811,7 +64091,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sfa.sk", true }, { "sfaparish.org", true }, { "sfaturiit.ro", true }, + { "sfbao.com", true }, { "sfdev.ovh", true }, + { "sfera360.es", true }, { "sfg-net.com", true }, { "sfg-net.eu", true }, { "sfg-net.net", true }, @@ -61824,8 +64106,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sfleisure.com", true }, { "sflhidta.gov", true }, { "sfo-fog.ch", false }, + { "sfpebblesstones.com", true }, { "sft-framework.org", true }, { "sftool.gov", true }, + { "sfvonline.nl", true }, { "sg-elektro.de", true }, { "sg.search.yahoo.com", false }, { "sg1.tech", true }, @@ -61843,7 +64127,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sgombero.it", true }, { "sgrmreproduccionapp.azurewebsites.net", true }, { "sgrossi.it", true }, - { "sgroup-rec.com", true }, { "sgrub.xyz", true }, { "sgs-systems.de", true }, { "sgs.camera", true }, @@ -61861,7 +64144,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sh0rt.zone", true }, { "sh0shin.org", true }, { "sh0uld.net", true }, - { "sh11.pp.ua", true }, { "sh4y.com", true }, { "sh68.cc", true }, { "sha.bi", true }, @@ -61925,12 +64207,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shamans.ga", true }, { "shamara.info", true }, { "shamariki.ru", false }, + { "shambhu.info", true }, { "shampoo63.ru", true }, { "shan.io", false }, { "shan.si", true }, - { "shanae.nl", true }, { "shanahanstrategy.com", true }, { "shanefagan.com", true }, + { "shanesofos.com", true }, + { "shanesofos.info", true }, { "shanetully.com", true }, { "shanevandermeer.com", true }, { "shanewadleigh.com", true }, @@ -61952,8 +64236,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sharanyamunsi.net", true }, { "shard.vc", true }, { "sharealo.org", true }, + { "shareasale-analytics.com", true }, + { "sharedgoals.co", true }, { "sharedhost.de", true }, { "shareeri.com", true }, + { "shareeri.xyz", true }, { "sharefox.eu", true }, { "sharefox.nl", true }, { "sharejoy.cn", false }, @@ -62043,11 +64330,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shelleystoybox.com", true }, { "shellfire.de", true }, { "shellgame.io", true }, + { "shellj.me", true }, { "shelljuggler.com", false }, { "shellopolis.com", true }, { "shellot.com", true }, { "shellshock.eu", true }, { "shellta.com", true }, + { "shellta.net", true }, { "shellvatore.us", true }, { "sheltieplanet.com", true }, { "shelvacu.com", true }, @@ -62057,9 +64346,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shenghaiautoparts.com", true }, { "shenghaiautoparts.net", true }, { "shengrenyu.com", true }, + { "shenpei.net", true }, { "shens.ai", true }, { "shentengtu.idv.tw", true }, - { "shenyuqi.com", false }, { "shepherdsfriendly.co.uk", true }, { "sherbers.de", true }, { "sheremetka.com", true }, @@ -62067,12 +64356,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sheriffpawneecountyne.gov", true }, { "shermantank.biz", true }, { "sherpa.blog", true }, - { "sherrikehoetherapy.com", true }, + { "sherpnortheast.com", true }, { "sherrikelley.com", true }, { "sherut.net", true }, { "shethbox.com", true }, { "shevet-achim.tk", true }, { "shft.cl", true }, + { "shfzzz.org", true }, { "shg-pornographieabhaengigkeit.de", false }, { "shgroup.xyz", true }, { "shgt.jp", true }, @@ -62081,15 +64371,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shiawasedo.co.jp", true }, { "shibainu.com.br", true }, { "shibbydex.com", true }, - { "shibuya-rin.kr", false }, + { "shibuya-rin.kr", true }, + { "shichibukai.net", true }, { "shico.org", true }, { "shidai88.cc", true }, { "shielddagger.com", true }, { "shielder.it", true }, { "shieldofachilles.in", true }, + { "shifaat.com", true }, { "shift-record.com", true }, { "shift-to.co.jp", true }, { "shift.email", true }, + { "shiftcrypto.ch", true }, { "shiftdevices.com", true }, { "shiftj.is", true }, { "shiftleft.org", true }, @@ -62128,9 +64421,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shipard.com", true }, { "shipard.cz", true }, { "shipcloud.io", true }, + { "shipito.kg", true }, + { "shipmonk.com", true }, { "shippercenter.info", true }, { "shipping24h.com", false }, - { "shippinglabel.de", false }, + { "shippinglabel.de", true }, { "shiqi.ca", true }, { "shiqi.lol", true }, { "shiqi.one", true }, @@ -62144,10 +64439,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shiresvets.com", true }, { "shirevirtual.tk", true }, { "shiriforum.tk", true }, + { "shiroanime.es", true }, { "shiroki-k.net", true }, { "shirt2go.shop", true }, { "shirtsdelivered.com", true }, { "shirtsofholland.com", true }, + { "shishadenbosch.nl", true }, { "shishamania.de", true }, { "shishkabobnc.com", true }, { "shishkin.us", true }, @@ -62161,7 +64458,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shitproductions.org", true }, { "shitsta.in", true }, { "shiva-temple.tk", true }, - { "shivamber.com", false }, + { "shivamber.com", true }, { "shivammathur.com", true }, { "shivamohanam.com", true }, { "shixuen.com", true }, @@ -62176,7 +64473,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shoejitsu.co", true }, { "shoemakerywc.com", true }, { "shoeracks.uk", true }, - { "shoes-mori.co.jp", true }, { "shoestringeventing.co.uk", true }, { "shokola.com", true }, { "shokureach.jp", true }, @@ -62238,14 +64534,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shopstasy.com", true }, { "shoptec.sk", true }, { "shopteq.hu", true }, + { "shoptio.cz", true }, { "shopunilever.com", true }, { "shopwebhue.com", true }, { "shorebreaksecurity.com", true }, { "shorehamfort.co.uk", true }, + { "shorewoodmn.gov", true }, { "shorifart.com", true }, { "short-term-plans.com", true }, { "short.cm", true }, { "short.wtf", true }, + { "shortaudition.com", true }, + { "shortaudition.net", true }, + { "shortaudition.tv", true }, { "shortcut.pw", true }, { "shortdiary.me", true }, { "shorten.ninja", true }, @@ -62264,13 +64565,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shouldbetaught.com", true }, { "shouttag.com", true }, { "shovonhasan.com", true }, - { "show-stream.tv", true }, + { "show-pro.com.au", true }, { "showbits.net", true }, { "shower.im", true }, { "showersnet.com", true }, { "showf.om", true }, { "showfom.sb", true }, { "showmax.com", true }, + { "showmeengland.co.uk", true }, { "showmethegadgets.com", true }, { "showmethemoney.ru", true }, { "shownet.tk", true }, @@ -62292,6 +64594,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shrimpcam.pw", true }, { "shrinidhiclinic.in", true }, { "shrinkhub.com", true }, + { "shrsl.com", true }, { "shrt.tv", true }, { "shrub.ca", true }, { "shrug.ml", false }, @@ -62311,6 +64614,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shuax.com", true }, { "shuffleradio.nl", true }, { "shugo.net", true }, + { "shugua.com.tw", true }, { "shuhacksoc.co.uk", true }, { "shulan.moe", true }, { "shuletime.ml", true }, @@ -62319,7 +64623,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "shuomingshu88.com", true }, { "shura.eu.org", true }, { "shurita.org", true }, - { "shuro.de", true }, { "shuset.dk", true }, { "shushu.media", true }, { "shutter-shower.com", true }, @@ -62344,7 +64647,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "siamrehab.com", true }, { "siamsnus.com", true }, { "sianbryn.co.uk", true }, - { "sianipestcontrolinc.com", true }, { "sianjhon.com", true }, { "siava.ru", true }, { "siberas.de", true }, @@ -62354,6 +64656,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sibertakvim.com", true }, { "sibfk.org", true }, { "sibrenvasse.nl", true }, + { "siccardisport.it", true }, { "sice-si.org", true }, { "sich-fight.club", true }, { "siciliadisinfestazioni.it", true }, @@ -62363,6 +64666,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sicken.eu", true }, { "sickfile.com", false }, { "sicklepod.com", true }, + { "sickplanet.cf", true }, { "sicurezza24.info", true }, { "sicurezzalavoro24.com", true }, { "sicurled.com", true }, @@ -62386,7 +64690,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sidpod.ru", true }, { "sidsun.com", true }, { "siduga.com", true }, - { "siebens.net", false }, { "siebeve.be", true }, { "siecledigital.fr", true }, { "siegemund-frankfurt.de", true }, @@ -62400,7 +64703,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sietejefes.com.ar", true }, { "sieulog.com", true }, { "sieumod.com", true }, - { "sift-tool.org", true }, + { "sieuthithangmay.com", true }, + { "sift-tool.org", false }, + { "sifuondemand.com", true }, { "sig6.org", true }, { "siga.com", true }, { "sigabrt.org", true }, @@ -62416,6 +64721,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sigmalux.ltd", true }, { "sigmalux.sarl", true }, { "sigmapramuka.com", true }, + { "sigmasensors.com.br", true }, { "sigmaweb.co.uk", true }, { "sign.dog", true }, { "sign.io", true }, @@ -62439,12 +64745,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "signslabelstapesandmore.com", false }, { "signtul.com", false }, { "signup.ly", true }, + { "sigparser.com", true }, { "sigsrv.net", true }, { "sigterm.sh", true }, { "sigurnost.online", true }, { "sihaizixun.net", true }, { "siikaflix.tv", true }, - { "siirtutkusu.com", true }, + { "siirtutkusu.com", false }, { "sijbesmaverhuizingen.nl", true }, { "sik-it.nl", true }, { "sikademy.com", true }, @@ -62461,6 +64768,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silent-clean.de", true }, { "silent-yachts.com", true }, { "silentexplosion.de", true }, + { "silentinstaller.com", true }, { "silentkernel.fr", true }, { "silentundo.org", true }, { "silesianlawyer.pl", true }, @@ -62485,6 +64793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silverblog.org", true }, { "silverbowflyshop.com", true }, { "silverdragonart.com", true }, + { "silvergoldbull.at", true }, { "silvergoldbull.ba", true }, { "silvergoldbull.be", true }, { "silvergoldbull.bg", true }, @@ -62574,9 +64883,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "silvine.xyz", true }, { "silvistefi.com", true }, { "silvobeat.blog", true }, + { "silvobeat.com", true }, { "sim-karten.net", true }, { "sim-minaoshi.jp", true }, { "sim-mobile.ml", true }, + { "sim-sim.appspot.com", true }, { "sim-usa.mobi", true }, { "sim4seed.org", true }, { "simam.de", true }, @@ -62585,25 +64896,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simbeton.nl", true }, { "simbolo.co.uk", false }, { "simcoecurlingclub.ca", true }, + { "simcongroup.ir", true }, { "simeonoff.ninja", true }, - { "simetal.ch", true }, + { "simetal.ch", false }, { "simfdr.com", true }, { "simfed.org", true }, { "simha.online", true }, { "simhaf.cf", true }, + { "simi-reizen.nl", true }, { "simivalleyelectrical.com", true }, { "simivalleyexteriorlighting.com", true }, { "simivalleylandscapelighting.com", true }, { "simivalleylighting.com", true }, { "simivalleyoutdoorlighting.com", true }, { "simkova-reality.cz", true }, - { "simlau.net", true }, + { "simlau.net", false }, { "simmis.fr", false }, { "simmtronic.com", true }, { "simnovo.net", true }, { "simoesgoulart.com.br", true }, { "simon-agozzino.fr", true }, - { "simon-czech.de", true }, { "simon-hofmann.org", true }, { "simon-mueller.de", true }, { "simon3k.moe", true }, @@ -62614,6 +64926,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simoncook.org", true }, { "simonevans.uk", true }, { "simonfischer.info", true }, + { "simonheung.com", true }, { "simonhirscher.de", true }, { "simonholst.dk", true }, { "simonkjellberg.com", true }, @@ -62621,10 +64934,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simonlyabonnement.nl", true }, { "simonmaddox.com", true }, { "simonmanuel.com", true }, - { "simonpayne.cz", true }, { "simonreich.de", true }, { "simonschmitt.ch", true }, - { "simonsmh.cc", true }, { "simonspeich.ch", true }, { "simonsreich.de", true }, { "simonssh.ddns.net", true }, @@ -62641,6 +64952,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simphony.cz", true }, { "simpip.com", true }, { "simple.com", false }, + { "simplechoicesuper.com.au", true }, { "simpleclassiclife.com", true }, { "simplecmsdemo.com", true }, { "simplecoding.click", true }, @@ -62657,7 +64969,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simplemining.net", true }, { "simpleprojects.net", true }, { "simplerses.com", true }, - { "simpleshirts.us", true }, + { "simplertrading.com", true }, { "simpletax.ca", true }, { "simplewire.de", true }, { "simplexgame.net", true }, @@ -62675,6 +64987,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simplycloud.de", true }, { "simplyfixit.co.uk", true }, { "simplyhelen.de", true }, + { "simplyml.com", true }, { "simplymozzo.se", true }, { "simplyowners.net", true }, { "simplyregister.net", true }, @@ -62690,6 +65003,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "simulping.com", true }, { "simumiehet.com", true }, { "simus.fr", true }, + { "simyayayinlari.com", true }, { "sin-el-fil.com", true }, { "sin-nombre-alleria.de", true }, { "sin.swiss", false }, @@ -62704,7 +65018,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sindarina.com", true }, { "sindarina.eu", true }, { "sindarina.net", true }, + { "sindastra.de", true }, { "sinde.ru", true }, + { "sindicatoburgos.org", true }, { "sindlerova.com", true }, { "sindlerova.cz", true }, { "sindominio.net", true }, @@ -62713,7 +65029,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinews.tk", true }, { "sinfield.com", false }, { "sinfonietta-meridiana.de", true }, - { "sinful.pw", true }, { "sinfulforums.net", true }, { "sinfully.gq", true }, { "sinfulthrills.co.uk", true }, @@ -62721,6 +65036,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "singee.site", true }, { "singel.ch", true }, { "singer.ru", true }, + { "singhpackersmovers.com", false }, { "single-in-stuttgart.de", true }, { "singleproduction.com", true }, { "singles-aus-hamburg.de", true }, @@ -62733,6 +65049,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sinluzvenezuela.tk", true }, { "sinmik.com", true }, { "sinnersprojects.ro", true }, + { "sinnvoll-online.de", true }, { "sinog.si", true }, { "sinomod.com", true }, { "sinonimos.com.br", true }, @@ -62744,9 +65061,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sint-joris.nl", true }, { "sintaxis.org", true }, { "sinterama.biz", true }, - { "sinupret-extract.com.ua", true }, { "sinusbot.online", true }, { "sinusitis-bronchitis.ch", true }, + { "sinvideovault.com", true }, { "sioeckes.hu", true }, { "siogyumolcs.hu", true }, { "sion-colony.tk", true }, @@ -62769,6 +65086,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sirencallofficial.com", true }, { "sirenslove.com", true }, { "sirg.fr", true }, + { "siri.cc", true }, { "sirihouse.com", true }, { "siriuspup.com", true }, { "sirtaptap.com", true }, @@ -62812,9 +65130,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sit-brn.ru", true }, { "sit.ec", true }, { "sit.moe", true }, - { "sitahk.org", true }, { "sitak.fi", true }, { "sitanleta.de", true }, + { "sitatravel.gr", true }, { "sitc.sk", true }, { "site-helper.com", true }, { "site-ua.tk", true }, @@ -62827,6 +65145,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sitedebelezaemoda.com.br", true }, { "sitedrive.fi", true }, { "sitefactory.com.br", true }, + { "sitehoster.org", true }, { "sitekatalog.tk", true }, { "sitelmexico.com", true }, { "sitemai.eu", true }, @@ -62845,7 +65164,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sito-online.ch", true }, { "sittogether.club", true }, { "sittogether.tw", true }, - { "sitz.ch", true }, { "siulam-wingchun.org", true }, { "siusto.com", true }, { "sivale.mx", true }, @@ -62872,9 +65190,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sjoorm.com", true }, { "sjorsvanweert.nl", true }, { "sjrcommercialfinance.co.uk", true }, - { "sjsmith.id.au", true }, { "sjttt.com", true }, { "sjwheel.net", true }, + { "sjyachting.com", true }, { "sk.tl", true }, { "sk33t.cf", true }, { "sk33t.ga", true }, @@ -62886,6 +65204,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skaiman.ga", true }, { "skalar.sk", true }, { "skalec.org", true }, + { "skalis-portage.com", true }, { "skante.tk", true }, { "skanvordoff.ru", true }, { "skarox.com", true }, @@ -62917,7 +65236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skhire.co.uk", true }, { "skhoop.cz", true }, { "skiblandford.com", true }, - { "skid-berlin.de", true }, { "skid.church", true }, { "skiddle.com", true }, { "skifairview.com", true }, @@ -62942,21 +65260,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skincare-note.com", true }, { "skincareagent.cf", true }, { "skincases.co", true }, - { "skincontracts.co", true }, { "sking.io", true }, { "skingame.co", true }, { "skingames.co", true }, { "skinmarket.co", true }, { "skinmodo.com", true }, + { "skinpet.com", true }, { "skinpwrd.com", true }, - { "skins.net", true }, { "skinseries.cf", true }, { "skinstyleglobal.com", true }, { "skinwhiteningoptions.com", false }, { "skipbounce.com", true }, { "skipfault.com", true }, { "skipperinnovations.com", false }, - { "skippy.dog", true }, + { "skippy.dog", false }, + { "skiptadiabetes.com", true }, { "skipton.io", true }, { "skirts.tk", true }, { "skischule-wildewiese.de", true }, @@ -62979,7 +65297,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skolnieks.lv", true }, { "skolnilogin.cz", true }, { "skolniweby.cz", true }, - { "skooks.fr", true }, + { "skooks.fr", false }, { "skoolergraph.azurewebsites.net", true }, { "skorepova.info", true }, { "skorovsud.ru", true }, @@ -62989,14 +65307,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skotty.io", true }, { "skou.dk", false }, { "skpk.de", true }, + { "skpracta.info", true }, + { "skpracta.tk", true }, { "skram.de", true }, { "skremovals.co.uk", true }, { "skrivande.co", false }, { "sksdrivingschool.com.au", true }, - { "sksongs.in", false }, { "sktan.com", true }, { "sktorrent.org", true }, { "sktsolution.com", false }, + { "sku-partei.de", true }, { "skuizy.ddns.net", true }, { "skulblaka.ch", true }, { "skulblaka.cloud", true }, @@ -63007,12 +65327,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skux.ch", true }, { "skwile-cafe.com", true }, { "skwitko.com", true }, + { "skwlkrs.com", true }, + { "skxpl.eu.org", true }, { "sky-aroma.com", true }, { "sky-coach.com", true }, { "sky-coach.nl", true }, { "sky-live.fr", true }, { "sky-torch.com", true }, - { "skyanchor.com", true }, + { "skyanchor.com", false }, { "skyartsfake.com", true }, { "skyautorental.com", true }, { "skybloom.com", true }, @@ -63034,8 +65356,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skylineservers.com", true }, { "skylocker.net", true }, { "skyloisirs.ch", false }, + { "skyn3t.in", true }, { "skynet-research.us", true }, { "skynet233.ch", false }, + { "skynet800.goip.de", true }, { "skynethk.com", true }, { "skynetnetwork.eu.org", true }, { "skynetstores.ae", true }, @@ -63044,6 +65368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "skyntalent.com", true }, { "skyoy.com", true }, { "skype.com", true }, + { "skypech.com", true }, { "skypefr.com", true }, { "skyportcloud.com", true }, { "skyquid.co.uk", true }, @@ -63074,7 +65399,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slack.com", true }, { "sladic.si", false }, { "slainvet.net", true }, - { "slalix.cc", true }, + { "slalix.cc", false }, { "slalix.pw", true }, { "slalix.xyz", true }, { "slamdjapan.com", true }, @@ -63089,6 +65414,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slash64.co.uk", true }, { "slash64.uk", true }, { "slashbits.no", true }, + { "slashcam.de", true }, { "slashcrypto.org", true }, { "slate.to", true }, { "slatemc.com", true }, @@ -63108,6 +65434,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sleepmap.de", true }, { "sleeps.jp", true }, { "sleepstar.co.uk", true }, + { "sleepstar.com.mt", true }, { "sleepstar.de", true }, { "sleepstar.fr", true }, { "sleestak.net", true }, @@ -63149,8 +65476,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "slotcar.com", false }, { "slotfara.com", true }, { "slotfara.net", true }, + { "slothless.com", true }, { "sloths.org", true }, { "slotlist.info", true }, + { "slotmad.com", true }, { "slovenskycestovatel.sk", true }, { "slow.social", true }, { "slow.zone", false }, @@ -63187,6 +65516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sm.link", true }, { "sm.ms", true }, { "sm2016.ch", true }, + { "sma-dev.de", true }, { "sma-gift.com", true }, { "smablo.com", true }, { "smackhappy.com", true }, @@ -63194,7 +65524,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smakassen.no", true }, { "smakoszwegrzynka.pl", true }, { "smaksbanken.no", true }, - { "small-panda.com", true }, { "smallbytedesign.co", true }, { "smallchat.nl", true }, { "smallcloudsolutions.co.za", true }, @@ -63216,6 +65545,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smaltimentorifiuti.firenze.it", true }, { "smaltimentorifiuti.livorno.it", true }, { "smaltimentorifiuti.milano.it", true }, + { "smaltimentorifiuti.napoli.it", true }, { "smaltimentorifiuti.prato.it", true }, { "smaltimentorifiuti.roma.it", true }, { "smaltimentorifiuti.veneto.it", true }, @@ -63228,18 +65558,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smart-media-gmbh.de", true }, { "smart-wohnen.net", true }, { "smart.gov", true }, - { "smart.vet", true }, { "smartacademy.ge", true }, { "smartacademy.pro", true }, - { "smartairkey.com", true }, { "smartandcom.ch", false }, { "smartandhappychild.ro", false }, { "smartass.space", true }, + { "smartass0027.com", true }, { "smartbiz.vn", true }, { "smartcheck.gov", true }, { "smartcleaningcenter.nl", true }, { "smartcover.tk", true }, { "smartcpa.ca", true }, + { "smartdb.jp", true }, { "smartedg.io", true }, { "smarterskies.gov", true }, { "smartest-trading.com", true }, @@ -63249,6 +65579,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartgridsecurity.com", true }, { "smartgridsecurity.org", true }, { "smarthdd.com", true }, + { "smarthealthinnovationlab.com", true }, { "smarthinking.nl", true }, { "smarthouse.de", true }, { "smartime.com.ar", true }, @@ -63262,12 +65593,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartlogtower.com", true }, { "smartlybuy.com", true }, { "smartmachine.com", true }, - { "smartmail24.de", true }, { "smartmeal.ru", true }, { "smartmessages.net", true }, { "smartminibushire.co.uk", true }, { "smartmomsmartideas.com", true }, { "smartmones.com", true }, + { "smartpanelsmm.com", true }, { "smartpatika.hu", true }, { "smartpheromones.com", true }, { "smartphone-blog.de", true }, @@ -63280,15 +65611,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smartproductguide.com", true }, { "smartpti.net", true }, { "smartrecruit.ro", true }, - { "smartresumeservices.com", true }, + { "smartrise.us", true }, { "smartservices.nl", true }, { "smartshiftme.com", true }, { "smartship.co.jp", true }, { "smartshoppers.es", true }, { "smartsitio.com", true }, { "smartsparrow.com", true }, + { "smartstep.pt", true }, { "smartthursday.hu", true }, { "smartvideo.io", true }, + { "smartviewing.com", true }, { "smartvita.com", true }, { "smartwank.com", true }, { "smartweb.ge", true }, @@ -63301,7 +65634,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smb445.com", true }, { "smbeermen.tk", true }, { "smcj.xyz", true }, - { "smcquistin.uk", true }, { "smdavis.us", true }, { "smdcn.net", true }, { "smdtk.com", true }, @@ -63311,6 +65643,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smesitel-online.ru", true }, { "smeso.it", true }, { "smexpt.com", true }, + { "smh.me", true }, { "smi-a.me", true }, { "smiatek.name", true }, { "smiblog.tk", true }, @@ -63333,7 +65666,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smith.bz", true }, { "smith.co", false }, { "smith.is", true }, - { "smithandcanova.co.uk", false }, { "smithchung.eu", true }, { "smithcountytxtaxrates.gov", true }, { "smithf.red", true }, @@ -63342,6 +65674,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smits.frl", true }, { "smkw.com", false }, { "sml.lc", true }, + { "smlk.org", true }, { "smm.im", true }, { "smmcab.ru", true }, { "smmlaba.io", true }, @@ -63383,7 +65716,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smsk.io", true }, { "smskeywords.co.uk", true }, { "smskmail.com", true }, - { "smslodging.com", true }, { "smsprivacy.org", true }, { "smspujcka24.eu", true }, { "smtenants.cn", true }, @@ -63399,6 +65731,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "smys.uk", true }, { "sn0int.com", true }, { "snabbare-dator.se", true }, + { "snabbfoting.com", true }, + { "snabbfoting.se", true }, { "snabbit-support.nu", true }, { "snabbit-support.se", true }, { "snabblim.tk", true }, @@ -63413,7 +65747,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snapserv.ch", true }, { "snapserv.net", true }, { "snaptools.io", true }, - { "snapworks.net", true }, { "snarf.in", true }, { "snargol.com", true }, { "snatch-note.tk", true }, @@ -63441,6 +65774,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snelbv.nl", true }, { "snelshops.nl", true }, { "snelwebshop.nl", true }, + { "snelwegzen.nl", true }, { "snelxboxlivegold.nl", true }, { "snerith.com", true }, { "snfdata.com", false }, @@ -63462,7 +65796,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snipermarkettiming.com", true }, { "snipl.io", true }, { "snippet.host", true }, - { "snippet.wiki", true }, + { "snippet.wiki", false }, { "snipr.gg", true }, { "snizl.com", true }, { "snj.pt", true }, @@ -63477,6 +65811,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snortfroken.net", true }, { "snote.io", true }, { "snoupon.com", true }, + { "snoutsandpaws.com", true }, { "snow-online.com", true }, { "snow-online.de", true }, { "snow-service.it", true }, @@ -63508,7 +65843,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "snsirius.cf", true }, { "sntravel.co.uk", true }, { "snuff.porn", true }, - { "snuverma.com", true }, { "snwsjz.com", true }, { "sny.no", true }, { "so.is-a-cpa.com", true }, @@ -63529,7 +65863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soblaznenie.ru", true }, { "soblaznenie2.ru", true }, { "soboleva-pr.com.ua", true }, - { "sobotkama.eu", true }, { "sobreporcentagem.com", true }, { "soc.net", true }, { "socal-babes.com", true }, @@ -63547,12 +65880,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "social-media-strategy.org.uk", true }, { "social-work-colleges.com", true }, { "socialair.tk", true }, + { "socialblaze.com.au", true }, { "socialclimb.com", true }, { "socialdevelop.biz", false }, { "socialhams.net", true }, + { "socialief.com", true }, { "socializam.com", true }, { "socializam.ro", true }, { "sociallyunited.net", true }, + { "socialmark.mx", true }, { "socialmarketingday.nl", true }, { "socialmedia-manager.gr", true }, { "socialnitro.com", true }, @@ -63601,15 +65937,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sofialobocera.com", true }, { "sofiavanmoorsel.com", true }, { "sofiawestergren.com", true }, + { "sofidelshop.blog", true }, { "sofiesteinfeld.de", true }, { "sofoco.us", true }, { "sofortimplantate-muenchen.de", true }, { "soft41.ru", true }, + { "soft64.me", true }, { "softandbouncy.co.uk", true }, { "softanka.com", true }, - { "softballrampage.com", true }, { "softbit.pt", true }, { "softblinds.co.uk", true }, + { "softchin.ir", true }, { "softcreatr.com", true }, { "softcreatr.de", false }, { "softfay.com", true }, @@ -63623,6 +65961,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "softprayog.in", true }, { "softrobot.se", true }, { "softsecmatheodexelle.be", true }, + { "softskills.tech", true }, { "softtennis-zenei.com", true }, { "softw.net", true }, { "software-search.com", true }, @@ -63647,7 +65986,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soia.ca", true }, { "sointelcom.com.co", true }, { "soinvett.com", false }, - { "sokaissues.info", true }, + { "sojournsaffairs.com", true }, { "sokak-sanati.tk", true }, { "soket.ee", true }, { "sokietech.com", true }, @@ -63665,6 +66004,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solar-floodlight.ca", true }, { "solar-systems.ca", true }, { "solar-window.ca", true }, + { "solaradventures.icu", true }, { "solarfever.ga", true }, { "solariilacheie.ro", true }, { "solarium.gov", true }, @@ -63672,6 +66012,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solarplan-berlin.de", true }, { "solarstrom.net", true }, { "solartrackerapp.com", true }, + { "solautoescuela.com", true }, { "soldarizona.ga", true }, { "solden.be", true }, { "soldesduck.be", true }, @@ -63704,6 +66045,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solit.systems", true }, { "solitairenetwork.com", true }, { "solitaryride.com", true }, + { "soliten.de", true }, { "sollevix.ovh", true }, { "solmek.co.uk", true }, { "sologoc.com", true }, @@ -63719,6 +66061,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solonotizie24.it", true }, { "soloparati.cf", true }, { "solos.im", true }, + { "solsocog.de", true }, { "solucionespicadelly.com", true }, { "solucionupsperu.com", true }, { "solulan.com", true }, @@ -63735,6 +66078,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "solxsys.com", true }, { "solymar.co", true }, { "solyplaya.info", true }, + { "soma.com.au", true }, { "somaini.li", true }, { "somali-derp.com", true }, { "somaliagenda.com", true }, @@ -63751,6 +66095,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "somethingsimilar.com", true }, { "somethingsketchy.net", true }, { "somethingsomething.work", true }, + { "soml.best", true }, { "sommefeldt.com", true }, { "sommeilsante.com", true }, { "sommerhusudlejning.com", true }, @@ -63769,14 +66114,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sonacupalova.cz", true }, { "sonaraamat.com", true }, { "sonarqube.com", false }, + { "sonate.jetzt", true }, { "sonavankova.cz", true }, + { "sondebase.com", true }, { "sonderfloral.com", true }, { "sondergaard.de", true }, { "sonderkomission.ch", true }, { "sondersobk.dk", true }, { "songdew.com", true }, { "songesdeplumes.fr", true }, - { "songluck.com", true }, { "songshuzuoxi.com", true }, { "songsmp3.co", true }, { "songsmp3.com", true }, @@ -63789,28 +66135,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "songun.ml", true }, { "songyang.cn", true }, { "songzhuolun.com", true }, + { "sonia.ai", true }, + { "sonia.com", true }, { "sonia.com.au", true }, + { "soniaai.com", true }, { "soniadoras.pe", true }, { "soniaferrer.tk", true }, { "sonic.sk", false }, { "sonic.studio", true }, { "sonicdoe.com", true }, { "sonicrainboom.rocks", true }, + { "sonicseo.co.uk", true }, { "sonictonic.cloud", true }, + { "soninger.ru", true }, { "sonix.dk", true }, { "sonixonline.com", true }, { "sonja-daniels.com", true }, { "sonja-kowa.de", true }, - { "sonkonews.com", true }, { "sonnenta.de", true }, { "sonneundstrand.de", true }, { "sonodrom.tk", true }, { "sonofsunart.com", true }, + { "sonologic.nl", true }, + { "sonomacounty.gov", true }, + { "sonomacountywriterscamp.com", true }, { "sony-psvita.ru", true }, { "sonyunlock.nu", true }, { "soohealthy.nl", true }, + { "soolid.tech", true }, { "soomee.be", true }, { "soomee1.be", true }, + { "soon.lk", true }, { "soontm.de", true }, { "soontm.net", true }, { "soopure.nl", true }, @@ -63830,10 +66185,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soraharu.com", true }, { "soraiaschneider.com.br", true }, { "sorakumo.jp", true }, + { "sorblack.com", true }, { "sorcix.com", true }, { "sorellecollection.com.au", true }, { "soren.xyz", true }, { "sorenstudios.com", true }, + { "sorever.online", true }, { "sorincocorada.ro", true }, { "sormeyli.com", true }, { "sorn.service.gov.uk", true }, @@ -63886,6 +66243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soulmate.dating", true }, { "soulmating.de", true }, { "soulogic.com", true }, + { "soulshinecreators.com", true }, { "soulsteer.com", false }, { "souly.cc", true }, { "soumikghosh.com", true }, @@ -63900,6 +66258,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "soundforsound.co.uk", true }, { "soundgasm.net", true }, { "soundhunter.xyz", false }, + { "soundmoney.club", true }, + { "soundmoney.page", true }, + { "soundmoney.tech", true }, { "soundprotectionllc.com", true }, { "sounds-familiar.info", true }, { "soundscrate.com", true }, @@ -63915,6 +66276,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "souqtajmeel.com", true }, { "sour.is", true }, { "sourcebox.be", true }, + { "sourcecode.hosting", true }, { "sourcecode.love", true }, { "sourcecode.tw", true }, { "sourcely.net", true }, @@ -63939,6 +66301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "southernmost.us", true }, { "southernsurgicalga.com", true }, { "southernutahinfluencers.com", true }, + { "southernviewmedia.com", true }, { "southflanewsletter.com", true }, { "southlakenissanparts.com", true }, { "southlandurology.com", true }, @@ -63958,7 +66321,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sovendus.com", true }, { "sovendus.de", true }, { "sovereignpcs.com", true }, - { "soverin.net", false }, + { "soverin.net", true }, { "sowlutions.com", true }, { "sowncloud.de", true }, { "soybase.org", true }, @@ -63977,10 +66340,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "space-inc.co.jp", true }, { "space-it.de", true }, { "space-y.cf", true }, + { "spaceanimalnutrition.com", true }, { "spaceapi.io", true }, + { "spacebabies.nl", true }, { "spacebear.ee", true }, { "spacebestnews.tk", true }, { "spacecafe.org", true }, + { "spacecaps.xyz", true }, { "spacedirectory.org", true }, { "spacedots.net", true }, { "spacehighway.ms", true }, @@ -64050,6 +66416,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spartaermelo.nl", true }, { "spartancoin.ooo", true }, { "spartantheatre.org", true }, + { "spartatowing.com", true }, { "sparumzuege.de", true }, { "spasicilia.it", true }, { "spatzenwerkstatt.de", true }, @@ -64064,10 +66431,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spdillini.com", true }, { "spe.org.co", true }, { "speak-polish.com", true }, + { "speaker-animateur.com", true }, { "speakersbusiness.com", true }, { "spearfishingmx.com", true }, { "specdrones.us", true }, - { "specdver.ru", true }, + { "speciale.cf", true }, { "specialized-hosting.eu", true }, { "specialproperties.com", true }, { "specialtyalloys.ca", true }, @@ -64092,6 +66460,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "speeders.cf", true }, { "speeders.ga", true }, { "speederss.best", true }, + { "speedliner.com", true }, { "speedof.me", true }, { "speedracer.ca", true }, { "speeds.vip", true }, @@ -64113,6 +66482,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spellcheckci.com", true }, { "spellchecker.net", true }, { "spellic.com", true }, + { "speme-design.com", true }, { "spendwise.com.au", true }, { "spenglerei-shop.de", true }, { "spenny.tf", true }, @@ -64131,8 +66501,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sphido.org", false }, { "sphinx.network", true }, { "spicejungle.com", true }, + { "spicemoney.com", true }, { "spicydog.org", true }, - { "spicydog.tk", false }, { "spicymatch.com", true }, { "spicywombat.com", true }, { "spidercrabs.tk", true }, @@ -64140,7 +66510,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spidernet.tk", true }, { "spideroak.com", true }, { "spiders.org.ua", true }, - { "spiegels-op-maat.nl", true }, + { "spiegels-op-maat.nl", false }, { "spielezar.ch", true }, { "spielland.ch", true }, { "spiellawine.de", true }, @@ -64166,7 +66536,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spinor.im", true }, { "spins.fedoraproject.org", true }, { "spinspin.wtf", true }, - { "spira-group.eu", true }, { "spira.kiev.ua", true }, { "spirella-shop.ch", true }, { "spirit-hunters-germany.de", false }, @@ -64211,26 +66580,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spom.net", true }, { "sponc.de", true }, { "spongepowered.org", true }, - { "sponsormatch.eu", true }, + { "sponsor.software", true }, + { "spontex.org", true }, { "spoofhaus.com", true }, { "spookbook.net", true }, { "spookquest.com", true }, { "spookyinternet.com", true }, { "spoopy.link", true }, { "spoorcam.nl", true }, - { "sporcard.com", true }, { "sporemasters.com", true }, + { "sporki.fun", true }, { "spornkuller.de", true }, { "sport-decouverte.com", true }, { "sport-in-sundern.de", true }, { "sport-potreby.cz", true }, { "sport-potreby.sk", true }, + { "sport-socken.net", true }, { "sportabee.com", false }, { "sportakrobatik.at", true }, { "sportbetuwe.nl", false }, { "sportboot.mobi", true }, { "sportchirp.com", true }, { "sporter.com", true }, + { "sportingpontenova.es", true }, { "sportmundschutz-info.de", true }, { "sportnesia.com", true }, { "sportovnidum.cz", true }, @@ -64245,7 +66617,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sportsjaw.com", true }, { "sportsmanadvisor.com", false }, { "sportsmansblog.com", true }, - { "sportstraineradvisor.com", true }, + { "sportsmashup.com", true }, { "sportstreetstyle.com", true }, { "sportswear.by", true }, { "sportticino.ch", true }, @@ -64255,7 +66627,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sportugalia.ru", true }, { "sportvereine.online", true }, { "sportwette.eu", false }, - { "sportwetten-anbieter.de", false }, + { "sportwetten-anbieter.de", true }, { "sportxt.ru", true }, { "spot-lumiere-led.com", true }, { "spot.su", true }, @@ -64266,6 +66638,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spotrebitelskecentrum.sk", true }, { "spotsee.io", true }, { "spotswoodvet.com", true }, + { "spotsylvaniacounty-va.gov", true }, + { "spotsylvaniacountyva.gov", true }, { "spottedpenguin.co.uk", true }, { "spotty.tech", true }, { "spotupload.com", true }, @@ -64282,7 +66656,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "spreed.me", true }, { "spreenauto.com", true }, { "spricknet.de", true }, - { "springboardsandmore.com", true }, { "springerundpartner.de", true }, { "springfield-ohio-post.com", true }, { "springfieldbricks.com", false }, @@ -64290,6 +66663,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "springhow.com", true }, { "springsoffthegrid.com", true }, { "springtxcarpetcleaning.com", true }, + { "sprintkitchen.com", true }, { "spritmonitor.de", true }, { "spritsail.io", true }, { "spro.in", false }, @@ -64369,7 +66743,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "squareup.com", true }, { "squareupsandbox.com", true }, { "squattra.com", true }, - { "squawk.cc", true }, + { "squawk.cc", false }, { "squeakie.club", true }, { "squeezemetrics.com", true }, { "squido.ch", true }, @@ -64380,6 +66754,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "squirtlesbians.net", true }, { "sr-33.com", true }, { "sr33.com", true }, + { "sr88.co.uk", true }, + { "sr88.me.uk", true }, + { "srae.me.uk", true }, { "srandom.com", true }, { "sranje.rocks", true }, { "srb.help", true }, @@ -64405,6 +66782,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sritidaho.tk", true }, { "sritspanish.tk", true }, { "sritvermont.tk", true }, + { "srkarra.com", true }, { "srkb.net", true }, { "sro.center", true }, { "srochnozaim.gq", true }, @@ -64420,7 +66798,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "srsfwd.net", true }, { "srsfwd.org", true }, { "srv.so", true }, - { "srvc.io", true }, { "srvonfire.com", true }, { "srx.sx", true }, { "ss-news.tk", true }, @@ -64438,10 +66815,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ss6729.com", true }, { "ss6957.co", true }, { "ss88.uk", true }, + { "ss9188.com", true }, { "ss9288.com", true }, { "ss9297.co", true }, { "ss9397.com", true }, - { "ss9721.com", true }, + { "ss9721.com", false }, { "ss9728.co", true }, { "ssa.gov", false }, { "ssab.gov", true }, @@ -64485,7 +66863,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sslping.com", true }, { "sslpoint.com", true }, { "ssls.cz", true }, - { "sslsecurity.ooo", true }, { "sslsurvey.de", true }, { "ssmato.me", true }, { "ssmca.com", true }, @@ -64522,6 +66899,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staatschutz.at", true }, { "staatsschutz.at", true }, { "staatsschutzgesetz.at", true }, + { "stabilimento.it", true }, { "stable.network", true }, { "stablelib.com", true }, { "stackhub.cc", true }, @@ -64533,6 +66911,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stackunderflow.com", true }, { "staddlestonesbowness.co.uk", true }, { "stadionmanager.com", true }, + { "stadiumexperience.com", true }, + { "stadlwirt.at", true }, { "stadm.com", false }, { "stadsbos013.nl", true }, { "stadsbygd.info", true }, @@ -64547,7 +66927,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staer.ro", true }, { "staff.direct", true }, { "staffexcellence.com", true }, - { "staffhunt.org.uk", true }, { "staffordlabour.org.uk", true }, { "stage-props-blank-guns.com", true }, { "stage-recuperation-points-bordeaux.com", true }, @@ -64572,6 +66951,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stagespediatrics.com", true }, { "stagstickets.co.uk", true }, { "stahlfors.com", true }, + { "stail.eu", true }, { "stainedglass.net.au", true }, { "stainhaufen.de", true }, { "stainternational.com", true }, @@ -64606,10 +66986,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "standardequipment.com", true }, { "standards.gov", true }, { "standartgost.ru", true }, + { "standheizung-shop.de", true }, { "stangeland.tk", true }, + { "stankingma.com", true }, + { "stankingma.nl", true }, { "stanmed24.pl", true }, { "stannri.org", true }, { "stanron.com", true }, + { "stansweather.net", true }, { "stantabler.com", true }, { "stanthony-hightstown.net", true }, { "stanthonymaryclaret.org", true }, @@ -64643,6 +67027,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stari.co", true }, { "stariders.com", true }, { "starina.ru", true }, + { "starinc.xyz", true }, { "starka.st", true }, { "starkbim.com", true }, { "starking.net.cn", true }, @@ -64678,27 +67063,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "startle.studio", true }, { "startlemusic.com", true }, { "startliste.info", true }, - { "startloop.org", true }, { "startmail.com", true }, + { "startnowmakingmoneyonline.com", true }, { "startpage.com", true }, { "startpage.info", true }, { "startrek.in", true }, { "startstunter.com", true }, { "starttls-everywhere.org", true }, - { "starttraffic.com", true }, { "starttraffic.uk", true }, { "startup.melbourne", true }, + { "startupisland.tw", true }, { "startuplevel.com", true }, { "startupstack.tech", true }, { "startupum.ru", true }, + { "startw.cf", true }, { "starvizyon.com", true }, { "starwatches.eu", true }, { "starwins.co.uk", true }, - { "stassi.ch", true }, + { "stasiniewicz.com", true }, { "stastka.ch", true }, { "stat.ink", true }, { "state-of-body-and-mind.com", true }, { "statecollegemortgages.com", true }, + { "statelywork.com", true }, { "statgram.me", true }, { "static-692b8c32.de", true }, { "static-assets.io", true }, @@ -64713,9 +67100,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "staticisnoise.com", true }, { "stationa.ch", false }, { "stationary-traveller.eu", true }, - { "stationatbuckscounty.com", true }, - { "stationatlyndhurst.com", true }, { "stationcharlie.co.za", true }, + { "statisticalsurveys.com", true }, { "statistician-online.com", false }, { "statistik-seminare.de", true }, { "statistikian.com", true }, @@ -64727,6 +67113,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "statusboard.eu", true }, { "statusbot.io", true }, { "statuscode.ch", true }, + { "statusmachine.com", true }, { "statuswatch.io", true }, { "stau-a.de", true }, { "stavanger.kommune.no", true }, @@ -64752,6 +67139,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stcable.net", true }, { "stcatharine-stmargaret.org", true }, { "stceciliakearny.org", true }, + { "stclairvet.co.uk", true }, { "stclementmatawan.org", true }, { "stclementreligioused.org", true }, { "stcplasticsurgery.com", true }, @@ -64790,11 +67178,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steelmounta.in", true }, { "steelpoint.com.pl", true }, { "steelrhino.co", true }, + { "steelsoldiers.com", true }, { "steemit.com", true }, { "steemyy.com", true }, { "steeple-claydon.org", true }, { "steering-wheel.tk", true }, { "steerty.com", true }, + { "steevels.nl", true }, { "stefan-bayer.eu", true }, { "stefan-rothe.ch", true }, { "stefan-schlueter.de", true }, @@ -64802,6 +67192,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stefan.de", true }, { "stefanbayer.de", true }, { "stefancosma.xyz", true }, + { "stefandepooter.com", true }, { "stefanengineering.com", true }, { "stefanfriedli.ch", true }, { "stefanknobel.ch", true }, @@ -64809,13 +67200,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stefanovski.io", true }, { "stefanvanburen.xyz", false }, { "stefanvd.net", true }, + { "stefanviehbacher.de", true }, { "stefany.eu", true }, { "stefchapman.tk", true }, { "steffenmeister.com", true }, { "steffentreeservice.com", true }, { "steffi-in-australien.com", true }, + { "steffi-knorn.de", true }, { "stefpastoor.nl", true }, { "stehlik.co.uk", true }, + { "stehlik.sk", true }, { "steidlewirt.de", true }, { "steigerlegal.ch", true }, { "steinbergmedia.de", true }, @@ -64855,6 +67249,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stenaro.ch", true }, { "stenhojmedia.dk", true }, { "stening.co", true }, + { "steno.nl", true }, { "stenzhorn-cloud.de", true }, { "step2web-cms.info", true }, { "stepanvanek.cz", true }, @@ -64862,13 +67257,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "steph3n.me", true }, { "stephan-matthiesen.de", true }, { "stephanao.tk", true }, - { "stephane-huc.net", false }, { "stephaniecalahan.com", true }, { "stephaniedeady.ie", true }, { "stephanieleonidasfan.tk", true }, { "stephanieschreiber.com", true }, { "stephansurgicalarts.com", true }, { "stephencreilly.com", true }, + { "stephengeorge.co.uk", true }, { "stephenhaunts.com", true }, { "stephenhorler.com.au", true }, { "stephenj.co.uk", true }, @@ -64910,10 +67305,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sternplastic.com", true }, { "sternsinus.com", true }, { "sterohouse.com", true }, + { "sterz.io", true }, { "stesti.cz", true }, { "stetson.edu", true }, { "stetspa.it", true }, - { "steuer-voss.de", true }, { "steuerberater-bayreuth.com", true }, { "steuerberater-essen-steele.com", true }, { "steuerberater-hopfner.de", true }, @@ -64931,7 +67326,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stevehaid.com", true }, { "stevejobsfollowers.tk", true }, { "stevemario.com", true }, - { "stevemason.tk", true }, { "stevemonteyne.be", true }, { "steven-bennett.com", true }, { "steven-klix.de", true }, @@ -64940,6 +67334,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stevenbolgartersnakes.com", true }, { "stevengoodpaster.com", true }, { "stevengrech.com", true }, + { "stevenkendypierre.com", true }, { "stevenpilger.com", true }, { "stevenselectricllc.com", true }, { "stevenski.com", false }, @@ -64950,9 +67345,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stevenz.net", true }, { "stevenz.science", true }, { "stevenz.xyz", true }, + { "stevepacheco.com", true }, + { "stevereedmp.co.uk", true }, { "stevesdrivingschooltyneside.com", true }, { "stevezheng.cf", true }, { "stevezheng.tk", true }, + { "steviate.com", true }, + { "steviate.de", true }, { "stewartswines.com", true }, { "stewonet.nl", true }, { "stewpolley.com", false }, @@ -64967,6 +67366,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sth.sh", true }, { "sthelensoregon.gov", true }, { "sthenryrc.org", true }, + { "sthpr.gr", true }, { "stian.net", true }, { "stichtingdemuziekkamer.nl", true }, { "stichtingliab.nl", true }, @@ -64979,7 +67379,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stickerparadise.me", true }, { "stickertuningfetzt.de", true }, { "stickies.io", true }, - { "stickmanventures.com", true }, { "stickmy.cn", true }, { "stickstueb.de", true }, { "stickswag.cf", true }, @@ -64987,6 +67386,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sticky.ai", true }, { "stickypassword.com", true }, { "stickyricelove.com", true }, + { "stiebel-eltron.co.nz", true }, + { "stiebel-eltron.com.au", true }, { "stiebelmedia.co.nz", true }, { "stiebelmedia.com.au", true }, { "stiff.wang", true }, @@ -65007,7 +67408,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stikonas.eu", false }, { "stilartmoebel.de", true }, { "stilecop.com", true }, - { "stilettomoda.com.br", true }, { "stiliankasimov.com", true }, { "stilingavonia.lt", true }, { "stilmobil.se", true }, @@ -65017,6 +67417,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stin.hr", true }, { "stina-vino.hr", true }, { "stinaspiegelberg.com", true }, + { "stingraybook.com", true }, { "stinkefingereinhorn.de", true }, { "stinsky.com", true }, { "stintup.com", true }, @@ -65026,10 +67427,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stirlingpoon.com", true }, { "stisaac.org", true }, { "stisidores.org", true }, + { "stitch.money", true }, { "stitchfiddle.com", true }, { "stitchinprogress.com", true }, { "stivesbouncycastlehire.co.uk", true }, - { "stjameslititz.org", true }, + { "stjohncamden.com", true }, { "stjohnin.com", true }, { "stjohnnepomucene.com", true }, { "stjohnsc.com", true }, @@ -65068,9 +67470,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stmohrael.org", true }, { "stmosesbookstore.org", true }, { "stmsolutions.pl", true }, + { "stmsouthcoventry.com", true }, { "stneotsbouncycastlehire.co.uk", true }, { "stnl.de", false }, { "sto500.com.ua", true }, + { "stock-solution.de", true }, { "stockholmpride.org", true }, { "stockpile.com", true }, { "stockportpyramid.co.uk", true }, @@ -65099,7 +67503,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stolpi.is", false }, { "stomt.com", true }, { "stoneagehealth.com.au", true }, - { "stonearm.com", true }, { "stonechatjewellers.ie", true }, { "stonedwarf5.net", true }, { "stonedworms.de", false }, @@ -65116,11 +67519,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stonewuu.com", true }, { "stony.com", true }, { "stonystratford.org", true }, + { "stoomstichting.nl", true }, { "stop-activ.ga", true }, { "stopakwardhandshakes.org", true }, { "stopbullying.gov", true }, + { "stopforumspam.com", true }, { "stopfraud.gov", true }, - { "stopjunkmail.co.uk", true }, { "stoplossoff.tk", true }, { "stopoverconnections.com", true }, { "stoppage.cf", true }, @@ -65142,9 +67546,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "storiesbysign.com", true }, { "storillo.com", true }, { "storingdesk.com", true }, + { "storjar.com", true }, { "stormboost.cz", true }, { "stormhub.ml", true }, { "stormi.io", true }, + { "stormigrl.ca", true }, { "stormingbrain.com", true }, { "stormwatcher.org", true }, { "stormylegions.tk", true }, @@ -65164,6 +67570,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stoutassociates.com", true }, { "stouter.nl", true }, { "stoxford.com", true }, + { "stp-ip.com", true }, + { "stp-ip.net", true }, + { "stp.dev", true }, { "stpatrickbayshore.org", true }, { "stpatrickkennettsquare.org", true }, { "stpatrickri.org", true }, @@ -65171,6 +67580,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stpatsschool.org", true }, { "stpaulcatholicchurcheastnorriton.net", true }, { "stphilipneripreschool.com", true }, + { "stpip.com", true }, + { "stpip.net", true }, { "str8hd.com", true }, { "str92.com", true }, { "straat.net", true }, @@ -65178,7 +67589,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strafensau.de", true }, { "strafvollzugsgesetze.de", true }, { "strahlende-augen.info", true }, + { "straight2porn.com", true }, { "straightedgebarbers.ca", false }, + { "straightnude.com", true }, { "strajnar.si", true }, { "straka.name", true }, { "stralingsonzin.com", true }, @@ -65223,17 +67636,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "streamblur.net", true }, { "streamchan.org", true }, { "streamelements.com", true }, - { "streaming-download.net", true }, + { "streaminginternacional.net", true }, { "streamkit.gg", true }, - { "streamlineautogroup.com", true }, { "streampanel.net", true }, { "streampleasure.xyz", true }, { "streams.dyndns.org", true }, { "streamspouredout.com", true }, { "streathamfoodfestival.com", true }, { "streemprn.xyz", true }, + { "streepjesenstipjes.nl", true }, { "street-medics.fr", true }, { "street-tek.com", true }, + { "streetboards.lt", true }, { "streetdancecenter.com", true }, { "streetlightdata.com", true }, { "streetmarket.ru", true }, @@ -65247,11 +67661,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stremio.com", true }, { "strengthinyoufitness.com", true }, { "strengthroots.com", true }, - { "stressfreehousehold.com", true }, { "stretchmarkdestroyer.com", true }, - { "stretchmyan.us", true }, { "stretchpc.com", true }, { "striata.com", true }, + { "striata.mobi", true }, + { "striata.org", true }, { "striatadev.com", true }, { "strick-welt.de", true }, { "stricted.net", true }, @@ -65277,6 +67691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strobotti.com", true }, { "stroccounioncity.org", true }, { "stroeder.com", true }, + { "stroeder.de", true }, { "stroeerdigital.de", true }, { "stroginohelp.ru", true }, { "stroifenix.ru", true }, @@ -65288,7 +67703,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stromak.cz", true }, { "stromkomfort.cz", true }, { "stromzivota.sk", true }, - { "strongmail.de", true }, { "strongohio.gov", true }, { "strongpassword.club", true }, { "strongrandom.com", false }, @@ -65312,11 +67726,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "strydom.me.uk", true }, { "stsolarenerji.com", true }, { "ststanislaus.com", true }, - { "ststanstrans.org", true }, { "stt.wiki", true }, { "sttammanyurology.com", true }, { "sttg.com.au", true }, { "stthomasbrigantine.org", true }, + { "sttl-topographie.com", true }, { "stuartbeard.com", true }, { "stuartbell.co.uk", true }, { "stuartbell.uk", true }, @@ -65326,7 +67740,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuartmorris.me", true }, { "stuartmorris.name", true }, { "stuartmorris.tel", true }, - { "stuckateur-bruno.de", true }, + { "stuckateur-bruno.de", false }, { "stucki-bagger.ch", true }, { "stuco.co", true }, { "stucydee.nl", true }, @@ -65335,13 +67749,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "student-eshop.cz", true }, { "student-eshop.sk", true }, { "student.andover.edu", true }, + { "studentaid.gov", true }, { "studenterguiden.dk", true }, { "studentfinancecountdown.com", true }, + { "studentfintech.com", true }, { "studentforums.biz", true }, { "studenti.tk", true }, { "studentite.bg", false }, { "studentklinikk.no", true }, - { "studentloans.gov", true }, { "studentpop.com", true }, { "studentrightsadvocate.org", true }, { "studentse.fr", true }, @@ -65369,11 +67784,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studioadevents.com", true }, { "studioavvocato.roma.it", true }, { "studioavvocato24.it", true }, + { "studiobrandano.com", true }, + { "studiodelbenessere.com", true }, + { "studiodentisticomasi.com", true }, { "studiodentisticosanmarco.it", true }, { "studiodewit.nl", true }, { "studiodoprazer.com.br", true }, + { "studiodpe.com", true }, { "studiogavioli.com", true }, { "studiogears.com", true }, + { "studiograou.com", true }, { "studiohelder.fr", false }, { "studiohomebase.amsterdam", true }, { "studiokicca.com", true }, @@ -65387,6 +67807,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studiosql.ml", true }, { "studiostawki.com", true }, { "studiostudio.net", true }, + { "studiosuracidenunzio.it", true }, { "studiosus-gruppenreisen.com", true }, { "studiosus.com", true }, { "studiotheatrestains.fr", true }, @@ -65394,12 +67815,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "studiovaud.com", false }, { "studiovictorialimited.com", true }, { "studioxii.com", true }, - { "studipad.de", true }, + { "studipad.de", false }, { "studipro-formation.fr", true }, { "studipro-marketing.fr", true }, { "studisys.net", true }, { "studium.cz", true }, { "studport.rv.ua", true }, + { "study-support-beans.com", true }, { "studyin.jp", true }, { "studying-neet.com", true }, { "studyportal.net", true }, @@ -65412,6 +67834,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stuffi.fr", true }, { "stuffiwouldbuy.com", false }, { "stugor-danmark.com", true }, + { "stujay.com", true }, { "stuka-art.de", true }, { "stulda.cz", false }, { "stumeta.de", true }, @@ -65426,13 +67849,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "stupino-stroy.cf", true }, { "stutelage.com", true }, { "stutsmancounty.gov", true }, + { "stuudium-mail.ee", true }, { "stuudium.cloud", true }, { "stuudium.com", true }, { "stuudium.life", true }, { "stuudium.net", true }, { "stuudium.org", true }, { "stuudium.pro", true }, - { "stuur.nl", false }, { "stuvel.eu", true }, { "stuvus.de", true }, { "stuvus.uni-stuttgart.de", true }, @@ -65455,10 +67878,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "styloeart.com", true }, { "stypr.com", true }, { "su1ph3r.io", true }, + { "suachuanha365.com", true }, { "suaraangin.com", true }, { "suareforma.com", false }, { "suaudeau.fr", true }, { "suaudeau.org", true }, + { "suayslim.com", true }, { "sub-net.at", true }, { "sub.media", true }, { "subastasdecarros.net", true }, @@ -65479,6 +67904,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "subtitry.ru", true }, { "suburban-landscape.net", true }, { "suburbaninfinitioftroyparts.com", true }, + { "suburbansites.com", true }, { "subven.com", true }, { "subversive-tech.com", true }, { "subzerotech.co.uk", true }, @@ -65505,6 +67931,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sudo.ws", true }, { "sudocat.me", true }, { "sudokian.io", true }, + { "sudosaveclimate.com", true }, { "sudoschool.com", true }, { "sudosu.fr", true }, { "suecaunitedfc.tk", true }, @@ -65516,11 +67943,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sufix.cz", true }, { "sugarbrother.com", false }, { "sugarhillsfarm.com", true }, - { "sugarlandkarate.net", true }, { "sugarlandurology.com", true }, { "sugarpiano.com", true }, { "sugarshin.net", true }, { "sugartownfarm.com", true }, + { "sugaru.pe", true }, { "sugatime.tk", true }, { "suggea.com", true }, { "suggestim.ch", false }, @@ -65608,17 +68035,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sunfox.cz", true }, { "sunfulong.blog", true }, { "sunfulong.me", true }, - { "sungari.ru", true }, { "sungreen.info", true }, { "sunhaoxiang.net", true }, { "sunjaydhama.com", true }, { "sunjiutuo.com", true }, { "sunlit.cloud", true }, { "sunn.ie", true }, - { "sunnibangla.com", true }, { "sunny.co.uk", true }, { "sunnylyx.com", true }, + { "sunnyside-jazzclub.com", true }, { "sunnysidechurchofchrist.org", true }, + { "sunnysideups.co", true }, { "sunoikisis.org", true }, { "sunpig.com.my", true }, { "sunpig.com.sg", true }, @@ -65628,6 +68055,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sunplay.host", true }, { "sunred.info", true }, { "sunred.org", true }, + { "sunrichtec.com", true }, { "sunsdesign.net", true }, { "sunsetdentalhenderson.com", true }, { "sunsetwx.com", true }, @@ -65674,6 +68102,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supergmtransport.com.au", true }, { "superguide.com.au", true }, { "superhappiness.com", true }, + { "superhappyfun.club", true }, { "superhome.com.au", true }, { "superidropulitrice.com", true }, { "superiordetail.tk", true }, @@ -65699,6 +68128,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "superservers.ml", true }, { "supersonnig-festival.de", true }, { "supersonnigfestival.de", true }, + { "superspeller.ng", true }, { "superstargossip.com", true }, { "superstarhost.tk", true }, { "supersteosbouncycastles.com", true }, @@ -65709,6 +68139,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supertrade.tk", true }, { "supertutorial.com.br", true }, { "supervets.com.au", true }, + { "supervisionassist.com", true }, { "superway.es", true }, { "supeuro.com", true }, { "supioka.com", true }, @@ -65719,7 +68150,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suplments.it", true }, { "suplments.pt", true }, { "supmil.net", true }, - { "supplementler.com", true }, + { "supplementswatch.com", false }, { "supplies24.at", true }, { "supplies24.es", true }, { "supplynation.org.au", true }, @@ -65729,6 +68160,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "supportdesk.nu", true }, { "supportericking.org", true }, { "supportfan.gov", true }, + { "supportmeindia.com", true }, { "supra.tf", true }, { "supracube.com", true }, { "suprem.biz", false }, @@ -65749,7 +68181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "surfnetkids.com", true }, { "surfnetparents.com", true }, { "surfocal.com", true }, - { "surgenet.nl", true }, + { "surgeholdinggroup.com", true }, { "surgenights.com", true }, { "surgeongeneral.gov", true }, { "surgicalassociateswny.com", true }, @@ -65762,7 +68194,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "surrealcoder.com", true }, { "surreyheathyc.org.uk", false }, { "surthriveak.com", true }, - { "surtisitio.com", true }, { "suruifu.com", true }, { "suruifu.tk", true }, { "survature.com", true }, @@ -65791,6 +68222,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suspension-shop.com", true }, { "suspiciousdarknet.xyz", true }, { "sussexheart.com", true }, + { "sustain.software", true }, { "sustainability.gov", true }, { "sustainabilityknowledgegroup.com", true }, { "sustainabilitysociety.hk", true }, @@ -65808,6 +68240,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "suv4.net", true }, { "suvidhaapay.com", true }, { "suzaku.xyz", false }, + { "suzannehines.org", true }, { "suzi3d.com", true }, { "suziekovner.com", true }, { "suzikogsm.tk", true }, @@ -65831,6 +68264,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "svc-sitec.com.mx", true }, { "svc-sitec.mx", true }, { "svc-sitec.org", true }, + { "svc.bike", true }, { "svc1.xyz", true }, { "svdb.co", false }, { "svdesign.su", true }, @@ -65864,12 +68298,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "svorcikova.cz", true }, { "svorkmofotball.tk", true }, { "svpoa.org.uk", true }, + { "svrx.one", true }, { "svtr.de", true }, { "sw-machines.io", true }, { "sw-servers.net", true }, { "sw33tp34.com", true }, { "swacp.com", true }, { "swaenenburg.be", true }, + { "swagfuli.com", true }, { "swagger.london", true }, { "swagsocial.net", true }, { "swallowgateway.com", true }, @@ -65909,6 +68345,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sweetbabyjesus.com", true }, { "sweetbridge.com", true }, { "sweetcalculus.ru", true }, + { "sweetdata.io", true }, { "sweetenedcondensed.com", true }, { "sweetgood.de", true }, { "sweethomesnohomishrenovations.com", true }, @@ -65918,7 +68355,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sweetspot.co.kr", true }, { "sweetvanilla.jp", true }, { "sweetydecor.ru", true }, - { "swehack.org", true }, { "sweharris.org", true }, { "swerve-media-testbed-03.co.uk", true }, { "swetrust.com", true }, @@ -65928,10 +68364,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swgenetx.com", true }, { "swhw.io", true }, { "swi.sytes.net", true }, + { "swiatpilki.com", true }, { "swid.co.uk", true }, { "swift-devedge.de", true }, { "swiftbonds.com", true }, { "swiftcashforcars.com.au", true }, + { "swiftcom.co.za", true }, { "swiftcrypto.com", true }, { "swifteh.net", true }, { "swiftpak.co.uk", true }, @@ -65968,6 +68406,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swissfreshaircan.com", false }, { "swissid.ch", true }, { "swissinternationalva.com", true }, + { "swissj.com", true }, { "swisslinux.org", true }, { "swissmadesecurity.net", true }, { "swisstacticaldevelopment.ch", true }, @@ -65979,7 +68418,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swissxperts.ch", true }, { "swit.io", true }, { "switch-trader.com", true }, - { "switch.moe", true }, { "switcheo.exchange", true }, { "switcheo.rocks", true }, { "swivells.com", true }, @@ -65987,6 +68425,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swkdevserver.tk", true }, { "swktestserver.tk", true }, { "swlabs.org", true }, + { "swmcfcu.org", true }, { "swmlink.com", true }, { "swn-nec.de", true }, { "swo.re", true }, @@ -66002,6 +68441,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "swxtd.com", true }, { "swy.cz", true }, { "swyn.net", true }, + { "swynwyr.com", true }, { "sx3.no", true }, { "sx6729.com", true }, { "sx6957.com", true }, @@ -66018,12 +68458,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sydney-sehen.com", true }, { "sydney.dating", true }, { "sydneychillies.com.au", true }, + { "sydneyexperiences.com", true }, { "sydneyhelicopters.com.au", true }, { "sydneylawnandturf.com.au", true }, { "syenar.net", true }, { "syezd.com.au", true }, { "syha.org.uk", true }, { "sykepleien.no", false }, + { "sykorp.com", true }, { "sylaps.com", true }, { "syleam.in", true }, { "sylfie.net", true }, @@ -66044,15 +68486,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "symbo.tech", true }, { "symdevinc.com", true }, { "symeda.de", true }, + { "symeonchen.com", true }, { "symetrix.tk", true }, { "symfora-meander.nl", true }, { "symlnk.de", true }, { "symphonos.it", true }, + { "sympletrade.com", true }, { "symplexia.com.br", true }, { "sympmarc.com", true }, { "symposium.beer", true }, - { "sympraxisconsulting.com", true }, { "symptome-erklaert.de", true }, + { "syna.dev", true }, + { "syna.site", true }, { "synabi.com", true }, { "synack.uk", true }, { "synackrst.net", true }, @@ -66061,6 +68506,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sync-it.no", true }, { "syncaddict.net", true }, { "synccentre.com", true }, + { "syncevolution.org", true }, { "syncflare.com", true }, { "synchrocube.com", true }, { "synchrolarity.com", true }, @@ -66084,6 +68530,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "synfin.org", true }, { "synicalsyntax.com", true }, { "synony.me", true }, + { "synonymedeutsch.com", true }, + { "synonyymisanakirja.com", true }, { "synotna.eu", true }, { "synrestaccounting.com", true }, { "syntaxnightmare.com", true }, @@ -66099,18 +68547,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "syracuseut.gov", true }, { "sys-tm.com", true }, { "sys.tf", true }, + { "sys21.info", true }, { "sysadm.guru", true }, { "sysadmin.pm", false }, { "sysadmin.xyz", true }, { "sysadmins.ro", true }, + { "syscams.com", true }, { "syscoon.com", true }, { "sysctl.se", true }, { "sysdb.io", true }, { "sysert.tv", false }, + { "sysgap-gsci.com", true }, { "syskit.com", true }, { "syslogic.io", true }, { "sysmike.de", true }, { "sysmike.net", true }, + { "sysrq.tech", false }, { "systea.fr", true }, { "systea.net", true }, { "system-admin-girl.com", true }, @@ -66130,8 +68582,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "systemintegra.ru", true }, { "systemisbusy.info", true }, { "systemli.org", true }, + { "systemnik.store", true }, { "systemonthego.com", true }, - { "systemscoinsminers.tech", true }, { "systemspace.link", true }, { "systemups.com", true }, { "systemweb.no", true }, @@ -66142,6 +68594,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "sysystems.cz", true }, { "syt3.net", true }, { "syuez.com", true }, + { "syuez.org", true }, { "syunpay.cn", true }, { "sywnthkrawft.tk", true }, { "syy.im", true }, @@ -66165,6 +68618,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "szkolajazdykaleta.pl", true }, { "szlovaknyelv.hu", true }, { "szlovennyelv.hu", true }, + { "szotkowski.info", true }, { "szs.space", true }, { "sztoriboljeles.hu", true }, { "szuecs.net", true }, @@ -66181,6 +68635,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t-pc.org", true }, { "t-shirts4less.nl", true }, { "t-stonegroup.com", true }, + { "t-unit.ru", true }, { "t.facebook.com", false }, { "t00228.com", true }, { "t00ts.com", true }, @@ -66210,6 +68665,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t39.com", true }, { "t3hty.fr", true }, { "t3rror.net", true }, + { "t404.de", true }, { "t449.com", true }, { "t47.io", true }, { "t49.com", true }, @@ -66217,9 +68673,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t4cc0.re", true }, { "t4w.me", true }, { "t5118.com", true }, + { "t51365.com", true }, { "t5197.co", true }, { "t5880.com", true }, { "t5881.com", true }, + { "t59970.com", true }, + { "t59971.com", true }, + { "t59972.com", true }, + { "t59973.com", true }, + { "t59974.com", true }, + { "t59981.com", true }, + { "t59982.com", true }, + { "t59983.com", true }, + { "t59984.com", true }, + { "t59985.com", true }, + { "t59986.com", true }, { "t6354.com", true }, { "t6360.com", true }, { "t6364.com", true }, @@ -66227,14 +68695,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t6371.com", true }, { "t6381.com", true }, { "t6729.co", true }, + { "t68000.com", true }, + { "t6801.com", true }, { "t6810.com", true }, + { "t68100.com", true }, { "t6820.com", true }, + { "t68200.com", true }, { "t6830.com", true }, + { "t68300.com", true }, + { "t68400.com", true }, { "t6850.com", true }, + { "t68500.com", true }, { "t6860.com", true }, + { "t68600.com", true }, { "t6870.com", true }, + { "t68700.com", true }, { "t6880.com", true }, + { "t68800.com", true }, { "t6881.com", true }, + { "t68900.com", true }, { "t68app.com", true }, { "t6957.co", true }, { "t7009.com", true }, @@ -66257,7 +68736,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t8110.com", true }, { "t8119.com", true }, { "t81365.com", true }, - { "t81818.com", true }, { "t82365.com", true }, { "t8250.com", true }, { "t8803.com", true }, @@ -66265,7 +68743,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t8807.com", true }, { "t8809.com", true }, { "t8815.com", true }, - { "t8816.com", true }, + { "t8816.com", false }, { "t8817.com", true }, { "t8819.com", true }, { "t8830.com", true }, @@ -66286,7 +68764,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "t88vip6.com", true }, { "t88vip7.com", true }, { "t88ww.com", true }, - { "t88xx.com", true }, { "t88yy.com", true }, { "t9297.co", true }, { "t9721.com", true }, @@ -66301,6 +68778,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taalmeisje.nl", true }, { "taanishsaifu.gq", true }, { "taartbesteld.nl", true }, + { "taartenvanthea.nl", true }, { "tabacundo.tk", true }, { "tabarnak.ga", true }, { "tabegamisama.com", true }, @@ -66313,6 +68791,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tabledusud.be", true }, { "tabledusud.nl", true }, { "tablemagnet.com", true }, + { "tableres.com", true }, { "tablerocksbestrealtors.com", true }, { "tablescraps.com", true }, { "tablet.facebook.com", false }, @@ -66321,12 +68800,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tableturnrms.com", true }, { "tablotv.com", false }, { "taborsky.cz", true }, + { "tac-performance.net", true }, { "tac-volley.com", false }, { "tachi.uk", true }, { "tachyonapp.com", true }, { "tackleyourfeelings.com", true }, { "tacomafia.net", true }, - { "tacostea.net", true }, + { "tactical.zone", true }, { "tacticalavocado.com", true }, { "tacticalvote.co.uk", true }, { "tadalafilindia.gq", true }, @@ -66352,6 +68832,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taglioepiega.it", true }, { "tagnull.de", true }, { "tagpay.com", true }, + { "tagstationen.se", true }, { "tagtoys.com", true }, { "taguette.com", true }, { "taguette.fr", true }, @@ -66391,7 +68872,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taiwaniacapital.com", true }, { "taiwaniacapital.com.tw", true }, { "taiwaniacapital.tw", true }, - { "taiwantour.info", true }, + { "taiwantour.info", false }, { "taiyouko-hatuden.net", true }, { "taizegroep.nl", true }, { "tajper.pl", true }, @@ -66417,10 +68898,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "takkguitar.net", true }, { "tako-miyabi.xyz", true }, { "taktak.co.uk", true }, + { "taktransport.pl", true }, { "takuhai12.com", true }, { "takumi-s.net", true }, { "takusan.ru", true }, - { "takuto.de", true }, + { "takuto.de", false }, { "talado.gr", false }, { "talendipank.ee", true }, { "talentcast.nl", true }, @@ -66430,13 +68912,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talentuar.com", true }, { "talentwall.io", true }, { "taler.net", true }, + { "talesbazaar.com", true }, { "talichi.com", true }, { "talideon.com", false }, { "talis-bs.com", true }, { "talk.google.com", true }, { "talk.xyz", true }, + { "talkaboutdesign.com", true }, { "talkgadget.google.com", true }, { "talking12.com", true }, + { "talkingband.org", true }, { "talkingmoose.net", true }, { "talkmojang.club", true }, { "talkreal.net", true }, @@ -66446,10 +68931,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "talkwithyourbaby.org", true }, { "tallcraft.com", true }, { "talldude.net", true }, + { "tallgrasslegal.com", true }, { "tallinnsec.ee", true }, { "tallinnsex.ee", true }, { "tallship.cz", true }, - { "talltreeskv.com.au", true }, { "tallyfy.com", true }, { "talroo.com", true }, { "talsi.eu", true }, @@ -66459,7 +68944,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tam-moon.com", true }, { "tam-safe.com", true }, { "tamada.expert", true }, - { "tamaraboutique.com", true }, { "tamarimolhem.com", true }, { "tambayology.com", true }, { "tambo.es", true }, @@ -66477,12 +68961,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tampacific.vn", true }, { "tamposign.fr", true }, { "tamriel-rebuilt.org", true }, - { "tamsweb.de", true }, { "tamtowild.com", true }, { "tan90.tw", true }, { "tanacio.com", true }, { "tanchynski.com", true }, { "tancredi.nl", true }, + { "tandakutip.com", true }, { "tandarts-ict.nl", true }, { "tandartsen-ict.nl", true }, { "tandartszilverschoon.nl", true }, @@ -66512,6 +68996,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tankski.co.uk", true }, { "tannenhof-moelln.de", true }, { "tanner.sh", true }, + { "tannerdewitt.com", true }, { "tannerryan.ca", true }, { "tannerwilliamson.com", true }, { "tannerwj.com", true }, @@ -66525,7 +69010,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tanveersingh.tk", true }, { "tanyanama.com", true }, { "tanyatate.xyz", true }, - { "tanz-kreativ.de", true }, + { "tanz-kreativ.de", false }, { "tanz.info", true }, { "tanzhijun.com", true }, { "tanzo.io", true }, @@ -66533,6 +69018,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taoburee.com", true }, { "taotic.eu", true }, { "taowa.ca", true }, + { "tapchiphaidep.info", true }, { "tapestries.tk", true }, { "tapissier-schall.fr", true }, { "taplemon.at", true }, @@ -66570,6 +69056,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tarotistasvidentes.es", true }, { "tarotsgratuits.com", true }, { "tarsan.cz", true }, + { "tarsashaz-biztositas.hu", true }, { "tartaneagle.org.uk", true }, { "taruntarun.net", false }, { "tarzanka.ml", true }, @@ -66609,24 +69096,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tatsidou.gr", true }, { "tattoo-art.tk", true }, { "tattoo.dating", true }, + { "tattooli.com", true }, + { "tattvaayoga.com", true }, { "tatuantes.com", true }, { "taubin.cc", true }, { "tauedu.org", true }, { "tauflight.com", true }, { "taunhanh.us", false }, { "taunusstein.net", true }, + { "tauran.net", true }, { "tauriscia.tk", true }, { "tauschen.info", true }, { "taustyle.ru", true }, { "tavolaquadrada.com.br", true }, { "tavsys.net", true }, + { "tax-brain.net", true }, { "tax-guard.com", true }, { "taxaroo.com", true }, { "taxationweb.co.uk", true }, { "taxce.com", true }, + { "taxedesejour-airbnb.fr", true }, { "taxhawk.com", true }, { "taxhunter.com.au", true }, - { "taxi-chamonix.fr", false }, + { "taxi-chamonix.fr", true }, { "taxi-collectif.ch", false }, { "taxi-domzale.tk", true }, { "taxi-edessas.gr", true }, @@ -66644,7 +69136,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "taxis-collectifs.ch", false }, { "taxisaeropuertomadrid.com", true }, { "taxisafmatosinhos.pt", true }, - { "taxisantapolagranalacant.com", true }, { "taxiscollectifs.ch", false }, { "taxlab.co.nz", true }, { "taxmadras.com", true }, @@ -66663,6 +69154,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tb-devel.de", true }, { "tb-itf.de", true }, { "tba.bm", true }, + { "tbb2020.com", true }, + { "tbbvip1.com", true }, { "tbejos.com", true }, { "tbfocus.com", true }, { "tbitc.ch", true }, @@ -66723,12 +69216,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tdude.co", true }, { "tdvg.nl", true }, { "tdyx-china.com.cn", true }, + { "tea-empire.co.uk", true }, { "tea.in.th", true }, { "teabagdesign.co.uk", true }, { "teachbiz.net", true }, { "teachercreatedmaterials.com", true }, { "teacherph.com", true }, { "teacherpowered.org", true }, + { "teachersasap.info", true }, { "teachmeplease.ru", true }, { "teachpeople.org", true }, { "teachwithouttears.com", true }, @@ -66737,7 +69232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "team-azerty.com", true }, { "team-bbd.com", true }, { "team-io.net", true }, - { "team-pancake.eu", true }, + { "team005helpdesk.ddns.net", true }, { "team3482.com", true }, { "teamacadia.org", true }, { "teambeam.at", true }, @@ -66747,8 +69242,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teambim.eu", true }, { "teambition.com", true }, { "teamdaylo.xyz", true }, - { "teamdog.pet", true }, { "teamfilm.tk", true }, + { "teamhinkleyc.com", true }, { "teamif.io", true }, { "teamkoncert.pl", true }, { "teamliquid.com", true }, @@ -66761,6 +69256,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teampaddymurphy.ie", true }, { "teamrevolution.tk", true }, { "teams.microsoft.com", true }, + { "teams.microsoft.us", true }, { "teamsimplythebest.com", true }, { "teamspeak-serverlist.xyz", true }, { "teamsuccess.io", true }, @@ -66771,15 +69267,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teamupturn.com", true }, { "teamupturn.org", true }, { "teamusec.de", true }, + { "teamwpsekure.com", true }, { "teamx-gaming.de", true }, { "teaparty.id", true }, { "tearoomlints.be", true }, { "tease.email", true }, { "teasenetwork.com", true }, { "teaser-trailer.com", true }, + { "teatr-dva-kryla.ru", true }, { "teatrarium.com", true }, { "teazer.tk", true }, { "teb-akademia.pl", true }, + { "tebebo.com", true }, { "tebieer.com", true }, { "tebodental.com", true }, { "teboorthodontics.com", true }, @@ -66792,6 +69291,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tech-blogger.net", true }, { "tech-clips.com", false }, { "tech-essential.com", true }, + { "tech-idea.com", true }, { "tech-info.jp", true }, { "tech-leaders.jp", true }, { "tech-ninja.de", true }, @@ -66802,6 +69302,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tech-value.eu", true }, { "tech-zealots.com", true }, { "tech4arab.net", true }, + { "tech4greece.gr", true }, { "techableme.com", true }, { "techace.jp", true }, { "techamigo.in", true }, @@ -66846,6 +69347,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techlr.de", true }, { "techmagus.icu", true }, { "techmajesty.com", true }, + { "techmanstan.com", true }, { "techmasters.io", true }, { "techmoviles.com", true }, { "techmunchies.net", true }, @@ -66861,6 +69363,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techniclab.net", false }, { "techniclab.org", false }, { "techniclab.ru", true }, + { "technicwaladost.com", true }, + { "techniekutrecht.nl", true }, { "technifocal.com", true }, { "technik-boeckmann.de", true }, { "technistan.in", true }, @@ -66888,6 +69392,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techpit.us", true }, { "techpivot.net", true }, { "techpoint.org", true }, + { "techraptor.net", true }, { "techserve.ml", true }, { "techsharetx.gov", true }, { "techshift.eu", true }, @@ -66903,6 +69408,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "techtrader.io", true }, { "techunit.org", true }, { "techusers.de", true }, + { "techvalue.gr", true }, { "techvhow.com", true }, { "techview.link", true }, { "techviewforum.com", true }, @@ -66929,12 +69435,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tecnikan.com.ar", true }, { "tecnoarea.com.ar", true }, { "tecnoblog.net", true }, + { "tecnocomp-systems.com", true }, { "tecnodritte.it", true }, { "tecnogaming.com", true }, { "tecnogazzetta.it", true }, { "tecnologiasurbanas.com", true }, + { "tecnopiniones.com", true }, { "tecon.co.at", true }, - { "tecyt.com", true }, { "ted.do", true }, { "tedb.us", true }, { "teddy.ch", true }, @@ -66942,6 +69449,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teddykatz.com", true }, { "teddylu.info", true }, { "teddyss.com", false }, + { "teddywayne.com", true }, { "tedsdivingsystem.com", true }, { "tedxyalesecondaryschool.com", true }, { "teeautomat-teemaschine.de", true }, @@ -66953,14 +69461,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teen-porno-video.ru", true }, { "teenerotic.net", true }, { "teengirl.pub", true }, + { "teenportal.net", true }, { "teenpussypornvid.com", true }, + { "teenringen.nl", true }, { "teensexgo.com", true }, { "teensybows.hu", true }, { "teeqq.com", true }, { "teetje-doko.de", true }, { "teetoptens.com", true }, { "teeworlds-friends.de", true }, - { "teextee.com", true }, { "tefek.cz", true }, { "teganlaw.ca", true }, { "teganlaw.com", true }, @@ -66984,11 +69493,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teknoforums.com", true }, { "teknogeek.id", true }, { "teknoroit.com", true }, - { "tekstschrijvers.net", true }, + { "tektoria.de", true }, { "tektouch.net", true }, { "tektuts.com", true }, { "telamon.eu", true }, { "telco.at", true }, + { "telcodb.net", true }, { "telcotronics.com", true }, { "teldak.pt", true }, { "tele-alarme.ch", true }, @@ -67001,6 +69511,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "telecharger-itunes.com", true }, { "telecharger-open-office.com", true }, { "telecharger-winrar.com", true }, + { "telecommutejobs.com", true }, { "telecomwestland.nl", true }, { "teledivi.com", true }, { "telefon.report", true }, @@ -67032,7 +69543,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "teleskell.org", true }, { "telestepina.ru", true }, { "telesto.online", true }, + { "teletaxe.fr", true }, { "teletexto.com", true }, + { "teletxt.me", true }, { "televizeseznam.cz", true }, { "televotia.ch", true }, { "telework.gov", true }, @@ -67055,7 +69568,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "temariogratis.com", true }, { "temariopolicianacional.es", true }, { "temariosdeoposiciones.es", true }, - { "temasa.net", true }, { "tematicas.org", true }, { "temizmama.com", true }, { "temnacepel.cz", true }, @@ -67110,17 +69622,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tentacletank.com", true }, { "tentations-voyages.com", false }, { "tentech.io", true }, + { "tenthirtyonepictures.com", true }, { "tenthousandcoffees.com", true }, { "tenyx.de", true }, { "tenzer.dk", true }, + { "teodorpravicky.com", true }, { "teoleonie.com", false }, { "teoskanta.fi", true }, { "tepautotuning.com", true }, { "tepid.org", true }, { "tepitus.de", true }, + { "teplo-unit.ru", true }, { "teplofom.ru", true }, { "teplohod.kharkov.ua", true }, { "teplomash24.ru", true }, + { "teq-automotive.com", true }, { "tequilazor.com", true }, { "terabyte-computing.com", true }, { "terabyte.services", true }, @@ -67134,12 +69650,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terengganudaily.tk", true }, { "teriiphotography.com", true }, { "teriyakisecret.com", true }, - { "terlindung.com", true }, { "termbackti.me", true }, { "terme.viterbo.it", true }, { "termee.com", true }, { "termin-online.com", true }, { "terminalhrd.com", true }, + { "terminalvelocity.co.nz", true }, { "terminationsremembered.com", true }, { "termino.eu", true }, { "terminsrakning.se", true }, @@ -67153,6 +69669,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terra.by", true }, { "terrab.de", false }, { "terracloud.de", false }, + { "terracom.gr", true }, { "terraelectronica.ru", true }, { "terrafinanz.de", true }, { "terraform.io", true }, @@ -67161,6 +69678,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terraluna.space", true }, { "terranova.fi", true }, { "terrapay.com", true }, + { "terrasoverkappingvillage.be", true }, + { "terrasoverkappingvillage.nl", true }, { "terrastaffinggroup.com", false }, { "terraweb.net", true }, { "terrax.net", true }, @@ -67172,6 +69691,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "terrybutler.co.uk", true }, { "terryjohnsononline.com", true }, { "terudon.com", true }, + { "tervemaja.ee", true }, { "tes.com", true }, { "tesche.biz", true }, { "teschenhausen.com", true }, @@ -67194,6 +69714,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "test-textbooks.com", true }, { "test.de", true }, { "test.support", true }, + { "test3-websiteboost.nl", true }, { "testadren.com", true }, { "testadron.com", true }, { "testbirds.cz", true }, @@ -67217,6 +69738,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "testosteronedetective.com", true }, { "testovaci.ml", true }, { "testpornsite.com", true }, + { "testpsicotecnicos.com.es", true }, + { "testspsicotecnicos.org", true }, { "testsuite.org", true }, { "testthis.cf", true }, { "testuje.net", true }, @@ -67230,17 +69753,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tetsai.net", true }, { "tetsugakunomichi.jp", true }, { "tetsumaki.net", true }, - { "teufel.dk", true }, { "teulon.eu", true }, { "teunstuinposters.nl", true }, { "teusink.eu", true }, { "tewarilab.co.uk", true }, { "tewkesburybouncycastles.co.uk", true }, + { "tewkesburyyoga.com", true }, { "texasabrasiveblasting.com", true }, { "texasbluesalley.com", true }, { "texasholdemevents.net", true }, { "texashomesandland.com", true }, { "texasllcpros.com", false }, + { "texasonesource.com", true }, { "texaspaintingandgutters.com", true }, { "texasparkinglotstriping.com", true }, { "texasready.gov", true }, @@ -67250,10 +69774,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "texaswinetrail.com", true }, { "texby.com", true }, { "texhnolyze.net", true }, + { "texiafinishing.com", true }, { "texier.mx", true }, { "text-shirt.com", false }, { "textbrawlers.com", true }, { "textburst.com", true }, + { "texteditor.co", true }, { "texter-linz.at", true }, { "texter.at", true }, { "texterseo.at", true }, @@ -67275,6 +69801,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tf7879.com", true }, { "tfadictivo.com", true }, { "tfb.az", true }, + { "tferdinand.net", true }, { "tfg-bouncycastles.com", true }, { "tfk.fr", true }, { "tfle.xyz", true }, @@ -67294,10 +69821,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tgo0088.com", true }, { "tgo1111.com", true }, { "tgo2222.com", true }, - { "tgo3333.com", true }, - { "tgo4444.com", true }, + { "tgo3333.com", false }, + { "tgo4444.com", false }, { "tgo456.com", true }, - { "tgo5555.com", true }, + { "tgo5555.com", false }, { "tgo58.com", true }, { "tgo6688.com", true }, { "tgo7777.com", true }, @@ -67310,6 +69837,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tgoasia.com", true }, { "tgod.co", true }, { "tgtv.tn", true }, + { "tgtw.cc", true }, { "tgui.eu", true }, { "tgui.net", true }, { "tgw.com", true }, @@ -67341,10 +69869,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thajskyraj.com", true }, { "thala.fr", true }, { "thalan.fr", true }, + { "thalgo-cz.cz", true }, { "thalgott.net", false }, { "thalhammer.it", true }, { "thalia.nu", true }, - { "thalita-reload.com", true }, { "thallgordleyrealtor.com", true }, { "thalliman.com", true }, { "thallinger.me", true }, @@ -67371,28 +69899,30 @@ static const nsSTSPreload kSTSPreloadList[] = { { "the-alan-parsons-project.com", true }, { "the-archimedeans.org.uk", true }, { "the-archive.ml", true }, + { "the-azad.com", true }, { "the-big-bang-theory.com", true }, { "the-body-shop.hu", false }, + { "the-busbys.com", true }, { "the-digitale.com", false }, { "the-earth-yui.net", false }, { "the-fermenter.com", true }, { "the-finance-blog.com", true }, { "the-forgotten.net", true }, { "the-gist.io", true }, - { "the-hemingway-code.de", true }, + { "the-hemingway-code.de", false }, { "the-jeuxflash.com", true }, { "the-kuusatu.com", true }, - { "the-medium-dolphore.com", true }, + { "the-medium-dolphore.com", false }, { "the-mystery.org", true }, { "the-nash-education-program.com", true }, { "the-pack.nl", true }, { "the-pcca.org", true }, + { "the-red.pp.ua", true }, { "the-spoonfeed.club", true }, { "the-train.de", true }, { "the-trophy-company.com", true }, { "the-woods.org.uk", true }, { "the-zenti.de", true }, - { "the.ie", true }, { "the1way.net", true }, { "the2f.de", true }, { "the3musketeers.biz", true }, @@ -67417,9 +69947,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thealonas.tk", true }, { "theandroidsoul.com", true }, { "theangelfishfoundation.org", true }, - { "theanticellulitediet.com", true }, + { "theantisocialengineer.com", true }, { "theapplewiki.com", true }, - { "theappliancedepot.co.uk", true }, + { "theappliancedepot.co.uk", false }, { "theaps.net", true }, { "theartistjournal.ca", true }, { "theasianshooter.com", true }, @@ -67433,7 +69963,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theazoorsociety.org", true }, { "thebabypassport.com", true }, { "thebacteriafight.gq", true }, - { "thebakers.com.br", false }, { "thebakery2go.de", true }, { "thebannerstore.com", true }, { "thebarrens.nu", true }, @@ -67441,7 +69970,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebasebk.org", true }, { "thebasicstudio.com", true }, { "thebcm.co.uk", true }, - { "thebeachessportsphysio.com", true }, { "thebeardedrapscallion.com", true }, { "thebeginningviolinist.com", true }, { "theberries.tk", true }, @@ -67486,6 +70014,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thebridalcollection.com", true }, { "thebrightons.co.uk", true }, { "thebrightons.uk", true }, + { "thebroadcastknowledge.com", true }, { "thebte.com", true }, { "thebuffalotavern.com", true }, { "thebulletin.io", true }, @@ -67498,6 +70027,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecarpenters.tk", true }, { "thecavalries.com", true }, { "thecellulitediet.com", true }, + { "thechallenge.fit", true }, + { "thechandigarhcity.com", true }, { "thechargertimes.com", true }, { "thechavs.xyz", true }, { "thecherryship.ch", false }, @@ -67508,6 +70039,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecluster.xyz", true }, { "thecoffeecamp.com", true }, { "thecompany.pl", true }, + { "thecomparativist.com", true }, { "theconcordbridge.azurewebsites.net", true }, { "thecondobuyers.com", true }, { "theconverter.net", true }, @@ -67515,6 +70047,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thecr3ative.tk", true }, { "thecraftingstrider.net", true }, { "thecrazytravel.com", true }, + { "thecreativeedgeinc.com", true }, { "thecrescentchildcarecenter.com", true }, { "thecrew-exchange.com", true }, { "thecrochetcottage.net", true }, @@ -67527,6 +70060,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theda.co.za", true }, { "thedailyprosper.com", true }, { "thedailyupvote.com", true }, + { "thedanceacademybuckscounty.com", true }, { "thedark1337.com", true }, { "thedarkartsandcrafts.com", true }, { "thedarkfusion.tk", true }, @@ -67536,10 +70070,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thedhs.com", true }, { "thediamondcenter.com", true }, { "thediaryofadam.com", true }, + { "thedigitaleconomist.com", true }, { "thedinnerdetective.com", true }, { "thediscovine.com", true }, { "thedocumentrefinery.com", true }, - { "thedom.site", true }, { "thedreamtravelgroup.co.uk", true }, { "thedronechart.com", true }, { "thedroneely.com", true }, @@ -67555,13 +70089,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theel0ja.ovh", true }, { "theelectricguide.com", true }, { "theemasphere.com", true }, - { "theencounter.nu", true }, - { "theender.net", true }, { "theentertainmentcontractor.com", true }, { "theepankar.com", true }, { "theepiclounge.com", true }, { "theepicsponge.co.uk", true }, { "theevergreen.me", false }, + { "theeverycompany.com", true }, { "theexpatriate.de", true }, { "theeyeopener.com", true }, { "thefairieswantmedead.com", true }, @@ -67574,6 +70107,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theferrarista.com", false }, { "thefestivals.uk", true }, { "thefizz.uk", true }, + { "theflightsdesk.com", true }, { "theflowerbasketonline.com", true }, { "theflowershopdeddington.com", true }, { "theflyingbear.net", false }, @@ -67596,6 +70130,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thefurnitureco.uk", true }, { "thefurniturefamily.com", true }, { "thefusion.net.in", true }, + { "thefussyeater.ie", true }, + { "thegadgetsuperstore.com", true }, { "thegarrowcompany.com", true }, { "thegatheringocala.com", true }, { "thegaucompany.healthcare", true }, @@ -67613,27 +70149,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thegreenmanpottery.com", true }, { "thegreenpark.co.uk", true }, { "thegreens.us", true }, + { "thegrio.com", true }, { "thegroovecartel.com", true }, { "thegrowhouse.ca", true }, - { "theguitarcompany.nl", true }, { "thegvoffice.net", true }, { "thehackerblog.com", true }, { "thehairrepublic.net", true }, { "thehairstandard.com", true }, { "thehamiltoncoblog.com", true }, { "thehardylawfirm.com", true }, + { "thehasty.com", true }, { "thehaxbys.co.uk", true }, { "theheatingoilclub.co.uk", true }, { "thehiddenbay.cc", false }, { "thehivedesign.org", true }, { "thehobincompany.com", true }, + { "thehoff.ddnss.de", true }, { "thehomeicreate.com", true }, { "thehonorguard.org", true }, { "thehookup.be", true }, { "thehopefuture.com", true }, + { "thehopper.io", true }, { "thehotfix.net", true }, { "thehotness.tech", true }, + { "thehub.ai", false }, { "thehullbeekeeper.co.uk", true }, + { "thehunky.com", true }, { "theideaskitchen.com.au", true }, { "theidiotboard.com", true }, { "theig.co", true }, @@ -67641,7 +70182,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theillustrationstudio.com.au", true }, { "theimaginationagency.com", true }, { "theinboxpros.com", true }, - { "theindiantrip.com", true }, + { "theindiantrip.com", false }, { "theinflatables-ni.co.uk", true }, { "theinitium.com", false }, { "theinnerprism.com", true }, @@ -67652,6 +70193,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thejacksoninstitute.com.au", true }, { "thejimmyw.uk", true }, { "thejoneshub.com", true }, + { "thejonsey.com", true }, + { "thejsmodel.com", true }, + { "thejunkfiles.com", true }, { "thekev.in", true }, { "thekeymusic.com", true }, { "thekeytobusiness.co.uk", true }, @@ -67661,6 +70205,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thekodester.ca", true }, { "thekonsulthub.tk", true }, { "thekovnerfoundation.org", true }, + { "thekuwayama.net", true }, { "thelaimlife.com", true }, { "thelakedistrict.tk", true }, { "thelanscape.com", true }, @@ -67675,9 +70220,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thelifeofmala.com", true }, { "thelinuxspace.com", true }, { "thelinuxtree.net", true }, - { "thelittlecraft.com", true }, { "thelittlejewel.com", true }, { "thelittlepeartree.eu", true }, + { "thelivinggod.online", true }, { "thelocals.ru", true }, { "thelonelyones.co.uk", true }, { "thelonious.nl", true }, @@ -67688,10 +70233,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themarshallproject.org", true }, { "themaster.site", true }, { "themasterplan.com.au", true }, + { "themathbehindthe.science", true }, { "themathscentre.com", true }, { "themattresswarehouse.co.za", true }, { "themeaudit.com", true }, { "themecraft.studio", true }, + { "themegteam.com", true }, { "themenmedia.com", true }, { "themenzentrisch.de", true }, { "themerchandiser.net", false }, @@ -67703,7 +70250,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "themimitoof.fr", false }, { "theminiacs.com", true }, { "themist.cz", true }, - { "themoep.at", true }, { "themoneyconverter.com", true }, { "themonkeytrail.co.uk", true }, { "themonthly.com.au", true }, @@ -67720,12 +70266,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thenewclassics.com", true }, { "thenextasset.com", true }, { "thenexwork.com", true }, - { "thenib.com", true }, { "thenichecast.com", true }, { "thenine.info", true }, { "theninenine.com", true }, { "thenocman.com", true }, - { "thenovaclinic.com", true }, { "thenowheremen.com", true }, { "thenrdhrd.nl", true }, { "theo-andreou.org", true }, @@ -67745,6 +70289,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theoldbrewhouse.info", true }, { "theolivetreerestaurants.com", true }, { "theologyz.com", true }, + { "theomg.co", true }, { "theonegroup.co.uk", true }, { "theonethaimassage.de", true }, { "theoosmetalart.nl", true }, @@ -67766,7 +70311,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thepartydoctors.co.uk", true }, { "thepasteb.in", true }, { "thepathsofdiscovery.com", true }, - { "thepaulagcompany.com", true }, + { "thepaulagcompany.com", false }, { "thepavilionbanbury.co.uk", true }, { "thepaymentscompany.com", true }, { "thepb.in", true }, @@ -67788,6 +70333,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thepriorybandbsyresham.co.uk", true }, { "theprivacysolution.com", true }, { "theproject.cf", true }, + { "theprojectgroup.com", true }, { "theprojectx.tk", true }, { "thepromisemusic.com", true }, { "theptclist.tk", true }, @@ -67797,8 +70343,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theramo.re", true }, { "therandombits.com", false }, { "therapiemi.ch", true }, + { "therapyclient.com", true }, { "therapyconnects.co.uk", true }, { "therapynotes.com", true }, + { "therapypartner.com", true }, { "therapyportal.com", true }, { "therapyroom.rent", true }, { "therapysxm.com", false }, @@ -67827,15 +70375,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theroyalmarinescharity.org.uk", true }, { "therudeworkout.com", true }, { "therugswarehouse.co.uk", true }, - { "theruizes.com", true }, { "theruleslawyer.net", true }, { "therumfordcitizen.com", true }, { "therworth.com", true }, { "therworth.eu", true }, { "therworth.net", true }, { "therworth.org", true }, - { "thesage.cf", true }, { "thesalonthing.com", false }, + { "thesandboxchicago.com", true }, { "thesanta.biz", true }, { "thesarogroup.com", true }, { "thesassynut.com", true }, @@ -67870,14 +70417,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesishelp.net", true }, { "theskingym.co.uk", true }, { "thesled.net", true }, + { "thesleepdoctor.com", true }, { "thesmallbusinesswebsiteguy.com", true }, { "thesmokingcuban.com", true }, { "thesnellvilledentist.com", false }, { "thesocialmediacentral.com", true }, - { "thesoftwarehouse.co.za", false }, { "thesoundstageatstrangeland.com", true }, { "thesplashlab.com", true }, - { "thesslonline.com", true }, { "thesslstore.com", true }, { "thestatementjewelry.com", true }, { "thestationatwillowgrove.com", true }, @@ -67885,20 +70431,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thesteins.org", false }, { "thestockoasis.com", true }, { "thestoneage.de", true }, - { "thestory.ie", true }, { "thestoryshack.com", true }, { "thestral.pro", true }, { "thestralbot.com", true }, { "thestrategyagency.com.au", true }, { "thestreamable.com", true }, + { "thestudioslucan.com", true }, { "thestylebouquet.com", true }, + { "thesunshinecoasttourcompany.com.au", true }, { "thesuppercircle.com", true }, { "theswimdoctors.com", true }, { "theswissbay.ch", true }, { "theta.eu.org", true }, { "thetapirsmouth.com", true }, { "thetassos.com", true }, - { "thetechbasket.com", true }, + { "thetechieflutist.com", true }, { "thethoughttrainer.com", true }, { "thethreadofhope.org", true }, { "thethreadsmiths.com.tw", true }, @@ -67916,6 +70463,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thetravelhack.com", true }, { "thetree.ro", true }, { "thetrendspotter.net", true }, + { "thetrustedzone.com", true }, { "thetuco.fr", true }, { "thetuxkeeper.de", false }, { "thetvtraveler.com", true }, @@ -67946,19 +70494,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thewebflash.com", true }, { "thewebsitedoctors.co.uk", true }, { "thewebsitemarketingagency.com", true }, - { "thewego.com", true }, { "thewehmeiers.com", true }, { "thewhitehat.club", true }, { "thewhiterabbit.space", true }, { "thewhitneypaige.com", true }, { "thewindow.com", true }, - { "thewinstonatlyndhurst.com", true }, { "thewizardsmanse.com", true }, { "thewoodkid.com.au", true }, { "thewoosh.me", true }, { "theworkingeye.nl", true }, { "theworld.tk", true }, - { "theworldbattle.com", true }, { "theworldexchange.com", true }, { "theworldexchange.net", true }, { "theworldexchange.org", true }, @@ -67970,10 +70515,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "theycallmefox.net", true }, { "theyear199x.org", true }, { "theyearinpictures.co.uk", true }, - { "theyosh.nl", true }, + { "theyosh.nl", false }, { "theyourbittorrent.com", true }, { "thezero.org", true }, { "thezillersathenshotel.com", true }, + { "thgstardragon.com", true }, { "thiagohersan.com", true }, { "thibaultwalle.com", true }, { "thienteakee.com", true }, @@ -67984,6 +70530,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thierryhayoz.ch", true }, { "thierrymazue.fr", true }, { "thietbithoathiem.net", true }, + { "thietkegianhangtttm.com", true }, + { "thietkenoithatshop.com", true }, { "thijmenmathijs.nl", true }, { "thijs.amsterdam", true }, { "thijs.fr", true }, @@ -68005,15 +70553,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thingsandcode.com", true }, { "thingsimplied.com", false }, { "thingsof.org", true }, + { "thingswithstuff.llc", false }, { "think-asia.org", true }, { "think-pink.info", true }, { "think-positive-watches.de", true }, + { "thinkbot.de", true }, { "thinkcash.nl", true }, { "thinkheaddesign.com", true }, { "thinkindifferent.net", true }, { "thinkingandcomputing.com", true }, { "thinkingliberty.com", true }, - { "thinkingplanet.net", true }, { "thinkmarketing.ca", true }, { "thinkquality.nl", true }, { "thinkrealty.com", true }, @@ -68021,10 +70570,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thinktux.net", true }, { "thirdbearsolutions.com", true }, { "thirdgenphoto.co.uk", true }, + { "thirdwaverevenue.com", true }, { "thirdworld.moe", true }, { "thirtysixseventy.ml", true }, { "thiry-automobiles.net", false }, - { "this-server-will-be-the-death-of-me.com", true }, { "thisbrownman.com", true }, { "thiscloudiscrap.com", false }, { "thiscode.works", true }, @@ -68071,6 +70620,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thomasgriffin.io", true }, { "thomashunter.name", false }, { "thomaskaviani.be", true }, + { "thomaskoscheck.de", true }, { "thomasmcfly.com", true }, { "thomasmeester.nl", false }, { "thomasmerritt.de", true }, @@ -68124,10 +70674,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "threema.ch", true }, { "threexxx.ch", true }, { "threit.de", true }, - { "threv.net", true }, { "thriftdiving.com", true }, { "thrillernyc.com", true }, - { "thriveafterabuse.com", true }, { "thriveta.com", true }, { "thriveweb.com.au", true }, { "thrivewellnesshub.co.za", true }, @@ -68138,8 +70686,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "throwpass.com", true }, { "thrush.com", true }, { "thrw.ml", true }, + { "thsc.us", true }, { "thscpac.org", true }, - { "thsecurity.cz", true }, { "thues.eu", true }, { "thuisverpleging-meerdael.be", true }, { "thullbery.com", true }, @@ -68159,6 +70707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "thuviensoft.com", true }, { "thuviensoft.net", true }, { "thuybich.com", true }, + { "thuyetphapmoi.com", true }, { "thw-bernburg.de", true }, { "thwiki.cc", true }, { "thxandbye.de", true }, @@ -68177,6 +70726,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tiamarcia.com.br", true }, { "tian123.com", true }, { "tian888.com", true }, + { "tianbaobo05.com", true }, + { "tianbaobo06.com", true }, + { "tianbaobo07.com", true }, + { "tianbaobo08.com", true }, + { "tianbaobo09.com", true }, { "tiance.me", true }, { "tianeptine.com", true }, { "tianshili.me", true }, @@ -68229,16 +70783,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tiernanx.com", true }, { "tieronegraphics.com", true }, { "tierradeayala.com", true }, + { "tierschutz-niederrhein.de", true }, { "ties.com", true }, { "tiew.pl", true }, { "tifan.net", true }, { "tifaware.com", true }, + { "tiffany.life", true }, { "tiffanywatson.xyz", true }, { "tiffnix.com", true }, { "tiger21.com", true }, - { "tigerchef.com", true }, { "tigerdile.com", true }, - { "tigerfm.tk", true }, + { "tigerfishingzambia.com", true }, { "tigernode.com", true }, { "tigernode.net", true }, { "tigerscu.org", true }, @@ -68253,11 +70808,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tijden.nu", true }, { "tijo.ch", true }, { "tik.edu.ee", true }, + { "tik.help", true }, { "tiki-god.co.uk", true }, { "tilde.institute", true }, { "tilde.link", true }, { "tildes.net", true }, { "tildesnyder.com", true }, + { "tilellit.pro", true }, { "tiles-for-facing.tk", true }, { "tilesbay.com", true }, { "tileyourvisit.pt", true }, @@ -68267,28 +70824,28 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tillberg.us", true }, { "tilleysbouncycastles.co.uk", true }, { "tillseasyscore.com", true }, + { "tillwalldrug.com", true }, { "tilman.ninja", true }, { "tilosp.de", true }, - { "tilta.com", true }, + { "tiltedscalescollective.org", true }, { "tiltedwindmillcrafts.com", true }, { "tim-demisch.de", true }, { "timacdonald.me", true }, + { "timatooth.com", true }, { "timawesomeness.com", true }, { "timbarlotta.com", true }, { "timberkel.com", true }, - { "timbers.space", true }, { "timbishopartist.com", true }, { "timbrado.com", true }, { "timbrust.de", true }, { "timchanhxe.com", true }, { "timco.cloud", true }, - { "timdeneau.com", true }, { "timdoug.com", true }, - { "time-business.tk", true }, { "time-craft.su", true }, { "time-hotel.cf", true }, { "time.gov", true }, { "time.sh", true }, + { "time100.ru", true }, { "time2060.ru", true }, { "time22.com", true }, { "time2choose.com", true }, @@ -68301,7 +70858,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timeglass.de", true }, { "timeless-photostudio.com", true }, { "timeless-spirit.com", true }, - { "timelessskincare.co.uk", true }, { "timelimit.io", true }, { "timelockstash.com", true }, { "timelyapp.com", true }, @@ -68309,6 +70865,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timerace.ml", true }, { "timersuite.com", true }, { "timeserver1.de", true }, + { "timeserver2.de", true }, { "timeserver3.de", true }, { "timestamp.uk", true }, { "timetab.org", true }, @@ -68323,6 +70880,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timi-matik.hu", true }, { "timich.ga", true }, { "timjk.de", false }, + { "timklefisch.de", true }, { "timmersgems.com", true }, { "timmi6790.de", true }, { "timmy.im", true }, @@ -68332,7 +70890,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timonengelke.de", true }, { "timoso.de", true }, { "timothy.tk", true }, - { "timothysykes.com", true }, { "timowi.de", true }, { "timoxbrow.com", true }, { "timroes.de", true }, @@ -68345,13 +70902,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "timvandekamp.nl", true }, { "timvivian.ca", true }, { "timweb.ca", true }, + { "timwestdesigns.com", true }, { "timx.uk", true }, - { "timysewyn.be", true }, + { "timysewyn.be", false }, { "tina-zander.de", true }, { "tina.media", true }, { "tinapoethe.com", true }, { "tinastahlschmidt.de", true }, + { "tindallriley.co.uk", true }, { "tinekevanurk.nl", true }, + { "tinf.de", true }, { "tinf15b4.de", true }, { "tinfoilsecurity.com", false }, { "tinfoleak.com", true }, @@ -68361,6 +70921,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinkerbeast.com", true }, { "tinkerboard.org", true }, { "tinkerers-trunk.co.za", true }, + { "tinkererstrunk.co.za", true }, { "tinkertry.com", true }, { "tinlc.org", true }, { "tinlook.com", true }, @@ -68383,6 +70944,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tinyssh.com", true }, { "tinyssh.org", true }, { "tinytownsoftplay.co.uk", true }, + { "tinyurl.com", true }, { "tinyvpn.net", true }, { "tinyvpn.org", true }, { "tio.run", true }, @@ -68403,12 +70965,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tipranks.com", true }, { "tips4india.tk", true }, { "tipsacademicos.com", true }, - { "tipsdebellezaysalud.com", true }, { "tipsmake.com", true }, { "tipsport.cz", true }, { "tipstersweb.com", true }, { "tipsypresent.com", true }, { "tipulnagish.co.il", true }, + { "tiqets.com", true }, { "tir-mauperthuis.fr", true }, { "tircentrale.net", true }, { "tirionnetwork.de", true }, @@ -68416,7 +70978,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tiroler-kupferschmiede.com", true }, { "tirs4ne.ch", false }, { "tirteafuera.tk", true }, + { "tirupatinightwear.co.in", true }, { "tis.ph", true }, + { "tischlerei-geher.at", true }, { "tischlerei-klettke.de", true }, { "tisgroup.com.my", true }, { "tishopsv.com", true }, @@ -68450,22 +71014,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tixio.de", true }, { "tjampoer.com", true }, { "tjenestetorvet.dk", true }, + { "tjian.info", true }, { "tjl.rocks", true }, { "tjp.ch", false }, { "tjs.me", true }, { "tju.me", true }, { "tjxxzy.com", true }, { "tk-its.net", true }, + { "tk-smart.ru", true }, { "tk2net.com", true }, { "tkacz.pro", true }, - { "tkanemoto.com", true }, + { "tkanemoto.com", false }, { "tkat.ch", true }, { "tkbuilders.net", true }, { "tkcafe.net", true }, + { "tkeycoin.com", false }, { "tkgpm.com", true }, { "tkirch.de", true }, { "tkjg.fi", true }, + { "tkmr-gyouseishosi.com", true }, { "tkn.me", true }, + { "tkrn.de", true }, { "tksainc.com", true }, { "tkts.cl", true }, { "tkusano.jp", true }, @@ -68475,15 +71044,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tlca.org", true }, { "tlcnet.info", true }, { "tld-list.com", true }, + { "tld.gg", true }, { "tldtattoo.com", true }, { "tlehseasyads.com", true }, { "tleng.de", true }, { "tlo.xyz", true }, + { "tloschinski.de", true }, { "tloxygen.com", true }, { "tls-proxy.de", true }, { "tls.blue", true }, { "tls.builders", true }, { "tls.care", true }, + { "tls1914.org", true }, { "tlsrobot.se", true }, { "tlthings.net", true }, { "tlumaczenie.com", true }, @@ -68493,18 +71065,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tm80plus.com", true }, { "tmachinery.cz", true }, { "tmadev.com.au", true }, - { "tmakiguchi.org", true }, { "tmas.dk", true }, { "tmberg.cf", true }, { "tmberg.ga", true }, { "tmberg.gq", true }, { "tmberg.ml", true }, { "tmberg.tk", true }, + { "tmbergtmberg.cf", true }, + { "tmbergtmberg.ga", true }, + { "tmbergtmberg.gq", true }, + { "tmbergtmberg.ml", true }, + { "tmbergtmberg.tk", true }, { "tmc.com.mt", true }, { "tmcjobs.com", true }, { "tmcreationweb.com", true }, { "tmdb.biz", true }, { "tmf.ru", true }, + { "tmf22.ru", true }, + { "tmhanoi.com", true }, { "tmheatingcooling.com", true }, { "tmhr.moe", true }, { "tmi-products.eu", true }, @@ -68515,17 +71093,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tmpsantos.com.br", true }, { "tmsdiesel.com", true }, { "tmtopup.com", true }, - { "tn-bb.com", true }, { "tn0.club", true }, { "tnb-plattform.de", true }, { "tncentro.com", true }, { "tnd.com.ar", true }, { "tndentalwellness.com", true }, { "tniad.mil.id", false }, - { "tnl.cloud", true }, { "tnonline.net", true }, { "tnosha.gov", true }, { "tnrealid.gov", true }, + { "tnrf.eu", true }, { "tntmobi.com", true }, { "tntware.com", true }, { "tnusedoil.gov", true }, @@ -68533,15 +71110,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tnwildlandfire.gov", true }, { "tnwioa.gov", true }, { "tny.link", false }, + { "to-med.ru", true }, { "to-riktari.gr", true }, { "to2mbn.org", true }, - { "toabetteryou.org", true }, { "toad.ga", true }, { "toast.al", false }, { "tob-rulez.de", true }, { "tobacco.gov", true }, { "tobaccolocker.com", true }, { "tobbro-trans.de", true }, + { "tobdesignfirm.com", true }, { "tobedo.net", true }, { "tobefree.eu", true }, { "tober-cpag.de", true }, @@ -68557,14 +71135,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tobias-haenel.de", true }, { "tobias-kleinmann.de", true }, { "tobias-kluge.com", true }, - { "tobias-kluge.de", true }, { "tobias-picha.de", true }, { "tobias-weidhase.de", true }, { "tobias.gr", true }, - { "tobias4.ddns.net", true }, + { "tobias4.ddns.net", false }, { "tobiasbergius.se", true }, { "tobiasbrunner.net", true }, { "tobiasconradi.com", true }, + { "tobiase.de", true }, { "tobiasfischer.info", true }, { "tobiashorvath.com", true }, { "tobiashorvath.de", true }, @@ -68596,6 +71174,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tobyx.net", true }, { "tobyx.org", true }, { "tocaro.im", true }, + { "tocasoft.co.uk", true }, { "toccoig.com", true }, { "tochi-urikata.net", true }, { "todacarreira.com", true }, @@ -68629,6 +71208,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toeglhofer.at", true }, { "toeightycountries.com", true }, { "toekomstperspectief.be", true }, + { "toepferwerk.de", true }, { "toerschaatsenknsb.nl", true }, { "toerschaatsenoverijssel.nl", true }, { "toest.bg", true }, @@ -68642,6 +71222,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "togetter.com", true }, { "togtider.dk", true }, { "toheb.de", false }, + { "tohfalaya.com", true }, { "tohochofu-sportspark.com", true }, { "tohofc.co.jp", true }, { "tohokinemakan.tk", true }, @@ -68649,6 +71230,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toihoctiengtrung.com", true }, { "toila.best", true }, { "toiletable.com", true }, + { "toirereform.com", true }, { "tojannah.com", false }, { "tokage.me", true }, { "tokaido-kun.jp", true }, @@ -68703,7 +71285,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomahawk.ca", true }, { "tomandmara.com", true }, { "tomandshirley.com", true }, - { "tomandsonya.com", true }, { "tomandsonya.net", true }, { "tomandsonya.org", true }, { "tomarnarede.pt", true }, @@ -68757,6 +71338,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tommyemo.com", true }, { "tommyemo.net", true }, { "tommymoya.tv", true }, + { "tommyphotographie.com", true }, { "tomnatt.com", true }, { "tomo.gr", false }, { "tomoradexpert.ro", true }, @@ -68770,17 +71352,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomschlick.com", true }, { "tomsdevsn.me", true }, { "tomsherakmshope.org", true }, - { "tomsk.ml", true }, { "tomsoft.hr", true }, { "tomspdblog.com", true }, { "tomssl.com", true }, { "tomstew.art", true }, { "tomthorogood.co.uk", true }, - { "tomthorogood.uk", true }, + { "tomthorogood.uk", false }, { "tomticket.com", true }, { "tomudding.nl", true }, { "tomvanlaer.be", true }, { "tomvote.com", true }, + { "tomvst.net", true }, { "tomwassenberg.com", true }, { "tomwassenberg.nl", true }, { "tomwellington.design", true }, @@ -68788,6 +71370,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tomyork.net", true }, { "tonabor.ru", true }, { "tonage.de", true }, + { "tonalaw.com", true }, { "tonarinoliusan.com", true }, { "tonburi.jp", false }, { "toncusters.nl", true }, @@ -68828,6 +71411,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tontonnews.net", true }, { "tonyarcieri.com", true }, { "tonymanning.com", true }, + { "tonymaster21.me", true }, { "tonytan.cn", true }, { "tonytan.io", true }, { "tonyw.xyz", true }, @@ -68842,6 +71426,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toolroomrecords.com", true }, { "tools.pro", true }, { "toolsense.io", true }, + { "toolset.com", true }, { "toolshero.com", true }, { "toolspain.tk", true }, { "toom.io", true }, @@ -68862,6 +71447,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toothpique.tk", true }, { "tooti.biz", true }, { "top-esb.com", true }, + { "top-frog.com", true }, { "top-mining.tk", true }, { "top-obaly.cz", true }, { "top-opakowania.pl", true }, @@ -68871,10 +71457,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "top-zdrave.bg", true }, { "top10media.tk", true }, { "top10mountainbikes.info", true }, - { "top1betting.net", true }, { "top2servers.tv", true }, { "top4shop.de", true }, - { "top5hosting.co.uk", true }, { "top6casinos.com", true }, { "top9.fr", true }, { "topanimecharacters.com", true }, @@ -68898,12 +71482,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topeducationhelp.co", true }, { "topekafoundationpros.com", true }, { "topeng-emas.com", true }, + { "toperadigital.com", true }, { "topesb.com", true }, { "topferta.com", true }, { "topfivepercent.co.uk", true }, { "topgshop.ru", true }, { "tophat.studio", true }, { "tophr.kz", true }, + { "topicalnet.de", true }, { "topicdesk.com", true }, { "topicit.net", true }, { "topirishcasinos.com", true }, @@ -68919,6 +71505,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topnotepad.com", true }, { "topodin.com", true }, { "toponlinecasinosites.co.uk", true }, + { "topophile.net", true }, { "toppercan.es", true }, { "toppointrea.com", true }, { "topprice.ua", true }, @@ -68938,7 +71525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toptexture.com", true }, { "toptheto.com", true }, { "toptranslation.com", true }, - { "topurls.tk", true }, { "topvertimai.lt", true }, { "topvision.se", true }, { "topwin.la", true }, @@ -68946,6 +71532,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "topwoodltd.co.uk", true }, { "topyachts-shop.com.ua", true }, { "topyachts.com.ua", true }, + { "tor.us", true }, { "tor2web.org", true }, { "toracon.org", true }, { "torbay.ga", true }, @@ -68972,7 +71559,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "torogroups.com", true }, { "torontoaccesscontrol.com", true }, { "torontocorporatelimo.services", true }, - { "torontonews.tk", true }, { "torontostarts.com", true }, { "toros.co", true }, { "toros2.com", true }, @@ -68981,6 +71567,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "torprojects.com", true }, { "torrance.gq", true }, { "torreconta.pt", true }, + { "torremarsalou.com", true }, { "torrent.fedoraproject.org", true }, { "torrent.is", true }, { "torrent.tm", true }, @@ -69031,7 +71618,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totalforcegym.com", false }, { "totalhomecareinc.com", true }, { "totalhost.gq", true }, - { "totallclean.com", true }, { "totallemaiildelivery.com", true }, { "totallemaildelivery.com", true }, { "totallylegitimatehosting.ru", true }, @@ -69043,6 +71629,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totalprint.hu", true }, { "totalsport-bg.com", true }, { "totaltriathlon.com", true }, + { "totalwebboost.nl", true }, { "totalwebmedia.nl", true }, { "totch.de", true }, { "totem-international.com", true }, @@ -69050,6 +71637,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "totodil.es", true }, { "totolabs.com", true }, { "totoro.pub", true }, + { "tottoya.com", true }, { "totvs.com", true }, { "toucan-informatique.fr", true }, { "touch-up-net.com", true }, @@ -69066,13 +71654,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "touchwoodtrees.com.au", true }, { "toudum.com", true }, { "tougetu.com", true }, + { "tough.email", true }, { "toughlife.info", true }, + { "toughvps.com", true }, { "touhou.ac.cn", true }, { "touhou.fm", true }, + { "touhou.tw", true }, { "touhouwiki.net", true }, { "toujour.top", true }, { "toujours-actif.com", true }, - { "toulineprestige.com", true }, { "touray-enterprise.ch", true }, { "tourdatenarchiv.de", true }, { "tourdewestwoud.nl", true }, @@ -69082,7 +71672,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tourispo.com", true }, { "tournamentmgr.com", true }, { "tournevis.ch", false }, - { "tours.co.th", true }, { "toursandtransfers.it", true }, { "toursencancun.com", true }, { "toursinvietnam.tk", true }, @@ -69093,6 +71682,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toushi-exe.com", true }, { "toushi-shakkin.com", true }, { "touslesdrivers.com", true }, + { "tout-a-fait.fr", true }, { "tout-art.ch", true }, { "toutart.ch", true }, { "toutelathailande.fr", true }, @@ -69120,6 +71710,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "townhouseregister.com.au", true }, { "townofbridgewater.ca", true }, { "townofhulbertok.gov", true }, + { "townofmineral.net", true }, { "townofpolk-wi.gov", true }, { "townofruthnc.gov", true }, { "towsonpediatrics.com", true }, @@ -69137,6 +71728,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "toyokawa-fan.com", true }, { "toyopac.com", true }, { "toyota-kinenkan.com", true }, + { "toypro.com", true }, { "toys-robots.cf", true }, { "toyschina.cf", true }, { "toysperiod.com", true }, @@ -69157,6 +71749,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tppleague.me", false }, { "tpress.tk", true }, { "tpro.rocks", true }, + { "tproger.ru", true }, { "tq.rs", true }, { "tqdev.com", true }, { "tql.plus", true }, @@ -69190,6 +71783,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tracking.best", true }, { "trackrecordpro.co.uk", true }, { "tracksa.com.ar", true }, + { "trackulo.us", true }, { "trackyourlogs.com", true }, { "tractorfan.nl", true }, { "tractorpumps.com", true }, @@ -69223,6 +71817,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traditionskapperscollege.nl", true }, { "traditionsvivantesenimages.ch", true }, { "tradlost-natverk.se", true }, + { "tradreams.com", true }, { "traducir.win", true }, { "trafarm.ro", true }, { "trafas.nl", true }, @@ -69247,6 +71842,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trainhornforums.com", true }, { "trainiac.com.au", true }, { "traininghamburg.de", true }, + { "trainingminds.nl", true }, { "trainingproviderresults.gov", true }, { "trainings-handschuhe-test.de", true }, { "trainingswiese.at", true }, @@ -69280,7 +71876,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "traintimes.dk", true }, { "traintimes.fi", true }, { "traintimes.ie", true }, - { "traintimes.it", true }, { "traintimes.lu", true }, { "traintimes.nl", true }, { "traintimes.se", true }, @@ -69334,6 +71929,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "transformaniatime.com", true }, { "transformations-magazin.com", true }, { "transforumation.com", true }, + { "transfurrmation.town", true }, { "transgendergedenkdag.nl", true }, { "transgenderinfo.nl", true }, { "transgendernetwerk.nl", true }, @@ -69354,11 +71950,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "transmisjeonline.pl", true }, { "transmithe.net", true }, { "transmitit.pl", true }, + { "transmutatie.nl", true }, { "transmute.review", true }, { "transnexus.com", true }, { "transoil.co.uk", true }, { "transpak-cn.com", true }, - { "transparentcorp.com", true }, + { "transparentpng.com", true }, { "transporta.it", true }, { "transporterlock.com", true }, { "transservice.net.ua", true }, @@ -69385,6 +71982,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trauerbegleitung-kudla.de", true }, { "trauertexte.info", true }, { "traumaheilung.net", true }, + { "traumprojekt.com", true }, { "traumwerker.com", true }, { "traut.cloud", true }, { "travador.com", true }, @@ -69399,6 +71997,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travelbuddiesperu.com", true }, { "traveleets.com", true }, { "travelemy.com", true }, + { "travelepoch.com", true }, { "travelerofcharleston.com", true }, { "travelexbiz.com", true }, { "travelexinternational.com", true }, @@ -69406,10 +72005,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travelholicworld.com", true }, { "travelinc.pk", true }, { "traveling-thailand.info", true }, - { "travelinghacker.com.au", true }, { "travelinsurance.co.nz", true }, { "travellers.dating", true }, - { "travelling.expert", true }, { "travellovers.fr", true }, { "travelmexico42.com", true }, { "travelogue.jp", true }, @@ -69434,6 +72031,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "travisfranck.com", true }, { "travler.net", true }, { "travotion.com", true }, + { "tray.io", true }, { "trazodononline.gq", true }, { "trbanka.com", true }, { "trea98.org", true }, @@ -69458,13 +72056,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "treehouseresort.nl", true }, { "treeline.tech", true }, { "treeoilpot.com", true }, - { "treeremovalsboksburg.co.za", true }, { "treeschat.com", true }, { "treestarmarketing.com", true }, - { "treetopsecurity.com", true }, { "treeworkbyjtec.com", true }, { "treezone.net", true }, { "trefcon.cz", true }, + { "trefle.io", true }, { "trefpuntdemeent.nl", true }, { "treinaweb.com.br", false }, { "treinmagazine.be", true }, @@ -69481,15 +72078,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "treml-sturm.com", true }, { "trendingdeals.ga", true }, { "trendingeducation.tk", true }, + { "trendkraft.de", true }, { "trendparty.net", true }, { "trendreportdeals.com", true }, { "trendsettersre.com", true }, + { "trendsupplements.com", true }, { "trendus.no", true }, { "trendycrowds.com", true }, { "trendydips.com", true }, { "trendykids.cz", true }, { "trenorario.it", true }, { "trenta.io", true }, + { "trentinogenealogy.com", true }, { "trentonmakesnews.com", true }, { "trenztec.ml", true }, { "tresmaistres.com.br", true }, @@ -69518,12 +72118,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trianglelawngames.com", true }, { "trianon.xyz", true }, { "tribac.de", true }, - { "tribaldos.com", true }, + { "tribaldos.com", false }, { "tribaljusticeandsafety.gov", true }, { "tribalwarsstyles.tk", true }, { "tribe.rs", false }, { "tribetrails.com", true }, - { "tribistovo.tk", true }, { "tribly.de", true }, { "tribut.de", true }, { "tributh.cf", true }, @@ -69534,11 +72133,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tributh.tk", true }, { "tricare.mil", true }, { "tricefy4.com", true }, + { "tricetirisad.me", true }, { "trichdanhay.com", true }, { "triciaree.com", true }, { "trickedguys.com", true }, + { "trickgsm.com", true }, { "trickle.works", true }, { "trico-pigmentazione.it", true }, + { "tricotandopalavras.com.br", true }, { "tricountyathome.com", true }, { "triddi.com", true }, { "trident-online.de", true }, @@ -69547,6 +72149,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "triefenbach.eu", true }, { "trietment.com", true }, { "trigardon-rg.de", true }, + { "triggeredpaintz.com", true }, { "trigraph.net", true }, { "trigular.de", true }, { "trik.es", false }, @@ -69571,29 +72174,32 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trio.online", true }, { "triop.se", true }, { "triozon.hu", true }, - { "tripasia.id", true }, { "triphop.com", true }, { "triplecrossfarm.com", false }, + { "triplecrownoutfitters.com", true }, { "triplekeys.net", true }, { "triplethreatband.tk", true }, { "triplicate.gq", true }, { "tripolistars.com", true }, + { "tripout.tech", true }, { "trippen.travel", true }, + { "tripsided.com", true }, { "tripsinc.com", true }, { "tripsvia.com", true }, + { "tripsweet.com", true }, { "trisect.uk", true }, { "trish-mcevoy.ru", true }, + { "trisolaris.co.uk", true }, { "tristanberger.io", true }, { "tristanfarkas.one", true }, { "tristanhager.i234.me", true }, { "trit.pro", true }, { "tritiumdisposal.com", true }, { "trix.pw", true }, - { "trix360.com", true }, { "trixati.org.ua", true }, { "trixexpressweb.nl", true }, + { "trixiebooru.org", true }, { "triz.co.uk", true }, - { "trk1234.co.uk", true }, { "trkpuls.tk", true }, { "trockendock.ch", true }, { "troedel-trolle.de", true }, @@ -69620,6 +72226,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tropicaltravelco.com", true }, { "troplo.com", true }, { "trosell.net", true }, + { "trosinenko.com", true }, { "trotec.com", true }, { "trotina.cz", true }, { "trotter.cf", true }, @@ -69661,6 +72268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "trueopenlove.org", true }, { "truerizm.ru", true }, { "trueseeing.com", true }, + { "truesplendid.net", true }, { "truessl.shop", true }, { "truestaradvisors.com", true }, { "truesteamachievements.com", true }, @@ -69676,8 +72284,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "truly-madly-happiness.de", true }, { "trumanlibrary.gov", true }, { "trumanlibrary.org", true }, + { "trummer.xyz", true }, { "trumtrimun.com", true }, { "truncus-encephali.co.uk", true }, + { "trungvien.vn", true }, { "trunk-show.net", true }, { "truong.fi", true }, { "truqu.com", true }, @@ -69695,7 +72305,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "truthserum.co", true }, { "trutopoffer.com", true }, { "truvisory.com", true }, - { "truyencuoi.org", true }, + { "truyenfull.net", true }, { "truyenfull.vn", true }, { "trw-reseller.com", true }, { "try2admin.pw", true }, @@ -69736,7 +72346,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tsa-sucks.com", true }, { "tsab.moe", true }, { "tsachs.eu", true }, - { "tsai.com.de", true }, { "tsaro.io", true }, { "tsatestprep.com", true }, { "tschuermans.be", true }, @@ -69774,26 +72383,25 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tsutawal.com", true }, { "tsutsumi-kogyo.jp", true }, { "tsuyuzakihiroyuki.com", true }, - { "tsv-1894.de", true }, - { "tt0766.com", true }, - { "tt0866.com", true }, - { "tt0966.com", true }, - { "tt2866.com", true }, - { "tt2966.com", true }, + { "tszwww.com", true }, + { "tt0766.com", false }, + { "tt0966.com", false }, + { "tt2866.com", false }, + { "tt2966.com", false }, { "tt3666.com", true }, - { "tt3699.com", true }, - { "tt3766.com", true }, - { "tt3999.com", true }, + { "tt3699.com", false }, + { "tt3766.com", false }, + { "tt3999.com", false }, { "tt5197.co", true }, { "tt6729.co", true }, { "tt6729.com", true }, { "tt6957.co", true }, - { "tt7199.com", true }, - { "tt7299.com", true }, - { "tt7399.com", true }, - { "tt8166.com", true }, - { "tt8266.com", true }, - { "tt8366.com", true }, + { "tt7199.com", false }, + { "tt7299.com", false }, + { "tt7399.com", false }, + { "tt8166.com", false }, + { "tt8266.com", false }, + { "tt8366.com", false }, { "tt918.com", true }, { "tt9297.co", true }, { "tt9728.co", true }, @@ -69819,7 +72427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ttuwiki.ee", true }, { "ttuwiki.org", true }, { "ttwoee.com", true }, - { "ttwt.com", true }, + { "ttwt.com", false }, { "tty.space", true }, { "tty1.net", true }, { "ttyystudio.com", true }, @@ -69851,6 +72459,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tucsonfcu.com", true }, { "tucsonpcrepair.com", true }, { "tucuxi.org", true }, + { "tudienchinhta.com", true }, { "tudiennhakhoa.com", true }, { "tudineroasi.com", true }, { "tudorproject.org", true }, @@ -69859,6 +72468,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuestilo.nl", true }, { "tuev-hessen.de", true }, { "tuffclassified.com", true }, + { "tuffmail.com", true }, + { "tuffmail.net", true }, { "tuffsruffs.se", true }, { "tufilo.com", true }, { "tugafm.eu.org", true }, @@ -69871,7 +72482,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tujunfang.com", true }, { "tukdesigns.com", true }, { "tula-city.tk", true }, - { "tula-news.ga", true }, { "tulenceria.es", true }, { "tully.co.uk", true }, { "tulsameetingroom.com", true }, @@ -69910,15 +72520,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tupianku.com", true }, { "tupizm.com", true }, { "tuppenceworth.ie", true }, + { "turalt.com", true }, + { "turbohost.co.mz", true }, { "turbomag.pl", true }, { "turbosuflantecluj.ro", true }, - { "turciya.cf", true }, { "turdnagel.com", true }, { "turf-experts.com", true }, { "turi.space", true }, { "turigum.com", true }, { "turiscar.pt", true }, { "turismodubrovnik.com", true }, + { "turismonochile.com.br", true }, { "turkey-portal.tk", true }, { "turkface.tk", true }, { "turkiet.guide", true }, @@ -69939,8 +72551,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "turnout.rocks", true }, { "turpinpesage.fr", true }, { "tursiae.org", true }, + { "turtlearmy.net", true }, { "turtleduckstudios.com", true }, - { "turtlehead.tk", true }, { "turtlepay.io", true }, { "turtlepwr.com", true }, { "turtles.ga", true }, @@ -69970,6 +72582,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tuts4you.com", true }, { "tuttimundi.org", false }, { "tutu.green", true }, + { "tutu.ro", true }, { "tuversionplus.com", true }, { "tuwaner.com", true }, { "tuxcloud.net", true }, @@ -70011,8 +72624,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tvoe-delo24.ru", true }, { "tvoia-dietka.tk", true }, { "tvoyaknighka.ga", true }, + { "tvoysad.ru", true }, { "tvplusiptv.com", true }, { "tvquot.es", true }, + { "tvrestyler.eu", true }, { "tvs-virtual.cz", true }, { "tvseries.info", true }, { "tvsheerenhoek.nl", true }, @@ -70043,6 +72658,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twelvecornerspediatrics.com", true }, { "twem.ddns.net", true }, { "twenty71.com", true }, + { "twentyfournow.com", true }, { "twilightcookies.ca", true }, { "twilleys.com", true }, { "twincitynissantxparts.com", true }, @@ -70081,7 +72697,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "twohuo.com", true }, { "twojapogoda.pl", true }, { "twojfaktum.pl", true }, - { "twopif.net", true }, + { "twolinesmedia.eu", true }, { "tworaz.net", true }, { "twotube.ie", true }, { "twtimmy.com", true }, @@ -70098,12 +72714,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "txlrs.org", true }, { "txm.pl", true }, { "txpi.nsupdate.info", true }, + { "txtd.io", true }, + { "txtdirect.com", true }, + { "txtdirect.dev", true }, + { "txtdirect.io", true }, + { "txtdirect.link", true }, + { "txtdirect.me", true }, + { "txtdirect.org", true }, { "txtecho.com", true }, { "txtfile.eu", true }, { "txurologist.com", true }, - { "ty2u.com", true }, { "ty513.com", true }, - { "ty525.com", true }, { "ty529.com", true }, { "ty561.com", true }, { "ty562.com", true }, @@ -70113,7 +72734,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ty593.com", true }, { "ty5998.com", true }, { "ty613.com", true }, - { "ty632.com", true }, { "ty637.com", true }, { "ty650.com", true }, { "ty679.com", true }, @@ -70122,7 +72742,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ty716.com", true }, { "ty723.com", true }, { "ty736.com", true }, - { "ty737.com", true }, { "ty739.com", true }, { "ty750.com", true }, { "ty756.com", true }, @@ -70155,14 +72774,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyil.work", true }, { "tykeplay.com", true }, { "tykoon.com", true }, + { "tyl.io", true }, { "tyler.rs", true }, { "tylerdavies.net", true }, - { "tylerfreedman.com", true }, { "tylerharcourt.net", true }, { "tylerharcourt.org", true }, { "tylermade.net", true }, { "tyleromeara.com", true }, { "tylerschmidtke.com", true }, + { "tylervigario.com", true }, { "type1joe.com", true }, { "type1joe.net", true }, { "type1joe.org", true }, @@ -70180,7 +72800,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "typing.com", true }, { "typist.tech", true }, { "typo3.com", true }, + { "tyrannize.us", true }, { "tyree.tech", true }, + { "tyres-price.com", true }, { "tyroremotes.co.uk", true }, { "tyroremotes.es", true }, { "tyroremotes.eu", true }, @@ -70198,6 +72820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "tyuo-keibi.co.jp", true }, { "tyva.gq", true }, { "tyva.ml", true }, + { "tz02.com", true }, { "tzermias.gr", true }, { "tzifas.com", true }, { "tziyona.net", true }, @@ -70213,7 +72836,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "u.nu", true }, { "u0010.com", true }, { "u0020.com", true }, - { "u00228.com", true }, + { "u00228.com", false }, { "u0050.com", true }, { "u0060.com", true }, { "u0070.com", true }, @@ -70233,6 +72856,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "u4mh-dev-accesscontroller.azurewebsites.net", true }, { "u4mh-dev-portal.azurewebsites.net", true }, { "u5.re", true }, + { "u51365.com", true }, { "u5197.co", true }, { "u5b.de", false }, { "u5r.nl", true }, @@ -70240,11 +72864,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "u6729.com", true }, { "u6957.co", true }, { "u81365.com", true }, - { "u81818.com", true }, { "u82365.com", true }, - { "u886666.com", true }, + { "u886666.com", false }, { "u9297.co", true }, { "u9728.co", true }, + { "u9yy.net", true }, + { "ua-blacklist.info", true }, { "ua.search.yahoo.com", false }, { "uachemlabs.com", true }, { "uae-company-service.com", true }, @@ -70258,7 +72883,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uatgootax.ru", false }, { "ub3rk1tten.com", false }, { "ub889.com", true }, - { "ubanquity.com", true }, + { "ubanquity.com", false }, { "ubcani.com", true }, { "uberactivist.com", true }, { "uberboxen.net", true }, @@ -70268,14 +72893,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ubermail.me", true }, { "uberpromocodes.us", true }, { "ubertt.org", true }, - { "uberwald.de", true }, { "uberwald.ws", true }, { "ubezpieczenia-poznan.com", true }, { "ubezpieczeniepsa.com", true }, { "ubi.gg", true }, { "ubicaciones-vitamina.cl", true }, { "ubicv.com", true }, - { "ubineering.de", true }, + { "ubiminds.com", true }, { "ubis.company", true }, { "ubis.group", true }, { "ubiurbe.com", true }, @@ -70294,6 +72918,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ucac.nz", false }, { "ucangiller.com", true }, { "ucasa.org.au", true }, + { "ucb.com", true }, + { "ucc.edu.gh", true }, { "ucch.be", false }, { "uccisme.net.ua", true }, { "ucdap.com", true }, @@ -70309,6 +72935,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ucppe.org", true }, { "ucrdatatool.gov", true }, { "uctarna.online", true }, + { "udachnika.ru", true }, { "udancy.com", true }, { "udbhav.me", true }, { "udbina.tk", true }, @@ -70318,6 +72945,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "udid.fyi", true }, { "udien.tk", true }, { "udiregelverk.no", true }, + { "udiutv.no", true }, { "udo-luetkemeier.de", true }, { "udomain.net", true }, { "udp.sh", false }, @@ -70337,10 +72965,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uevan.com", true }, { "uex.im", true }, { "uf-ace.com", true }, + { "ufacesign.in", true }, { "ufanisi.mx", true }, { "ufindme.at", true }, { "ufo-blogger.com", true }, + { "ufob.edu.br", true }, { "ufocentre.com", true }, + { "ufopaedia.org", true }, { "ufplanets.com", true }, { "ufroo.com", true }, { "ugamyd-p1rosd2jcoeg3edh5o1y.com", true }, @@ -70366,6 +72997,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ui8.net", true }, { "uiberlay.cz", true }, { "uicchy.com", true }, + { "uid0.pl", true }, { "uiop.link", true }, { "uiterwijk.org", true }, { "uitgeverij-deviant.nl", true }, @@ -70379,12 +73011,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uk.search.yahoo.com", false }, { "ukari.hokkaido.jp", true }, { "ukas.com", false }, + { "ukb.sch.id", false }, { "ukbc.london", true }, { "ukchemicalresearch.org", false }, { "ukclimbing.com", true }, { "ukdefencejournal.org.uk", true }, + { "ukeuniverse.co.uk", true }, { "ukhas.net", true }, { "ukhillwalking.com", true }, + { "ukitbs.com", true }, { "ukkeyholdingcompany.co.uk", true }, { "ukmeetandgreet.com", true }, { "ukmortgagecompare.co.uk", true }, @@ -70411,7 +73046,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uldsh.de", true }, { "uleenucks.de", true }, { "ulen.me", true }, - { "ulfberht.fi", true }, { "uli-eckhardt.de", true }, { "ulickaprozivot.cz", true }, { "ulitroyo.com", true }, @@ -70419,9 +73053,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ulli.ml", true }, { "ulmer-schneesport.de", true }, { "ulovelc88.com", true }, + { "ulrichs.ch", true }, { "ulrik.moe", true }, { "ulsters.cf", true }, - { "ultieme.be", false }, { "ultima-ratio.at", true }, { "ultimate-fireworks.tk", true }, { "ultimate-uk.com", true }, @@ -70430,6 +73064,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ultimatebabyshowergifts.ga", true }, { "ultimatemafia.net", true }, { "ultimatepaleoguide.com", true }, + { "ultra.group", true }, { "ultrabeautycream.com", true }, { "ultrafine.cf", true }, { "ultramax.biz", true }, @@ -70456,8 +73091,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "umcpc.org", true }, { "umenlisam.com", true }, { "umisonoda.com", true }, + { "umity.com.ua", true }, { "umlcode.com", true }, { "ummati.com", true }, + { "ummiabi.id", true }, { "umniy-dom.tk", true }, { "umount.net", true }, { "umsapi.com", true }, @@ -70506,12 +73143,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unblocked.vet", true }, { "unblocked.vip", true }, { "unblocked.win", true }, + { "unblockit.biz", true }, { "unblockit.ca", true }, { "unblockweb.co", true }, { "unbolt.cf", true }, { "unboundmoney.com", true }, { "unboxed.cf", true }, { "unboxforteams.work", true }, + { "unboxyou.com", true }, { "uncarved.com", true }, { "unccelearn.org", true }, { "uncensoreddns.dk", true }, @@ -70519,6 +73158,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unclebens-specials.gr", true }, { "undeadbrains.de", true }, { "undeadpirates.net", true }, + { "undeadwalking.com", true }, { "undecidable.de", true }, { "undeductive.media", true }, { "undef.in", false }, @@ -70526,12 +73166,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "undercovercondoms.com", true }, { "underfloorheating-uk.co.uk", true }, { "undergrounder.ga", true }, + { "undergroundremains.de", true }, { "underlined.fr", true }, { "undernet.uy", false }, { "underskatten.tk", true }, { "undertow.ga", true }, { "underwearoffer.com", true }, { "underwoodpatents.com", true }, + { "undev.co", true }, { "undo.co.il", true }, { "undp.lt", true }, { "unearaigneeauplafond.fr", true }, @@ -70543,16 +73185,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unexpectedcompany.com", true }, { "unfallrechtler.de", true }, { "unfc.nl", true }, - { "unferno.tech", true }, { "unfettered.net", false }, { "unfuddle.cn", true }, { "unga.dk", true }, { "ungaeuropeer.se", true }, { "ungegamere.dk", true }, { "unghie.com", true }, - { "unhurriedluxury.com", true }, { "uni2share.com", true }, { "unibag.cl", true }, + { "unibev.net", true }, + { "unibo.com", true }, { "unibolsit.com", true }, { "unibusreputation.com", true }, { "unicef-karten.at", true }, @@ -70586,7 +73228,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unideck.com.ua", true }, { "unidevgroup.ru", true }, { "unidostransportes.com.br", true }, - { "unidrogas.com", true }, + { "unidrogas.com", false }, { "unieducar.org.br", true }, { "uniekglas.nl", true }, { "unifashion.ro", true }, @@ -70596,14 +73238,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uniformebateriasheliar.com.br", true }, { "unijob.com.br", true }, { "unik.bg", true }, - { "unikalo.com", true }, { "unikoingold.com", true }, { "unikrn.com", true }, { "unikrn.space", true }, { "unila.edu.br", true }, { "unimbalr.com", true }, - { "uninutri.com.br", true }, - { "unionconsulting.ru", true }, + { "uniondeterapeutas.com", true }, + { "unionlife-net.com", true }, { "unionplat.ru", true }, { "unionreports.gov", true }, { "unionstreetskateboards.com", true }, @@ -70654,6 +73295,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "universe.horse", true }, { "universeinform.com", true }, { "universeit.mx", true }, + { "universellafredsdanser.se", true }, { "universidadcatolica.tk", true }, { "universidadperu.com", true }, { "universityhousemates.co.uk", true }, @@ -70663,15 +73305,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "universoscuola.it", true }, { "universovalve.net", true }, { "universrumbacongolaise.com", true }, - { "univet-veterinaire.com", true }, - { "univetnature.org", true }, + { "univet-veterinaire.com", false }, + { "univetnature.org", false }, { "univitale.fr", false }, { "unix.se", true }, { "unixadm.org", true }, - { "unixattic.com", true }, { "unixforum.org", true }, { "unixfox.eu", true }, { "unixhost.ga", true }, + { "unixteam.de", true }, { "unixtime.date", true }, { "unkn0wncat.net", true }, { "unknown-player.com", true }, @@ -70680,11 +73322,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unlax.com", true }, { "unleash.pw", true }, { "unli.xyz", true }, + { "unlock-my-sprint.mobi", true }, { "unlockauthority.com", true }, { "unlockblackberryfree.co.uk", true }, { "unlockboot.com", false }, { "unlocken.nl", true }, { "unlocks.co.uk", true }, + { "unlockscheveningen.nl", true }, { "unlocktalent.gov", true }, { "unlocktechs.com", true }, { "unlogis.ch", true }, @@ -70700,6 +73344,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "unosconotros.com", true }, { "unp.me", true }, { "unpaismejor.es", true }, + { "unpause.io", true }, { "unpkg.com", true }, { "unpleasant.tk", true }, { "unpluggedjuice.dk", true }, @@ -70738,11 +73383,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uoone.com", true }, { "uotomizu.com", true }, { "up-ai.com", true }, + { "up-stage.info", true }, + { "up-stage.jp", true }, { "up2mark.com", true }, { "up2mark.de", true }, { "up2staff.com", true }, { "upacores.com", true }, + { "upakweship.ca", true }, { "upakweship.com", true }, + { "upakweship.eu.com", true }, + { "upakweship.uk.com", true }, { "upandrunningtutorials.com", true }, { "upawg.ca", true }, { "upay.ru", true }, @@ -70768,6 +73418,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "upgamerengine.net", true }, { "upgauged.com", true }, { "upgradedpoints.com", true }, + { "upgradeguru.de", true }, + { "upguard.com", true }, { "uphabit.io", true }, { "upholsterycleanerslondon.co.uk", true }, { "upholsterydesign.com.au", true }, @@ -70776,7 +73428,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uplead.com", true }, { "uplinkgame.tk", true }, { "uplinklabs.net", true }, - { "upliving.be", true }, { "upload.cat", true }, { "upload.facebook.com", false }, { "uploadbeta.com", true }, @@ -70786,25 +73437,27 @@ static const nsSTSPreload kSTSPreloadList[] = { { "upmchealthsecurity.us", true }, { "upmon.com", true }, { "upnext.io", true }, + { "uponsel.com", true }, { "upperbeaconsfield.org.au", true }, { "uppercap.com", true }, { "upperroommission.ca", true }, - { "uppfinnarenc.tk", true }, { "upplay.com.br", true }, { "upplevelse.com", true }, { "upr.com.ua", true }, + { "upr.si", true }, { "uprint.it", true }, { "upropay.com", true }, { "uprospr.com", true }, - { "uprouteyou.com", true }, { "upscope.io", true }, { "upsettunnel.com", true }, { "upsiteseo.com", true }, { "upstart.com", true }, + { "uptime.fm", true }, { "uptimed.com", true }, { "uptodateinteriors.com", true }, { "uptoon.jp", true }, { "uptoplay.ovh", true }, + { "uptownbabe.com", true }, { "uptownlocators.com", true }, { "uptownvintagecafe.com", true }, { "uptrends.com", true }, @@ -70837,6 +73490,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urban-culture.fr", true }, { "urban.melbourne", true }, { "urbancreators.dk", true }, + { "urbanemc.net", true }, { "urbanesecurity.com", true }, { "urbanfi.sh", true }, { "urbanguerillas.de", true }, @@ -70862,11 +73516,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urcentral.org", true }, { "ureka.org", true }, { "urep.us", true }, - { "urfix.com", true }, { "urgences-valais.ch", true }, { "urgentcaresouthaven.com", true }, { "urion.com.br", true }, { "uriport.com", true }, + { "uriports.com", true }, { "uripura.de", true }, { "urist1011.ru", true }, { "urkult.se", true }, @@ -70885,6 +73539,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "urltodomain.com", true }, { "urnes.org", true }, { "urologyoklahoma.com", true }, + { "uropenn.se", true }, { "urown.net", true }, { "urrestarazuserranoabogados.com", true }, { "ursa-minor-beta.org", true }, @@ -70902,20 +73557,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usa-greencard.eu", true }, { "usa-reisetipps.net", true }, { "usa-viagra.com", true }, + { "usa.gov", true }, { "usa250.gov", true }, { "usaa.com", false }, { "usaautoaz.com", true }, { "usabackground.com", true }, - { "usabibi.net", true }, + { "usability.com.gr", true }, { "usability.gov", true }, { "usadba.net.ru", true }, { "usaestaonline.com", true }, { "usage.be", true }, { "usagexchange.com", true }, { "usagm.gov", true }, + { "usagov.gov", true }, { "usajobs.com", true }, { "usajobs.gov", true }, - { "usakitchensandflooring.com", true }, { "usalearning.gov", true }, { "usamdt.com", true }, { "usamultimeters.com", true }, @@ -70924,14 +73580,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usarp.org", true }, { "usaseanconnect.gov", true }, { "usastaffing.gov", true }, + { "usawireguard.com", true }, { "usb-lock-rp.com", true }, - { "usbcraft.com", true }, { "usbevents.co.uk", true }, { "usbr.gov", true }, { "uscis.gov", true }, { "uscloud.nl", true }, { "uscp8.com", true }, { "uscpaservices.com", true }, + { "usctt.org", true }, { "uscurrency.gov", true }, { "usd.de", false }, { "usdfc.gov", true }, @@ -70943,6 +73600,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "usebean.com", true }, { "usedu.us", true }, { "user-agent.ga", true }, + { "userbase.com", true }, { "usercompare.tk", true }, { "username.nz", true }, { "userra.gov", true }, @@ -70981,7 +73639,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ustugov.kiev.ua", true }, { "ustugova.kiev.ua", true }, { "usu.org.ua", true }, - { "usualbeings.com", true }, { "usuan.net", true }, { "usweme.info", true }, { "uswitch.com", true }, @@ -71001,7 +73658,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utdsgda.com", true }, { "uteasybooki.com", true }, { "utensil.org", true }, - { "utepils.de", true }, { "utevai.tk", true }, { "utgifter.no", true }, { "utiars.com", true }, @@ -71020,10 +73676,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "utopianhomespa.com", true }, { "utopianrealms.org", true }, { "utopicestudios.com", true }, + { "utorg.com.ua", true }, { "utox.io", true }, { "utrace.me", true }, { "utrantor.org", true }, { "utterberry.io", true }, + { "uttnetgroup.fr", true }, { "utugnn.ru", true }, { "utw.me", true }, { "utwente.io", true }, @@ -71056,7 +73714,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uwmarktspecialist.nl", true }, { "uwsoftware.be", true }, { "uwu.lgbt", true }, - { "uwusergdatasystems.com", true }, { "uwvloereruit.nl", true }, { "ux-designers.nl", true }, { "ux-solution.de", true }, @@ -71069,6 +73726,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uyen.party", true }, { "uygindir.ml", true }, { "uz.search.yahoo.com", false }, + { "uzay.org", true }, { "uzayliyiz.biz", true }, { "uzaymedya.com.tr", true }, { "uzbekkizlari.tk", true }, @@ -71089,7 +73747,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "uzemobility.eu", true }, { "uzemobility.org", true }, { "uzhas-uzhasny.ml", true }, - { "uzpirksana.lv", true }, { "uzsvm.cz", true }, { "v-bank.com", true }, { "v-d-p.net", true }, @@ -71105,13 +73762,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v1.dk", true }, { "v10006.com", true }, { "v10008.com", true }, + { "v1081.com", true }, { "v12555.com", true }, { "v139.com", true }, - { "v1951.com", true }, + { "v1951.com", false }, { "v1sit0r.ru", true }, { "v2bv.net", true }, { "v2bv.win", true }, - { "v2c.tech", true }, { "v2cn.win", true }, { "v2ex.com", true }, { "v2ray6.com", true }, @@ -71124,38 +73781,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v36533.com", true }, { "v36594.com", true }, { "v44v44.com", true }, - { "v4s.ro", true }, { "v5017.com", true }, { "v5075.com", true }, { "v51365.com", true }, { "v5197.co", true }, - { "v55510.com", true }, - { "v55520.com", true }, - { "v55530.com", true }, - { "v55565.com", true }, - { "v55569.com", true }, - { "v55580.com", true }, - { "v55590.com", true }, - { "v55593.com", true }, + { "v55510.com", false }, + { "v55520.com", false }, + { "v55530.com", false }, + { "v55565.com", false }, + { "v55569.com", false }, + { "v55580.com", false }, + { "v55590.com", false }, + { "v55593.com", false }, { "v55v55.com", true }, { "v5ray.top", true }, { "v6004.com", true }, { "v6021.com", true }, { "v6170.com", true }, { "v6350.com", true }, - { "v637.com", true }, + { "v637.com", false }, { "v6506.com", true }, { "v66.ag", true }, - { "v66233.com", true }, - { "v66255.com", true }, - { "v66557.com", true }, + { "v66233.com", false }, + { "v66255.com", false }, + { "v66557.com", false }, { "v666.ag", true }, - { "v66615.com", true }, - { "v66618.com", true }, - { "v66619.com", true }, - { "v66629.com", true }, - { "v66635.com", true }, - { "v66638.com", true }, + { "v66615.com", false }, + { "v66618.com", false }, + { "v66619.com", false }, + { "v66629.com", false }, + { "v66635.com", false }, + { "v66638.com", false }, { "v6729.co", true }, { "v6752.com", true }, { "v67555.com", true }, @@ -71171,48 +73827,44 @@ static const nsSTSPreload kSTSPreloadList[] = { { "v700w.com", true }, { "v76555.com", true }, { "v78555.com", true }, - { "v800b.com", true }, - { "v800d.com", true }, - { "v800e.com", true }, - { "v800f.com", true }, - { "v800k.com", true }, - { "v800n.com", true }, - { "v800w.com", true }, - { "v800y.com", true }, { "v81365.com", true }, { "v82365.com", true }, { "v88.ag", true }, { "v88158.com", true }, - { "v88299.com", true }, - { "v88511.com", true }, - { "v88522.com", true }, - { "v88559.com", true }, - { "v88656.com", true }, - { "v88799.com", true }, + { "v88299.com", false }, + { "v88511.com", false }, + { "v88522.com", false }, + { "v88559.com", false }, + { "v88656.com", false }, + { "v88799.com", false }, { "v888.ag", true }, { "v9037.com", true }, - { "v9285.com", true }, - { "v9286.com", true }, - { "v9289.com", true }, + { "v9285.com", false }, + { "v9286.com", false }, + { "v9289.com", false }, { "v9297.co", true }, { "v9728.co", true }, { "v9728.com", true }, - { "v9812.com", true }, + { "v9812.com", false }, { "v9820.com", true }, - { "v9821.com", true }, - { "v9823.com", true }, - { "v9831.com", true }, + { "v9821.com", false }, + { "v9823.com", false }, + { "v9831.com", false }, { "va-reitartikel.com", true }, { "va.gov", false }, { "va11hal.la", true }, { "va1der.ca", true }, { "vaaddress.co", true }, { "vaaes.org", true }, + { "vaan-arbeidsrecht.nl", true }, { "vabusinesses.org", true }, { "vacacionesenlinea.com", true }, { "vacancyfiller.com", true }, { "vacati0n.tk", true }, + { "vacation-croatia.com", true }, { "vacationfund.co", true }, + { "vaccineskill.biz", true }, + { "vaccinestats.net", true }, { "vaclavambroz.eu", true }, { "vacontractortraining.com", true }, { "vacuumpump.co.id", true }, @@ -71233,7 +73885,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vagrantup.com", true }, { "vagueetvent.com", true }, { "vahoshop.cz", true }, - { "vaibhavchatarkar.com", true }, + { "vaibhavchatarkar.com", false }, { "vaindil.com", true }, { "vaioswolke.xyz", false }, { "vairuok.lt", true }, @@ -71244,6 +73896,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vakantienet.nl", true }, { "vakuutuskanava.fi", true }, { "val-sec.com", true }, + { "valaphee.com", true }, { "valasi.eu", true }, { "valcano-krd.ru", true }, { "valcano.ru", true }, @@ -71272,12 +73925,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "valentinritz.com", false }, { "valeravi.tk", true }, { "valeriansaliou.name", true }, + { "valescaind.com.br", true }, { "valiant.finance", true }, { "validatis.com", true }, { "validator.nu", true }, { "validbrands.com", true }, { "valika.ee", true }, { "valimised.ee", true }, + { "valkohalla.dk", true }, { "valkohattu.fi", true }, { "valkova.net", true }, { "valledeleresma.tk", true }, @@ -71331,13 +73986,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vanbinnenuit.nl", true }, { "vancityconcerts.com", true }, { "vancoevents.com", true }, + { "vancouverchess.com", true }, { "vancouvercosmeticsurgery.ca", true }, { "vancouverwatowncar.com", true }, { "vancouverwebsitedesigns.com", true }, { "vandalfsen.me", true }, { "vandam.io", true }, { "vandenbroeck-usedcars.be", false }, - { "vandeput.be", true }, { "vanderbiltcisa.org", true }, { "vanderkley.it", true }, { "vanderkrieken.org", true }, @@ -71359,13 +74014,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vaneurology.com", true }, { "vangoghcoaching.nl", true }, { "vanhaos.com", true }, + { "vanhatten.com", true }, { "vanhoudt-usedcars.be", false }, { "vanhoutte.be", false }, { "vanhove.biz", true }, + { "vaniola.com", true }, { "vanlaanen.com", false }, { "vanmalland.com", true }, { "vannaos.com", true }, { "vannaos.net", true }, + { "vannoordgouda.nl", true }, { "vanohaker.ru", true }, { "vanouwerkerk.net", true }, { "vanspa.vn", true }, @@ -71375,7 +74033,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vante.me", false }, { "vantien.com", true }, { "vantru.is", true }, + { "vanuithartenziel.nl", true }, { "vanwa.ch", true }, + { "vanwertcountyohio.gov", true }, { "vanwoensel.xyz", true }, { "vanwunnik.com", true }, { "vape-hit.in", true }, @@ -71394,15 +74054,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vapingdaily.com", true }, { "vapor.cloud", false }, { "vapordepot.jp", true }, + { "vapteke.ru", true }, { "varcare.jp", true }, { "varda.nl", true }, - { "varden.info", true }, { "vardenafilhcl.gq", true }, { "vareillefoundation.fr", false }, { "vareillefoundation.org", false }, { "varela-electricite.fr", true }, + { "vargaslatten.se", true }, { "varghese.de", true }, { "variable.agency", false }, + { "variable.dk", true }, { "variablyconstant.com", true }, { "variag-group.ru", true }, { "variag-montazh.ru", true }, @@ -71425,6 +74087,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vase-eroticke-povidky.cz", true }, { "vasel.de", true }, { "vasel.eu", true }, + { "vaselineoel.de", true }, { "vashel.us", true }, { "vasheradio.tk", true }, { "vasileruscior.ro", true }, @@ -71438,10 +74101,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vat-eu.com", true }, { "vat.direct", true }, { "vatav.tk", true }, + { "vato.nl", true }, { "vats.im", true }, { "vattulainen.fi", true }, { "vauceri.hr", true }, { "vaughanrisher.com", true }, + { "vault.investments", true }, { "vault21.net", true }, { "vault81.de", true }, { "vaultproject.io", false }, @@ -71459,7 +74124,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vazue.com", true }, { "vb.media", true }, { "vbazile.com", true }, - { "vbcdn.com", true }, { "vbestproduct.com", true }, { "vbestseller.com", true }, { "vbezhenar.com", true }, @@ -71467,7 +74131,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vbsoft.cz", true }, { "vbwinery.com", true }, { "vc.gg", false }, + { "vcacursus.nl", true }, { "vcam.org", true }, + { "vcanederland.nl", true }, { "vccmurah.net", true }, { "vcelin-na-doliku.cz", true }, { "vcf.gov", true }, @@ -71488,21 +74154,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vczk.me", true }, { "vd42.net", true }, { "vda.li", true }, - { "vdanker.net", true }, { "vdbongard.com", true }, { "vdcomp.cz", false }, { "vdemuzere.be", true }, { "vdesc.com", true }, - { "vdio.com", true }, { "vdisk24.de", true }, { "vdlp.nl", true }, { "vdmeij.com", true }, + { "vdo-webshop.nl", true }, { "vdownloader.com", true }, { "vdrpro.com", true }, { "ve.search.yahoo.com", false }, { "ve3oat.ca", true }, { "vebbankir-zajm-onlajn.gq", true }, - { "veblr.com", false }, + { "veblr.com", true }, { "vecchiofornobarletta.it", true }, { "vecerkaracing.cz", true }, { "vechainstats.com", true }, @@ -71510,11 +74175,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vecozo.nl", true }, { "vectomatic.org", true }, { "vector.solutions", true }, - { "vectordtg.com", true }, { "vectormagnetics.com", true }, { "vectortrack.com.au", true }, { "vectorwish.com", true }, { "vectro.me", true }, + { "vedatkarabacak.av.tr", true }, { "vedev.io", true }, { "vedma-praktik.com", true }, { "veg-leiden.nl", true }, @@ -71523,14 +74188,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vegalitarian.org", true }, { "vegan-pratique.fr", true }, { "vegane-proteine.com", true }, + { "veganenumbers.com", true }, { "vegangaymer.blog", true }, { "veganism.co.uk", true }, { "veganism.com", true }, { "veganmasterrace.com", true }, - { "veganopia.org", true }, { "veganrecipereviews.com", true }, { "vegasluxuryestates.com", true }, { "vegavio.com", true }, + { "vegculinary.com", true }, { "vegekoszyk.pl", true }, { "vegepa.com", true }, { "vegetalvalley.org", true }, @@ -71546,10 +74212,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vehiclematsuk.com", true }, { "vehicletax.service.gov.uk", true }, { "vehicletransportservices.co", true }, + { "veiergangvermut.dk", true }, { "veii.de", true }, { "veil-framework.com", true }, { "veilofsecurity.com", true }, { "veincenterbrintonlake.com", true }, + { "veinexpertspa.com", true }, { "veit.zone", true }, { "vejersferie.de", true }, { "vejersferie.dk", true }, @@ -71563,11 +74231,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "velikijhutir.cherkassy.ua", true }, { "veliovgroup.com", true }, { "vellingetaxi.se", true }, + { "velocityfiber.com", true }, { "velonustraduction.com", true }, { "veloroute.hamburg", true }, { "velosipedi.tk", true }, { "velvetia.no", true }, - { "vemtorcer.com", true }, { "venalytics.com", true }, { "venclave.com", true }, { "vendermicasarapido.com.mx", true }, @@ -71588,7 +74256,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "venicefl.gov", true }, { "venicefloridawebsitedesign.com", true }, { "venicerealdeal.com", true }, - { "venje.pro", true }, { "venlafaxine.gq", true }, { "venmail.net", true }, { "venstar.com", true }, @@ -71598,6 +74265,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "venti-athens.gr", true }, { "ventilateurs-plafond.com", true }, { "ventizo.com", true }, + { "ventnose.com", true }, { "ventriloservers.biz", true }, { "venturavwparts.com", true }, { "venturebanners.co.uk", true }, @@ -71610,14 +74278,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "venuedriver.com", true }, { "venusbeautyproducts.in", true }, { "venzagroup.com", true }, + { "venzocrm.com", false }, { "veply.com", true }, { "ver.ma", true }, - { "veramagazine.jp", true }, + { "veramagazine.jp", false }, { "verasani.ch", true }, { "verasani.com", true }, + { "verata.co", true }, { "verberne.nu", true }, { "verbier-lechable.com", true }, - { "verbierfestival.com", true }, + { "verbierfestival.com", false }, { "verbmaestro.com", true }, { "verboom.co.nz", true }, { "verbzilla.com", true }, @@ -71631,6 +74301,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "verein-zur-pflege-der-geselligkeit.de", true }, { "vereinlandwege.de", true }, { "vereinscheck.de", true }, + { "vereinswahl.online", true }, { "verfassungsklage.at", true }, { "verge.capital", true }, { "vergeaccessories.com", true }, @@ -71649,6 +74320,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veriomed.com", true }, { "veritafineviolins.com", true }, { "veritas-data.de", true }, + { "veritashomeschoolers.org", true }, { "veritasinvestmentwealth.com", true }, { "verizonconnect.com", false }, { "verizonguidelines.com", true }, @@ -71712,11 +74384,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "verwandlung.org", true }, { "verwayen.com", true }, { "verwimp.org", true }, - { "very-kids.fr", true }, { "veryapt.com", true }, { "verybin.com", true }, + { "veryhappy.ru", true }, + { "veryhome.com.pe", true }, { "verymelon.de", true }, { "verymetal.nl", true }, + { "veryssl.com", true }, { "veryswing.com", true }, { "verzekeringencambier.be", true }, { "verzick.com", true }, @@ -71727,6 +74401,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vespacascadia.com", true }, { "vestacp.top", true }, { "vestasib.ru", true }, + { "vestberry.com", true }, { "vestd.com", true }, { "vestibtech.com", true }, { "vestingbar.nl", true }, @@ -71755,18 +74430,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "veusveus.cat", true }, { "veverusak.cz", true }, { "vextraz.co", true }, + { "vezirecenzii.ro", true }, { "vfdworld.com", true }, { "vfmc.vic.gov.au", true }, { "vfn-nrw.de", true }, + { "vg-store.ir", true }, { "vgatest.nl", true }, { "vgchat.us", true }, { "vgcheat.com", true }, + { "vgeek.guru", true }, { "vgerak.com", true }, { "vglist.co", true }, { "vgolos.zt.ua", true }, { "vgorcum.com", true }, { "vgropp.de", true }, - { "vh.net", true }, { "vhasurvey.org", true }, { "vhrca.com", true }, { "vhs-bad-wurzach.de", true }, @@ -71785,7 +74462,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viajaramsterdam.com", true }, { "viaje-a-china.com", true }, { "vialorran.com", true }, - { "viantours.com", true }, { "viaprinto.de", true }, { "viasinc.com", false }, { "viato.fr", true }, @@ -71804,7 +74480,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vicioanimal.pt", true }, { "vicious.space", true }, { "viciousflora.com", true }, + { "vicjuris.com", true }, { "vicjuwelen-annelore.be", true }, + { "vickyflipfloptravels.com", true }, { "viclab.se", true }, { "victora.com", true }, { "victorblomberg.se", true }, @@ -71834,6 +74512,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "victornet.de", true }, { "victorpelletmill.com", true }, { "victorricemill.com", true }, + { "victorrivera.org", true }, { "victorunix.com", true }, { "victory.radio", true }, { "victoryalliance.us", true }, @@ -71857,7 +74536,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "video-adult-clips-mobile.com", true }, { "videobola.win", true }, { "videobrochuresmarketing.com", true }, - { "videodrome.me", true }, { "videogamecoupons.com", true }, { "videogamer.com", true }, { "videogamesartwork.com", true }, @@ -71884,9 +74562,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "videozv.tk", true }, { "vidiobokep.xyz", true }, { "vidiproject.com", true }, - { "vidister.de", true }, + { "vidister.de", false }, { "vidkovaomara.si", true }, { "vidlyoficial.com", true }, + { "vidracariaespelhosbh.com.br", true }, { "vieaw.com", true }, { "vieclam24h.vn", false }, { "viekelis.lt", false }, @@ -71903,6 +74582,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vietnam-lifer.com", true }, { "vietnam-tours.tk", true }, { "vietnamese.dating", true }, + { "vietnamesetyping.com", true }, + { "vietnamguide.co.kr", true }, { "vietnamhost.vn", false }, { "vietnamluxurytravelagency.com", true }, { "vietnamphotoblog.com", false }, @@ -71924,7 +74605,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vigilantnow.com", true }, { "vigira.com.ar", true }, { "vigliano.com", true }, - { "vigliano.ovh", true }, { "vignaud.fr", true }, { "vignoblesdeletat.ch", true }, { "vigo-krankenversicherung.de", true }, @@ -71960,19 +74640,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vilaydin.com", true }, { "vildlaithailand.cf", true }, { "viljatori.fi", true }, - { "villa-anna-cilento.de", true }, { "villa-eden.cz", true }, { "villa-gockel.de", true }, { "villa-luna.it", true }, { "villa-romantica-zillertal.at", true }, { "villa-toscana.berlin", true }, { "villablino.tk", true }, + { "villach.at", true }, { "villadelprado.tk", true }, + { "villagebridalbyomnibus.com", true }, { "villagecardshop.co.uk", true }, { "villagecenterpediatrics.com", true }, + { "villagemagazines.co.uk", true }, { "villagenscamuria.it", true }, + { "villagephysicians.com", false }, { "villagockel.de", true }, { "villainsclothing.com.au", true }, + { "villakarma.at", true }, { "villalmanzo.tk", true }, { "villamariaamalfi.it", true }, { "villasenor.online", true }, @@ -72012,11 +74696,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vindafrid.com", true }, { "vindafrid.nu", true }, { "vindafrid.se", true }, + { "vindipoker.dk", true }, { "vinesauce.info", true }, { "vinetalk.net", true }, { "vinetech.co.nz", true }, { "vingt.me", true }, { "vinicius.sl", true }, + { "vinicuncatours.com", true }, { "vinifriuli.sk", true }, { "vinigas.com", true }, { "vinilosdecorativos.net", true }, @@ -72029,9 +74715,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vinnyandchristina.com", true }, { "vinnyvidivici.com", true }, { "vinodoc.cz", true }, - { "vinogradovka.com", true }, { "vinokurov.tk", true }, { "vinolli.de", true }, + { "vinorossoconero.com", true }, { "vinoshipper.com", true }, { "vinovum.net", true }, { "vinsation.com", true }, @@ -72055,19 +74741,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vionicshoes.co.uk", true }, { "vionicshoes.com", true }, { "viosey.com", true }, + { "vip-2132.com", true }, + { "vip-2138.com", true }, + { "vip-6132.com", true }, { "vip-moda.ga", true }, + { "vip-ssl.com", true }, { "vip.de", true }, { "vip00228.com", true }, { "vip11018.com", true }, + { "vip2132.com", true }, { "vip22884.com", true }, { "vip22994.com", true }, + { "vip33138.com", true }, { "vip4553.com", true }, + { "vip5132.com", true }, + { "vip5414.com", true }, + { "vip5424.com", true }, + { "vip6132.com", true }, + { "vip7337.com", true }, { "vip77018.com", true }, { "vip8522.com", true }, { "vip918.net", true }, { "vipam8.com", true }, { "vipcards.top", true }, - { "vipcp.me", true }, { "vipd88.net", true }, { "vipesball.cc", true }, { "vipesball.info", true }, @@ -72098,7 +74794,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viporiflame.tk", true }, { "vippclub.be", true }, { "vips.pl", true }, - { "viptamin.eu", true }, { "viptamol.com", true }, { "vipw66.com", true }, { "vipw6600.com", true }, @@ -72115,13 +74810,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viralpop.it", false }, { "viralsv.com", true }, { "viralted.ml", true }, + { "viraltube.my", true }, { "viralvids.gq", true }, { "virgontech.tk", true }, - { "virgopolymer.com", true }, { "viridis-milites.cz", true }, { "viris.si", true }, { "virite.net", true }, + { "virostack.com", true }, { "virtit.fr", true }, + { "virtual.hk", false }, + { "virtualbrands.com", true }, { "virtualbrestby.tk", true }, { "virtualcitehuallaga.com", true }, { "virtualcloud.ddns.net", true }, @@ -72138,10 +74836,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "virtualvitrine.com", true }, { "virtubox.net", true }, { "virtubox.xyz", true }, + { "virtuebags.com", true }, { "virtueinfo.com", true }, { "virtuewisdomfund.com", true }, { "virtus-group.com", true }, { "virtusaero.com", true }, + { "virtwen.com", true }, { "virus.pm", true }, { "virvum.ch", true }, { "visadaifu.com", true }, @@ -72160,6 +74860,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "viseum.co.uk", true }, { "visibox.nl", true }, { "visikom.de", true }, + { "vision-painting.com", false }, { "visionarymedia.nl", true }, { "visiondetails.ru", true }, { "visiondigitalsog.com", true }, @@ -72172,7 +74873,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visionofcolour.com", true }, { "visionthroughknowledge.com", true }, { "visiontree-beta.eu", true }, - { "visionviral.com", true }, { "visionxcreative.gq", true }, { "visit-montenegro.com", true }, { "visit-thailand.tk", true }, @@ -72186,7 +74886,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visitrainscounty.com", true }, { "vismaconnect.nl", true }, { "visor.ph", true }, - { "vista-calculator.ru", false }, { "vista-research-group.com", true }, { "vistacampus.gov", true }, { "vistastylebuilder.com", false }, @@ -72208,6 +74907,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "visudira.com", true }, { "visuri.de", true }, { "visvolunteers.com", true }, + { "visware.com", true }, { "vitahook.pw", true }, { "vital-tel.co.uk", true }, { "vitalamin.at", true }, @@ -72225,8 +74925,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vitamaxxi.com.br", true }, { "vitamina.cl", true }, { "vitamina.com", true }, - { "vitaminler.com", true }, { "vitaminmovie.ga", true }, + { "vitanyi.de", true }, { "vitapingu.de", true }, { "vitastic.nl", true }, { "vitavista.health", true }, @@ -72237,11 +74937,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vitlproducts.com", true }, { "vitoye.com", true }, { "vitra-showrooms.co.uk", true }, + { "vitrade.de", true }, { "vitrado.de", true }, { "vitsoft.by", true }, - { "vitzro.kr", true }, + { "viva.ua", true }, { "viva2000.com", true }, { "vivaio.roma.it", true }, + { "vivaiocolombo.com", true }, { "vivalajack.de", true }, { "vivaldi.club", true }, { "vivaldi.com", true }, @@ -72272,13 +74974,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vivoitaliankitchen.com", true }, { "vivoregularizafacil.com.br", true }, { "vivy.com", true }, + { "viwsec.com.br", true }, { "vixonline.com.br", true }, { "vixrapedia.org", true }, { "viyf.org", true }, { "viza.io", true }, { "vize.ai", false }, + { "vizedia.ga", true }, { "vizierdata.ca", true }, { "vizija-nepremicnine.si", true }, + { "vizion.com", true }, { "vizional.com", true }, { "vizionnetwork.co.uk", true }, { "vizzboard.com", true }, @@ -72293,6 +74998,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vkikaku.com", false }, { "vkino.com", false }, { "vkirichenko.name", true }, + { "vkirienko.com", true }, { "vkox.com", true }, { "vksportphoto.com", true }, { "vkstream.tk", true }, @@ -72313,12 +75019,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vleij.com", false }, { "vleij.family", true }, { "vleij.se", true }, + { "vleo.me", true }, { "vliegensvlug.online", true }, { "vliegensvlug.services", true }, { "vlndc.org", true }, { "vloeck.de", true }, { "vlora.city", true }, { "vlovgr.se", true }, + { "vlqnc.com", true }, { "vlvvl.com", true }, { "vlzbazar.ru", true }, { "vm-0.com", true }, @@ -72326,6 +75034,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vm0.eu", true }, { "vmagz.ir", true }, { "vmautorajkot.com", true }, + { "vmcsubastas.com", true }, { "vmf365.tk", true }, { "vmgirls.com", true }, { "vmhydro.ru", false }, @@ -72339,12 +75048,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vnd.cloud", true }, { "vndb.org", true }, { "vneftekamske.tk", true }, + { "vnetboard.com", true }, { "vnfs-team.com", true }, { "vnministries.org", true }, { "vnology.com", true }, { "vnovosibirske.tk", true }, { "vns168.vip", true }, - { "vns1780.com", true }, { "vns377a.com", true }, { "vns377b.com", true }, { "vns377c.com", true }, @@ -72356,24 +75065,26 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vns377i.com", true }, { "vns377j.com", true }, { "vns3780.com", true }, - { "vns5151.com", true }, - { "vns5353.com", true }, + { "vns5020.com", true }, + { "vns5151.com", false }, + { "vns5353.com", false }, { "vns5656.com", true }, - { "vns5757.com", true }, + { "vns5757.com", false }, { "vns5858.vip", true }, - { "vns5959.com", true }, - { "vns6161.com", true }, - { "vns6262.com", true }, - { "vns6363.com", true }, - { "vns6565.com", true }, - { "vns6767.com", true }, + { "vns5959.com", false }, + { "vns6161.com", false }, + { "vns6262.com", false }, + { "vns6363.com", false }, + { "vns6565.com", false }, + { "vns6610.com", true }, + { "vns6767.com", false }, { "vns68611.com", false }, { "vns68655.com", true }, { "vns68669.com", true }, - { "vns6868.com", true }, + { "vns6868.com", false }, { "vns6868.vip", true }, { "vns68722.com", true }, - { "vns6969.com", true }, + { "vns6969.com", false }, { "vns89386.com", true }, { "vnsr112233.com", true }, { "vnvisa.center", true }, @@ -72389,11 +75100,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "voda.org.ru", true }, { "vodb.me", true }, { "vodb.org", true }, + { "voddinteriors.com", true }, { "vodicak.info", true }, { "vodicaknapocitac.sk", true }, { "vodpay.com", true }, { "vodpay.net", true }, { "vodpay.org", true }, + { "voedselbankmoerwijk.nl", true }, { "voetbalclubinfo.tk", true }, { "voeux.io", false }, { "voevm.at", true }, @@ -72418,15 +75131,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "voidpay.org", true }, { "voidptr.eu", true }, { "voids.org", true }, - { "voidshift.com", true }, { "voidx.top", true }, { "voipdigit.nl", true }, { "voipsun.com", true }, - { "voix-bien-etre.com", true }, + { "voix-bien-etre.com", false }, { "vojenshandicap.dk", true }, - { "vojtechpavelka.cz", true }, { "vokativy.cz", true }, { "vokeapp.com", true }, + { "vokieciupamokos.lt", true }, { "vokurka.net", true }, { "volatile.pw", true }, { "volatilesystems.org", true }, @@ -72436,13 +75148,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volcanconcretos.com", true }, { "volcano-kazan.ru", true }, { "volcano-spb.ru", true }, + { "volcano-ug.ru", true }, { "volcano-vts.ru", true }, + { "volcano-x.ru", true }, { "volcano24.ru", true }, + { "volcano75.ru", true }, { "volcanov.ru", true }, { "volchara.tk", true }, { "volga.us", true }, { "volgavibes.ru", false }, - { "voliere-info.nl", false }, { "volker-gropp.de", true }, { "volkergropp.de", true }, { "volkerwesselstransfer.nl", false }, @@ -72457,17 +75171,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "volto.io", true }, { "volubilisplus.fr", true }, { "volunteeringmatters.org.uk", true }, + { "volunteersindia.org", false }, { "volvipress.gr", true }, { "volvoconnect.com", true }, { "vomitb.in", true }, { "vonauw.com", false }, - { "vonborstelboerner.de", false }, + { "vongerlach.at", true }, { "vonimus.com", true }, { "vonkuenheim.de", true }, { "vonniehudson.com", true }, + { "vonpawn.com", true }, { "vonski.pl", true }, { "vontainment.com", true }, - { "vonterra.us", true }, { "voodoochile.at", true }, { "voodoocomedy.com", true }, { "voodooshaman.com", true }, @@ -72508,6 +75223,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vostronet.com", true }, { "vote2019.appspot.com", true }, { "vote4.hk", true }, + { "votehamiltoncountyohio.gov", true }, { "votelevy.gov", true }, { "votemarion.gov", true }, { "votemate.org", true }, @@ -72518,7 +75234,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "votocek.cz", true }, { "votockova.cz", true }, { "votoot.com", true }, - { "votre-avenir.com", true }, + { "votre-avenir.com", false }, { "votre-hotel.com", true }, { "votresiteweb.ch", true }, { "vouchinsurance.sg", true }, @@ -72542,6 +75258,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vpinball.com", true }, { "vpn.black", true }, { "vpn.ht", true }, + { "vpnmag.fr", true }, { "vpnpro.com", true }, { "vpnservice.nl", true }, { "vponline.com.br", true }, @@ -72551,6 +75268,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vpsdream.dk", true }, { "vpsou.com", true }, { "vpsport.ch", true }, + { "vpsproj.dynu.net", true }, { "vpsrussia.com", true }, { "vpsvz.cloud", true }, { "vpsvz.co.uk", true }, @@ -72586,37 +75304,37 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vrnhn.nl", true }, { "vroedvrouwella.be", true }, { "vrostove.tk", true }, - { "vroyaltours.com", true }, + { "vrpornmovies.net", true }, { "vrsgames.com.mx", false }, - { "vrtak-cz.net", true }, { "vrtouring.org", true }, { "vrzl.pro", true }, { "vs106.com", true }, { "vs107.com", true }, - { "vs1177.com", true }, - { "vs1717.com", true }, - { "vs2277.com", true }, - { "vs2828.com", true }, + { "vs1177.com", false }, + { "vs1717.com", false }, + { "vs2277.com", false }, + { "vs2828.com", false }, { "vs301.com", true }, { "vs302.com", true }, { "vs303.com", true }, { "vs313.com", true }, - { "vs5050.com", true }, - { "vs5151.com", true }, + { "vs5050.com", false }, + { "vs5151.com", false }, { "vs601.com", true }, { "vs603.com", true }, - { "vs6060.com", true }, - { "vs6161.com", true }, + { "vs6060.com", false }, + { "vs6161.com", false }, { "vs677.com", true }, { "vs680.com", true }, - { "vs7711.com", true }, - { "vs8899.com", true }, - { "vs9911.com", true }, - { "vs9977.com", true }, + { "vs7711.com", false }, + { "vs8899.com", false }, + { "vs9911.com", false }, + { "vs9977.com", false }, { "vsactivity.com", true }, { "vsamsonov.com", true }, { "vsaratove.tk", true }, { "vscale.io", true }, + { "vschafer.com", true }, { "vscm888.com", true }, { "vscodownloader.net", true }, { "vsd.sk", true }, @@ -72653,6 +75371,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vubey.yt", true }, { "vucdn.com", true }, { "vuelacaruru.com", true }, + { "vugt.me", true }, { "vuilelakens.be", true }, { "vulcancycling.ga", true }, { "vuldb.com", true }, @@ -72660,7 +75379,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vuljespaarpot.nl", true }, { "vullriede-multimedia.de", false }, { "vulndetect.com", true }, - { "vulnerabilities.io", true }, { "vulnerability.ch", true }, { "vulners.com", true }, { "vulns.sexy", true }, @@ -72679,8 +75397,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vv6729.com", true }, { "vv6957.co", true }, { "vv9297.co", true }, - { "vv9397.com", true }, - { "vv9721.com", true }, { "vv9728.co", true }, { "vvactivia.nl", true }, { "vvave.net", true }, @@ -72688,13 +75404,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "vveactiefbeheer.nl", true }, { "vvild.at", true }, { "vvoip.org.uk", true }, - { "vvs.spb.ru", true }, { "vvsochenergiteknik.se", true }, + { "vvtv.cc", true }, { "vvvvbrest.tk", true }, { "vvw-8522.com", true }, { "vvzero.cf", true }, + { "vvzero.com", true }, + { "vvzero.me", true }, { "vw-touranclub.cz", true }, - { "vwbusje.com", true }, + { "vwbusje.com", false }, { "vwfsrentacar.co.uk", true }, { "vwh-kunden.de", true }, { "vwittich.de", true }, @@ -72742,7 +75460,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w0191.com", true }, { "w0195.com", true }, { "w0198.com", true }, - { "w0202w.com", true }, + { "w0250.com", true }, { "w045w.com", true }, { "w052w.com", true }, { "w1010w.com", true }, @@ -72759,7 +75477,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w2n.me", true }, { "w30365.com", true }, { "w3330.com", true }, - { "w365.vip", true }, + { "w365.vip", false }, { "w36533.com", true }, { "w36594.com", true }, { "w3app.nl", true }, @@ -72784,13 +75502,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w4tec.de", true }, { "w50.co.uk", false }, { "w5050w.com", true }, + { "w51365.com", true }, { "w5197.co", true }, + { "w555.com", true }, { "w556w.com", true }, { "w567567.com", true }, { "w5858w.com", true }, { "w5gfe.org", true }, { "w61516.com", true }, { "w61518.com", true }, + { "w61611.net", true }, { "w61616.com", true }, { "w6363w.com", true }, { "w66001.com", true }, @@ -72813,6 +75534,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w663w.com", true }, { "w6648.com", true }, { "w666.ag", true }, + { "w666.com", true }, { "w66655.com", true }, { "w6671.com", true }, { "w6673.com", true }, @@ -72857,7 +75579,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w8094.com", true }, { "w81365.com", true }, { "w81518.com", true }, - { "w81818.com", true }, + { "w81519.com", true }, { "w82365.com", true }, { "w84.it", true }, { "w8605.com", true }, @@ -72868,10 +75590,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w8628.com", true }, { "w8659.com", true }, { "w888.ag", true }, + { "w888011.com", true }, { "w888022.com", true }, { "w888033.com", true }, { "w888044.com", true }, - { "w888055.com", false }, + { "w888055.com", true }, { "w888066.com", true }, { "w888077.com", true }, { "w888088.com", true }, @@ -72887,11 +75610,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w8less.nl", true }, { "w9196.com", true }, { "w9297.co", true }, - { "w9397.com", true }, { "w95.pw", true }, { "w9710.com", true }, { "w9720.com", true }, - { "w9721.com", true }, { "w9728.co", true }, { "w9730.com", true }, { "w9740.com", true }, @@ -72903,6 +75624,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "w97app3.com", true }, { "w97bb.com", true }, { "w97cc.com", true }, + { "w99w99.com", true }, { "wa-stromerzeuger.de", false }, { "wa.io", true }, { "wa.me", true }, @@ -72923,6 +75645,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waf.ninja", true }, { "waf.sexy", true }, { "wafa4hw.com", true }, + { "wafelland.be", true }, + { "waffenversand-klausing.de", true }, { "waffle.at", false }, { "wafni.com", true }, { "wafuton.com", true }, @@ -72989,12 +75713,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wallabies.org", true }, { "wallace-group.net", true }, { "wallacehigh.org.uk", true }, + { "walldisplaysapp.com", true }, { "wallet.google.com", true }, { "wallet.pp.ua", true }, { "walletconnector.cz", true }, { "wallethub.com", false }, { "walletnames.com", true }, - { "wallinger-online.at", false }, { "wallingford.cc", true }, { "wallis-inside.ch", true }, { "wallisch.pro", true }, @@ -73003,7 +75727,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wallpapers.pub", false }, { "wallpaperup.com", true }, { "walls.de", true }, - { "walls.io", true }, { "wallsauce.com", true }, { "walltime.info", true }, { "wallumai.com.au", true }, @@ -73015,11 +75738,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "walpu.ski", true }, { "walpuski.com", true }, { "walravensax.nl", true }, - { "walruscode.com", false }, + { "walruscode.com", true }, { "walruses.org", true }, { "walshbanks.com", true }, { "waltellis.com", true }, { "walter.lc", true }, + { "waltercedric.ch", true }, + { "waltercedric.com", true }, { "waltervictor.com", false }, { "waltzmanplasticsurgery.com", true }, { "wammu.eu", true }, @@ -73045,7 +75770,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wangbangyu.gq", true }, { "wangbangyu.ml", true }, { "wangbangyu.tk", true }, - { "wanghongfuli.com", true }, { "wangjiatun.com.tw", true }, { "wangjun.me", true }, { "wangqiliang.cn", true }, @@ -73061,6 +75785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wangwill.me", true }, { "wangyubao.cn", true }, { "wangyue.blog", true }, + { "wangzhe100.xyz", true }, { "wangzuan168.cc", true }, { "wanlieyan.cc", true }, { "wanlieyan.com", true }, @@ -73068,6 +75793,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wannaridecostarica.com", true }, { "wantocode.com", true }, { "wanybug.cf", true }, + { "wanybug.cn", true }, + { "wanybug.com", true }, { "wanybug.ga", true }, { "wanybug.gq", true }, { "wanybug.tk", true }, @@ -73083,6 +75810,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wapnews.tk", true }, { "wapoolandspa.com", true }, { "wapspaces.tk", true }, + { "waqood.tech", true }, { "warcraftjournal.org", true }, { "wardow.com", true }, { "wardslager.com", true }, @@ -73092,6 +75820,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "warekon.com", true }, { "warekon.dk", true }, { "warenits.at", false }, + { "warenmedia.com", true }, { "warezoom.com", true }, { "warfield.org.uk", true }, { "wargameexclusive.com", true }, @@ -73115,6 +75844,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "warthog.ml", true }, { "wartimecontracting.gov", true }, { "wartorngalaxy.com", true }, + { "warupu.com", true }, { "wasabiwallet.co", true }, { "wasabiwallet.io", true }, { "waschmaschinen-dienst.de", true }, @@ -73128,11 +75858,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wash-house.tk", true }, { "washabich.ch", true }, { "washburnenglishschool.tk", true }, + { "washcowi.gov", true }, + { "washcowisco.gov", true }, + { "washingtoncountywi.gov", true }, { "washingtonregisteredagent.io", true }, { "washingtonviews.com", true }, { "washoedems.org", true }, { "wasi-net.de", true }, { "wasielewski.com.de", true }, + { "waskesiuapparel.com", true }, { "waslh.com", true }, { "wasserburg.dk", true }, { "wasserspucker.de", true }, @@ -73172,6 +75906,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waterschaplimburg.nl", true }, { "waterside-residents.org.uk", true }, { "waterslide-austria.at", true }, + { "watersview.co.uk", true }, + { "watertorenstraat.tk", true }, { "watertrails.io", true }, { "watervillewomenscare.com", true }, { "waterworkscondos.com", true }, @@ -73197,7 +75933,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "waxdramatic.com", true }, { "waxlrs.com", true }, { "waycraze.com", true }, - { "wayfair.de", true }, { "wayfairertravel.com", true }, { "waynecountyoh.gov", true }, { "waynefranklin.com", true }, @@ -73211,9 +75946,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wb256.com", true }, { "wb6668.net", true }, { "wba.or.at", true }, + { "wbca.ca", true }, { "wbcasaverde.co", true }, { "wbci.us", false }, - { "wbcme.co.uk", true }, + { "wbcme.co.uk", false }, { "wbinnssmith.com", true }, { "wblautomotive.com", true }, { "wblinks.com", true }, @@ -73229,10 +75965,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wby.tw", true }, { "wca.link", true }, { "wcbook.ru", false }, + { "wcei.com.au", true }, { "wck.com", true }, { "wcn.life", false }, { "wcosmeticsurgery.com", true }, { "wcrca.org", true }, + { "wcscmp.com", true }, { "wcwcg.net", true }, { "wd36.cc", true }, { "wd627.com", true }, @@ -73240,6 +75978,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wd976.com", true }, { "wdbflowersevents.co.uk", true }, { "wdic.org", true }, + { "wdmcheng.cn", true }, { "wdmg.com.ua", true }, { "wdodelta.nl", true }, { "wdol.gov", false }, @@ -73252,8 +75991,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "we5688.net", true }, { "we6668.net", true }, { "we88fun.com", true }, + { "we8hd.com", true }, { "weacceptbitcoin.gr", true }, - { "weadvize.fr", true }, { "wealthadvisorsmf.com", true }, { "wealthcreationsolutions.ga", true }, { "wealthprojector.com", true }, @@ -73272,15 +76011,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weareincognito.org", true }, { "wearepapermill.co", true }, { "wearepapermill.com", true }, - { "wearesouthafricans.com", true }, { "wearethreebears.co.uk", true }, { "wearetuzag.com", true }, { "wearewithyou.org", true }, { "wearvr.com", true }, - { "weaspireusa.com", true }, { "weather-schools.com", true }, { "weather.gov", true }, { "weather.gov.mo", true }, + { "weatherbuzzmedia.com", true }, { "weathermyway.rocks", true }, { "weavers.space", true }, { "web-advisor.co.uk", true }, @@ -73292,7 +76030,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web-format.tk", true }, { "web-hotel.gr", true }, { "web-jive.com", true }, - { "web-kouza.com", true }, { "web-mail.info", true }, { "web-odyssey.com", true }, { "web-redacteuren.nl", true }, @@ -73301,6 +76038,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web-studio-kzo.ml", true }, { "web-test.gq", true }, { "web-thinker.ru", true }, + { "web-wakakusa.jp", true }, { "web-wave.jp", true }, { "web.bzh", true }, { "web.cc", false }, @@ -73309,6 +76047,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "web2ldap.de", true }, { "web2screen.tv", true }, { "web404.net", true }, + { "webaccio.com", true }, { "webadiccion.net", true }, { "webadicta.net", true }, { "webadicto.net", true }, @@ -73324,15 +76063,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webart-factory.de", true }, { "webartex.ru", true }, { "webarxsecurity.com", true }, + { "webauthnlogin.com", true }, { "webbhuset.se", false }, { "webbiz.co.uk", true }, { "webbricks.ru", true }, { "webbson.net", false }, { "webcam-model.tk", true }, + { "webcams4date.com", true }, { "webcamtoy.com", true }, { "webcaptive.com", true }, { "webcaptive.net", true }, - { "webcasinos.com", false }, { "webcatchers.nl", false }, { "webcatechism.com", false }, { "webce.de", true }, @@ -73340,11 +76080,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webcheck.pt", true }, { "webclimbers.ch", false }, { "webcloud.io", true }, + { "webclymber.com", true }, { "webcollect.org.uk", true }, { "webcontentspinning.com", true }, { "webconverge.nl", true }, { "webcookies.org", true }, { "webcreativa.tk", true }, + { "webcreatortool.com", false }, { "webcrm.com", true }, { "webcurtaincall.com", true }, { "webdemaestrias.com", true }, @@ -73377,6 +76119,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webfilings-mirror-hrd.appspot.com", true }, { "webfilings.appspot.com", true }, { "webfixers.nl", true }, + { "webforsales.ru", true }, { "webgaff.com", true }, { "webgap.io", false }, { "webgarten.ch", true }, @@ -73401,6 +76144,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webia.in.th", true }, { "webies.ro", true }, { "webinator.tk", true }, + { "webinfotech.com.np", true }, { "webini.co", true }, { "webinnovation.ie", true }, { "webinstit.net", true }, @@ -73431,7 +76175,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webmediaprint.at", true }, { "webmediums.com", true }, { "webmedpharmacy.co.uk", true }, + { "webmenedzser.hu", true }, { "webmetering.at", true }, + { "webminders.it", true }, { "webmotelli.fi", true }, { "webmr.de", true }, { "webnames.ca", true }, @@ -73445,6 +76191,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webperformance.io", true }, { "webpinoytambayan.net", true }, { "webpinoytv.info", true }, + { "webpixelia.com", true }, { "webplace4u.nl", true }, { "webpostingmart.com", true }, { "webpostingpro.com", true }, @@ -73473,9 +76220,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "websitecyber.com", true }, { "websitedesignersmalappuram.ga", true }, { "websitedesignprice.ga", true }, - { "websiteenergizers.com", true }, + { "websiteenergizers.com", false }, { "websiteforstudents.com", true }, { "websiteguider.com", true }, + { "websitelia.com", true }, { "websitemarketers.tk", true }, { "websiteout.ca", true }, { "websiteout.net", true }, @@ -73499,6 +76247,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webstore.be", false }, { "webstu.be", true }, { "webstudio-n.com", true }, + { "webstudioswest.com", true }, { "webstylemedia.com", true }, { "websvetaines.lt", true }, { "webtasarim.pw", true }, @@ -73509,9 +76258,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webtobesocial.de", true }, { "webtoro.com", true }, { "webtorrent.io", true }, + { "webtrees.net", true }, { "webtrek.ch", true }, { "webtrh.cz", true }, - { "webtropia.com", false }, { "webukhost.com", true }, { "webutils.io", true }, { "webwednesday.nl", true }, @@ -73525,9 +76274,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "webyazilimankara.com", true }, { "webz.one", true }, { "webzanem.com", true }, - { "webzoly.com", true }, { "wecanvisit.com", true }, { "wechatify.com", true }, + { "wecho.net", true }, { "weck.alsace", true }, { "wecleanbins.com", true }, { "wecobble.com", true }, @@ -73545,6 +76294,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wedovapes.co.uk", true }, { "wedplay.host", true }, { "weebl.me", true }, + { "weeblez.com", true }, { "weeblr.com", true }, { "weecarepreschool.ca", true }, { "weed.ren", true }, @@ -73568,14 +76318,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weerda.fr", true }, { "weerstationgiethoorn.nl", true }, { "weerstatistieken.nl", true }, - { "wefinanceinc.com", true }, { "wefitboilers.com", true }, { "weforgood.org.tw", true }, { "wefound.com.tw", true }, { "wegerecht.org", true }, { "wegethitched.co.uk", true }, { "weggeweest.nl", true }, - { "wegiel24.info", true }, { "wegner.no", true }, { "wegonnagetsued.org", true }, { "wegotcookies.com", true }, @@ -73597,7 +76345,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weiling.clinic", true }, { "weils.net", true }, { "weiltoast.de", true }, - { "weimaraner.com.br", true }, { "weimz.com", true }, { "wein.cc", true }, { "wein.co.kr", true }, @@ -73607,6 +76354,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weinundsein.com", true }, { "weiran.org.cn", true }, { "weirdesigns.com", true }, + { "weirdgloop.org", true }, { "weirdserver.com", true }, { "weissborn.me", true }, { "weissdorntee.de", true }, @@ -73617,17 +76365,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weitsolutions.nl", true }, { "weixiaojun.org", false }, { "weizenke.im", true }, + { "wejdmark.com", true }, { "wekibe.de", true }, { "weknowhowtodoit.com", true }, { "welches-kinderfahrrad.de", true }, { "welcome-werkstatt.com", true }, - { "welcome-werkstatt.de", true }, { "welcome26.ch", false }, { "welcomehelp.de", true }, { "welcomescuba.com", true }, { "welcometoscottsdalehomes.com", true }, { "weld.io", true }, { "weldwp.com", true }, + { "welfareness.icu", true }, { "weliway.com", true }, { "well-around-the-world.com", true }, { "wella-download-center.de", true }, @@ -73651,6 +76400,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "weloveliving.it", true }, { "welovemail.com", true }, { "welovemaira.com", true }, + { "welp-mail.de", true }, { "welpo.me", true }, { "welsh.com.br", true }, { "welshccf.org.uk", true }, @@ -73659,7 +76409,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "welteneroberer.de", true }, { "weltengilde.de", true }, { "weltenhueter.de", true }, - { "weltmeister.de", false }, + { "weltmeister.de", true }, { "weltverschwoerung.de", true }, { "welzijnkoggenland.nl", true }, { "wem.hr", true }, @@ -73703,18 +76453,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "werbewelt-tv.de", true }, { "werbezentrum-stiebler.de", true }, { "werbik.at", true }, + { "wercat.net", true }, { "werd.pw", true }, { "werehub.org", true }, { "wereldkoffie.eu", true }, { "wereldplanner.nl", true }, { "wereoutthere.nl", true }, - { "werepairit.com.au", true }, { "werhatunsverraten.eu", true }, { "werk-34.de", true }, { "werkemotion.com", true }, { "werken-bij-inwork.nl", true }, { "werkenbijdfzs.nl", true }, { "werkenbijsherpa.nl", true }, + { "werkenbijvanderventions.com", true }, + { "werkenbijvanderventions.nl", true }, { "werkenbijwierda.nl", true }, { "werkeninwesterveld.nl", true }, { "werkenvoorphiladelphia.nl", true }, @@ -73752,6 +76504,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "westcoastcastles.com", true }, { "westcoastheatingair.com", true }, { "westcoastmarineadvisor.com", true }, + { "westcoastmotors.co.uk", true }, { "westcode.de", true }, { "westcommunitycu.org", true }, { "westcountrystalking.com", true }, @@ -73778,13 +76531,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "westmidlandsinflatables.co.uk", true }, { "westmidlandslettings.com", true }, { "westondenning.com", true }, + { "westpointrealtors.com", true }, { "westside-pediatrics.com", true }, { "westsuburbanbank.com", true }, - { "westthorntonlabour.co.uk", true }, { "wesupportthebadge.org", true }, { "weswitch4u.com", true }, { "wetofu.top", true }, { "wetpussylipsex.com", true }, + { "wetravel.company", true }, { "wetrepublic.com", true }, { "wettbonus.eu", false }, { "wetter.de", true }, @@ -73825,9 +76579,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wforum.nl", true }, { "wfschicago.com", true }, { "wft-portfolio.nl", true }, + { "wg-smue.de", true }, { "wg-steubenstrasse.de", true }, { "wg-tools.de", true }, - { "wg3k.us", false }, + { "wg3k.us", true }, { "wgcaobgyn.com", true }, { "wgcp.com", true }, { "wgdp.gov", true }, @@ -73853,16 +76608,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whatclinic.de", true }, { "whatclinic.ie", true }, { "whatclinic.ru", true }, - { "whatdevotion.com", true }, { "whatisapassword.com", true }, { "whatisl.ovh", true }, { "whatismycountry.com", true }, { "whatismyip.net", false }, { "whatismyipaddress.ca", true }, { "whatismyipv6.info", true }, - { "whatismypublicip.com", true }, { "whatisthe.cloud", true }, - { "whatisthebestflag.com", true }, { "whatnext.limited", true }, { "whatnot.ai", true }, { "whatsahoy.com", true }, @@ -73883,10 +76635,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wheatgra.in", true }, { "wheatley.nl", true }, { "wheeler.kiwi.nz", true }, + { "wheelsmaestro.com", true }, { "wheelwide.co.uk", true }, { "wheelwork.org", false }, { "when.fm", false }, { "where2trip.com", true }, + { "whereapp.social", true }, { "wheredoi.click", true }, { "whereisjason.com", true }, { "whereismyorigin.cf", true }, @@ -73924,6 +76678,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whitealps.net", false }, { "whitebear.cloud", true }, { "whitebirdclinic.org", true }, + { "whitecleatbeat.com", true }, { "whitefm.ch", false }, { "whitehathackers.com.br", true }, { "whitehats.nl", true }, @@ -73937,7 +76692,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whitelabelcashback.nl", true }, { "whitelabeltickets.com", false }, { "whitemountainnaturalcreations.com", true }, - { "whitepack.ru", true }, + { "whitepack.ru", false }, { "whitepen.tk", true }, { "whitepharmacy.co.uk", true }, { "whitepinetn.gov", true }, @@ -73959,11 +76714,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whizzzbang.co.uk", true }, { "whm.gc.ca", true }, { "whmcs.hosting", true }, + { "whnpa.org", true }, { "who-calledme.com", true }, { "who.pm", true }, { "whoami.eu.org", true }, { "whoami.io", true }, - { "whoasome.com", true }, { "whocalld.com", true }, { "whocalled.us", true }, { "whocalledme.xyz", true }, @@ -73974,7 +76729,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whoiscutest.ml", true }, { "whoisdhh.com", true }, { "whoisthenightking.com", true }, - { "whoiswp.com", true }, { "whojoo.com", true }, { "wholesomeharvestbread.com", false }, { "whollyskincare.com", true }, @@ -73985,6 +76739,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whosyourdaddy.ml", true }, { "whotracks.me", true }, { "whoturgled.com", true }, + { "whowherewhen.net", true }, { "whqqq.com", true }, { "whqtravel.org", false }, { "whs-music.org", true }, @@ -74004,6 +76759,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "whyworldhot.com", true }, { "whyy.eu.org", true }, { "whyz1722.tk", true }, + { "wiagencies.com", true }, { "wiapply.com", true }, { "wibbe.link", true }, { "wiberg.nu", true }, @@ -74029,6 +76785,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "widmer.bz", true }, { "widoj.gov", true }, { "widsl.de", true }, + { "widwap.net", true }, { "wiebel.org", true }, { "wiebetaaltdat.nl", true }, { "wieckiewicz.org", true }, @@ -74070,6 +76827,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wiki-books.ga", true }, { "wiki-play.ru", true }, { "wiki.python.org", true }, + { "wiki24.ru", true }, { "wikibooks.org", true }, { "wikibulz.com", true }, { "wikibuy.com", true }, @@ -74090,11 +76848,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wikileaks.ch", true }, { "wikileaks.com", true }, { "wikileaks.org", true }, + { "wikilinux.xyz", true }, { "wikilivres.ca", true }, { "wikimedia.org", true }, { "wikimediafoundation.org", true }, { "wikimilk.org", true }, { "wikinews.org", true }, + { "wikipedia-mirror.org", true }, + { "wikipedia.com", true }, { "wikipedia.org", true }, { "wikipiedi.it", true }, { "wikiquote.org", true }, @@ -74108,6 +76869,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wikizip.ga", true }, { "wikpa.com", true }, { "wiktionary.org", true }, + { "wiktor-imbierski.com", true }, { "wilane.org", true }, { "wilcodeboer.me", true }, { "wild-emotion-events.de", true }, @@ -74119,16 +76881,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wildberries.cf", true }, { "wildbirds.dk", true }, { "wildcard.hu", true }, - { "wildcardcorp.com", true }, { "wildcardfederal.net", true }, { "wildcatproductions.biz", true }, { "wildcraft.com", true }, - { "wilddirections.co.uk", true }, { "wilddogdesign.co.uk", true }, { "wildercerron.com", true }, { "wilderky.gov", true }, { "wildewood.ca", true }, { "wildfirechain.xyz", true }, + { "wildfirexpeditions.com", true }, + { "wildfoxlady.com", true }, + { "wildfoxosteopathy.com", true }, { "wildlifeadaptationstrategy.gov", true }, { "wildnisfamilie.net", true }, { "wildtrip.blog", true }, @@ -74136,11 +76899,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wildwind.world", true }, { "wildzoopark.co.uk", true }, { "wildzoopark.com", true }, + { "wilf1rst.com", true }, { "wilfrid-calixte.fr", false }, { "wilgo.ga", true }, { "wilhelm-nathan.de", true }, { "wili.li", true }, { "wiliquet.net", false }, + { "wilkinsondigital.com", true }, { "wilkushka.com", true }, { "wilkushka.net", true }, { "willbarnesphotography.co.uk", true }, @@ -74174,10 +76939,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "willow.technology", true }, { "willowbrook.co.uk", true }, { "willowdalechurch.ca", true }, - { "willowtree.school", true }, { "wills.co.tt", true }, { "willstamper.name", true }, { "willstocks.co.uk", true }, + { "willtc.co.uk", true }, + { "willtc.uk", true }, { "willvision.com", true }, { "willywangstory.com", true }, { "willywangstory.com.tw", true }, @@ -74188,7 +76954,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wilsonovi.com", true }, { "wilsonvilleoregon.gov", true }, { "wimachtendienk.com", true }, - { "wimbo.nl", true }, { "wimpernforyou.de", true }, { "win365.com", true }, { "win7stylebuilder.com", false }, @@ -74196,20 +76961,24 @@ static const nsSTSPreload kSTSPreloadList[] = { { "win88-line.com", true }, { "win88-line.net", true }, { "winall8.com", true }, + { "winancreekbarn.com", true }, { "winbignow.click", true }, { "winbuzzer.com", true }, { "wincasinosmoney.com", true }, { "wincasinowin.click", true }, { "winch-center.de", true }, { "winckelmann2020.com", true }, + { "wind.moe", false }, { "windelnkaufen24.de", true }, { "windforme.com", true }, { "windictus.net", true }, + { "windmillart.net", true }, { "windmyroof.com", true }, { "windowcleaningexperts.net", true }, { "windowreplacement.net", true }, { "windows-support.nu", true }, { "windows-support.se", true }, + { "windows311.org", true }, { "windowsdoors.it", true }, { "windowseatwanderer.com", true }, { "windowslatest.com", true }, @@ -74222,7 +76991,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "windsorspi.com", true }, { "windwoodmedia.com", true }, { "windwoodweb.com", true }, - { "windycitydubfest.com", true }, { "wine-route.net", true }, { "wine-tapa.com", true }, { "winebid.com", true }, @@ -74265,6 +77033,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "winwares.com", true }, { "winwitharval.co.uk", true }, { "wiocha.pl", true }, + { "wippie.se", true }, { "wipswiss.ch", true }, { "wir-bewegen.sh", true }, { "wir-machen-druck.de", true }, @@ -74273,10 +77042,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wire.com", true }, { "wiredcut.com", true }, { "wiredmedia.co.uk", true }, - { "wireframesoftware.com", true }, { "wireheading.com", true }, { "wirekeep.com", true }, { "wireless-emergency-stop.com", true }, + { "wireless4now.com.au", true }, { "wireshark.org", true }, { "wireshocks.com", true }, { "wiretime.de", true }, @@ -74291,6 +77060,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wirralbouncycastles.co.uk", true }, { "wirsberg-studios.de", true }, { "wirsol.com", true }, + { "wiruji.com", true }, { "wis.no", true }, { "wisak.me", true }, { "wisal.org", true }, @@ -74298,6 +77068,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wisdomize.me", true }, { "wisecountytx.gov", true }, { "wisedog.eu", false }, + { "wiseradiology.com.au", true }, { "wishesbee.com", true }, { "wishingyou.co.uk", true }, { "wishlist.net", true }, @@ -74338,19 +77109,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wittywomaniyaa.com", true }, { "witway.nl", false }, { "wivoc.nl", true }, + { "wiwi.nl", true }, { "wiz.at", true }, { "wiz.biz", true }, { "wiz.farm", true }, + { "wizadjournal.com", true }, { "wizard.gov", true }, { "wizardbouncycastles.co.uk", true }, { "wizardmeow.xin", true }, { "wizardschool.tk", true }, + { "wizathon.com", true }, { "wizbot.tk", true }, { "wizzair.com", true }, { "wizzley.com", true }, { "wizznab.tk", true }, { "wizzr.nl", true }, { "wj0666.com", true }, + { "wjb.marketing", true }, { "wjbolles.com", true }, { "wjci.com", true }, { "wje-online.de", true }, @@ -74363,6 +77138,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wjsh.com", true }, { "wjwieland.dvrdns.org", false }, { "wk577.com", true }, + { "wk99.net", true }, { "wkennington.com", true }, { "wkhs.com", true }, { "wkv.com", true }, @@ -74374,17 +77150,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wlog.it", true }, { "wlt.ca", false }, { "wltix.com", false }, - { "wlx678.com", false }, - { "wlx678a.com", false }, - { "wlx678b.com", false }, - { "wlx678c.com", false }, - { "wlx678d.com", false }, + { "wlx678.com", true }, + { "wlx678a.com", true }, + { "wlx678b.com", true }, + { "wlx678c.com", true }, + { "wlx678d.com", true }, { "wm-access.com", true }, { "wm-access.de", true }, { "wm-talk.net", false }, { "wmaccess.com", true }, { "wmaccess.de", true }, + { "wmccancercenter.com", true }, { "wmcns.net", true }, + { "wmcroboticsurgery.com", true }, + { "wmcuk.net", true }, { "wmfusercontent.org", true }, { "wmkowa.de", true }, { "wmnrj.com", true }, @@ -74402,6 +77181,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wns68666.com", true }, { "wns6872.com", true }, { "wnsr3970.com", true }, + { "wnuq.best", true }, { "wo-ist-elvira.net", true }, { "wo2forum.nl", true }, { "woah.how", true }, @@ -74416,19 +77196,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wodinaz.com", true }, { "wodka-division.de", true }, { "wofflesoft.com", true }, - { "wofford-ecs.org", true }, + { "wofford-ecs.org", false }, { "woffs.de", true }, + { "wofox.com", true }, { "wogo.org", true }, { "woheni.de", true }, { "wohlgemuth.rocks", true }, { "wohlpa.de", true }, - { "wohlraj.net", true }, { "wohnbegleitung.ch", true }, { "wohnsitz-ausland.com", true }, { "wohnungsbau-ludwigsburg.de", true }, { "woi.vision", true }, { "wois.info", true }, { "wojciechowka.pl", true }, + { "wojciechszyjka.pl", true }, { "wokinghammotorhomes.com", true }, { "woktoss.com", true }, { "wolfachtal-alpaka.de", true }, @@ -74436,7 +77217,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wolfcrow.com", true }, { "wolfermann.org", true }, { "wolferstetterkeller.de", true }, - { "wolfgang-braun.info", true }, { "wolfgang-kerschbaumer.at", true }, { "wolfgang-kerschbaumer.com", true }, { "wolfgang-kerschbaumer.net", true }, @@ -74447,14 +77227,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wolfpa.ws", true }, { "wolfram.io", true }, { "wolfsden.cz", true }, + { "wolfshoehle.eu", true }, { "wolfshuegelturm.de", true }, { "wolftain.com", true }, { "wolfteam.tk", true }, + { "wolfvideoproductions.com", true }, { "wolfwings.us", true }, { "wolfy.design", true }, { "wolfy1339.com", true }, { "wolke7.wtf", true }, - { "wolkenbauer.com", true }, { "wolkenspeicher.org", true }, { "wolkjehosting.nl", true }, { "wolkoopjes.nl", true }, @@ -74479,6 +77260,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "womenshealthadvocate.org", true }, { "womensmedassoc.com", true }, { "womenswellnessobgyn.com", true }, + { "woms.top", true }, { "wonderbill.com", true }, { "wonderbits.net", true }, { "wonderbooks.club", true }, @@ -74495,13 +77277,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wondermags.com", true }, { "wondium.nl", true }, { "wonghome.net", true }, + { "woningverfspuiten.nl", true }, { "wooblr.com", true }, { "wooc.org", true }, { "wood-crafted.co.uk", true }, { "wood-crafted.uk", true }, + { "woodbornekitchens.co.uk", true }, + { "woodbornekitchens.com", true }, { "woodbury.io", true }, + { "woodcat.net", true }, { "woodcoin.org", true }, + { "woodcountywi.gov", true }, { "woodenson.com", true }, + { "woodenwindowco.com", true }, { "woodev.us", true }, { "woodfordcountyky.gov", true }, { "woodinvillesepticservice.net", true }, @@ -74518,6 +77306,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "woodstocksupply.com", true }, { "woodwo.se", true }, { "woodwormtreatment.com", true }, + { "woodyworld.com", true }, { "woof.gq", true }, { "woofsbakery.com", true }, { "woohay.com", true }, @@ -74540,6 +77329,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worcesterpethydrotherapy.com", true }, { "worcestervets.co.uk", true }, { "worcestervetsreferrals.com", true }, + { "word-grabber.com", true }, { "wordadmin.com", true }, { "wordcounter.net", true }, { "wordfence.com", true }, @@ -74549,8 +77339,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wordops.io", true }, { "wordops.net", true }, { "wordplay.one", true }, - { "wordpress-experts.net", true }, { "wordpress.com", false }, + { "wordpressarequipa.com", true }, { "wordpressfly.com", true }, { "wordpressp.com", true }, { "wordpresssetup.org", true }, @@ -74563,10 +77353,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worf.in", true }, { "worio.co", true }, { "work-in-progress.website", true }, + { "workahealthic.de", true }, { "workathomenoscams.com", true }, { "workcelerator.com", true }, { "workcheck.bz", true }, { "workcloud.jp", true }, + { "workcost.me", true }, { "workemy.com", true }, { "worker.gov", true }, { "workeria-personal.de", true }, @@ -74576,6 +77368,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "workingmachine.info", true }, { "workingon.tech", true }, { "workinnorway.no", true }, + { "worklinepc.com", true }, { "worklizard.com", true }, { "workmart.mx", true }, { "worknrby.com", true }, @@ -74591,6 +77384,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worksitevr.com", true }, { "worksmarter.tv", true }, { "workthings.de", true }, + { "workupapp.com", true }, { "workwithgo.com", false }, { "world-education-association.org", true }, { "world-in-my-eyes.com", true }, @@ -74602,21 +77396,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "worlddeafarchitecture.com", true }, { "worldessays.com", true }, { "worldeventscalendars.com", true }, + { "worldfoodfestival.nl", true }, + { "worldhairtrends.com", true }, { "worldix.ml", true }, { "worldmeetings.com", true }, - { "worldmeteo.info", true }, { "worldofarganoil.com", true }, { "worldofbelia.de", true }, { "worldoflegion.ml", true }, { "worldofparties.co.uk", true }, { "worldofvnc.net", true }, { "worldofwobble.co.uk", true }, - { "worldonwheels.com.au", true }, { "worldpeacetechnology.com", true }, { "worldrecipes.eu", true }, { "worldsfree4u.ga", true }, { "worldsgreatestazuredemo.com", true }, { "worldsinperil.it", true }, + { "worldsladultplace.info", true }, { "worldstone777.com", true }, { "worldsy.com", true }, { "worldtalk.de", true }, @@ -74632,6 +77427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wormpress.com", true }, { "worongarymedical.com.au", true }, { "worst.horse", false }, + { "wort-suchen.de", true }, { "wort.lu", true }, { "worthygo.com", true }, { "woshiluo.com", true }, @@ -74647,7 +77443,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "woudenberg.nl", false }, { "woudenbergsedrukkerij.nl", true }, { "wound-doc.co.uk", true }, - { "wouterbruijning.nl", true }, { "woutergeraedts.nl", true }, { "wouterslop.com", true }, { "wouterslop.eu", true }, @@ -74657,6 +77452,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wow-screenshots.net", true }, { "wowaffixes.info", true }, { "wowbouncycastles.co.uk", true }, + { "wowede.com", true }, { "wowgenial.com", true }, { "wowhelp.it", true }, { "wowi-ffo.de", true }, @@ -74670,12 +77466,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wozalapha.com", true }, { "wp-cloud.fi", false }, { "wp-fastsearch.de", true }, - { "wp-france.com", true }, { "wp-master.org", true }, { "wp-mix.com", true }, { "wp-securehosting.com", true }, - { "wp-site1.com", true }, - { "wp-site2.com", true }, { "wp-stack.pro", true }, { "wp-tao.com", true }, { "wp-webagentur.de", true }, @@ -74683,15 +77476,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpandup.org", true }, { "wpbeter.nl", true }, { "wpboot.com", true }, - { "wpbox.cc", true }, - { "wpcanban.com", false }, + { "wpcanban.com", true }, { "wpcc.io", true }, { "wpccu-cdn.org", true }, { "wpcdn.bid", true }, { "wpcheck.io", true }, { "wpcs.pro", true }, + { "wpdivitheme.nl", true }, { "wpdublin.com", true }, - { "wpenhance.com", true }, { "wpexplorer.com", true }, { "wpfast.net", true }, { "wpformation.com", true }, @@ -74701,10 +77493,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wphlive.tv", true }, { "wphosting.ovh", true }, { "wphostingblog.nl", true }, + { "wpinter.com", true }, + { "wpjakarta.com", true }, { "wpldn.uk", true }, { "wplibrary.net", true }, { "wplistings.pro", true }, { "wpmeetup-berlin.de", true }, + { "wpml.org", true }, { "wpmu-tutorials.de", true }, { "wpno.com", false }, { "wpnuvem.com", true }, @@ -74721,6 +77516,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wpsnelheid.nl", true }, { "wpsono.com", true }, { "wpthaiuser.com", true }, + { "wpthemearchive.com", true }, { "wptorium.com", true }, { "wptotal.com", true }, { "wpwebshop.com", true }, @@ -74741,7 +77537,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wristreview.com", true }, { "write-right.net", true }, { "writeandedit-for-you.com", true }, - { "writecustomessay.com", true }, { "writemyessay.today", true }, { "writemyessays.com", true }, { "writemyestimate.com", true }, @@ -74759,15 +77554,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "writtit.com", true }, { "wrmea.org", true }, { "wromeapp.com", true }, + { "wrong.wang", true }, { "wrongware.cz", true }, + { "wrozbyonline.pl", true }, { "wrp-timber-mouldings.co.uk", true }, { "wrp.gov", true }, - { "wryoutube.com", true }, { "ws159.com", true }, { "wsa.poznan.pl", true }, { "wsadek.ovh", true }, { "wsave.be", true }, { "wsb-immo.at", true }, + { "wsb-immobilien.at", true }, { "wsb.pl", true }, { "wsbhvac.com", true }, { "wscales.com", false }, @@ -74781,8 +77578,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wsl.sh", true }, { "wsldp.com", true }, { "wso01.com", true }, + { "wsp-center.com", true }, { "wss.com.ve", true }, - { "wsspalluto.de", true }, { "wssv.ch", true }, { "wstudio.ch", false }, { "wstx.com", true }, @@ -74790,7 +77587,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wsyy.info", true }, { "wt-server3.de", true }, { "wtf.ninja", true }, - { "wtfbryan.com", true }, { "wtfnope.org", true }, { "wth.in", true }, { "wtp.co.jp", true }, @@ -74808,6 +77604,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wug.fun", true }, { "wug.jp", true }, { "wug.news", true }, + { "wuifan.com", true }, { "wuji.cz", true }, { "wulala.us", true }, { "wulfrun-invicta.tk", true }, @@ -74831,7 +77628,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wuwuwu.me", true }, { "wuxiaobai.win", true }, { "wuxiaohen.com", true }, - { "wuyang.ws", true }, { "wuyiwa.net", true }, { "wuyue.photo", true }, { "wuz.it", true }, @@ -74851,12 +77647,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ww6957.co", true }, { "ww8989.com", true }, { "ww9297.co", true }, - { "ww9397.com", true }, - { "ww9721.com", true }, { "ww9728.co", true }, { "wwbsb.xyz", true }, { "wwc.ren", true }, - { "wweforums.net", true }, + { "wweforums.net", false }, { "wweichen.com.cn", true }, { "wwgc2011.se", true }, { "wwin818.com", true }, @@ -74900,6 +77694,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.cnet.com", true }, { "www.dropbox.com", true }, { "www.dropcam.com", false }, + { "www.edu.tw", true }, { "www.entropia.de", false }, { "www.eternalgoth.co.uk", true }, { "www.etsy.com", true }, @@ -74912,6 +77707,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.getcloak.com", false }, { "www.gmail.com", false }, { "www.googlemail.com", false }, + { "www.gov.pl", true }, { "www.gov.uk", false }, { "www.govt.nz", true }, { "www.grc.com", false }, @@ -74919,7 +77715,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www.heliosnet.com", true }, { "www.history.pe", true }, { "www.honeybadger.io", false }, - { "www.hyatt.com", false }, + { "www.hyatt.com", true }, { "www.icann.org", false }, { "www.irccloud.com", false }, { "www.linode.com", false }, @@ -74957,6 +77753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "www00228e.com", true }, { "www63605.com", true }, { "www68277.com", true }, + { "wwweb.be", true }, { "wwwindows.co.uk", true }, { "wwwn888.com", true }, { "wwwpheromone.com", true }, @@ -74974,7 +77771,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wxlog.cn", true }, { "wxrlab.com", true }, { "wxster.com", true }, - { "wxw.moe", true }, + { "wxw.moe", false }, { "wxxcxd88.com", true }, { "wxzm.sx", true }, { "wy188.cc", true }, @@ -74983,7 +77780,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wybar.uk", true }, { "wyckoff.pro", true }, { "wyckoff.vip", true }, - { "wycrow.com", true }, { "wyczaruj.pl", true }, { "wyday.com", true }, { "wygibanki.pl", true }, @@ -75004,10 +77800,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "wyydsb.cn", true }, { "wyydsb.com", true }, { "wyydsb.xin", true }, - { "wyzphoto.nl", false }, + { "wyzphoto.nl", true }, { "wyzwaniemilosci.com", true }, { "wzilverschoon.nl", true }, - { "wzp.ovh", true }, { "wzrd.in", true }, { "wzxaini9.com", true }, { "wzyboy.org", true }, @@ -75031,12 +77826,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x10008.com", true }, { "x13.com", true }, { "x1616.tk", true }, + { "x17.cafe", true }, { "x23.eu", false }, { "x2816.com", true }, { "x2d2.de", false }, { "x30365.com", true }, { "x3515.com", true }, - { "x3618.com", true }, + { "x3618.com", false }, { "x36533.com", true }, { "x36594.com", true }, { "x378.ch", true }, @@ -75076,13 +77872,20 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x5906.com", true }, { "x5907.com", true }, { "x5908.com", true }, + { "x59088.com", true }, { "x5910.com", true }, + { "x59288.com", true }, + { "x59388.com", true }, + { "x59488.com", true }, + { "x59588.com", true }, + { "x59688.com", true }, + { "x59788.com", true }, + { "x59888.com", true }, + { "x59988.com", true }, { "x64architecture.com", true }, - { "x668.cc", true }, { "x6729.co", true }, { "x69.biz", true }, { "x6957.co", true }, - { "x69x.net", true }, { "x6r3p2yjg1g6x7iu.myfritz.net", true }, { "x7008.com", true }, { "x7713.com", true }, @@ -75092,7 +77895,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x7785.com", true }, { "x7795.com", true }, { "x77dd.com", true }, - { "x77ee.com", true }, + { "x77ee.com", false }, { "x77hh.com", true }, { "x77jj.com", true }, { "x77kk.com", true }, @@ -75112,7 +77915,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x8155555.com", true }, { "x8166666.com", true }, { "x8177777.com", true }, - { "x81818.com", true }, { "x8188888.com", true }, { "x8199999.com", true }, { "x81bb.com", true }, @@ -75147,7 +77949,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x9297.co", true }, { "x9701.com", true }, { "x9718.com", true }, - { "x9721.com", true }, { "x9728.co", true }, { "x98d.com", true }, { "x98e.com", true }, @@ -75162,6 +77963,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "x98o.com", true }, { "x98p.com", true }, { "x98q.com", true }, + { "x98r.com", true }, { "x98s.com", true }, { "x98t.com", true }, { "x98v.com", true }, @@ -75190,6 +77992,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xahbspl.com", true }, { "xakepctbo.tk", true }, { "xalqbank-online.az", true }, + { "xamax.co.uk", true }, { "xanadu-auto.cz", true }, { "xanadu-catering.cz", true }, { "xanadu-golf.cz", true }, @@ -75202,6 +78005,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xanyl.de", true }, { "xarangallomangallo.tk", true }, { "xatr0z.org", false }, + { "xav.ie", true }, { "xaver.su", true }, { "xavier.is", true }, { "xavierdmello.com", true }, @@ -75214,12 +78018,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xb057.com", true }, { "xb058.com", true }, { "xb1001.com", true }, - { "xb115.com", true }, { "xb2002.com", true }, { "xb201.com", true }, { "xb3008.com", true }, { "xb306.com", true }, - { "xb3636.com", true }, { "xb380.com", true }, { "xb3888.com", true }, { "xb6008.com", true }, @@ -75305,6 +78107,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xbb.li", true }, { "xbc.nz", true }, { "xbdmov.com", true }, + { "xbertschy.com", true }, { "xbjt1.com", true }, { "xbjt11.com", true }, { "xbjt2.com", true }, @@ -75318,7 +78121,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xbjt666.com", true }, { "xbjt7.com", true }, { "xbjt77.com", true }, - { "xbjt9.com", true }, { "xblau.com", true }, { "xboxachievements.com", true }, { "xboxdownloadthat.com", true }, @@ -75358,12 +78160,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xbyl91.com", true }, { "xc9988.cc", true }, { "xceedgaming.com", true }, - { "xcentricmold.com", true }, { "xchangeinfo.com", true }, { "xcharge.uk", true }, { "xcler8.com", true }, { "xclirion-support.de", true }, - { "xcmfu.com", true }, { "xcompany.one", true }, { "xcorpsolutions.com", true }, { "xcraftsumulator.ru", true }, @@ -75372,11 +78172,13 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xd.gov", true }, { "xda.im", false }, { "xdawn.cn", true }, + { "xdb.be", true }, { "xdeftor.com", true }, { "xdos.io", true }, { "xdown.org", true }, { "xdtag.com", true }, { "xdty.org", true }, + { "xebeche.nl", false }, { "xecure.zone", true }, { "xecureit.com", true }, { "xeedbeam.me", true }, @@ -75385,6 +78187,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xehost.com", true }, { "xeiropraktiki.gr", true }, { "xelesante.jp", true }, + { "xemcloud.net", true }, { "xendo.net", true }, { "xenical.tk", true }, { "xenomedia.nl", true }, @@ -75397,7 +78200,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xenox-rp.ru", true }, { "xentho.net", true }, { "xentox.com", true }, - { "xenum.ua", true }, { "xeonlab.com", true }, { "xeonlab.de", true }, { "xerbo.net", false }, @@ -75413,6 +78215,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xfcy.me", true }, { "xfd3.de", true }, { "xferion.com", false }, + { "xfive.de", true }, { "xfix.pw", true }, { "xfrag-networks.com", true }, { "xfzhao.com", true }, @@ -75459,7 +78262,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xiangweiqing.co.uk", true }, { "xiangwenquan.me", true }, { "xianjianruishiyouyiyuan.com", true }, - { "xiaobude.cn", true }, { "xiaocg.xyz", true }, { "xiaohui.love", true }, { "xiaojicdn.com", true }, @@ -75471,9 +78273,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xiaomao.tk", true }, { "xiaomi.eu", true }, { "xiaomionline24.pl", true }, + { "xiaoneijun.cn", true }, + { "xiaoneimao.cn", true }, { "xiaowutou.com", true }, { "xiaoxia.li", true }, - { "xiaoyu.net", true }, { "xiashali.me", true }, { "xiaxuejin.cn", true }, { "xiazhanjian.com", false }, @@ -75487,11 +78290,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xier.ch", true }, { "xif.at", true }, { "xifrem.com", true }, + { "xigaoli.com", true }, { "xight.org", true }, + { "xignsys.com", true }, { "xilef.org", true }, { "xilegames.com", true }, { "xilo.net", true }, { "ximble.com", true }, + { "ximes.com", true }, { "xin-in.com", true }, { "xin-in.net", true }, { "xinbo010.com", true }, @@ -75610,17 +78416,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xinbo610.com", true }, { "xinbo676.com", true }, { "xinboyule.com", true }, - { "xinetwork.net", true }, + { "xinetwork.net", false }, { "xing-in.net", true }, { "xing.ml", true }, + { "xingganfuli.com", true }, { "xingyu1993.cn", true }, { "xinlandm.com", true }, { "xinnermedia.nl", true }, { "xinnixdeuren-shop.be", true }, - { "xinpujing198.com", true }, - { "xinpujing200.com", true }, - { "xinpujing518.com", true }, - { "xinpujing918.com", true }, + { "xinpujing198.com", false }, + { "xinpujing200.com", false }, + { "xinpujing518.com", false }, + { "xinpujing918.com", false }, { "xinsane.com", true }, { "xinsto.com", true }, { "xinu.xyz", true }, @@ -75628,8 +78435,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xinuspeedtest.com", true }, { "xinuurl.com", true }, { "xinxin.pl", true }, + { "xinyitour.tw", true }, + { "xiphwork.de", true }, { "xirion.net", true }, { "xiumu.org", true }, + { "xiyu.it", false }, { "xiyu.moe", false }, { "xjd.vision", true }, { "xjf6.com", true }, @@ -75672,12 +78482,15 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn-----8kcgbo2bmdgkdacthvjf.xn--p1ai", true }, { "xn----7sbabrwauchevq0ba.xn--p1ai", true }, { "xn----7sbarcdvrtr1be.org", true }, + { "xn----7sbbagp2bcfwdeee1afm.xn--p1ai", true }, { "xn----7sbbgbr0arxb4a4exa.com.ua", true }, + { "xn----7sbbq5b0a1c.com", true }, { "xn----7sbfl2alf8a.xn--p1ai", true }, { "xn----7sblrfhjjgq8g.xn--p1ai", true }, { "xn----7sbmucgqdbgwwc5e9b.xn--p1ai", true }, { "xn----8hcdn2ankm1bfq.com", true }, { "xn----9sbkdigdao0de1a8g.com", true }, + { "xn----dtbhcpoeofgcvoic1s.xn--p1ai", true }, { "xn----ncfb.ws", true }, { "xn---35-6cdk1dnenygj.xn--p1ai", true }, { "xn--0iv967ab7w.xn--rhqv96g", true }, @@ -75713,21 +78526,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--7or43h.jp", true }, { "xn--7xa.google.com", true }, { "xn--80a8aqs.biz.ua", true }, - { "xn--80aacilurl7aclgj2aw2e.xn--p1ai", true }, { "xn--80aafaxhj3c.xn--p1ai", true }, { "xn--80aanbkcescrdedmxzcl4pmc.xn--p1acf", true }, { "xn--80abwhtbgbedcy6h.com", true }, - { "xn--80accdc8alelmbe9n.xn--p1ai", true }, + { "xn--80acghh.xn--p1ai", true }, { "xn--80adb4aeode.xn--p1ai", true }, { "xn--80adbevek3air0ee9b8d.com", true }, { "xn--80adbvdjzhptl1be6j.com", true }, - { "xn--80aeczhjbkbcw0bk0h.xn--p1ai", true }, + { "xn--80aebbkaqx6at.xn--p1ai", true }, { "xn--80aejljbfwxn.xn--p1ai", true }, { "xn--80ageukloel.xn--p1ai", true }, { "xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai", true }, { "xn--80ahnefiifo0g.xn--p1ai", true }, { "xn--80aihgal0apt.xn--p1ai", true }, - { "xn--80akcnmdfaffwoxl7h.xn--p1ai", true }, { "xn--80akjfhoqm2h2a.xn--p1ai", true }, { "xn--80ancacgircb8q.xn--p1ai", true }, { "xn--80anogxed.xn--p1ai", true }, @@ -75763,6 +78574,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--brombeerblttertee-zqb.de", true }, { "xn--bucheckernl-0fb.de", true }, { "xn--c1adqibibm8i.com", true }, + { "xn--c1aehtaetb.xn--p1ai", true }, + { "xn--c5w032d4vi.xn--fiqs8s", true }, { "xn--c5w27q.ml", true }, { "xn--cck4ax91r.com", true }, { "xn--cck7f515h.com", true }, @@ -75787,6 +78600,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--dragni-g1a.de", true }, { "xn--dtursfest-72a.dk", true }, { "xn--durhre-yxa.de", true }, + { "xn--dviz-5qa.com", true }, { "xn--e--0g4aiy1b8rmfg3o.jp", true }, { "xn--e--4h4axau6ld4lna0g.com", true }, { "xn--e--ig4a4c3f6bvc5et632i.com", true }, @@ -75800,7 +78614,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--eebao6b.net", true }, { "xn--ehqw04eq6e.jp", true }, { "xn--elsignificadodesoar-c4b.com", true }, - { "xn--eo5aaa.eu.org", true }, { "xn--erban-e9b.ro", true }, { "xn--erklderbarenben-slbh.dk", true }, { "xn--et8h.cf", false }, @@ -75825,15 +78638,17 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--hfk-allgu-schwaben-stb.de", true }, { "xn--hgbk4a00a.com", true }, { "xn--hibiskusbltentee-szb.de", true }, - { "xn--hllrigl-90a.at", true }, + { "xn--hllrigl-90a.at", false }, { "xn--hmdiseoweb-y9a.com.ar", true }, { "xn--i2ru8q2qg.com", true }, { "xn--ikketenkpdet-1cb.no", true }, { "xn--imker-in-nrnberg-szb.de", true }, { "xn--int-ru8ea.xn--6qq986b3xl", true }, { "xn--internetlnen-1cb.com", true }, + { "xn--ionunica-29c.ro", true }, { "xn--irr.xn--fiqs8s", true }, { "xn--is8h6d.gq", false }, + { "xn--j1afcdm4f.xn--p1ai", true }, { "xn--j1aoca.xn--p1ai", true }, { "xn--j4h.cf", true }, { "xn--j8se.com", true }, @@ -75858,6 +78673,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--lsaupp-iua.se", true }, { "xn--lskieradio-3gb44h.pl", true }, { "xn--lt9h.cf", true }, + { "xn--lti-3qa.lv", true }, { "xn--manuela-stsser-psb.de", true }, { "xn--maracujal-77a.de", true }, { "xn--martnvillalba-zib.com", true }, @@ -75870,6 +78686,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--mgbbh2a9fub.xn--ngbc5azd", false }, { "xn--mgbmmp7eub.com", true }, { "xn--mgbpkc7fz3awhe.com", true }, + { "xn--mgbqq.com", true }, { "xn--mgbuq0c.net", true }, { "xn--mgi-qla.life", true }, { "xn--mhringen-65a.de", true }, @@ -75888,6 +78705,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--oiqt18e8e2a.eu.org", true }, { "xn--p3t555glxhnwa.com", true }, { "xn--p8j9a0d9c9a.xn--q9jyb4c", true }, + { "xn--pascal-klsch-cjb.de", true }, { "xn--pbt947am3ab71g.com", true }, { "xn--pckm3a1bi21a.com", true }, { "xn--pckqk6xk43lunk.net", true }, @@ -75935,16 +78753,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--t8jo9k1b.com", true }, { "xn--tagungssttte-usedom-owb.de", true }, { "xn--tagungssttte-zinnowitz-84b.de", true }, - { "xn--tda.ml", true }, + { "xn--tgstationen-x8a.se", true }, { "xn--thorme-6uaf.ca", true }, { "xn--tigreray-i1a.org", true }, { "xn--trdler-xxa.xyz", true }, { "xn--u8jvc1drbz972aywbk0by95ffo1aqm1c.com", true }, { "xn--u8jwd.ga", true }, { "xn--u9j0ia6hb7347cg8wavz0avb0e.com", true }, + { "xn--u9j920h4sbt5ex10f.online", true }, { "xn--u9jv84l7ea468b.com", true }, { "xn--u9jy16ncfao19mo8i.nagoya", true }, { "xn--uasacrilicas-9gb.net", true }, + { "xn--uist1idrju3i.jp", true }, { "xn--uisz44m.online", true }, { "xn--ukasik-2db.pl", true }, { "xn--underux-0za.eu", true }, @@ -75953,7 +78773,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--v6q426ishax2a.xyz", true }, { "xn--vck8crc010pu14e.biz", true }, { "xn--vck8crcu789ajtaj92eura.xyz", true }, - { "xn--wby9t.xyz", true }, + { "xn--wby9t.xyz", false }, { "xn--weidenrschen-tee-swb.de", true }, { "xn--woistdermlleimer-rzb.de", true }, { "xn--wq9h.ml", false }, @@ -75973,6 +78793,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xn--zr9h.ga", true }, { "xn--zr9h.ml", true }, { "xn--zr9h.tk", true }, + { "xn--zsr042b.fun", true }, { "xn5.de", true }, { "xnaas.info", true }, { "xnativi.pl", true }, @@ -75982,6 +78803,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xntrik.wtf", true }, { "xnu.kr", true }, { "xo.tc", true }, + { "xoan.cf", true }, { "xoda.pw", true }, { "xoffy.com", true }, { "xoh.at", true }, @@ -75994,8 +78816,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xonn.de", true }, { "xoommit.com", true }, { "xor.cat", true }, + { "xormatic.com", true }, + { "xotictrends.com", true }, { "xotika.tv", true }, - { "xotv.top", true }, { "xp-ochrona.pl", true }, { "xp.nsupdate.info", true }, { "xp2.de", true }, @@ -76006,7 +78829,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xperiacode.com", true }, { "xperidia.com", true }, { "xpertcube.com", true }, - { "xpiuat.global", true }, { "xpj000444.com", true }, { "xpj000555.com", true }, { "xpj000666.com", true }, @@ -76018,9 +78840,29 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xpj567888.com", true }, { "xpj678678.com", true }, { "xpj90.com", true }, + { "xpj909.cc", true }, + { "xpj909.com", true }, + { "xpj909.in", true }, + { "xpj909.me", true }, + { "xpj909.vip", true }, + { "xpj919.in", true }, + { "xpj919.me", true }, + { "xpj919.vip", true }, + { "xpjab.com", true }, { "xpjbeting.com", true }, + { "xpjce.com", true }, { "xpjcs.com", true }, + { "xpjcu.com", true }, + { "xpjdi.com", true }, + { "xpjei.com", true }, + { "xpjfan.com", true }, { "xpjiosapp.com", true }, + { "xpjmd.com", true }, + { "xpjtop.com", true }, + { "xpjwa.com", true }, + { "xpjwb.com", true }, + { "xpjwc.com", true }, + { "xpjwd.com", true }, { "xpletus.nl", true }, { "xpoc.pro", true }, { "xpods.sg", true }, @@ -76043,13 +78885,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xs00228.com", true }, { "xs2a.no", true }, { "xs74.com", true }, + { "xsapp.co", true }, { "xscancun.com", true }, { "xsec.me", true }, { "xserownia.com.pl", true }, { "xserownia.eu", true }, { "xserownia.net", true }, + { "xserownia.pl", true }, { "xslim.com.br", true }, { "xsmobile.de", true }, + { "xsole.net", true }, { "xss.name", true }, { "xss.sk", true }, { "xssi.uk", true }, @@ -76062,10 +78907,64 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtarget.ru", true }, { "xtips.us", true }, { "xtom.africa", true }, + { "xtom.al", true }, + { "xtom.amsterdam", true }, + { "xtom.ax", true }, + { "xtom.be", true }, + { "xtom.bg", true }, + { "xtom.by", true }, + { "xtom.ch", true }, { "xtom.chat", true }, + { "xtom.co.uk", true }, { "xtom.com", true }, + { "xtom.com.de", true }, + { "xtom.com.ee", true }, { "xtom.com.hk", true }, + { "xtom.cy", true }, + { "xtom.cz", true }, + { "xtom.de", true }, + { "xtom.dk", true }, + { "xtom.ee", true }, + { "xtom.es", true }, + { "xtom.eu", true }, + { "xtom.fi", true }, + { "xtom.fo", true }, + { "xtom.fr", true }, + { "xtom.ge", true }, + { "xtom.gg", true }, + { "xtom.gmbh", true }, + { "xtom.gr", true }, + { "xtom.hr", true }, + { "xtom.hu", true }, + { "xtom.im", true }, { "xtom.io", true }, + { "xtom.is", true }, + { "xtom.it", true }, + { "xtom.je", true }, + { "xtom.li", true }, + { "xtom.limited", true }, + { "xtom.london", true }, + { "xtom.lt", true }, + { "xtom.ltd", true }, + { "xtom.lu", true }, + { "xtom.lv", true }, + { "xtom.md", true }, + { "xtom.me", true }, + { "xtom.mk", true }, + { "xtom.moscow", true }, + { "xtom.nl", true }, + { "xtom.no", true }, + { "xtom.nu", true }, + { "xtom.paris", true }, + { "xtom.pl", true }, + { "xtom.pt", true }, + { "xtom.ro", true }, + { "xtom.ru", true }, + { "xtom.si", true }, + { "xtom.sk", true }, + { "xtom.su", true }, + { "xtom.support", true }, + { "xtom.uk", true }, { "xtom.wiki", true }, { "xtrainsights.com", true }, { "xtravans.com", true }, @@ -76074,7 +78973,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xtremebouncepartyhire.com.au", true }, { "xtremecoatingtechnologies.com", true }, { "xtremegaming.it", true }, - { "xtremeperformance.co.in", false }, + { "xtrememidlife.nl", true }, { "xtronics.com", true }, { "xts.bike", true }, { "xts3636.net", true }, @@ -76091,10 +78990,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xuehao.net.cn", true }, { "xuehao.tech", true }, { "xuehuang666.cn", true }, + { "xuexi.icu", true }, { "xujan.com", true }, { "xuming.studio", true }, { "xun3708855.com", true }, - { "xunleiyy.com", true }, { "xunn.io", true }, { "xuntaosms.com", true }, { "xuntier.ch", true }, @@ -76123,6 +79022,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xxxoopz.com", true }, { "xxxred.net", true }, { "xxxsuper.net", true }, + { "xxxuno.com", true }, { "xy1919.com", true }, { "xy366.cc", true }, { "xy369.cc", true }, @@ -76137,6 +79037,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "xybabyshop.com", true }, { "xyenon.bid", true }, { "xyfun.net", false }, + { "xyj22.com", true }, { "xylerfox.ca", true }, { "xyloefarmoges.gr", true }, { "xyndrac.net", false }, @@ -76191,6 +79092,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "y36500.com", true }, { "y3651.com", true }, { "y36511.com", true }, + { "y365188.com", true }, { "y3653.com", true }, { "y36533.com", true }, { "y3654.com", true }, @@ -76314,6 +79216,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yabuisha.jp", true }, { "yachigoya.com", true }, { "yachta.kiev.ua", true }, + { "yachtcita.com", true }, { "yachtfolio.com", true }, { "yachtfolio1.com", true }, { "yachting-home.com", true }, @@ -76329,6 +79232,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yagoda-malina.tk", true }, { "yahan.tv", true }, { "yaharu.ru", true }, + { "yahav.co.il", true }, { "yahoo.ax", true }, { "yahvehyireh.com", true }, { "yak-host.tk", true }, @@ -76338,6 +79242,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yakmail.tech", true }, { "yakmoo.se", true }, { "yal.sh", true }, + { "yalacoins.com", true }, { "yalcinkaya.ninja", false }, { "yalecleaners.com", true }, { "yallamotor.com", true }, @@ -76364,7 +79269,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yamilafeinart.de", true }, { "yamm.io", true }, { "yan.lt", true }, - { "yan68d88vip.com", true }, { "yana-co.ir", true }, { "yanaduday.com", true }, { "yanbao.xyz", true }, @@ -76376,8 +79280,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yangmaodang.org", true }, { "yangmi.blog", true }, { "yangruixin.com", true }, - { "yangshangzhen.com", true }, { "yanik.info", true }, + { "yanjicg.com", true }, { "yann.tw", true }, { "yanngraf.ch", false }, { "yanngraf.com", false }, @@ -76435,13 +79339,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yarcom.ru", false }, { "yardesign.tk", true }, { "yardley.digital", true }, + { "yarnsub.com", true }, { "yarogneva.ru", true }, { "yarravilletownhouses.com.au", true }, { "yaru.one", true }, { "yaseminuzumcu.com", true }, { "yashik.tv", true }, { "yashinstore.com", true }, + { "yasic.net", true }, { "yassine-ayari.com", true }, + { "yatai18.com", true }, { "yatesun.com", true }, { "yatorie.net", true }, { "yatstudios.com", true }, @@ -76457,6 +79364,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yay.cam", true }, { "yayart.club", true }, { "yayl888.com", true }, + { "yayou.ag", true }, { "ybdh88.com", true }, { "ybin.me", true }, { "ybos.nl", true }, @@ -76496,6 +79404,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yellowstone.nsupdate.info", true }, { "yellowtaillasvegas.com", true }, { "yellowtree.co.za", true }, + { "yellsy.com", true }, { "yelon.hu", true }, { "yelp.at", true }, { "yelp.be", true }, @@ -76539,7 +79448,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yenpape.com", true }, { "yep-pro.ch", false }, { "yepbitcoin.com", true }, - { "yephy.com", false }, + { "yephy.com", true }, { "yepmom.com", false }, { "yeptechnology.store", true }, { "yerbasbuenas.tk", true }, @@ -76616,7 +79525,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yinglinda.love", true }, { "yingyj.com", true }, { "yinlei.org", true }, - { "yinulo.com", true }, { "yipingguo.com", true }, { "yiyuanzhong.com", true }, { "yiyueread.com", true }, @@ -76625,7 +79533,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yjst.cn", true }, { "yjsw.sh.cn", true }, { "ykhut.com", true }, - { "ykkme.com", true }, { "ykn.fr", true }, { "ykqpw.com", true }, { "yksityisyydensuoja.fi", true }, @@ -76633,6 +79540,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yl369.cc", true }, { "yl8.com", true }, { "ylde.de", true }, + { "ylilauta.org", true }, { "ylinternal.com", true }, { "ylk.io", true }, { "ym039.com", true }, @@ -76661,6 +79569,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ymoah.nl", true }, { "ymtsonline.org", true }, { "ymvip8.com", true }, + { "yn.org.nz", true }, { "ynnovasport.be", true }, { "ynode.com", true }, { "yoa.st", true }, @@ -76698,6 +79607,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yohanesmario.com", true }, { "yoitoko.city", true }, { "yoitsu.moe", true }, + { "yokoda.okinawa", true }, { "yokohama-legaloffice.jp", true }, { "yokone3-kutikomi.com", true }, { "yolandgao.me", true }, @@ -76715,6 +79625,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yon.co.il", true }, { "yonema.com", true }, { "yongbin.org", true }, + { "yoogirls.com", true }, { "yoonas.com", true }, { "yooomu.com", true }, { "yooooex.com", true }, @@ -76745,13 +79656,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yotta-zetta.com", true }, { "yotubaiotona.net", true }, { "you2you.fr", true }, - { "youareme.ca", true }, { "youber.cz", true }, { "youc.ir", true }, { "youcanfuckoff.xyz", true }, { "youcanhelp.tk", true }, { "youcanmakeit.at", true }, - { "youcruit.com", true }, { "youdamom.com", true }, { "youdungoofd.com", true }, { "youftp.tk", true }, @@ -76759,6 +79668,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yougot.pw", true }, { "youhacked.me", true }, { "youhavewords.com", true }, + { "youhs.top", true }, { "youhua.ru", true }, { "youjizz.bz", true }, { "youkaryote.com", true }, @@ -76805,12 +79715,14 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourbodyknows.dk", true }, { "yourbodyknows.is", true }, { "yourbonus.click", true }, + { "yourbusinesscommunity.co.uk", true }, { "yourcareerhost.com", true }, { "yourciso.com", true }, { "yourcleaningcompany.net", true }, { "yourconscious.life", true }, { "yourcopywriter.it", true }, { "yourdailyalerts.net", true }, + { "yourdomain.host", false }, { "youreallyneedthis.co", true }, { "youregeeks.com", true }, { "youreward.ga", true }, @@ -76820,7 +79732,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourfuturestrategy.com.au", true }, { "yourgadget.ro", true }, { "yourgames.tv", true }, - { "youri.me", true }, + { "yourhair.net", true }, + { "yourikeakitcheninstaller.com", true }, { "yourkrabivilla.com", true }, { "yourlanguages.de", true }, { "yourloan.gq", true }, @@ -76828,6 +79741,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourmagicstory.tk", true }, { "yourname.xyz", true }, { "yourneighborhub.com", true }, + { "youronly.one", true }, + { "yourpalmbeachcountyrealtor.com", true }, { "yourpersonalfrance.com", true }, { "yourpocketbook.uk", true }, { "yourscotlandtour.co.uk", true }, @@ -76838,6 +79753,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yourticketbooking.com", true }, { "yourtime.tv", true }, { "youruseragent.info", true }, + { "yourwatchdesign.co.uk", true }, { "yourznc.com", true }, { "yousei.ne.jp", true }, { "youshouldbealiberal.com", true }, @@ -76867,18 +79783,31 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yqjf68.com", true }, { "yr166166.com", true }, { "yr8.com", true }, - { "yrjanheikki.com", true }, + { "yrcc878.com", true }, { "yrx.me", true }, { "yryz.net", true }, { "ys633.cc", true }, { "ys6888.cc", true }, - { "ysicing.net", true }, { "ysicorp.com", true }, { "yslbeauty.com", true }, { "yspa.tv", true }, { "ystream.tv", true }, { "ysun.xyz", true }, { "ysuna.xyz", true }, + { "yt220.com", true }, + { "yt605.com", true }, + { "yt606.com", true }, + { "yt629.com", true }, + { "yt653.com", true }, + { "yt656.com", true }, + { "yt675.com", true }, + { "yt818.com", true }, + { "yt835.com", true }, + { "yt839.com", true }, + { "yt881.com", true }, + { "yt892.com", true }, + { "yt962.com", true }, + { "yt972.com", true }, { "ytcount.com", true }, { "ytec.ca", true }, { "ytpak.pk", true }, @@ -76886,12 +79815,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "ytsdownload.com", true }, { "ytuquelees.net", true }, { "ytx588.com", true }, - { "yu.vc", true }, + { "yu-mug.jp", true }, { "yuan.ga", false }, { "yuan.nctu.me", true }, - { "yuanbaohd.com", true }, { "yuanben.io", true }, - { "yuanbenlian.com", true }, { "yuandan.ml", true }, { "yuanjiazhao.com", true }, { "yuanjiazhao.tk", true }, @@ -76952,12 +79879,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yubikeyservices.eu", true }, { "yubiking.com", true }, { "yuce518.com", true }, - { "yude.ml", true }, { "yue.la", true }, { "yue2.net", true }, { "yuema.net.cn", true }, { "yuer.sytes.net", true }, { "yuexiangzs.com", true }, + { "yugami-lab.com", true }, { "yugasun.com", true }, { "yugege.cf", true }, { "yugodi.com", true }, @@ -76968,7 +79895,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yuisyo.ml", true }, { "yuka.one", true }, { "yukari.cafe", true }, - { "yukari.cloud", true }, { "yukbeli.id", true }, { "yuki-nagato.com", true }, { "yuki.xyz", true }, @@ -76982,9 +79908,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yukonlip.com", true }, { "yukontec.com", true }, { "yukoslibrary.ga", true }, + { "yukozimo.com", true }, { "yulaiz.com", true }, + { "yule.hk", true }, { "yuleyule88game.com", true }, - { "yulliaschool.co.il", true }, + { "yulsn.com", true }, { "yum.beer", true }, { "yum0.cn", true }, { "yumeconcert.com", true }, @@ -76999,7 +79927,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yunity.org", true }, { "yunjishou.pro", true }, { "yunloc.com", true }, - { "yunsoupian.vip", true }, { "yuntong.tw", false }, { "yunzhu.li", false }, { "yuqi.me", true }, @@ -77010,7 +79937,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yurinet.org", true }, { "yurisviridov.com", true }, { "yusa.me", true }, - { "yushi.moe", true }, { "yusu.org", true }, { "yusukesakai.com", true }, { "yutakato.net", true }, @@ -77043,6 +79969,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yvonnethomet.ch", true }, { "yvonnewilhelmi.com", true }, { "ywyz.tech", true }, + { "yxbet43.com", true }, { "yxt521.com", true }, { "yxzero.xyz", true }, { "yy-s.net", true }, @@ -77064,7 +79991,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "yya.men", true }, { "yyc.city", true }, { "yycbike.info", true }, - { "yyffqq.tk", true }, + { "yyr.im", true }, { "yyrss.com", false }, { "yyy116.com", true }, { "yyy608.com", true }, @@ -77082,6 +80009,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z-konzept-nutrition.ru", true }, { "z-vector.com", true }, { "z.ai", true }, + { "z.tl", true }, { "z00228.com", true }, { "z0rro.net", true }, { "z1.ag", true }, @@ -77089,10 +80017,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z1h.de", true }, { "z2.ag", true }, { "z30365.com", true }, - { "z33d.xyz", true }, { "z36533.com", true }, { "z36594.com", true }, { "z3u5.net", true }, + { "z4-forum.com", true }, { "z4.ag", true }, { "z5.ag", true }, { "z5197.co", true }, @@ -77172,6 +80100,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z6912.com", true }, { "z6925.com", true }, { "z6957.co", true }, + { "z6wang.com", true }, { "z7.ag", true }, { "z8.ag", true }, { "z8010.com", true }, @@ -77272,7 +80201,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "z8177.com", true }, { "z8178.com", true }, { "z8179.com", true }, - { "z81818.com", true }, { "z8182.com", true }, { "z8187.com", true }, { "z8190.com", true }, @@ -77357,7 +80285,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zabbix.tips", true }, { "zabszk.net", true }, { "zabukovnik.net", true }, - { "zacadam.com", true }, { "zacarias.com.ar", true }, { "zacchaeus.co.uk", true }, { "zacco.site", true }, @@ -77391,7 +80318,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zahnarzt-duempten.de", true }, { "zahnarzt-hofer.de", true }, { "zahnarzt-kramer.ch", true }, - { "zahnarztpraxis-rusch.de", true }, { "zahnmedizinzentrum.com", true }, { "zahrowski.com", true }, { "zaidan.de", true }, @@ -77455,17 +80381,21 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zanzo.cz", true }, { "zaoext.com", true }, { "zap-mag.ru", true }, + { "zapier.com", true }, { "zapmaster14.com", true }, { "zappbuildapps.com", true }, { "zappingarahal.tk", true }, { "zapreaders.cf", true }, + { "zaprefy.com", true }, { "zarabiaj.com", true }, { "zaracraft.tk", true }, { "zaratan.fr", false }, { "zaraweb.net", true }, { "zarbis.tk", true }, + { "zarfinakber.com", true }, { "zargescases.co.uk", true }, { "zaruhi.ml", true }, + { "zary.me", true }, { "zatsepin.by", true }, { "zaufanatrzeciastrona.pl", true }, { "zavec.com.ec", false }, @@ -77497,6 +80427,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd0505.com", true }, { "zd0606.com", true }, { "zd0808.com", true }, + { "zd1010.com", true }, { "zd1313.com", true }, { "zd1515.com", true }, { "zd1616.com", true }, @@ -77513,6 +80444,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd236.com", true }, { "zd237.com", true }, { "zd239.com", true }, + { "zd2424.com", true }, { "zd252.com", true }, { "zd253.com", true }, { "zd257.com", true }, @@ -77546,10 +80478,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd3434.com", true }, { "zd3535.com", true }, { "zd3939.com", true }, + { "zd4646.com", true }, { "zd4747.com", true }, { "zd4848.com", true }, { "zd5050.com", true }, { "zd5252.com", true }, + { "zd5353.com", true }, { "zd6.ag", true }, { "zd6161.com", true }, { "zd623.com", true }, @@ -77597,6 +80531,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd732.com", true }, { "zd735.com", true }, { "zd736.com", true }, + { "zd7373.com", true }, { "zd739.com", true }, { "zd7474.com", true }, { "zd752.com", true }, @@ -77640,6 +80575,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zd8858.com", true }, { "zd8859.com", true }, { "zd8863.com", true }, + { "zd8865.com", true }, { "zd8869.com", true }, { "zd8878.com", true }, { "zd8882.com", true }, @@ -77659,6 +80595,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zdravotnikurzy.cz", true }, { "zdrojak.cz", true }, { "zdymak.by", true }, + { "ze-com.com", true }, { "ze3kr.com", true }, { "zeadaniel.com", true }, { "zeal-and.jp", true }, @@ -77668,7 +80605,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zeb.fun", true }, { "zebbra.ro", true }, { "zebranolemagicien.net", true }, - { "zeckenhilfe.de", true }, + { "zeckenhilfe.de", false }, { "zecuur.nl", true }, { "zedeko.pl", true }, { "zeds-official.com", true }, @@ -77684,7 +80621,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zehrailkeakyildiz.com", false }, { "zeibekiko-souvlaki.gr", true }, { "zeidlertechnik.de", true }, + { "zeihsel.com", true }, { "zeilenmethans.nl", true }, + { "zeilenvoorondernemers.nl", true }, { "zeilenwind.com", true }, { "zeilles.nu", true }, { "zeit.co", true }, @@ -77719,8 +80658,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zenlogic.com", true }, { "zenluxuryliving.com", true }, { "zenmate.com.tr", true }, + { "zenmod.in.rs", true }, { "zeno-dev.com", true }, { "zenofa.co.id", true }, + { "zenown.com", true }, { "zenti.cloud", true }, { "zentraler-kreditausschuss.de", true }, { "zentrumfuerchemie.de", true }, @@ -77737,6 +80678,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zepter.gq", true }, { "zer0-day.pw", true }, { "zer0.de", false }, + { "zercutie.com", true }, { "zermatterhof.ch", true }, { "zero-knigi.ml", true }, { "zero-sum.xyz", true }, @@ -77759,8 +80701,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zerossl.com", true }, { "zerosync.com", true }, { "zerotoone.de", true }, - { "zerowastesavvy.com", true }, { "zerowastesonoma.gov", true }, + { "zerox-security.online", true }, { "zertif.info", true }, { "zertitude.com", true }, { "zeryn.net", true }, @@ -77788,6 +80730,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zfly.me", true }, { "zfo.gg", false }, { "zfree.co.nz", true }, + { "zfxhzc.blog", true }, { "zfyl8.com", true }, { "zg-dyw.net", true }, { "zgan.ga", true }, @@ -77795,6 +80738,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zgrep.org", true }, { "zh.search.yahoo.com", false }, { "zhabababa.gq", true }, + { "zhainanyouhuo.com", true }, { "zhan.moe", true }, { "zhang-hao.com", true }, { "zhang.fm", true }, @@ -77802,6 +80746,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhang.nz", true }, { "zhangcheng.org", true }, { "zhangfangzhou.com", true }, + { "zhangge.net", true }, { "zhanghao.me", true }, { "zhanghao.org", true }, { "zhangheda.cf", true }, @@ -77823,15 +80768,16 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhendre.com", true }, { "zhenggangzhao.org", true }, { "zhengjie.com", true }, - { "zhengouwu.com", true }, { "zhengqiangonglue.com", true }, { "zhengzihan.com", true }, { "zhenic.ir", true }, + { "zhenn.fr", true }, { "zhenyan.org", true }, { "zhestokiemechtyi.tk", true }, { "zhi.ci", true }, { "zhih.me", true }, { "zhihe.in", true }, + { "zhihua-lai.com", true }, { "zhiin.net", true }, { "zhikin.com", true }, { "zhiku8.com", true }, @@ -77839,7 +80785,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhimajk.com", true }, { "zhimingwang.org", true }, { "zhina.org", true }, - { "zhina.wiki", true }, { "zhis.eu", true }, { "zhis.ltd", true }, { "zhitanska.com", true }, @@ -77852,7 +80797,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhongxigo.com", true }, { "zhongzicili.ws", true }, { "zhost.io", true }, - { "zhou28d88vip.com", true }, { "zhouba.cz", true }, { "zhoujiashu.com", true }, { "zhoushuo.me", false }, @@ -77869,6 +80813,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zhy.us", true }, { "zi.is", true }, { "zi5.net", true }, + { "zidanpainting.com", true }, { "ziegler-heizung-frankfurt.de", true }, { "zielonakarta.com", true }, { "ziemlich-zackig.de", true }, @@ -77881,10 +80826,12 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zigottos.fr", true }, { "zigzagmart.com", true }, { "zihao.me", false }, + { "zihari.com", true }, { "zihun.club", true }, { "zii.bz", true }, { "ziin.de", true }, { "zijemvedu.sk", true }, + { "zijinbor.com", true }, { "zijung.me", true }, { "zikinf.com", true }, { "zikirakhirzaman.com", true }, @@ -77893,6 +80840,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zilon.com.co", true }, { "zilore.com", true }, { "zilsen.com", true }, + { "zilv.life", true }, { "zima.io", true }, { "zimaoxy.com", true }, { "zimiao.moe", true }, @@ -77900,6 +80848,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zimtoel.de", true }, { "zinabnews.tk", true }, { "zinchenko.gq", true }, + { "zindaa.mn", true }, { "zindan.tk", true }, { "zindec.com", true }, { "zingarastore.com", true }, @@ -77914,6 +80863,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zionnationalpark.net", true }, { "zionsvillelocksmiths.com", true }, { "zionvps.com", false }, + { "zipextractor.com", true }, { "zipfworks.com", true }, { "zipkey.de", true }, { "ziqijiang.com", false }, @@ -77938,7 +80888,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zivyruzenec.cz", true }, { "zixiao.wang", true }, { "zixin.com", true }, - { "zixo.sk", true }, { "ziz.exchange", false }, { "zizcollections.com", true }, { "zizibook.ml", true }, @@ -77952,8 +80901,10 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zk.gd", true }, { "zk9.nl", true }, { "zkd.me", true }, + { "zklcdc.top", true }, { "zklokotskehory.cz", true }, { "zkontrolujsiauto.cz", true }, + { "zkwolf.top", true }, { "zkzone.net", true }, { "zl-19.com", true }, { "zl-29.com", true }, @@ -77987,8 +80938,11 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl1010.com", true }, { "zl1038.com", true }, { "zl1212.com", true }, + { "zl1515.com", true }, { "zl1616.com", true }, { "zl16h.com", true }, + { "zl178.vip", true }, + { "zl187.vip", true }, { "zl200.vip", true }, { "zl2020.com", true }, { "zl2020.vip", true }, @@ -78010,16 +80964,22 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl3737.com", true }, { "zl3782.com", true }, { "zl3838.com", true }, + { "zl3939.com", true }, + { "zl4040.com", true }, { "zl4231.com", true }, { "zl4290.com", true }, { "zl4454.com", true }, { "zl4538.com", true }, + { "zl500.vip", true }, { "zl5050.com", true }, { "zl5151.com", true }, { "zl5656.com", true }, + { "zl5757.com", true }, { "zl6.ag", true }, + { "zl600.vip", true }, { "zl6060.com", true }, { "zl6161.com", true }, + { "zl6262.com", true }, { "zl6363.com", true }, { "zl638.com", true }, { "zl6464.com", true }, @@ -78031,18 +80991,23 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl6868.com", true }, { "zl6969.com", true }, { "zl6xw.com", true }, + { "zl700.vip", true }, { "zl7070.com", true }, + { "zl7077.com", true }, { "zl7171.com", true }, { "zl7272.com", true }, { "zl7373.com", true }, { "zl738.com", true }, { "zl7393.com", true }, + { "zl7575.com", true }, { "zl760.com", true }, { "zl7615.com", true }, { "zl7979.com", true }, { "zl8.ag", true }, + { "zl800.vip", true }, { "zl8181.com", true }, { "zl8282.com", true }, + { "zl8383.com", true }, { "zl8484.com", true }, { "zl850.com", true }, { "zl8585.com", true }, @@ -78070,6 +81035,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zl9191.com", true }, { "zl9292.com", true }, { "zl9372.com", true }, + { "zl9393.com", true }, { "zl969.com", true }, { "zl9696.com", true }, { "zl9797.com", true }, @@ -78081,22 +81047,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zlatan-ibrahimovic.tk", true }, { "zlatom.ru", true }, { "zlatosnadno.cz", true }, - { "zlaty-tyden.cz", true }, - { "zlatytyden.cz", true }, { "zlavomat.sk", true }, - { "zlc1994.com", true }, { "zlf8h.com", true }, { "zlhgc.com", true }, { "zlhuodong.vip", true }, { "zlima12.com", true }, { "zllpa.com", true }, { "zlogic.xyz", true }, - { "zlol.lg.ua", true }, { "zlong6.com", true }, { "zlong6.net", true }, { "zlong8.net", true }, { "zlong888.com", true }, { "zlong888.net", true }, + { "zlonov.ru", true }, { "zlotykameleon.tk", true }, { "zloybot.tk", true }, { "zls9p.com", true }, @@ -78122,6 +81085,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "znanie-sila.tk", true }, { "znanje.gq", true }, { "znation.nl", true }, + { "znbr.com", true }, { "znd.jp", true }, { "zngay.com", true }, { "znhglobalresources.com", true }, @@ -78141,17 +81105,19 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zodiacohouses.com", true }, { "zodian-research.ro", true }, { "zoedale.co.uk", true }, - { "zoeller.me", true }, { "zoepolitics.cf", true }, { "zof.kh.ua", true }, { "zofran-medication.cf", true }, { "zofrancost.ga", true }, { "zofranprice.ga", true }, { "zofrex.com", false }, + { "zoftbaby.com", true }, + { "zohair.xyz", true }, { "zohar.wang", true }, - { "zoi.jp", true }, + { "zohra.ninja", true }, { "zoigl.club", true }, { "zoisfinefood.com", true }, + { "zoisfinefood.fr", true }, { "zojadravai.com", true }, { "zok-ambicija.tk", true }, { "zoki.art", true }, @@ -78162,15 +81128,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zoloftpills.tk", true }, { "zoloftprice.cf", true }, { "zolokar.xyz", true }, + { "zolotoy-standart.com.ua", true }, { "zolushka-1950.tk", true }, { "zom.bi", true }, { "zombie-40th.com", true }, + { "zombie.cam", true }, { "zombiesecured.com", true }, { "zombmage.tk", true }, { "zomerschoen.nl", true }, { "zomiac.pp.ua", true }, { "zonadigital.co", true }, { "zonaperu.tk", true }, + { "zondervanacademic.com", true }, { "zone-de-confiance.fr", true }, { "zone39.com", true }, { "zonecb.com", true }, @@ -78184,7 +81153,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zonky.de", true }, { "zonkysetkani.cz", true }, { "zontractors.com", true }, - { "zoo.city", true }, { "zooforum.tk", true }, { "zoohaus.de", true }, { "zooish.net", true }, @@ -78195,6 +81163,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zoom.earth", true }, { "zoomcar.pro", true }, { "zoomek.com", true }, + { "zoomteb.ir", true }, { "zooom.azurewebsites.net", true }, { "zooom2.azurewebsites.net", true }, { "zoop.ml", false }, @@ -78233,7 +81202,8 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zravypapir.cz", true }, { "zrhdwz.cn", true }, { "zrinski.tk", true }, - { "zrkr.de", false }, + { "zrkhosting.com", true }, + { "zrkr.de", true }, { "zrn.in", false }, { "zrniecka-pre-sny.sk", true }, { "zrnieckapresny.sk", true }, @@ -78243,6 +81213,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zs6688.cc", true }, { "zscales.com", false }, { "zselicivt.hu", true }, + { "zserver.fr", true }, { "zskomenskeho.cz", true }, { "zskomenskeho.eu", true }, { "zsoltbereczki.tk", true }, @@ -78251,7 +81222,9 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zsq.im", true }, { "zsrbcs.com", true }, { "zstgmnachod.cz", true }, + { "zsyaolong.com", true }, { "zten.org", true }, + { "ztickerz.nl", true }, { "ztk.im", true }, { "ztsns.com", true }, { "zuan-in.com", true }, @@ -78263,7 +81236,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zubro.net", true }, { "zudomc.me", true }, { "zuehlcke.de", true }, - { "zuenkov.com", true }, { "zug-anwalt.de", false }, { "zugfahrplan.com", true }, { "zughilfen-test.de", true }, @@ -78271,6 +81243,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuiacg.com", true }, { "zuim.de", true }, { "zuitaotu.com", true }, + { "zuiverjegeest.nl", true }, { "zukix.com", true }, { "zula.africa", true }, { "zulu.ro", true }, @@ -78278,6 +81251,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zum-ziegenhainer.de", true }, { "zumazar.ru", true }, { "zumberak.tk", true }, + { "zumtaedanceschool.co.za", true }, { "zumub.com", true }, { "zund-app.com", true }, { "zundapp.one", true }, @@ -78288,14 +81262,18 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zuolan.me", false }, { "zup.me", true }, { "zupago.pe", true }, + { "zupit.it", true }, { "zuppy.pm", true }, { "zupzup.org", true }, { "zuralski.net", true }, { "zurgl.com", false }, { "zurlin.de", true }, { "zusjesvandenbos.nl", true }, + { "zusterjansen.nl", true }, { "zuviel.space", true }, + { "zuzannastrycharska.pl", true }, { "zuzumba.es", true }, + { "zvejonys.lt", true }, { "zverskij-site.tk", true }, { "zvps.uk", true }, { "zvxr.net", true }, @@ -78304,7 +81282,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zwergenfeste.ch", true }, { "zwergenfreiheit.at", true }, { "zwerimex.com", true }, - { "zwierslanguagetraining.nl", true }, + { "zwilla.de", true }, { "zwk.de", true }, { "zwollemag.nl", true }, { "zwollemagazine.nl", true }, @@ -78335,7 +81313,6 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zyria.de", true }, { "zyrillezuno.com", true }, { "zyul.ddns.net", true }, - { "zyx.im", false }, { "zyzardx.com", true }, { "zyzsdy.com", true }, { "zz017.com", true }, @@ -78346,6 +81323,7 @@ static const nsSTSPreload kSTSPreloadList[] = { { "zz6729.co", true }, { "zz6729.com", true }, { "zz6957.co", true }, + { "zz772.com", true }, { "zz9297.co", true }, { "zz9397.com", true }, { "zz9721.com", true }, diff --git a/security/nss/lib/ckfw/builtins/certdata.txt b/security/nss/lib/ckfw/builtins/certdata.txt index 5b9d679d1..61ce1dee6 100644 --- a/security/nss/lib/ckfw/builtins/certdata.txt +++ b/security/nss/lib/ckfw/builtins/certdata.txt @@ -13,21 +13,19 @@ # # Certificates # -# -- Attribute -- -- type -- -- value -- -# CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -# CKA_TOKEN CK_BBOOL CK_TRUE -# CKA_PRIVATE CK_BBOOL CK_FALSE -# CKA_MODIFIABLE CK_BBOOL CK_FALSE -# CKA_LABEL UTF8 (varies) -# CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -# CKA_SUBJECT DER+base64 (varies) -# CKA_ID byte array (varies) -# CKA_ISSUER DER+base64 (varies) -# CKA_SERIAL_NUMBER DER+base64 (varies) -# CKA_VALUE DER+base64 (varies) -# CKA_NSS_EMAIL ASCII7 (unused here) -# CKA_NSS_SERVER_DISTRUST_AFTER DER+base64 (varies) -# CKA_NSS_EMAIL_DISTRUST_AFTER DER+base64 (varies) +# -- Attribute -- -- type -- -- value -- +# CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +# CKA_TOKEN CK_BBOOL CK_TRUE +# CKA_PRIVATE CK_BBOOL CK_FALSE +# CKA_MODIFIABLE CK_BBOOL CK_FALSE +# CKA_LABEL UTF8 (varies) +# CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +# CKA_SUBJECT DER+base64 (varies) +# CKA_ID byte array (varies) +# CKA_ISSUER DER+base64 (varies) +# CKA_SERIAL_NUMBER DER+base64 (varies) +# CKA_VALUE DER+base64 (varies) +# CKA_NSS_EMAIL ASCII7 (unused here) # # Trust # @@ -166,8 +164,6 @@ CKA_VALUE MULTILINE_OCTAL \125\342\374\110\311\051\046\151\340 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GlobalSign Root CA" # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE @@ -302,8 +298,6 @@ CKA_VALUE MULTILINE_OCTAL \152\374\176\102\070\100\144\022\367\236\201\341\223\056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GlobalSign Root CA - R2" # Issuer: CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R2 @@ -460,8 +454,6 @@ CKA_VALUE MULTILINE_OCTAL \113\336\006\226\161\054\362\333\266\037\244\357\077\356 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Verisign Class 1 Public Primary Certification Authority - G3" # Issuer: CN=VeriSign Class 1 Public Primary Certification Authority - G3,OU="(c) 1999 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -627,8 +619,6 @@ CKA_VALUE MULTILINE_OCTAL \311\130\020\371\252\357\132\266\317\113\113\337\052 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Verisign Class 2 Public Primary Certification Authority - G3" # Issuer: CN=VeriSign Class 2 Public Primary Certification Authority - G3,OU="(c) 1999 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -794,8 +784,6 @@ CKA_VALUE MULTILINE_OCTAL \153\271\012\172\116\117\113\204\356\113\361\175\335\021 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Verisign Class 3 Public Primary Certification Authority - G3" # Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G3,OU="(c) 1999 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -1071,8 +1059,6 @@ CKA_VALUE MULTILINE_OCTAL \174\136\232\166\351\131\220\305\174\203\065\021\145\121 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Entrust.net Premium 2048 Secure Server CA" # Issuer: CN=Entrust.net Certification Authority (2048),OU=(c) 1999 Entrust.net Limited,OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.),O=Entrust.net @@ -1211,8 +1197,6 @@ CKA_VALUE MULTILINE_OCTAL \347\201\035\031\303\044\102\352\143\071\251 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Baltimore CyberTrust Root" # Issuer: CN=Baltimore CyberTrust Root,OU=CyberTrust,O=Baltimore,C=IE @@ -1357,8 +1341,6 @@ CKA_VALUE MULTILINE_OCTAL \065\341\035\026\034\320\274\053\216\326\161\331 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AddTrust Low-Value Services Root" # Issuer: CN=AddTrust Class 1 CA Root,OU=AddTrust TTP Network,O=AddTrust AB,C=SE @@ -1508,8 +1490,6 @@ CKA_VALUE MULTILINE_OCTAL \027\132\173\320\274\307\217\116\206\004 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AddTrust External Root" # Issuer: CN=AddTrust External CA Root,OU=AddTrust External TTP Network,O=AddTrust AB,C=SE @@ -1674,8 +1654,6 @@ CKA_VALUE MULTILINE_OCTAL \036\177\132\264\074 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Entrust Root Certification Authority" # Issuer: CN=Entrust Root Certification Authority,OU="(c) 2006 Entrust, Inc.",OU=www.entrust.net/CPS is incorporated by reference,O="Entrust, Inc.",C=US @@ -1810,8 +1788,6 @@ CKA_VALUE MULTILINE_OCTAL \302\005\146\200\241\313\346\063 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Global CA" # Issuer: CN=GeoTrust Global CA,O=GeoTrust Inc.,C=US @@ -1972,8 +1948,6 @@ CKA_VALUE MULTILINE_OCTAL \244\346\216\330\371\051\110\212\316\163\376\054 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Universal CA" # Issuer: CN=GeoTrust Universal CA,O=GeoTrust Inc.,C=US @@ -2134,8 +2108,6 @@ CKA_VALUE MULTILINE_OCTAL \362\034\054\176\256\002\026\322\126\320\057\127\123\107\350\222 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Universal CA 2" # Issuer: CN=GeoTrust Universal CA 2,O=GeoTrust Inc.,C=US @@ -2256,8 +2228,6 @@ CKA_VALUE MULTILINE_OCTAL \350\140\052\233\205\112\100\363\153\212\044\354\006\026\054\163 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Certum Root CA" # Issuer: CN=Certum CA,O=Unizeto Sp. z o.o.,C=PL @@ -2404,8 +2374,6 @@ CKA_VALUE MULTILINE_OCTAL \225\351\066\226\230\156 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Comodo AAA Services root" # Issuer: CN=AAA Certificate Services,O=Comodo CA Limited,L=Salford,ST=Greater Manchester,C=GB @@ -2584,8 +2552,6 @@ CKA_VALUE MULTILINE_OCTAL \112\164\066\371 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "QuoVadis Root CA" # Issuer: CN=QuoVadis Root Certification Authority,OU=Root Certification Authority,O=QuoVadis Limited,C=BM @@ -2755,8 +2721,6 @@ CKA_VALUE MULTILINE_OCTAL \020\005\145\325\202\020\352\302\061\315\056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "QuoVadis Root CA 2" # Issuer: CN=QuoVadis Root CA 2,O=QuoVadis Limited,C=BM @@ -2937,8 +2901,6 @@ CKA_VALUE MULTILINE_OCTAL \332 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "QuoVadis Root CA 3" # Issuer: CN=QuoVadis Root CA 3,O=QuoVadis Limited,C=BM @@ -3068,8 +3030,6 @@ CKA_VALUE MULTILINE_OCTAL \057\317\246\356\311\160\042\024\275\375\276\154\013\003 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Security Communication Root CA" # Issuer: OU=Security Communication RootCA1,O=SECOM Trust.net,C=JP @@ -3193,8 +3153,6 @@ CKA_VALUE MULTILINE_OCTAL \160\254\337\114 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Sonera Class 2 Root CA" # Issuer: CN=Sonera Class2 CA,O=Sonera,C=FI @@ -3230,6 +3188,177 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "UTN USERFirst Email Root CA" +# +# Issuer: CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US +# Serial Number:44:be:0c:8b:50:00:24:b4:11:d3:36:25:25:67:c9:89 +# Subject: CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US +# Not Valid Before: Fri Jul 09 17:28:50 1999 +# Not Valid After : Tue Jul 09 17:36:58 2019 +# Fingerprint (MD5): D7:34:3D:EF:1D:27:09:28:E1:31:02:5B:13:2B:DD:F7 +# Fingerprint (SHA1): B1:72:B1:A5:6D:95:F9:1F:E5:02:87:E1:4D:37:EA:6A:44:63:76:8A +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "UTN USERFirst Email Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 +\311\211 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\004\242\060\202\003\212\240\003\002\001\002\002\020\104 +\276\014\213\120\000\044\264\021\323\066\045\045\147\311\211\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060\201 +\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061\013 +\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025\006 +\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145\040 +\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025\124 +\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145\164 +\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030\150 +\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164\162 +\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004\003 +\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164\055 +\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151\143 +\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154\060 +\036\027\015\071\071\060\067\060\071\061\067\062\070\065\060\132 +\027\015\061\071\060\067\060\071\061\067\063\066\065\070\132\060 +\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123\061 +\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060\025 +\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153\145 +\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023\025 +\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116\145 +\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023\030 +\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162\164 +\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125\004 +\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163\164 +\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164\151 +\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151\154 +\060\202\001\042\060\015\006\011\052\206\110\206\367\015\001\001 +\001\005\000\003\202\001\017\000\060\202\001\012\002\202\001\001 +\000\262\071\205\244\362\175\253\101\073\142\106\067\256\315\301 +\140\165\274\071\145\371\112\032\107\242\271\314\110\314\152\230 +\325\115\065\031\271\244\102\345\316\111\342\212\057\036\174\322 +\061\007\307\116\264\203\144\235\056\051\325\242\144\304\205\275 +\205\121\065\171\244\116\150\220\173\034\172\244\222\250\027\362 +\230\025\362\223\314\311\244\062\225\273\014\117\060\275\230\240 +\013\213\345\156\033\242\106\372\170\274\242\157\253\131\136\245 +\057\317\312\332\155\252\057\353\254\241\263\152\252\267\056\147 +\065\213\171\341\036\151\210\342\346\106\315\240\245\352\276\013 +\316\166\072\172\016\233\352\374\332\047\133\075\163\037\042\346 +\110\141\306\114\363\151\261\250\056\033\266\324\061\040\054\274 +\202\212\216\244\016\245\327\211\103\374\026\132\257\035\161\327 +\021\131\332\272\207\015\257\372\363\341\302\360\244\305\147\214 +\326\326\124\072\336\012\244\272\003\167\263\145\310\375\036\323 +\164\142\252\030\312\150\223\036\241\205\176\365\107\145\313\370 +\115\127\050\164\322\064\377\060\266\356\366\142\060\024\214\054 +\353\002\003\001\000\001\243\201\271\060\201\266\060\013\006\003 +\125\035\017\004\004\003\002\001\306\060\017\006\003\125\035\023 +\001\001\377\004\005\060\003\001\001\377\060\035\006\003\125\035 +\016\004\026\004\024\211\202\147\175\304\235\046\160\000\113\264 +\120\110\174\336\075\256\004\156\175\060\130\006\003\125\035\037 +\004\121\060\117\060\115\240\113\240\111\206\107\150\164\164\160 +\072\057\057\143\162\154\056\165\163\145\162\164\162\165\163\164 +\056\143\157\155\057\125\124\116\055\125\123\105\122\106\151\162 +\163\164\055\103\154\151\145\156\164\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\141\156\144\105\155\141\151\154\056 +\143\162\154\060\035\006\003\125\035\045\004\026\060\024\006\010 +\053\006\001\005\005\007\003\002\006\010\053\006\001\005\005\007 +\003\004\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\001\001\000\261\155\141\135\246\032\177\174\253\112 +\344\060\374\123\157\045\044\306\312\355\342\061\134\053\016\356 +\356\141\125\157\004\076\317\071\336\305\033\111\224\344\353\040 +\114\264\346\236\120\056\162\331\215\365\252\243\263\112\332\126 +\034\140\227\200\334\202\242\255\112\275\212\053\377\013\011\264 +\306\327\040\004\105\344\315\200\001\272\272\053\156\316\252\327 +\222\376\344\257\353\364\046\035\026\052\177\154\060\225\067\057 +\063\022\254\177\335\307\321\021\214\121\230\262\320\243\221\320 +\255\366\237\236\203\223\036\035\102\270\106\257\153\146\360\233 +\177\352\343\003\002\345\002\121\301\252\325\065\235\162\100\003 +\211\272\061\035\305\020\150\122\236\337\242\205\305\134\010\246 +\170\346\123\117\261\350\267\323\024\236\223\246\303\144\343\254 +\176\161\315\274\237\351\003\033\314\373\351\254\061\301\257\174 +\025\164\002\231\303\262\107\246\302\062\141\327\307\157\110\044 +\121\047\241\325\207\125\362\173\217\230\075\026\236\356\165\266 +\370\320\216\362\363\306\256\050\133\247\360\363\066\027\374\303 +\005\323\312\003\112\124 +END +CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE + +# Trust for Certificate "UTN USERFirst Email Root CA" +# Issuer: CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US +# Serial Number:44:be:0c:8b:50:00:24:b4:11:d3:36:25:25:67:c9:89 +# Subject: CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US +# Not Valid Before: Fri Jul 09 17:28:50 1999 +# Not Valid After : Tue Jul 09 17:36:58 2019 +# Fingerprint (MD5): D7:34:3D:EF:1D:27:09:28:E1:31:02:5B:13:2B:DD:F7 +# Fingerprint (SHA1): B1:72:B1:A5:6D:95:F9:1F:E5:02:87:E1:4D:37:EA:6A:44:63:76:8A +CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "UTN USERFirst Email Root CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\261\162\261\245\155\225\371\037\345\002\207\341\115\067\352\152 +\104\143\166\212 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\327\064\075\357\035\047\011\050\341\061\002\133\023\053\335\367 +END +CKA_ISSUER MULTILINE_OCTAL +\060\201\256\061\013\060\011\006\003\125\004\006\023\002\125\123 +\061\013\060\011\006\003\125\004\010\023\002\125\124\061\027\060 +\025\006\003\125\004\007\023\016\123\141\154\164\040\114\141\153 +\145\040\103\151\164\171\061\036\060\034\006\003\125\004\012\023 +\025\124\150\145\040\125\123\105\122\124\122\125\123\124\040\116 +\145\164\167\157\162\153\061\041\060\037\006\003\125\004\013\023 +\030\150\164\164\160\072\057\057\167\167\167\056\165\163\145\162 +\164\162\165\163\164\056\143\157\155\061\066\060\064\006\003\125 +\004\003\023\055\125\124\116\055\125\123\105\122\106\151\162\163 +\164\055\103\154\151\145\156\164\040\101\165\164\150\145\156\164 +\151\143\141\164\151\157\156\040\141\156\144\040\105\155\141\151 +\154 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\104\276\014\213\120\000\044\264\021\323\066\045\045\147 +\311\211 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "Camerfirma Chambers of Commerce Root" # @@ -3352,8 +3481,6 @@ CKA_VALUE MULTILINE_OCTAL \334 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Camerfirma Chambers of Commerce Root" # Issuer: CN=Chambers of Commerce Root,OU=http://www.chambersign.org,O=AC Camerfirma SA CIF A82743287,C=EU @@ -3514,8 +3641,6 @@ CKA_VALUE MULTILINE_OCTAL \166\135\165\220\032\365\046\217\360 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Camerfirma Global Chambersign Root" # Issuer: CN=Global Chambersign Root,OU=http://www.chambersign.org,O=AC Camerfirma SA CIF A82743287,C=EU @@ -3669,8 +3794,6 @@ CKA_VALUE MULTILINE_OCTAL \264\003\045\274 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "XRamp Global CA Root" # Issuer: CN=XRamp Global Certification Authority,O=XRamp Security Services Inc,OU=www.xrampsecurity.com,C=US @@ -3818,8 +3941,6 @@ CKA_VALUE MULTILINE_OCTAL \177\333\275\237 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Go Daddy Class 2 CA" # Issuer: OU=Go Daddy Class 2 Certification Authority,O="The Go Daddy Group, Inc.",C=US @@ -3965,8 +4086,6 @@ CKA_VALUE MULTILINE_OCTAL \037\027\224 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Starfield Class 2 CA" # Issuer: OU=Starfield Class 2 Certification Authority,O="Starfield Technologies, Inc.",C=US @@ -4131,8 +4250,6 @@ CKA_VALUE MULTILINE_OCTAL \245\206\054\174\364\022 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Taiwan GRCA" # Issuer: O=Government Root Certification Authority,C=TW @@ -4272,8 +4389,6 @@ CKA_VALUE MULTILINE_OCTAL \346\120\262\247\372\012\105\057\242\360\362 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "DigiCert Assured ID Root CA" # Issuer: CN=DigiCert Assured ID Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -4415,8 +4530,6 @@ CKA_VALUE MULTILINE_OCTAL \225\155\336 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "DigiCert Global Root CA" # Issuer: CN=DigiCert Global Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -4559,8 +4672,6 @@ CKA_VALUE MULTILINE_OCTAL \370\351\056\023\243\167\350\037\112 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "DigiCert High Assurance EV Root CA" # Issuer: CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -4600,6 +4711,136 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "Certplus Class 2 Primary CA" +# +# Issuer: CN=Class 2 Primary CA,O=Certplus,C=FR +# Serial Number:00:85:bd:4b:f3:d8:da:e3:69:f6:94:d7:5f:c3:a5:44:23 +# Subject: CN=Class 2 Primary CA,O=Certplus,C=FR +# Not Valid Before: Wed Jul 07 17:05:00 1999 +# Not Valid After : Sat Jul 06 23:59:59 2019 +# Fingerprint (MD5): 88:2C:8C:52:B8:A2:3C:F3:F7:BB:03:EA:AE:AC:42:0B +# Fingerprint (SHA1): 74:20:74:41:72:9C:DD:92:EC:79:31:D8:23:10:8D:C2:81:92:E2:BB +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Certplus Class 2 Primary CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303 +\245\104\043 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\222\060\202\002\172\240\003\002\001\002\002\021\000 +\205\275\113\363\330\332\343\151\366\224\327\137\303\245\104\043 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021 +\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165 +\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163 +\163\040\062\040\120\162\151\155\141\162\171\040\103\101\060\036 +\027\015\071\071\060\067\060\067\061\067\060\065\060\060\132\027 +\015\061\071\060\067\060\066\062\063\065\071\065\071\132\060\075 +\061\013\060\011\006\003\125\004\006\023\002\106\122\061\021\060 +\017\006\003\125\004\012\023\010\103\145\162\164\160\154\165\163 +\061\033\060\031\006\003\125\004\003\023\022\103\154\141\163\163 +\040\062\040\120\162\151\155\141\162\171\040\103\101\060\202\001 +\042\060\015\006\011\052\206\110\206\367\015\001\001\001\005\000 +\003\202\001\017\000\060\202\001\012\002\202\001\001\000\334\120 +\226\320\022\370\065\322\010\170\172\266\122\160\375\157\356\317 +\271\021\313\135\167\341\354\351\176\004\215\326\314\157\163\103 +\127\140\254\063\012\104\354\003\137\034\200\044\221\345\250\221 +\126\022\202\367\340\053\364\333\256\141\056\211\020\215\153\154 +\272\263\002\275\325\066\305\110\067\043\342\360\132\067\122\063 +\027\022\342\321\140\115\276\057\101\021\343\366\027\045\014\213 +\221\300\033\231\173\231\126\015\257\356\322\274\107\127\343\171 +\111\173\064\211\047\044\204\336\261\354\351\130\116\376\116\337 +\132\276\101\255\254\010\305\030\016\357\322\123\356\154\320\235 +\022\001\023\215\334\200\142\367\225\251\104\210\112\161\116\140 +\125\236\333\043\031\171\126\007\014\077\143\013\134\260\342\276 +\176\025\374\224\063\130\101\070\164\304\341\217\213\337\046\254 +\037\265\213\073\267\103\131\153\260\044\246\155\220\213\304\162 +\352\135\063\230\267\313\336\136\173\357\224\361\033\076\312\311 +\041\301\305\230\002\252\242\366\133\167\233\365\176\226\125\064 +\034\147\151\300\361\102\343\107\254\374\050\034\146\125\002\003 +\001\000\001\243\201\214\060\201\211\060\017\006\003\125\035\023 +\004\010\060\006\001\001\377\002\001\012\060\013\006\003\125\035 +\017\004\004\003\002\001\006\060\035\006\003\125\035\016\004\026 +\004\024\343\163\055\337\313\016\050\014\336\335\263\244\312\171 +\270\216\273\350\060\211\060\021\006\011\140\206\110\001\206\370 +\102\001\001\004\004\003\002\001\006\060\067\006\003\125\035\037 +\004\060\060\056\060\054\240\052\240\050\206\046\150\164\164\160 +\072\057\057\167\167\167\056\143\145\162\164\160\154\165\163\056 +\143\157\155\057\103\122\114\057\143\154\141\163\163\062\056\143 +\162\154\060\015\006\011\052\206\110\206\367\015\001\001\005\005 +\000\003\202\001\001\000\247\124\317\210\104\031\313\337\324\177 +\000\337\126\063\142\265\367\121\001\220\353\303\077\321\210\104 +\351\044\135\357\347\024\275\040\267\232\074\000\376\155\237\333 +\220\334\327\364\142\326\213\160\135\347\345\004\110\251\150\174 +\311\361\102\363\154\177\305\172\174\035\121\210\272\322\012\076 +\047\135\336\055\121\116\323\023\144\151\344\056\343\323\347\233 +\011\231\246\340\225\233\316\032\327\177\276\074\316\122\263\021 +\025\301\017\027\315\003\273\234\045\025\272\242\166\211\374\006 +\361\030\320\223\113\016\174\202\267\245\364\366\137\376\355\100 +\246\235\204\164\071\271\334\036\205\026\332\051\033\206\043\000 +\311\273\211\176\156\200\210\036\057\024\264\003\044\250\062\157 +\003\232\107\054\060\276\126\306\247\102\002\160\033\352\100\330 +\272\005\003\160\007\244\226\377\375\110\063\012\341\334\245\201 +\220\233\115\335\175\347\347\262\315\134\310\152\225\370\245\366 +\215\304\135\170\010\276\173\006\326\111\317\031\066\120\043\056 +\010\346\236\005\115\107\030\325\026\351\261\326\266\020\325\273 +\227\277\242\216\264\124 +END +CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE + +# Trust for Certificate "Certplus Class 2 Primary CA" +# Issuer: CN=Class 2 Primary CA,O=Certplus,C=FR +# Serial Number:00:85:bd:4b:f3:d8:da:e3:69:f6:94:d7:5f:c3:a5:44:23 +# Subject: CN=Class 2 Primary CA,O=Certplus,C=FR +# Not Valid Before: Wed Jul 07 17:05:00 1999 +# Not Valid After : Sat Jul 06 23:59:59 2019 +# Fingerprint (MD5): 88:2C:8C:52:B8:A2:3C:F3:F7:BB:03:EA:AE:AC:42:0B +# Fingerprint (SHA1): 74:20:74:41:72:9C:DD:92:EC:79:31:D8:23:10:8D:C2:81:92:E2:BB +CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Certplus Class 2 Primary CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\164\040\164\101\162\234\335\222\354\171\061\330\043\020\215\302 +\201\222\342\273 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\210\054\214\122\270\242\074\363\367\273\003\352\256\254\102\013 +END +CKA_ISSUER MULTILINE_OCTAL +\060\075\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\021\060\017\006\003\125\004\012\023\010\103\145\162\164\160\154 +\165\163\061\033\060\031\006\003\125\004\003\023\022\103\154\141 +\163\163\040\062\040\120\162\151\155\141\162\171\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\021\000\205\275\113\363\330\332\343\151\366\224\327\137\303 +\245\104\043 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "DST Root CA X3" # @@ -4691,8 +4932,6 @@ CKA_VALUE MULTILINE_OCTAL \013\004\216\007\333\051\266\012\356\235\202\065\065\020 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "DST Root CA X3" # Issuer: CN=DST Root CA X3,O=Digital Signature Trust Co. @@ -4860,8 +5099,6 @@ CKA_VALUE MULTILINE_OCTAL \205\206\171\145\322 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "SwissSign Platinum CA - G2" # Issuer: CN=SwissSign Platinum CA - G2,O=SwissSign AG,C=CH @@ -5027,8 +5264,6 @@ CKA_VALUE MULTILINE_OCTAL \111\044\133\311\260\320\127\301\372\076\172\341\227\311 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "SwissSign Gold CA - G2" # Issuer: CN=SwissSign Gold CA - G2,O=SwissSign AG,C=CH @@ -5195,8 +5430,6 @@ CKA_VALUE MULTILINE_OCTAL \156 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "SwissSign Silver CA - G2" # Issuer: CN=SwissSign Silver CA - G2,O=SwissSign AG,C=CH @@ -5329,8 +5562,6 @@ CKA_VALUE MULTILINE_OCTAL \253\022\350\263\336\132\345\240\174\350\017\042\035\132\351\131 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Primary Certification Authority" # Issuer: CN=GeoTrust Primary Certification Authority,O=GeoTrust Inc.,C=US @@ -5486,8 +5717,6 @@ CKA_VALUE MULTILINE_OCTAL \215\126\214\150 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "thawte Primary Root CA" # Issuer: CN=thawte Primary Root CA,OU="(c) 2006 thawte, Inc. - For authorized use only",OU=Certification Services Division,O="thawte, Inc.",C=US @@ -5663,8 +5892,6 @@ CKA_VALUE MULTILINE_OCTAL \254\021\326\250\355\143\152 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "VeriSign Class 3 Public Primary Certification Authority - G5" # Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G5,OU="(c) 2006 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -5808,8 +6035,6 @@ CKA_VALUE MULTILINE_OCTAL \113\035\236\054\302\270\150\274\355\002\356\061 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "SecureTrust CA" # Issuer: CN=SecureTrust CA,O=SecureTrust Corporation,C=US @@ -5945,8 +6170,6 @@ CKA_VALUE MULTILINE_OCTAL \117\043\037\332\154\254\037\104\341\335\043\170\121\133\307\026 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Secure Global CA" # Issuer: CN=Secure Global CA,O=SecureTrust Corporation,C=US @@ -6097,8 +6320,6 @@ CKA_VALUE MULTILINE_OCTAL \145 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "COMODO Certification Authority" # Issuer: CN=COMODO Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB @@ -6245,8 +6466,6 @@ CKA_VALUE MULTILINE_OCTAL \244\140\114\260\125\240\240\173\127\262 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Network Solutions Certificate Authority" # Issuer: CN=Network Solutions Certificate Authority,O=Network Solutions L.L.C.,C=US @@ -6373,8 +6592,6 @@ CKA_VALUE MULTILINE_OCTAL \334\335\363\377\035\054\072\026\127\331\222\071\326 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "COMODO ECC Certification Authority" # Issuer: CN=COMODO ECC Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB @@ -6526,8 +6743,6 @@ CKA_VALUE MULTILINE_OCTAL \374\276\337\012\015 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "OISTE WISeKey Global Root GA CA" # Issuer: CN=OISTE WISeKey Global Root GA CA,OU=OISTE Foundation Endorsed,OU=Copyright (c) 2005,O=WISeKey,C=CH @@ -6663,8 +6878,6 @@ CKA_VALUE MULTILINE_OCTAL \300\226\130\057\352\273\106\327\273\344\331\056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Certigna" # Issuer: CN=Certigna,O=Dhimyotis,C=FR @@ -6700,6 +6913,147 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "Deutsche Telekom Root CA 2" +# +# Issuer: CN=Deutsche Telekom Root CA 2,OU=T-TeleSec Trust Center,O=Deutsche Telekom AG,C=DE +# Serial Number: 38 (0x26) +# Subject: CN=Deutsche Telekom Root CA 2,OU=T-TeleSec Trust Center,O=Deutsche Telekom AG,C=DE +# Not Valid Before: Fri Jul 09 12:11:00 1999 +# Not Valid After : Tue Jul 09 23:59:00 2019 +# Fingerprint (MD5): 74:01:4A:91:B1:08:C4:58:CE:47:CD:F0:DD:11:53:08 +# Fingerprint (SHA1): 85:A4:08:C0:9C:19:3E:5D:51:58:7D:CD:D6:13:30:FD:8C:DE:37:BF +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Deutsche Telekom Root CA 2" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\161\061\013\060\011\006\003\125\004\006\023\002\104\105\061 +\034\060\032\006\003\125\004\012\023\023\104\145\165\164\163\143 +\150\145\040\124\145\154\145\153\157\155\040\101\107\061\037\060 +\035\006\003\125\004\013\023\026\124\055\124\145\154\145\123\145 +\143\040\124\162\165\163\164\040\103\145\156\164\145\162\061\043 +\060\041\006\003\125\004\003\023\032\104\145\165\164\163\143\150 +\145\040\124\145\154\145\153\157\155\040\122\157\157\164\040\103 +\101\040\062 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\161\061\013\060\011\006\003\125\004\006\023\002\104\105\061 +\034\060\032\006\003\125\004\012\023\023\104\145\165\164\163\143 +\150\145\040\124\145\154\145\153\157\155\040\101\107\061\037\060 +\035\006\003\125\004\013\023\026\124\055\124\145\154\145\123\145 +\143\040\124\162\165\163\164\040\103\145\156\164\145\162\061\043 +\060\041\006\003\125\004\003\023\032\104\145\165\164\163\143\150 +\145\040\124\145\154\145\153\157\155\040\122\157\157\164\040\103 +\101\040\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\046 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\003\237\060\202\002\207\240\003\002\001\002\002\001\046 +\060\015\006\011\052\206\110\206\367\015\001\001\005\005\000\060 +\161\061\013\060\011\006\003\125\004\006\023\002\104\105\061\034 +\060\032\006\003\125\004\012\023\023\104\145\165\164\163\143\150 +\145\040\124\145\154\145\153\157\155\040\101\107\061\037\060\035 +\006\003\125\004\013\023\026\124\055\124\145\154\145\123\145\143 +\040\124\162\165\163\164\040\103\145\156\164\145\162\061\043\060 +\041\006\003\125\004\003\023\032\104\145\165\164\163\143\150\145 +\040\124\145\154\145\153\157\155\040\122\157\157\164\040\103\101 +\040\062\060\036\027\015\071\071\060\067\060\071\061\062\061\061 +\060\060\132\027\015\061\071\060\067\060\071\062\063\065\071\060 +\060\132\060\161\061\013\060\011\006\003\125\004\006\023\002\104 +\105\061\034\060\032\006\003\125\004\012\023\023\104\145\165\164 +\163\143\150\145\040\124\145\154\145\153\157\155\040\101\107\061 +\037\060\035\006\003\125\004\013\023\026\124\055\124\145\154\145 +\123\145\143\040\124\162\165\163\164\040\103\145\156\164\145\162 +\061\043\060\041\006\003\125\004\003\023\032\104\145\165\164\163 +\143\150\145\040\124\145\154\145\153\157\155\040\122\157\157\164 +\040\103\101\040\062\060\202\001\042\060\015\006\011\052\206\110 +\206\367\015\001\001\001\005\000\003\202\001\017\000\060\202\001 +\012\002\202\001\001\000\253\013\243\065\340\213\051\024\261\024 +\205\257\074\020\344\071\157\065\135\112\256\335\352\141\215\225 +\111\364\157\144\243\032\140\146\244\251\100\042\204\331\324\245 +\345\170\223\016\150\001\255\271\115\134\072\316\323\270\250\102 +\100\337\317\243\272\202\131\152\222\033\254\034\232\332\010\053 +\045\047\371\151\043\107\361\340\353\054\172\233\365\023\002\320 +\176\064\174\302\236\074\000\131\253\365\332\014\365\062\074\053 +\254\120\332\326\303\336\203\224\312\250\014\231\062\016\010\110 +\126\133\152\373\332\341\130\130\001\111\137\162\101\074\025\006 +\001\216\135\255\252\270\223\264\315\236\353\247\350\152\055\122 +\064\333\072\357\134\165\121\332\333\363\061\371\356\161\230\062 +\304\124\025\104\014\371\233\125\355\255\337\030\010\240\243\206 +\212\111\356\123\005\217\031\114\325\336\130\171\233\322\152\034 +\102\253\305\325\247\317\150\017\226\344\341\141\230\166\141\310 +\221\174\326\076\000\342\221\120\207\341\235\012\346\255\227\322 +\035\306\072\175\313\274\332\003\064\325\216\133\001\365\152\007 +\267\026\266\156\112\177\002\003\001\000\001\243\102\060\100\060 +\035\006\003\125\035\016\004\026\004\024\061\303\171\033\272\365 +\123\327\027\340\211\172\055\027\154\012\263\053\235\063\060\017 +\006\003\125\035\023\004\010\060\006\001\001\377\002\001\005\060 +\016\006\003\125\035\017\001\001\377\004\004\003\002\001\006\060 +\015\006\011\052\206\110\206\367\015\001\001\005\005\000\003\202 +\001\001\000\224\144\131\255\071\144\347\051\353\023\376\132\303 +\213\023\127\310\004\044\360\164\167\300\140\343\147\373\351\211 +\246\203\277\226\202\174\156\324\303\075\357\236\200\156\273\051 +\264\230\172\261\073\124\353\071\027\107\176\032\216\013\374\037 +\061\131\061\004\262\316\027\363\054\307\142\066\125\342\042\330 +\211\125\264\230\110\252\144\372\326\034\066\330\104\170\132\132 +\043\072\127\227\365\172\060\117\256\237\152\114\113\053\216\240 +\003\343\076\340\251\324\322\173\322\263\250\342\162\074\255\236 +\377\200\131\344\233\105\264\366\073\260\315\071\031\230\062\345 +\352\041\141\220\344\061\041\216\064\261\367\057\065\112\205\020 +\332\347\212\067\041\276\131\143\340\362\205\210\061\123\324\124 +\024\205\160\171\364\056\006\167\047\165\057\037\270\212\371\376 +\305\272\330\066\344\203\354\347\145\267\277\143\132\363\106\257 +\201\224\067\324\101\214\326\043\326\036\317\365\150\033\104\143 +\242\132\272\247\065\131\241\345\160\005\233\016\043\127\231\224 +\012\155\272\071\143\050\206\222\363\030\204\330\373\321\317\005 +\126\144\127 +END +CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE + +# Trust for Certificate "Deutsche Telekom Root CA 2" +# Issuer: CN=Deutsche Telekom Root CA 2,OU=T-TeleSec Trust Center,O=Deutsche Telekom AG,C=DE +# Serial Number: 38 (0x26) +# Subject: CN=Deutsche Telekom Root CA 2,OU=T-TeleSec Trust Center,O=Deutsche Telekom AG,C=DE +# Not Valid Before: Fri Jul 09 12:11:00 1999 +# Not Valid After : Tue Jul 09 23:59:00 2019 +# Fingerprint (MD5): 74:01:4A:91:B1:08:C4:58:CE:47:CD:F0:DD:11:53:08 +# Fingerprint (SHA1): 85:A4:08:C0:9C:19:3E:5D:51:58:7D:CD:D6:13:30:FD:8C:DE:37:BF +CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Deutsche Telekom Root CA 2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\205\244\010\300\234\031\076\135\121\130\175\315\326\023\060\375 +\214\336\067\277 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\164\001\112\221\261\010\304\130\316\107\315\360\335\021\123\010 +END +CKA_ISSUER MULTILINE_OCTAL +\060\161\061\013\060\011\006\003\125\004\006\023\002\104\105\061 +\034\060\032\006\003\125\004\012\023\023\104\145\165\164\163\143 +\150\145\040\124\145\154\145\153\157\155\040\101\107\061\037\060 +\035\006\003\125\004\013\023\026\124\055\124\145\154\145\123\145 +\143\040\124\162\165\163\164\040\103\145\156\164\145\162\061\043 +\060\041\006\003\125\004\003\023\032\104\145\165\164\163\143\150 +\145\040\124\145\154\145\153\157\155\040\122\157\157\164\040\103 +\101\040\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\046 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "Cybertrust Global Root" # @@ -6794,8 +7148,6 @@ CKA_VALUE MULTILINE_OCTAL \246\210\070\316\125 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Cybertrust Global Root" # Issuer: CN=Cybertrust Global Root,O="Cybertrust, Inc" @@ -6963,8 +7315,6 @@ CKA_VALUE MULTILINE_OCTAL \201\370\021\234 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "ePKI Root Certification Authority" # Issuer: OU=ePKI Root Certification Authority,O="Chunghwa Telecom Co., Ltd.",C=TW @@ -7090,8 +7440,6 @@ CKA_VALUE MULTILINE_OCTAL \366\356\260\132\116\111\104\124\130\137\102\203 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "certSIGN ROOT CA" # Issuer: OU=certSIGN ROOT CA,O=certSIGN,C=RO @@ -7240,8 +7588,6 @@ CKA_VALUE MULTILINE_OCTAL \021\055 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Primary Certification Authority - G3" # Issuer: CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US @@ -7371,8 +7717,6 @@ CKA_VALUE MULTILINE_OCTAL \367\130\077\056\162\002\127\243\217\241\024\056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "thawte Primary Root CA - G2" # Issuer: CN=thawte Primary Root CA - G2,OU="(c) 2007 thawte, Inc. - For authorized use only",O="thawte, Inc.",C=US @@ -7533,8 +7877,6 @@ CKA_VALUE MULTILINE_OCTAL \061\324\100\032\142\064\066\077\065\001\256\254\143\240 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "thawte Primary Root CA - G3" # Issuer: CN=thawte Primary Root CA - G3,OU="(c) 2008 thawte, Inc. - For authorized use only",OU=Certification Services Division,O="thawte, Inc.",C=US @@ -7671,8 +8013,6 @@ CKA_VALUE MULTILINE_OCTAL \017\212 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GeoTrust Primary Certification Authority - G2" # Issuer: CN=GeoTrust Primary Certification Authority - G2,OU=(c) 2007 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US @@ -7843,8 +8183,6 @@ CKA_VALUE MULTILINE_OCTAL \354\315\202\141\361\070\346\117\227\230\052\132\215 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "VeriSign Universal Root Certification Authority" # Issuer: CN=VeriSign Universal Root Certification Authority,OU="(c) 2008 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -8000,8 +8338,6 @@ CKA_VALUE MULTILINE_OCTAL \055\247\330\206\052\335\056\020 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "VeriSign Class 3 Public Primary Certification Authority - G4" # Issuer: CN=VeriSign Class 3 Public Primary Certification Authority - G4,OU="(c) 2007 VeriSign, Inc. - For authorized use only",OU=VeriSign Trust Network,O="VeriSign, Inc.",C=US @@ -8162,8 +8498,6 @@ CKA_VALUE MULTILINE_OCTAL \330\316\304\143\165\077\131\107\261 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "NetLock Arany (Class Gold) Főtanúsítvány" # Issuer: CN=NetLock Arany (Class Gold) F..tan..s..tv..ny,OU=Tan..s..tv..nykiad..k (Certification Services),O=NetLock Kft.,L=Budapest,C=HU @@ -8338,8 +8672,6 @@ CKA_VALUE MULTILINE_OCTAL \370\161\012\334\271\374\175\062\140\346\353\257\212\001 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Staat der Nederlanden Root CA - G2" # Issuer: CN=Staat der Nederlanden Root CA - G2,O=Staat der Nederlanden,C=NL @@ -8466,8 +8798,6 @@ CKA_VALUE MULTILINE_OCTAL \002\153\331\132 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Hongkong Post Root CA 1" # Issuer: CN=Hongkong Post Root CA 1,O=Hongkong Post,C=HK @@ -8599,8 +8929,6 @@ CKA_VALUE MULTILINE_OCTAL \362 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "SecureSign RootCA11" # Issuer: CN=SecureSign RootCA11,O="Japan Certification Services, Inc.",C=JP @@ -8748,8 +9076,6 @@ CKA_VALUE MULTILINE_OCTAL \202\042\055\172\124\253\160\303\175\042\145\202\160\226 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Microsec e-Szigno Root CA 2009" # Issuer: E=info@e-szigno.hu,CN=Microsec e-Szigno Root CA 2009,O=Microsec Ltd.,L=Budapest,C=HU @@ -8882,8 +9208,6 @@ CKA_VALUE MULTILINE_OCTAL \130\077\137 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "GlobalSign Root CA - R3" # Issuer: CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3 @@ -9057,8 +9381,6 @@ CKA_VALUE MULTILINE_OCTAL \156\117\022\176\012\074\235\225 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Autoridad de Certificacion Firmaprofesional CIF A62634068" # Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068,C=ES @@ -9228,8 +9550,6 @@ CKA_VALUE MULTILINE_OCTAL \333\374\046\210\307 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Izenpe.com" # Issuer: CN=Izenpe.com,O=IZENPE S.A.,C=ES @@ -9435,8 +9755,6 @@ CKA_VALUE MULTILINE_OCTAL \167\110\320 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Chambers of Commerce Root - 2008" # Issuer: CN=Chambers of Commerce Root - 2008,O=AC Camerfirma S.A.,serialNumber=A82743287,L=Madrid (see current address at www.camerfirma.com/address),C=EU @@ -9646,8 +9964,6 @@ CKA_VALUE MULTILINE_OCTAL \351\233\256\325\124\300\164\200\321\013\102\237\301 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Global Chambersign Root - 2008" # Issuer: CN=Global Chambersign Root - 2008,O=AC Camerfirma S.A.,serialNumber=A82743287,L=Madrid (see current address at www.camerfirma.com/address),C=EU @@ -9796,8 +10112,6 @@ CKA_VALUE MULTILINE_OCTAL \342\342\104\276\134\367\352\034\365 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Go Daddy Root Certificate Authority - G2" # Issuer: CN=Go Daddy Root Certificate Authority - G2,O="GoDaddy.com, Inc.",L=Scottsdale,ST=Arizona,C=US @@ -9948,8 +10262,6 @@ CKA_VALUE MULTILINE_OCTAL \364 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Starfield Root Certificate Authority - G2" # Issuer: CN=Starfield Root Certificate Authority - G2,O="Starfield Technologies, Inc.",L=Scottsdale,ST=Arizona,C=US @@ -10102,8 +10414,6 @@ CKA_VALUE MULTILINE_OCTAL \261\050\272 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Starfield Services Root Certificate Authority - G2" # Issuer: CN=Starfield Services Root Certificate Authority - G2,O="Starfield Technologies, Inc.",L=Scottsdale,ST=Arizona,C=US @@ -10235,8 +10545,6 @@ CKA_VALUE MULTILINE_OCTAL \007\072\027\144\265\004\265\043\041\231\012\225\073\227\174\357 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AffirmTrust Commercial" # Issuer: CN=AffirmTrust Commercial,O=AffirmTrust,C=US @@ -10363,8 +10671,6 @@ CKA_VALUE MULTILINE_OCTAL \355\132\000\124\205\034\026\066\222\014\134\372\246\255\277\333 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AffirmTrust Networking" # Issuer: CN=AffirmTrust Networking,O=AffirmTrust,C=US @@ -10523,8 +10829,6 @@ CKA_VALUE MULTILINE_OCTAL \051\340\266\270\011\150\031\034\030\103 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AffirmTrust Premium" # Issuer: CN=AffirmTrust Premium,O=AffirmTrust,C=US @@ -10631,8 +10935,6 @@ CKA_VALUE MULTILINE_OCTAL \214\171 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "AffirmTrust Premium ECC" # Issuer: CN=AffirmTrust Premium ECC,O=AffirmTrust,C=US @@ -10772,8 +11074,6 @@ CKA_VALUE MULTILINE_OCTAL \326\267\064\365\176\316\071\232\331\070\361\121\367\117\054 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Certum Trusted Network CA" # Issuer: CN=Certum Trusted Network CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL @@ -10910,8 +11210,6 @@ CKA_VALUE MULTILINE_OCTAL \274\060\376\173\016\063\220\373\355\322\024\221\037\007\257 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "TWCA Root Certification Authority" # Issuer: CN=TWCA Root Certification Authority,OU=Root CA,O=TAIWAN-CA,C=TW @@ -11395,8 +11693,6 @@ CKA_VALUE MULTILINE_OCTAL \201\050\174\247\175\047\353\000\256\215\067 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Security Communication RootCA2" # Issuer: OU=Security Communication RootCA2,O="SECOM Trust Systems CO.,LTD.",C=JP @@ -11580,8 +11876,6 @@ CKA_VALUE MULTILINE_OCTAL \371\210\075\176\270\157\156\003\344\102 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "EC-ACC" # Issuer: CN=EC-ACC,OU=Jerarquia Entitats de Certificacio Catalanes,OU=Vegeu https://www.catcert.net/verarrel (c)03,OU=Serveis Publics de Certificacio,O=Agencia Catalana de Certificacio (NIF Q-0801176-I),C=ES @@ -11745,8 +12039,6 @@ CKA_VALUE MULTILINE_OCTAL \113\321\047\327\270 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for Certificate "Hellenic Academic and Research Institutions RootCA 2011" # Issuer: CN=Hellenic Academic and Research Institutions RootCA 2011,O=Hellenic Academic and Research Institutions Cert. Authority,C=GR @@ -11983,8 +12275,6 @@ CKA_VALUE MULTILINE_OCTAL \216\362\024\212\314\351\265\174\373\154\235\014\245\341\226 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Actalis Authentication Root CA" # Issuer: CN=Actalis Authentication Root CA,O=Actalis S.p.A./03358520967,L=Milan,C=IT @@ -12116,8 +12406,6 @@ CKA_VALUE MULTILINE_OCTAL \145\353\127\331\363\127\226\273\110\315\201 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Trustis FPS Root CA" # Issuer: OU=Trustis FPS Root CA,O=Trustis Limited,C=GB @@ -12278,8 +12566,6 @@ CKA_VALUE MULTILINE_OCTAL \327\201\011\361\311\307\046\015\254\230\026\126\240 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Buypass Class 2 Root CA" # Issuer: CN=Buypass Class 2 Root CA,O=Buypass AS-983163327,C=NO @@ -12439,8 +12725,6 @@ CKA_VALUE MULTILINE_OCTAL \061\356\006\274\163\277\023\142\012\237\307\271\227 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Buypass Class 3 Root CA" # Issuer: CN=Buypass Class 3 Root CA,O=Buypass AS-983163327,C=NO @@ -12583,8 +12867,6 @@ CKA_VALUE MULTILINE_OCTAL \116\223\303\244\124\024\133 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "T-TeleSec GlobalRoot Class 3" # Issuer: CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE @@ -12734,8 +13016,6 @@ CKA_VALUE MULTILINE_OCTAL \307\314\165\301\226\305\235 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "EE Certification Centre Root CA" # Issuer: E=pki@sk.ee,CN=EE Certification Centre Root CA,O=AS Sertifitseerimiskeskus,C=EE @@ -12949,8 +13229,6 @@ CKA_VALUE MULTILINE_OCTAL \164\145\327\134\376\243\342 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "D-TRUST Root Class 3 CA 2 2009" # Issuer: CN=D-TRUST Root Class 3 CA 2 2009,O=D-Trust GmbH,C=DE @@ -13095,8 +13373,6 @@ CKA_VALUE MULTILINE_OCTAL \352\237\026\361\054\124\265 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "D-TRUST Root Class 3 CA 2 EV 2009" # Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009,O=D-Trust GmbH,C=DE @@ -13134,6 +13410,181 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "Swisscom Root CA 2" +# +# Issuer: CN=Swisscom Root CA 2,OU=Digital Certificate Services,O=Swisscom,C=ch +# Serial Number:1e:9e:28:e8:48:f2:e5:ef:c3:7c:4a:1e:5a:18:67:b6 +# Subject: CN=Swisscom Root CA 2,OU=Digital Certificate Services,O=Swisscom,C=ch +# Not Valid Before: Fri Jun 24 08:38:14 2011 +# Not Valid After : Wed Jun 25 07:38:14 2031 +# Fingerprint (MD5): 5B:04:69:EC:A5:83:94:63:18:A7:86:D0:E4:F2:6E:19 +# Fingerprint (SHA1): 77:47:4F:C6:30:E4:0F:4C:47:64:3F:84:BA:B8:C6:95:4A:8A:41:EC +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Swisscom Root CA 2" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\062 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\036\236\050\350\110\362\345\357\303\174\112\036\132\030 +\147\266 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\331\060\202\003\301\240\003\002\001\002\002\020\036 +\236\050\350\110\362\345\357\303\174\112\036\132\030\147\266\060 +\015\006\011\052\206\110\206\367\015\001\001\013\005\000\060\144 +\061\013\060\011\006\003\125\004\006\023\002\143\150\061\021\060 +\017\006\003\125\004\012\023\010\123\167\151\163\163\143\157\155 +\061\045\060\043\006\003\125\004\013\023\034\104\151\147\151\164 +\141\154\040\103\145\162\164\151\146\151\143\141\164\145\040\123 +\145\162\166\151\143\145\163\061\033\060\031\006\003\125\004\003 +\023\022\123\167\151\163\163\143\157\155\040\122\157\157\164\040 +\103\101\040\062\060\036\027\015\061\061\060\066\062\064\060\070 +\063\070\061\064\132\027\015\063\061\060\066\062\065\060\067\063 +\070\061\064\132\060\144\061\013\060\011\006\003\125\004\006\023 +\002\143\150\061\021\060\017\006\003\125\004\012\023\010\123\167 +\151\163\163\143\157\155\061\045\060\043\006\003\125\004\013\023 +\034\104\151\147\151\164\141\154\040\103\145\162\164\151\146\151 +\143\141\164\145\040\123\145\162\166\151\143\145\163\061\033\060 +\031\006\003\125\004\003\023\022\123\167\151\163\163\143\157\155 +\040\122\157\157\164\040\103\101\040\062\060\202\002\042\060\015 +\006\011\052\206\110\206\367\015\001\001\001\005\000\003\202\002 +\017\000\060\202\002\012\002\202\002\001\000\225\102\116\204\235 +\121\346\323\011\350\162\132\043\151\333\170\160\216\026\361\053 +\217\015\003\316\223\314\056\000\010\173\253\063\214\364\351\100 +\346\027\114\253\236\270\107\024\062\167\062\335\050\014\336\030 +\113\137\166\237\370\071\073\374\116\211\330\174\305\147\357\253 +\322\271\064\137\153\072\363\144\066\316\302\260\317\023\150\312 +\310\313\353\265\342\075\056\041\337\352\054\324\340\371\160\226 +\114\377\152\130\230\267\027\344\033\122\345\176\007\000\035\137 +\332\346\076\225\004\267\151\210\071\241\101\140\045\141\113\225 +\071\150\142\034\261\013\005\211\300\066\202\024\041\077\256\333 +\241\375\274\157\034\140\206\266\123\224\111\271\053\106\305\117 +\000\053\277\241\273\313\077\340\307\127\034\127\350\326\151\370 +\301\044\122\235\210\125\335\302\207\056\164\043\320\024\375\052 +\107\132\273\246\235\375\224\344\321\212\245\137\206\143\166\205 +\313\257\377\111\050\374\200\355\114\171\322\273\344\300\357\001 +\356\120\101\010\065\043\160\053\251\026\264\214\156\205\351\266 +\021\317\061\335\123\046\033\337\055\132\112\002\100\374\304\300 +\266\351\061\032\010\050\345\140\303\037\304\220\216\020\142\140 +\104\015\354\012\276\125\030\161\054\245\364\262\274\025\142\377 +\034\343\276\035\332\036\127\263\074\176\315\202\035\221\343\113 +\353\054\122\064\260\212\375\022\116\226\260\353\160\177\236\071 +\367\146\102\261\253\254\122\332\166\100\127\173\052\275\350\156 +\003\262\013\200\205\210\235\014\307\302\167\260\232\232\127\364 +\270\372\023\134\150\223\072\147\244\227\320\033\231\267\206\062 +\113\140\330\316\357\320\014\177\225\237\157\207\117\207\212\216 +\137\010\174\252\133\374\132\276\241\221\237\125\175\116\260\013 +\151\314\260\224\250\247\207\362\323\112\120\334\137\162\260\026 +\165\036\313\264\030\142\232\260\247\071\252\233\237\146\330\215 +\246\154\226\025\343\346\362\370\361\203\142\154\273\125\351\141 +\223\243\075\365\261\127\213\117\043\260\233\345\224\152\057\337 +\214\337\225\121\051\140\241\013\051\344\134\125\130\267\250\374 +\231\356\045\115\114\016\263\323\114\217\204\350\051\017\375\020 +\124\002\205\310\371\345\303\213\317\347\017\002\003\001\000\001 +\243\201\206\060\201\203\060\016\006\003\125\035\017\001\001\377 +\004\004\003\002\001\206\060\035\006\003\125\035\041\004\026\060 +\024\060\022\006\007\140\205\164\001\123\002\001\006\007\140\205 +\164\001\123\002\001\060\022\006\003\125\035\023\001\001\377\004 +\010\060\006\001\001\377\002\001\007\060\035\006\003\125\035\016 +\004\026\004\024\115\046\040\042\211\113\323\325\244\012\241\157 +\336\342\022\201\305\361\074\056\060\037\006\003\125\035\043\004 +\030\060\026\200\024\115\046\040\042\211\113\323\325\244\012\241 +\157\336\342\022\201\305\361\074\056\060\015\006\011\052\206\110 +\206\367\015\001\001\013\005\000\003\202\002\001\000\062\012\262 +\244\033\313\175\276\202\127\211\271\152\177\363\364\301\056\021 +\175\270\031\076\171\267\250\250\162\067\146\233\032\355\254\023 +\073\016\277\142\360\234\337\236\173\241\123\110\016\101\172\312 +\040\247\027\033\266\170\354\100\221\363\102\255\020\303\134\357 +\377\140\131\177\315\205\243\213\075\110\034\045\002\074\147\175 +\365\062\351\057\060\345\175\245\172\070\320\363\146\052\146\036 +\215\063\203\212\157\174\156\250\132\165\232\270\327\332\130\110 +\104\107\250\114\372\114\111\012\112\302\022\067\250\100\014\303 +\310\341\320\127\015\227\062\225\307\072\237\227\323\127\370\013 +\336\345\162\363\243\333\377\265\330\131\262\163\335\115\052\161 +\262\272\111\365\313\034\325\365\171\310\231\263\374\301\114\164 +\343\264\275\051\067\025\004\050\036\336\105\106\160\354\257\272 +\170\016\212\052\316\000\171\334\300\137\031\147\054\153\113\357 +\150\150\013\103\343\254\301\142\011\357\246\335\145\141\240\257 +\204\125\110\221\122\034\306\045\221\052\320\301\042\043\141\131 +\257\105\021\205\035\001\044\064\217\317\263\377\027\162\040\023 +\302\200\252\041\054\161\071\016\320\217\134\301\323\321\216\042 +\162\106\114\035\226\256\117\161\261\341\005\051\226\131\364\273 +\236\165\075\317\015\067\015\142\333\046\214\143\251\043\337\147 +\006\074\174\072\332\064\102\341\146\264\106\004\336\306\226\230 +\017\113\110\172\044\062\165\221\237\254\367\150\351\052\271\125 +\145\316\135\141\323\047\160\330\067\376\237\271\257\240\056\126 +\267\243\145\121\355\073\253\024\277\114\121\003\350\137\212\005 +\233\356\212\156\234\357\277\150\372\310\332\013\343\102\311\320 +\027\024\234\267\112\340\257\223\047\041\125\046\265\144\057\215 +\361\377\246\100\005\205\005\134\312\007\031\134\013\023\050\114 +\130\177\302\245\357\105\332\140\323\256\145\141\235\123\203\164 +\302\256\362\134\302\026\355\222\076\204\076\163\140\210\274\166 +\364\054\317\320\175\175\323\270\136\321\221\022\020\351\315\335 +\312\045\343\325\355\231\057\276\165\201\113\044\371\105\106\224 +\311\051\041\123\234\046\105\252\023\027\344\347\315\170\342\071 +\301\053\022\236\246\236\033\305\346\016\331\061\331 +END +CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE + +# Trust for "Swisscom Root CA 2" +# Issuer: CN=Swisscom Root CA 2,OU=Digital Certificate Services,O=Swisscom,C=ch +# Serial Number:1e:9e:28:e8:48:f2:e5:ef:c3:7c:4a:1e:5a:18:67:b6 +# Subject: CN=Swisscom Root CA 2,OU=Digital Certificate Services,O=Swisscom,C=ch +# Not Valid Before: Fri Jun 24 08:38:14 2011 +# Not Valid After : Wed Jun 25 07:38:14 2031 +# Fingerprint (MD5): 5B:04:69:EC:A5:83:94:63:18:A7:86:D0:E4:F2:6E:19 +# Fingerprint (SHA1): 77:47:4F:C6:30:E4:0F:4C:47:64:3F:84:BA:B8:C6:95:4A:8A:41:EC +CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Swisscom Root CA 2" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\167\107\117\306\060\344\017\114\107\144\077\204\272\270\306\225 +\112\212\101\354 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\133\004\151\354\245\203\224\143\030\247\206\320\344\362\156\031 +END +CKA_ISSUER MULTILINE_OCTAL +\060\144\061\013\060\011\006\003\125\004\006\023\002\143\150\061 +\021\060\017\006\003\125\004\012\023\010\123\167\151\163\163\143 +\157\155\061\045\060\043\006\003\125\004\013\023\034\104\151\147 +\151\164\141\154\040\103\145\162\164\151\146\151\143\141\164\145 +\040\123\145\162\166\151\143\145\163\061\033\060\031\006\003\125 +\004\003\023\022\123\167\151\163\163\143\157\155\040\122\157\157 +\164\040\103\101\040\062 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\020\036\236\050\350\110\362\345\357\303\174\112\036\132\030 +\147\266 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "CA Disig Root R2" # @@ -13260,8 +13711,6 @@ CKA_VALUE MULTILINE_OCTAL \363\154\033\165\106\243\345\112\027\351\244\327\013 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "CA Disig Root R2" # Issuer: CN=CA Disig Root R2,O=Disig a.s.,L=Bratislava,C=SK @@ -13462,8 +13911,6 @@ CKA_VALUE MULTILINE_OCTAL \125\064\106\052\213\206\073 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "ACCVRAIZ1" # Issuer: C=ES,O=ACCV,OU=PKIACCV,CN=ACCVRAIZ1 @@ -13624,8 +14071,6 @@ CKA_VALUE MULTILINE_OCTAL \053\006\320\004\315 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TWCA Global Root CA" # Issuer: CN=TWCA Global Root CA,OU=Root CA,O=TAIWAN-CA,C=TW @@ -13783,8 +14228,6 @@ CKA_VALUE MULTILINE_OCTAL \245\240\314\277\323\366\165\244\165\226\155\126 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TeliaSonera Root CA v1" # Issuer: CN=TeliaSonera Root CA v1,O=TeliaSonera @@ -13973,8 +14416,6 @@ CKA_VALUE MULTILINE_OCTAL \243\253\157\134\035\266\176\350\263\202\064\355\006\134\044 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "E-Tugra Certification Authority" # Issuer: CN=E-Tugra Certification Authority,OU=E-Tugra Sertifikasyon Merkezi,O=E-Tu..ra EBG Bili..im Teknolojileri ve Hizmetleri A....,L=Ankara,C=TR @@ -14124,8 +14565,6 @@ CKA_VALUE MULTILINE_OCTAL \005\047\216\023\241\156\302 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "T-TeleSec GlobalRoot Class 2" # Issuer: CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE @@ -14257,8 +14696,6 @@ CKA_VALUE MULTILINE_OCTAL \035\362\376\011\021\260\360\207\173\247\235 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Atos TrustedRoot 2011" # Issuer: C=DE,O=Atos,CN=Atos TrustedRoot 2011 @@ -14419,8 +14856,6 @@ CKA_VALUE MULTILINE_OCTAL \063\140\345\303 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "QuoVadis Root CA 1 G3" # Issuer: CN=QuoVadis Root CA 1 G3,O=QuoVadis Limited,C=BM @@ -14583,8 +15018,6 @@ CKA_VALUE MULTILINE_OCTAL \203\336\177\214 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "QuoVadis Root CA 2 G3" # Issuer: CN=QuoVadis Root CA 2 G3,O=QuoVadis Limited,C=BM @@ -14747,8 +15180,6 @@ CKA_VALUE MULTILINE_OCTAL \130\371\230\364 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "QuoVadis Root CA 3 G3" # Issuer: CN=QuoVadis Root CA 3 G3,O=QuoVadis Limited,C=BM @@ -14886,8 +15317,6 @@ CKA_VALUE MULTILINE_OCTAL \042\023\163\154\317\046\365\212\051\347 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "DigiCert Assured ID Root G2" # Issuer: CN=DigiCert Assured ID Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -15006,8 +15435,6 @@ CKA_VALUE MULTILINE_OCTAL \352\226\143\152\145\105\222\225\001\264 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "DigiCert Assured ID Root G3" # Issuer: CN=DigiCert Assured ID Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -15147,8 +15574,6 @@ CKA_VALUE MULTILINE_OCTAL \062\266 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "DigiCert Global Root G2" # Issuer: CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -15267,8 +15692,6 @@ CKA_VALUE MULTILINE_OCTAL \263\047\027 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "DigiCert Global Root G3" # Issuer: CN=DigiCert Global Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -15440,8 +15863,6 @@ CKA_VALUE MULTILINE_OCTAL \317\363\146\176 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "DigiCert Trusted Root G4" # Issuer: CN=DigiCert Trusted Root G4,OU=www.digicert.com,O=DigiCert Inc,C=US @@ -15621,8 +16042,6 @@ CKA_VALUE MULTILINE_OCTAL \065\123\205\006\112\135\237\255\273\033\137\164 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "COMODO RSA Certification Authority" # Issuer: CN=COMODO RSA Certification Authority,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB @@ -15805,8 +16224,6 @@ CKA_VALUE MULTILINE_OCTAL \250\375 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "USERTrust RSA Certification Authority" # Issuer: CN=USERTrust RSA Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US @@ -15936,8 +16353,6 @@ CKA_VALUE MULTILINE_OCTAL \127\152\030 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "USERTrust ECC Certification Authority" # Issuer: CN=USERTrust ECC Certification Authority,O=The USERTRUST Network,L=Jersey City,ST=New Jersey,C=US @@ -16050,8 +16465,6 @@ CKA_VALUE MULTILINE_OCTAL \173\013\370\237\204 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GlobalSign ECC Root CA - R4" # Issuer: CN=GlobalSign,O=GlobalSign,OU=GlobalSign ECC Root CA - R4 @@ -16165,8 +16578,6 @@ CKA_VALUE MULTILINE_OCTAL \220\067 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GlobalSign ECC Root CA - R5" # Issuer: CN=GlobalSign,O=GlobalSign,OU=GlobalSign ECC Root CA - R5 @@ -16332,8 +16743,6 @@ CKA_VALUE MULTILINE_OCTAL \367\200\173\041\147\047\060\131 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Staat der Nederlanden Root CA - G3" # Issuer: CN=Staat der Nederlanden Root CA - G3,O=Staat der Nederlanden,C=NL @@ -16498,8 +16907,6 @@ CKA_VALUE MULTILINE_OCTAL \356\354\327\056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Staat der Nederlanden EV Root CA" # Issuer: CN=Staat der Nederlanden EV Root CA,O=Staat der Nederlanden,C=NL @@ -16662,8 +17069,6 @@ CKA_VALUE MULTILINE_OCTAL \272\204\156\207 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "IdenTrust Commercial Root CA 1" # Issuer: CN=IdenTrust Commercial Root CA 1,O=IdenTrust,C=US @@ -16826,8 +17231,6 @@ CKA_VALUE MULTILINE_OCTAL \267\254\266\255\267\312\076\001\357\234 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "IdenTrust Public Sector Root CA 1" # Issuer: CN=IdenTrust Public Sector Root CA 1,O=IdenTrust,C=US @@ -16987,8 +17390,6 @@ CKA_VALUE MULTILINE_OCTAL \105\366 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Entrust Root Certification Authority - G2" # Issuer: CN=Entrust Root Certification Authority - G2,OU="(c) 2009 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US @@ -17134,8 +17535,6 @@ CKA_VALUE MULTILINE_OCTAL \231\267\046\101\133\045\140\256\320\110\032\356\006 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Entrust Root Certification Authority - EC1" # Issuer: CN=Entrust Root Certification Authority - EC1,OU="(c) 2012 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US @@ -17309,8 +17708,6 @@ CKA_VALUE MULTILINE_OCTAL \056 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "CFCA EV ROOT" # Issuer: CN=CFCA EV ROOT,O=China Financial Certification Authority,C=CN @@ -17348,6 +17745,172 @@ CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE +# +# Certificate "Certinomis - Root CA" +# +# Issuer: CN=Certinomis - Root CA,OU=0002 433998903,O=Certinomis,C=FR +# Serial Number: 1 (0x1) +# Subject: CN=Certinomis - Root CA,OU=0002 433998903,O=Certinomis,C=FR +# Not Valid Before: Mon Oct 21 09:17:18 2013 +# Not Valid After : Fri Oct 21 09:17:18 2033 +# Fingerprint (SHA-256): 2A:99:F5:BC:11:74:B7:3C:BB:1D:62:08:84:E0:1C:34:E5:1C:CB:39:78:DA:12:5F:0E:33:26:88:83:BF:41:58 +# Fingerprint (SHA1): 9D:70:BB:01:A5:A4:A0:18:11:2E:F7:1C:01:B9:32:C5:34:E7:88:A8 +CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Certinomis - Root CA" +CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 +CKA_SUBJECT MULTILINE_OCTAL +\060\132\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\023\060\021\006\003\125\004\012\023\012\103\145\162\164\151\156 +\157\155\151\163\061\027\060\025\006\003\125\004\013\023\016\060 +\060\060\062\040\064\063\063\071\071\070\071\060\063\061\035\060 +\033\006\003\125\004\003\023\024\103\145\162\164\151\156\157\155 +\151\163\040\055\040\122\157\157\164\040\103\101 +END +CKA_ID UTF8 "0" +CKA_ISSUER MULTILINE_OCTAL +\060\132\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\023\060\021\006\003\125\004\012\023\012\103\145\162\164\151\156 +\157\155\151\163\061\027\060\025\006\003\125\004\013\023\016\060 +\060\060\062\040\064\063\063\071\071\070\071\060\063\061\035\060 +\033\006\003\125\004\003\023\024\103\145\162\164\151\156\157\155 +\151\163\040\055\040\122\157\157\164\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\001 +END +CKA_VALUE MULTILINE_OCTAL +\060\202\005\222\060\202\003\172\240\003\002\001\002\002\001\001 +\060\015\006\011\052\206\110\206\367\015\001\001\013\005\000\060 +\132\061\013\060\011\006\003\125\004\006\023\002\106\122\061\023 +\060\021\006\003\125\004\012\023\012\103\145\162\164\151\156\157 +\155\151\163\061\027\060\025\006\003\125\004\013\023\016\060\060 +\060\062\040\064\063\063\071\071\070\071\060\063\061\035\060\033 +\006\003\125\004\003\023\024\103\145\162\164\151\156\157\155\151 +\163\040\055\040\122\157\157\164\040\103\101\060\036\027\015\061 +\063\061\060\062\061\060\071\061\067\061\070\132\027\015\063\063 +\061\060\062\061\060\071\061\067\061\070\132\060\132\061\013\060 +\011\006\003\125\004\006\023\002\106\122\061\023\060\021\006\003 +\125\004\012\023\012\103\145\162\164\151\156\157\155\151\163\061 +\027\060\025\006\003\125\004\013\023\016\060\060\060\062\040\064 +\063\063\071\071\070\071\060\063\061\035\060\033\006\003\125\004 +\003\023\024\103\145\162\164\151\156\157\155\151\163\040\055\040 +\122\157\157\164\040\103\101\060\202\002\042\060\015\006\011\052 +\206\110\206\367\015\001\001\001\005\000\003\202\002\017\000\060 +\202\002\012\002\202\002\001\000\324\314\011\012\054\077\222\366 +\177\024\236\013\234\232\152\035\100\060\144\375\252\337\016\036 +\006\133\237\120\205\352\315\215\253\103\147\336\260\372\176\200 +\226\236\204\170\222\110\326\343\071\356\316\344\131\130\227\345 +\056\047\230\352\223\250\167\233\112\360\357\164\200\055\353\060 +\037\265\331\307\200\234\142\047\221\210\360\112\211\335\334\210 +\346\024\371\325\003\057\377\225\333\275\237\354\054\372\024\025 +\131\225\012\306\107\174\151\030\271\247\003\371\312\166\251\317 +\307\157\264\136\005\376\356\301\122\262\165\062\207\354\355\051 +\146\073\363\112\026\202\366\326\232\333\162\230\351\336\360\305 +\114\245\253\265\352\001\342\214\056\144\177\144\157\375\243\045 +\223\213\310\242\016\111\215\064\360\037\354\130\105\056\064\252 +\204\120\275\347\262\112\023\270\260\017\256\070\135\260\251\033 +\346\163\311\132\241\331\146\100\252\251\115\246\064\002\255\204 +\176\262\043\301\373\052\306\147\364\064\266\260\225\152\063\117 +\161\104\265\255\300\171\063\210\340\277\355\243\240\024\264\234 +\011\260\012\343\140\276\370\370\146\210\315\133\361\167\005\340 +\265\163\156\301\175\106\056\216\113\047\246\315\065\012\375\345 +\115\175\252\052\243\051\307\132\150\004\350\345\326\223\244\142 +\302\305\346\364\117\306\371\237\032\215\202\111\031\212\312\131 +\103\072\350\015\062\301\364\114\023\003\157\156\246\077\221\163 +\313\312\163\157\022\040\213\356\300\202\170\336\113\056\302\111 +\303\035\355\026\366\044\364\047\033\134\127\061\334\125\356\250 +\036\157\154\254\342\105\314\127\127\212\165\127\031\340\265\130 +\231\111\066\061\074\063\001\155\026\112\315\270\052\203\204\206 +\233\371\140\322\037\155\221\003\323\140\246\325\075\232\335\167 +\220\075\065\244\237\017\136\365\122\104\151\271\300\272\334\317 +\175\337\174\331\304\254\206\042\062\274\173\153\221\357\172\370 +\027\150\260\342\123\125\140\055\257\076\302\203\330\331\011\053 +\360\300\144\333\207\213\221\314\221\353\004\375\166\264\225\232 +\346\024\006\033\325\064\035\276\330\377\164\034\123\205\231\340 +\131\122\112\141\355\210\236\153\111\211\106\176\040\132\331\347 +\112\345\152\356\322\145\021\103\002\003\001\000\001\243\143\060 +\141\060\016\006\003\125\035\017\001\001\377\004\004\003\002\001 +\006\060\017\006\003\125\035\023\001\001\377\004\005\060\003\001 +\001\377\060\035\006\003\125\035\016\004\026\004\024\357\221\114 +\365\245\303\060\350\057\010\352\323\161\042\244\222\150\170\164 +\331\060\037\006\003\125\035\043\004\030\060\026\200\024\357\221 +\114\365\245\303\060\350\057\010\352\323\161\042\244\222\150\170 +\164\331\060\015\006\011\052\206\110\206\367\015\001\001\013\005 +\000\003\202\002\001\000\176\075\124\332\042\135\032\130\076\073 +\124\047\272\272\314\310\343\032\152\352\076\371\022\353\126\137 +\075\120\316\340\352\110\046\046\317\171\126\176\221\034\231\077 +\320\241\221\034\054\017\117\230\225\131\123\275\320\042\330\210 +\135\234\067\374\373\144\301\170\214\213\232\140\011\352\325\372 +\041\137\320\164\145\347\120\305\277\056\271\013\013\255\265\260 +\027\246\022\214\324\142\170\352\126\152\354\012\322\100\303\074 +\005\060\076\115\224\267\237\112\003\323\175\047\113\266\376\104 +\316\372\031\063\032\155\244\102\321\335\314\310\310\327\026\122 +\203\117\065\224\263\022\125\175\345\342\102\353\344\234\223\011 +\300\114\133\007\253\307\155\021\240\120\027\224\043\250\265\012 +\222\017\262\172\301\140\054\070\314\032\246\133\377\362\014\343 +\252\037\034\334\270\240\223\047\336\143\343\177\041\237\072\345 +\236\372\340\023\152\165\353\226\134\142\221\224\216\147\123\266 +\211\370\022\011\313\157\122\133\003\162\206\120\225\010\324\215 +\207\206\025\037\225\044\330\244\157\232\316\244\235\233\155\322 +\262\166\006\206\306\126\010\305\353\011\332\066\302\033\133\101 +\276\141\052\343\160\346\270\246\370\266\132\304\275\041\367\377 +\252\137\241\154\166\071\146\326\352\114\125\341\000\063\233\023 +\230\143\311\157\320\001\040\011\067\122\347\014\117\076\315\274 +\365\137\226\047\247\040\002\225\340\056\350\007\101\005\037\025 +\156\326\260\344\031\340\017\002\223\000\047\162\305\213\321\124 +\037\135\112\303\100\227\176\125\246\174\301\063\004\024\001\035 +\111\040\151\013\031\223\235\156\130\042\367\100\014\106\014\043 +\143\363\071\322\177\166\121\247\364\310\241\361\014\166\042\043 +\106\122\051\055\342\243\101\007\126\151\230\322\005\011\274\151 +\307\132\141\315\217\201\140\025\115\200\335\220\342\175\304\120 +\362\214\073\156\112\307\306\346\200\053\074\201\274\021\200\026 +\020\047\327\360\315\077\171\314\163\052\303\176\123\221\326\156 +\370\365\363\307\320\121\115\216\113\245\133\346\031\027\073\326 +\201\011\334\042\334\356\216\271\304\217\123\341\147\273\063\270 +\210\025\106\317\355\151\065\377\165\015\106\363\316\161\341\305 +\153\206\102\006\271\101 +END +CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE + +# Trust for "Certinomis - Root CA" +# Issuer: CN=Certinomis - Root CA,OU=0002 433998903,O=Certinomis,C=FR +# Serial Number: 1 (0x1) +# Subject: CN=Certinomis - Root CA,OU=0002 433998903,O=Certinomis,C=FR +# Not Valid Before: Mon Oct 21 09:17:18 2013 +# Not Valid After : Fri Oct 21 09:17:18 2033 +# Fingerprint (SHA-256): 2A:99:F5:BC:11:74:B7:3C:BB:1D:62:08:84:E0:1C:34:E5:1C:CB:39:78:DA:12:5F:0E:33:26:88:83:BF:41:58 +# Fingerprint (SHA1): 9D:70:BB:01:A5:A4:A0:18:11:2E:F7:1C:01:B9:32:C5:34:E7:88:A8 +CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST +CKA_TOKEN CK_BBOOL CK_TRUE +CKA_PRIVATE CK_BBOOL CK_FALSE +CKA_MODIFIABLE CK_BBOOL CK_FALSE +CKA_LABEL UTF8 "Certinomis - Root CA" +CKA_CERT_SHA1_HASH MULTILINE_OCTAL +\235\160\273\001\245\244\240\030\021\056\367\034\001\271\062\305 +\064\347\210\250 +END +CKA_CERT_MD5_HASH MULTILINE_OCTAL +\024\012\375\215\250\050\265\070\151\333\126\176\141\042\003\077 +END +CKA_ISSUER MULTILINE_OCTAL +\060\132\061\013\060\011\006\003\125\004\006\023\002\106\122\061 +\023\060\021\006\003\125\004\012\023\012\103\145\162\164\151\156 +\157\155\151\163\061\027\060\025\006\003\125\004\013\023\016\060 +\060\060\062\040\064\063\063\071\071\070\071\060\063\061\035\060 +\033\006\003\125\004\003\023\024\103\145\162\164\151\156\157\155 +\151\163\040\055\040\122\157\157\164\040\103\101 +END +CKA_SERIAL_NUMBER MULTILINE_OCTAL +\002\001\001 +END +CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR +CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST +CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE + # # Certificate "OISTE WISeKey Global Root GB CA" # @@ -17450,8 +18013,6 @@ CKA_VALUE MULTILINE_OCTAL \065\255\201\307\116\161\272\210\023 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "OISTE WISeKey Global Root GB CA" # Issuer: CN=OISTE WISeKey Global Root GB CA,OU=OISTE Foundation Endorsed,O=WISeKey,C=CH @@ -17587,8 +18148,6 @@ CKA_VALUE MULTILINE_OCTAL \326\040\036\343\163\267 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "SZAFIR ROOT CA2" # Issuer: CN=SZAFIR ROOT CA2,O=Krajowa Izba Rozliczeniowa S.A.,C=PL @@ -17767,8 +18326,6 @@ CKA_VALUE MULTILINE_OCTAL \016\265\271\276\044\217 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Certum Trusted Network CA 2" # Issuer: CN=Certum Trusted Network CA 2,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL @@ -17956,8 +18513,6 @@ CKA_VALUE MULTILINE_OCTAL \276\157\152\247\365\054\102\355\062\255\266\041\236\276\274 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Hellenic Academic and Research Institutions RootCA 2015" # Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR @@ -18094,8 +18649,6 @@ CKA_VALUE MULTILINE_OCTAL \342\174\352\002\130\042\221 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Hellenic Academic and Research Institutions ECC RootCA 2015" # Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015,O=Hellenic Academic and Research Institutions Cert. Authority,L=Athens,C=GR @@ -18265,8 +18818,6 @@ CKA_VALUE MULTILINE_OCTAL \376\216\036\127\242\315\100\235\176\142\042\332\336\030\047 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "ISRG Root X1" # Issuer: CN=ISRG Root X1,O=Internet Security Research Group,C=US @@ -18430,8 +18981,6 @@ CKA_VALUE MULTILINE_OCTAL \072\117\110\366\213\266\263 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "AC RAIZ FNMT-RCM" # Issuer: OU=AC RAIZ FNMT-RCM,O=FNMT-RCM,C=ES @@ -18557,8 +19106,6 @@ CKA_VALUE MULTILINE_OCTAL \304\220\276\361\271 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Amazon Root CA 1" # Issuer: CN=Amazon Root CA 1,O=Amazon,C=US @@ -18716,8 +19263,6 @@ CKA_VALUE MULTILINE_OCTAL \340\373\011\140\154 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Amazon Root CA 2" # Issuer: CN=Amazon Root CA 2,O=Amazon,C=US @@ -18818,8 +19363,6 @@ CKA_VALUE MULTILINE_OCTAL \143\044\110\034\337\060\175\325\150\073 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Amazon Root CA 3" # Issuer: CN=Amazon Root CA 3,O=Amazon,C=US @@ -18924,8 +19467,6 @@ CKA_VALUE MULTILINE_OCTAL \012\166\324\245\274\020 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Amazon Root CA 4" # Issuer: CN=Amazon Root CA 4,O=Amazon,C=US @@ -19093,8 +19634,6 @@ CKA_VALUE MULTILINE_OCTAL \045\307\043\200\203\012\353 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "LuxTrust Global Root 2" # Issuer: CN=LuxTrust Global Root 2,O=LuxTrust S.A.,C=LU @@ -19244,8 +19783,6 @@ CKA_VALUE MULTILINE_OCTAL \322\063\340\377\275\321\124\071\051\017 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Symantec Class 1 Public Primary Certification Authority - G6" # Issuer: CN=Symantec Class 1 Public Primary Certification Authority - G6,OU=Symantec Trust Network,O=Symantec Corporation,C=US @@ -19400,8 +19937,6 @@ CKA_VALUE MULTILINE_OCTAL \157\374\132\344\202\125\131\257\061\251 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Symantec Class 2 Public Primary Certification Authority - G6" # Issuer: CN=Symantec Class 2 Public Primary Certification Authority - G6,OU=Symantec Trust Network,O=Symantec Corporation,C=US @@ -19535,8 +20070,6 @@ CKA_VALUE MULTILINE_OCTAL \362\014\105\111\071\277\231\004\034\323\020\240 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Symantec Class 1 Public Primary Certification Authority - G4" # Issuer: CN=Symantec Class 1 Public Primary Certification Authority - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US @@ -19670,8 +20203,6 @@ CKA_VALUE MULTILINE_OCTAL \051\246\330\107\331\240\226\030\333\362\105\263 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Symantec Class 2 Public Primary Certification Authority - G4" # Issuer: CN=Symantec Class 2 Public Primary Certification Authority - G4,OU=Symantec Trust Network,O=Symantec Corporation,C=US @@ -19817,8 +20348,6 @@ CKA_VALUE MULTILINE_OCTAL \137\134 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "D-TRUST Root CA 3 2013" # Issuer: CN=D-TRUST Root CA 3 2013,O=D-Trust GmbH,C=DE @@ -19981,8 +20510,6 @@ CKA_VALUE MULTILINE_OCTAL \237\042\136\242\017\241\343 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" # Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1,OU=Kamu Sertifikasyon Merkezi - Kamu SM,O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK,L=Gebze - Kocaeli,C=TR @@ -20158,8 +20685,6 @@ CKA_VALUE MULTILINE_OCTAL \250\267\101\154\007\335\275\074\206\227\057\322 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GDCA TrustAUTH R5 ROOT" # Issuer: CN=GDCA TrustAUTH R5 ROOT,O="GUANG DONG CERTIFICATE AUTHORITY CO.,LTD.",C=CN @@ -20315,8 +20840,6 @@ CKA_VALUE MULTILINE_OCTAL \132\171\054\031 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TrustCor RootCert CA-1" # Issuer: CN=TrustCor RootCert CA-1,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA @@ -20508,8 +21031,6 @@ CKA_VALUE MULTILINE_OCTAL \326\354\011 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TrustCor RootCert CA-2" # Issuer: CN=TrustCor RootCert CA-2,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA @@ -20666,8 +21187,6 @@ CKA_VALUE MULTILINE_OCTAL \264\237\327\346 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "TrustCor ECA-1" # Issuer: CN=TrustCor ECA-1,OU=TrustCor Certificate Authority,O=TrustCor Systems S. de R.L.,L=Panama City,ST=Panama,C=PA @@ -20847,8 +21366,6 @@ CKA_VALUE MULTILINE_OCTAL \271 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "SSL.com Root Certification Authority RSA" # Issuer: CN=SSL.com Root Certification Authority RSA,O=SSL Corporation,L=Houston,ST=Texas,C=US @@ -20973,8 +21490,6 @@ CKA_VALUE MULTILINE_OCTAL \145 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "SSL.com Root Certification Authority ECC" # Issuer: CN=SSL.com Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US @@ -21154,8 +21669,6 @@ CKA_VALUE MULTILINE_OCTAL \040\022\215\264\254\127\261\105\143\241\254\166\251\302\373 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "SSL.com EV Root Certification Authority RSA R2" # Issuer: CN=SSL.com EV Root Certification Authority RSA R2,O=SSL Corporation,L=Houston,ST=Texas,C=US @@ -21283,8 +21796,6 @@ CKA_VALUE MULTILINE_OCTAL \371\007\340\142\232\214\134\112 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "SSL.com EV Root Certification Authority ECC" # Issuer: CN=SSL.com EV Root Certification Authority ECC,O=SSL Corporation,L=Houston,ST=Texas,C=US @@ -21451,8 +21962,6 @@ CKA_VALUE MULTILINE_OCTAL \147\203\005\132\311\244\020 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GlobalSign Root CA - R6" # Issuer: CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R6 @@ -21570,8 +22079,6 @@ CKA_VALUE MULTILINE_OCTAL \242\355\357\173\260\200\117\130\017\113\123\071\275 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "OISTE WISeKey Global Root GC CA" # Issuer: CN=OISTE WISeKey Global Root GC CA,OU=OISTE Foundation Endorsed,O=WISeKey,C=CH @@ -21735,8 +22242,6 @@ CKA_VALUE MULTILINE_OCTAL \361\306\143\107\125\034\272\245\010\121\165\246\110\045 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GTS Root R1" # Issuer: CN=GTS Root R1,O=Google Trust Services LLC,C=US @@ -21898,8 +22403,6 @@ CKA_VALUE MULTILINE_OCTAL \267\375\054\010\122\117\202\335\243\360\324\206\011\002 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GTS Root R2" # Issuer: CN=GTS Root R2,O=Google Trust Services LLC,C=US @@ -22008,8 +22511,6 @@ CKA_VALUE MULTILINE_OCTAL \232\051\252\226\323\203\043\311\244\173\141\263\314\002\350\135 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GTS Root R3" # Issuer: CN=GTS Root R3,O=Google Trust Services LLC,C=US @@ -22118,8 +22619,6 @@ CKA_VALUE MULTILINE_OCTAL \161\314\362\260\115\326\376\231\310\224\251\165\242\343 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "GTS Root R4" # Issuer: CN=GTS Root R4,O=Google Trust Services LLC,C=US @@ -22278,8 +22777,6 @@ CKA_VALUE MULTILINE_OCTAL \120\037\212\373\006\365\302\031\360\320 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "UCA Global G2 Root" # Issuer: CN=UCA Global G2 Root,O=UniTrust,C=CN @@ -22440,8 +22937,6 @@ CKA_VALUE MULTILINE_OCTAL \177\275\145\040\262\311\301\053\166\030\166\237\126\261 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "UCA Extended Validation Root" # Issuer: CN=UCA Extended Validation Root,O=UniTrust,C=CN @@ -22621,8 +23116,6 @@ CKA_VALUE MULTILINE_OCTAL \045\124\377\242\332\117\212\141\071\136\256\075\112\214\275 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Certigna Root CA" # Issuer: CN=Certigna Root CA,OU=0002 48146308100036,O=Dhimyotis,C=FR @@ -22760,8 +23253,6 @@ CKA_VALUE MULTILINE_OCTAL \210\336\272\314\037\200\176\112 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "emSign Root CA - G1" # Issuer: CN=emSign Root CA - G1,O=eMudhra Technologies Limited,OU=emSign PKI,C=IN @@ -22879,8 +23370,6 @@ CKA_VALUE MULTILINE_OCTAL \054\243 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "emSign ECC Root CA - G3" # Issuer: CN=emSign ECC Root CA - G3,O=eMudhra Technologies Limited,OU=emSign PKI,C=IN @@ -23014,8 +23503,6 @@ CKA_VALUE MULTILINE_OCTAL \361\337\312\276\203\015\102 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "emSign Root CA - C1" # Issuer: CN=emSign Root CA - C1,O=eMudhra Inc,OU=emSign PKI,C=US @@ -23127,8 +23614,6 @@ CKA_VALUE MULTILINE_OCTAL \276\201\007\125\060\120\040\024\365\127\070\012\250\061\121 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "emSign ECC Root CA - C3" # Issuer: CN=emSign ECC Root CA - C3,O=eMudhra Inc,OU=emSign PKI,C=US @@ -23304,8 +23789,6 @@ CKA_VALUE MULTILINE_OCTAL \232\233\364 END CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE -CKA_NSS_SERVER_DISTRUST_AFTER CK_BBOOL CK_FALSE -CKA_NSS_EMAIL_DISTRUST_AFTER CK_BBOOL CK_FALSE # Trust for "Hongkong Post Root CA 3" # Issuer: CN=Hongkong Post Root CA 3,O=Hongkong Post,L=Hong Kong,ST=Hong Kong,C=HK @@ -23345,203 +23828,3 @@ CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE - -# -# Certificate "Entrust Root Certification Authority - G4" -# -# Issuer: CN=Entrust Root Certification Authority - G4,OU="(c) 2015 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US -# Serial Number:00:d9:b5:43:7f:af:a9:39:0f:00:00:00:00:55:65:ad:58 -# Subject: CN=Entrust Root Certification Authority - G4,OU="(c) 2015 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US -# Not Valid Before: Wed May 27 11:11:16 2015 -# Not Valid After : Sun Dec 27 11:41:16 2037 -# Fingerprint (SHA-256): DB:35:17:D1:F6:73:2A:2D:5A:B9:7C:53:3E:C7:07:79:EE:32:70:A6:2F:B4:AC:42:38:37:24:60:E6:F0:1E:88 -# Fingerprint (SHA1): 14:88:4E:86:26:37:B0:26:AF:59:62:5C:40:77:EC:35:29:BA:96:01 -CKA_CLASS CK_OBJECT_CLASS CKO_CERTIFICATE -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust Root Certification Authority - G4" -CKA_CERTIFICATE_TYPE CK_CERTIFICATE_TYPE CKC_X_509 -CKA_SUBJECT MULTILINE_OCTAL -\060\201\276\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\026\060\024\006\003\125\004\012\023\015\105\156\164\162\165 -\163\164\054\040\111\156\143\056\061\050\060\046\006\003\125\004 -\013\023\037\123\145\145\040\167\167\167\056\145\156\164\162\165 -\163\164\056\156\145\164\057\154\145\147\141\154\055\164\145\162 -\155\163\061\071\060\067\006\003\125\004\013\023\060\050\143\051 -\040\062\060\061\065\040\105\156\164\162\165\163\164\054\040\111 -\156\143\056\040\055\040\146\157\162\040\141\165\164\150\157\162 -\151\172\145\144\040\165\163\145\040\157\156\154\171\061\062\060 -\060\006\003\125\004\003\023\051\105\156\164\162\165\163\164\040 -\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\040\055\040\107 -\064 -END -CKA_ID UTF8 "0" -CKA_ISSUER MULTILINE_OCTAL -\060\201\276\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\026\060\024\006\003\125\004\012\023\015\105\156\164\162\165 -\163\164\054\040\111\156\143\056\061\050\060\046\006\003\125\004 -\013\023\037\123\145\145\040\167\167\167\056\145\156\164\162\165 -\163\164\056\156\145\164\057\154\145\147\141\154\055\164\145\162 -\155\163\061\071\060\067\006\003\125\004\013\023\060\050\143\051 -\040\062\060\061\065\040\105\156\164\162\165\163\164\054\040\111 -\156\143\056\040\055\040\146\157\162\040\141\165\164\150\157\162 -\151\172\145\144\040\165\163\145\040\157\156\154\171\061\062\060 -\060\006\003\125\004\003\023\051\105\156\164\162\165\163\164\040 -\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\040\055\040\107 -\064 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\021\000\331\265\103\177\257\251\071\017\000\000\000\000\125 -\145\255\130 -END -CKA_VALUE MULTILINE_OCTAL -\060\202\006\113\060\202\004\063\240\003\002\001\002\002\021\000 -\331\265\103\177\257\251\071\017\000\000\000\000\125\145\255\130 -\060\015\006\011\052\206\110\206\367\015\001\001\013\005\000\060 -\201\276\061\013\060\011\006\003\125\004\006\023\002\125\123\061 -\026\060\024\006\003\125\004\012\023\015\105\156\164\162\165\163 -\164\054\040\111\156\143\056\061\050\060\046\006\003\125\004\013 -\023\037\123\145\145\040\167\167\167\056\145\156\164\162\165\163 -\164\056\156\145\164\057\154\145\147\141\154\055\164\145\162\155 -\163\061\071\060\067\006\003\125\004\013\023\060\050\143\051\040 -\062\060\061\065\040\105\156\164\162\165\163\164\054\040\111\156 -\143\056\040\055\040\146\157\162\040\141\165\164\150\157\162\151 -\172\145\144\040\165\163\145\040\157\156\154\171\061\062\060\060 -\006\003\125\004\003\023\051\105\156\164\162\165\163\164\040\122 -\157\157\164\040\103\145\162\164\151\146\151\143\141\164\151\157 -\156\040\101\165\164\150\157\162\151\164\171\040\055\040\107\064 -\060\036\027\015\061\065\060\065\062\067\061\061\061\061\061\066 -\132\027\015\063\067\061\062\062\067\061\061\064\061\061\066\132 -\060\201\276\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\026\060\024\006\003\125\004\012\023\015\105\156\164\162\165 -\163\164\054\040\111\156\143\056\061\050\060\046\006\003\125\004 -\013\023\037\123\145\145\040\167\167\167\056\145\156\164\162\165 -\163\164\056\156\145\164\057\154\145\147\141\154\055\164\145\162 -\155\163\061\071\060\067\006\003\125\004\013\023\060\050\143\051 -\040\062\060\061\065\040\105\156\164\162\165\163\164\054\040\111 -\156\143\056\040\055\040\146\157\162\040\141\165\164\150\157\162 -\151\172\145\144\040\165\163\145\040\157\156\154\171\061\062\060 -\060\006\003\125\004\003\023\051\105\156\164\162\165\163\164\040 -\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\040\055\040\107 -\064\060\202\002\042\060\015\006\011\052\206\110\206\367\015\001 -\001\001\005\000\003\202\002\017\000\060\202\002\012\002\202\002 -\001\000\261\354\054\102\356\342\321\060\377\245\222\107\342\055 -\303\272\144\227\155\312\367\015\265\131\301\263\313\250\150\031 -\330\257\204\155\060\160\135\176\363\056\322\123\231\341\376\037 -\136\331\110\257\135\023\215\333\377\143\063\115\323\000\002\274 -\304\370\321\006\010\224\171\130\212\025\336\051\263\375\375\304 -\117\350\252\342\240\073\171\315\277\153\103\062\335\331\164\020 -\271\367\364\150\324\273\320\207\325\252\113\212\052\157\052\004 -\265\262\246\307\240\172\346\110\253\322\321\131\314\326\176\043 -\346\227\154\360\102\345\334\121\113\025\101\355\111\112\311\336 -\020\227\326\166\301\357\245\265\066\024\227\065\330\170\042\065 -\122\357\103\275\333\047\333\141\126\202\064\334\313\210\140\014 -\013\132\345\054\001\306\124\257\327\252\301\020\173\322\005\132 -\270\100\236\206\247\303\220\206\002\126\122\011\172\234\322\047 -\202\123\112\145\122\152\365\074\347\250\362\234\257\213\275\323 -\016\324\324\136\156\207\236\152\075\105\035\321\135\033\364\351 -\012\254\140\231\373\211\264\377\230\054\317\174\035\351\002\252 -\004\232\036\270\334\210\156\045\263\154\146\367\074\220\363\127 -\301\263\057\365\155\362\373\312\241\370\051\235\106\213\263\152 -\366\346\147\007\276\054\147\012\052\037\132\262\076\127\304\323 -\041\041\143\145\122\221\033\261\231\216\171\176\346\353\215\000 -\331\132\252\352\163\350\244\202\002\107\226\376\133\216\124\141 -\243\353\057\113\060\260\213\043\165\162\174\041\074\310\366\361 -\164\324\034\173\243\005\125\356\273\115\073\062\276\232\167\146 -\236\254\151\220\042\007\037\141\072\226\276\345\232\117\314\005 -\074\050\131\323\301\014\124\250\131\141\275\310\162\114\350\334 -\237\207\177\275\234\110\066\136\225\243\016\271\070\044\125\374 -\165\146\353\002\343\010\064\051\112\306\343\053\057\063\240\332 -\243\206\245\022\227\375\200\053\332\024\102\343\222\275\076\362 -\135\136\147\164\056\034\210\107\051\064\137\342\062\250\234\045 -\067\214\272\230\000\227\213\111\226\036\375\045\212\254\334\332 -\330\135\164\156\146\260\377\104\337\241\030\306\276\110\057\067 -\224\170\370\225\112\077\177\023\136\135\131\375\164\206\103\143 -\163\111\002\003\001\000\001\243\102\060\100\060\017\006\003\125 -\035\023\001\001\377\004\005\060\003\001\001\377\060\016\006\003 -\125\035\017\001\001\377\004\004\003\002\001\006\060\035\006\003 -\125\035\016\004\026\004\024\237\070\304\126\043\303\071\350\240 -\161\154\350\124\114\344\350\072\261\277\147\060\015\006\011\052 -\206\110\206\367\015\001\001\013\005\000\003\202\002\001\000\022 -\345\102\246\173\213\017\014\344\106\245\266\140\100\207\214\045 -\176\255\270\150\056\133\306\100\166\074\003\370\311\131\364\363 -\253\142\316\020\215\264\132\144\214\150\300\260\162\103\064\322 -\033\013\366\054\123\322\312\220\113\206\146\374\252\203\042\364 -\213\032\157\046\110\254\166\167\010\277\305\230\134\364\046\211 -\236\173\303\271\144\062\001\177\323\303\335\130\155\354\261\253 -\204\125\164\167\204\004\047\122\153\206\114\316\335\271\145\377 -\326\306\136\237\232\020\231\113\165\152\376\152\351\227\040\344 -\344\166\172\306\320\044\252\220\315\040\220\272\107\144\373\177 -\007\263\123\170\265\012\142\362\163\103\316\101\053\201\152\056 -\205\026\224\123\324\153\137\162\042\253\121\055\102\325\000\234 -\231\277\336\273\224\073\127\375\232\365\206\313\126\073\133\210 -\001\345\174\050\113\003\371\111\203\174\262\177\174\343\355\216 -\241\177\140\123\216\125\235\120\064\022\017\267\227\173\154\207 -\112\104\347\365\155\354\200\067\360\130\031\156\112\150\166\360 -\037\222\344\352\265\222\323\141\121\020\013\255\247\331\137\307 -\137\334\037\243\134\214\241\176\233\267\236\323\126\157\146\136 -\007\226\040\355\013\164\373\146\116\213\021\025\351\201\111\176 -\157\260\324\120\177\042\327\137\145\002\015\246\364\205\036\330 -\256\006\113\112\247\322\061\146\302\370\316\345\010\246\244\002 -\226\104\150\127\304\325\063\317\031\057\024\304\224\034\173\244 -\331\360\237\016\261\200\342\321\236\021\144\251\210\021\072\166 -\202\345\142\302\200\330\244\203\355\223\357\174\057\220\260\062 -\114\226\025\150\110\122\324\231\010\300\044\350\034\343\263\245 -\041\016\222\300\220\037\317\040\137\312\073\070\307\267\155\072 -\363\346\104\270\016\061\153\210\216\160\353\234\027\122\250\101 -\224\056\207\266\347\246\022\305\165\337\133\300\012\156\173\244 -\344\136\206\371\066\224\337\167\303\351\015\300\071\361\171\273 -\106\216\253\103\131\047\267\040\273\043\351\126\100\041\354\061 -\075\145\252\103\362\075\337\160\104\341\272\115\046\020\073\230 -\237\363\310\216\033\070\126\041\152\121\223\323\221\312\106\332 -\211\267\075\123\203\054\010\037\213\217\123\335\377\254\037 -END -CKA_NSS_MOZILLA_CA_POLICY CK_BBOOL CK_TRUE - -# Trust for "Entrust Root Certification Authority - G4" -# Issuer: CN=Entrust Root Certification Authority - G4,OU="(c) 2015 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US -# Serial Number:00:d9:b5:43:7f:af:a9:39:0f:00:00:00:00:55:65:ad:58 -# Subject: CN=Entrust Root Certification Authority - G4,OU="(c) 2015 Entrust, Inc. - for authorized use only",OU=See www.entrust.net/legal-terms,O="Entrust, Inc.",C=US -# Not Valid Before: Wed May 27 11:11:16 2015 -# Not Valid After : Sun Dec 27 11:41:16 2037 -# Fingerprint (SHA-256): DB:35:17:D1:F6:73:2A:2D:5A:B9:7C:53:3E:C7:07:79:EE:32:70:A6:2F:B4:AC:42:38:37:24:60:E6:F0:1E:88 -# Fingerprint (SHA1): 14:88:4E:86:26:37:B0:26:AF:59:62:5C:40:77:EC:35:29:BA:96:01 -CKA_CLASS CK_OBJECT_CLASS CKO_NSS_TRUST -CKA_TOKEN CK_BBOOL CK_TRUE -CKA_PRIVATE CK_BBOOL CK_FALSE -CKA_MODIFIABLE CK_BBOOL CK_FALSE -CKA_LABEL UTF8 "Entrust Root Certification Authority - G4" -CKA_CERT_SHA1_HASH MULTILINE_OCTAL -\024\210\116\206\046\067\260\046\257\131\142\134\100\167\354\065 -\051\272\226\001 -END -CKA_CERT_MD5_HASH MULTILINE_OCTAL -\211\123\361\203\043\267\174\216\005\361\214\161\070\116\037\210 -END -CKA_ISSUER MULTILINE_OCTAL -\060\201\276\061\013\060\011\006\003\125\004\006\023\002\125\123 -\061\026\060\024\006\003\125\004\012\023\015\105\156\164\162\165 -\163\164\054\040\111\156\143\056\061\050\060\046\006\003\125\004 -\013\023\037\123\145\145\040\167\167\167\056\145\156\164\162\165 -\163\164\056\156\145\164\057\154\145\147\141\154\055\164\145\162 -\155\163\061\071\060\067\006\003\125\004\013\023\060\050\143\051 -\040\062\060\061\065\040\105\156\164\162\165\163\164\054\040\111 -\156\143\056\040\055\040\146\157\162\040\141\165\164\150\157\162 -\151\172\145\144\040\165\163\145\040\157\156\154\171\061\062\060 -\060\006\003\125\004\003\023\051\105\156\164\162\165\163\164\040 -\122\157\157\164\040\103\145\162\164\151\146\151\143\141\164\151 -\157\156\040\101\165\164\150\157\162\151\164\171\040\055\040\107 -\064 -END -CKA_SERIAL_NUMBER MULTILINE_OCTAL -\002\021\000\331\265\103\177\257\251\071\017\000\000\000\000\125 -\145\255\130 -END -CKA_TRUST_SERVER_AUTH CK_TRUST CKT_NSS_TRUSTED_DELEGATOR -CKA_TRUST_EMAIL_PROTECTION CK_TRUST CKT_NSS_TRUSTED_DELEGATOR -CKA_TRUST_CODE_SIGNING CK_TRUST CKT_NSS_MUST_VERIFY_TRUST -CKA_TRUST_STEP_UP_APPROVED CK_BBOOL CK_FALSE diff --git a/security/pkix/lib/pkixcert.cpp b/security/pkix/lib/pkixcert.cpp index ffa58fd3b..79ee12dba 100644 --- a/security/pkix/lib/pkixcert.cpp +++ b/security/pkix/lib/pkixcert.cpp @@ -105,29 +105,24 @@ BackCert::Init() return rv; } - static const uint8_t CSC = der::CONTEXT_SPECIFIC | der::CONSTRUCTED; - // According to RFC 5280, all fields below this line are forbidden for // certificate versions less than v3. However, for compatibility reasons, // we parse v1/v2 certificates in the same way as v3 certificates. So if // these fields appear in a v1 certificate, they will be used. // Ignore issuerUniqueID if present. - if (tbsCertificate.Peek(CSC | 1)) { - rv = der::ExpectTagAndSkipValue(tbsCertificate, CSC | 1); - if (rv != Success) { - return rv; - } + rv = der::SkipOptionalImplicitPrimitiveTag(tbsCertificate, 1); + if (rv != Success) { + return rv; } // Ignore subjectUniqueID if present. - if (tbsCertificate.Peek(CSC | 2)) { - rv = der::ExpectTagAndSkipValue(tbsCertificate, CSC | 2); - if (rv != Success) { - return rv; - } + rv = der::SkipOptionalImplicitPrimitiveTag(tbsCertificate, 2); + if (rv != Success) { + return rv; } + static const uint8_t CSC = der::CONTEXT_SPECIFIC | der::CONSTRUCTED; rv = der::OptionalExtensions( tbsCertificate, CSC | 3, [this](Reader& extnID, const Input& extnValue, bool critical, diff --git a/security/pkix/lib/pkixder.h b/security/pkix/lib/pkixder.h index a17114bcb..71691a35e 100644 --- a/security/pkix/lib/pkixder.h +++ b/security/pkix/lib/pkixder.h @@ -123,6 +123,17 @@ ExpectTagAndSkipValue(Reader& input, uint8_t tag) return ExpectTagAndGetValue(input, tag, ignoredValue); } +// This skips IMPLICIT OPTIONAL tags that are "primitive" (not constructed), +// given the number in the class of the tag (i.e. the number in the brackets in +// `issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL`). +inline Result SkipOptionalImplicitPrimitiveTag(Reader& input, + uint8_t numberInClass) { + if (input.Peek(CONTEXT_SPECIFIC | numberInClass)) { + return ExpectTagAndSkipValue(input, CONTEXT_SPECIFIC | numberInClass); + } + return Success; +} + // Like ExpectTagAndGetValue, except the output Input will contain the // encoded tag and length along with the value. inline Result diff --git a/storage/TelemetryVFS.cpp b/storage/TelemetryVFS.cpp index febd2ea16..b510728b4 100644 --- a/storage/TelemetryVFS.cpp +++ b/storage/TelemetryVFS.cpp @@ -285,26 +285,33 @@ DatabasePathFromWALPath(const char *zWALName) MOZ_CRASH("Should never get here!"); } -already_AddRefed -GetQuotaObjectFromNameAndParameters(const char *zName, - const char *zURIParameterKey) -{ - MOZ_ASSERT(zName); - MOZ_ASSERT(zURIParameterKey); +already_AddRefed GetQuotaObjectFromName(const char *zName, + bool deriveFromWal) { + // From Sqlite 3.31.0 the zName format changed to work consistently across + // database, wal and journal names. + // We must support both ways because this code will be uplifted to ensure + // that if system Sqlite is upgraded before us, we keep working properly. + // Once the Firefox minimum Sqlite version is 3.31.0, we can remove the else + // branch, DatabasePathFromWALPath, and the deriveFromWal argument. + const char* filename = zName; + if (deriveFromWal && sqlite3_libversion_number() < 3031000) { + filename = DatabasePathFromWALPath(zName); + } + MOZ_ASSERT(filename); const char *persistenceType = - sqlite3_uri_parameter(zURIParameterKey, "persistenceType"); + sqlite3_uri_parameter(filename, "persistenceType"); if (!persistenceType) { return nullptr; } - const char *group = sqlite3_uri_parameter(zURIParameterKey, "group"); + const char *group = sqlite3_uri_parameter(filename, "group"); if (!group) { NS_WARNING("SQLite URI had 'persistenceType' but not 'group'?!"); return nullptr; } - const char *origin = sqlite3_uri_parameter(zURIParameterKey, "origin"); + const char *origin = sqlite3_uri_parameter(filename, "origin"); if (!origin) { NS_WARNING("SQLite URI had 'persistenceType' and 'group' but not " "'origin'?!"); @@ -333,16 +340,7 @@ MaybeEstablishQuotaControl(const char *zName, return; } - MOZ_ASSERT(zName); - - const char *zURIParameterKey = (flags & SQLITE_OPEN_WAL) ? - DatabasePathFromWALPath(zName) : - zName; - - MOZ_ASSERT(zURIParameterKey); - - pFile->quotaObject = - GetQuotaObjectFromNameAndParameters(zName, zURIParameterKey); + pFile->quotaObject = GetQuotaObjectFromName(zName, flags & SQLITE_OPEN_WAL); } /* @@ -715,10 +713,7 @@ xDelete(sqlite3_vfs* vfs, const char *zName, int syncDir) RefPtr quotaObject; if (StringEndsWith(nsDependentCString(zName), NS_LITERAL_CSTRING("-wal"))) { - const char *zURIParameterKey = DatabasePathFromWALPath(zName); - MOZ_ASSERT(zURIParameterKey); - - quotaObject = GetQuotaObjectFromNameAndParameters(zName, zURIParameterKey); + quotaObject = GetQuotaObjectFromName(zName, true); } rc = orig_vfs->xDelete(orig_vfs, zName, syncDir); diff --git a/toolkit/components/startup/nsAppStartup.cpp b/toolkit/components/startup/nsAppStartup.cpp index fcaf578a0..9401bd2e0 100644 --- a/toolkit/components/startup/nsAppStartup.cpp +++ b/toolkit/components/startup/nsAppStartup.cpp @@ -285,6 +285,11 @@ nsAppStartup::Run(void) return rv; } + // Make sure that the appropriate quit notifications have been dispatched + // regardless of whether the event loop has spun or not. Note that this call + // is a no-op if Quit has already been called previously. + Quit(eForceQuit); + nsresult retval = NS_OK; if (mRestart) { retval = NS_SUCCESS_RESTART_APP; diff --git a/widget/nsBaseDragService.cpp b/widget/nsBaseDragService.cpp index f03445284..83d206da8 100644 --- a/widget/nsBaseDragService.cpp +++ b/widget/nsBaseDragService.cpp @@ -58,7 +58,8 @@ nsBaseDragService::nsBaseDragService() mDragAction(DRAGDROP_ACTION_NONE), mDragActionFromChildProcess(DRAGDROP_ACTION_UNINITIALIZED), mTargetSize(0,0), mContentPolicyType(nsIContentPolicy::TYPE_OTHER), - mSuppressLevel(0), mInputSource(nsIDOMMouseEvent::MOZ_SOURCE_MOUSE) + mSuppressLevel(0), mInputSource(nsIDOMMouseEvent::MOZ_SOURCE_MOUSE), + mEndingSession(false) { } @@ -382,10 +383,12 @@ nsBaseDragService::TakeChildProcessDragAction() NS_IMETHODIMP nsBaseDragService::EndDragSession(bool aDoneDrag) { - if (!mDoingDrag) { + if (!mDoingDrag || mEndingSession) { return NS_ERROR_FAILURE; } + mEndingSession = true; + if (aDoneDrag && !mSuppressLevel) { FireDragEventAtSource(eDragEnd); } @@ -412,6 +415,7 @@ nsBaseDragService::EndDragSession(bool aDoneDrag) } mDoingDrag = false; + mEndingSession = false; mCanDrop = false; // release the source we've been holding on to. diff --git a/widget/nsBaseDragService.h b/widget/nsBaseDragService.h index 300ea693a..7311ce835 100644 --- a/widget/nsBaseDragService.h +++ b/widget/nsBaseDragService.h @@ -147,6 +147,9 @@ protected: bool mCanDrop; bool mOnlyChromeDrop; bool mDoingDrag; + + // true if in EndDragSession + bool mEndingSession; // true if mImage should be used to set a drag image bool mHasImage; // true if the user cancelled the drag operation diff --git a/xpcom/io/nsLocalFileUnix.cpp b/xpcom/io/nsLocalFileUnix.cpp index 6149aaeac..44258147d 100644 --- a/xpcom/io/nsLocalFileUnix.cpp +++ b/xpcom/io/nsLocalFileUnix.cpp @@ -1556,6 +1556,9 @@ nsLocalFile::IsExecutable(bool* aResult) // Search for any of the set of executable extensions. static const char* const executableExts[] = { "air", // Adobe AIR installer +#ifdef MOZ_WIDGET_COCOA + "fileloc", // File location files can be used to point to other files. +#endif "jar" // java application bundle }; nsDependentSubstring ext = Substring(path, dotIdx + 1);